mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
49 lines
869 B
JSON
49 lines
869 B
JSON
{
|
|
"id": "file:/project_folders/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"
|
|
},
|
|
"projects": {
|
|
"type": "object"
|
|
},
|
|
"project_folders": {
|
|
"type": "object"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": ["team"]
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": ["id", "type", "attributes"]
|
|
}
|
|
|
|
|
|
|
|
|