Files
Phraseanet/lib/conf.d/json_schema/stories.json
2015-12-22 14:24:32 +01:00

17 lines
420 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Story collection",
"description": "A collection of stories from Phraseanet",
"type": "object",
"properties": {
"stories": {
"description": "The actual collection",
"type": "array",
"items": {
"$ref": "story.json"
}
}
},
"required": ["stories"]
}