Files
Phraseanet/lib/conf.d/json_schema/story.json
Jean-Yves Gaulier 3305329501 report des routes api/story de 3.8
#time 1.5d
2015-05-07 16:53:53 +02:00

25 lines
672 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Story",
"description": "A story from Phraseanet",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for a story",
"type": "string"
},
"story_id": {
"description": "The identifier for a record contextualized by the databox",
"type": "integer"
},
"databox_id": {
"description": "The databox identifier where the record is localized",
"type": "integer"
},
"base_id": {
"description": "The base identifier where the record is localized",
"type": "integer"
}
},
"required": ["base_id"]
}