scinote-web/spec/support/api/schemas/project_folders/item.json

44 lines
726 B
JSON
Raw Normal View History

2020-11-23 14:09:10 +08:00
{
"id": "file:/item.json#",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
},
"attributes": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"name"
]
},
"relationships": {
"type": "object",
"properties": {
"team": {
"type": "object"
},
"parent_folder": {
"type": "object"
}
},
"additionalProperties": false,
"required": ["team"]
}
},
"additionalProperties": false,
"required": ["id", "type", "attributes"]
}