56 lines
963 B
JSON
56 lines
963 B
JSON
{
|
|
"$id": "movies",
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"type": "object",
|
|
"required": [
|
|
"title",
|
|
"year"
|
|
],
|
|
"properties": {
|
|
"title": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"year": {
|
|
"type": "integer",
|
|
"minimum": 1900,
|
|
"maximum": 2030
|
|
},
|
|
"runtime": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"plot": {
|
|
"type": "string"
|
|
},
|
|
"poster": {
|
|
"type": "string"
|
|
},
|
|
"rating": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 10
|
|
},
|
|
"budget": {
|
|
"type": "string"
|
|
},
|
|
"director": {
|
|
"type": "string",
|
|
"x-relation": {
|
|
"collection": "people",
|
|
"type": "single"
|
|
}
|
|
},
|
|
"genres": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"x-relation": {
|
|
"collection": "genres",
|
|
"type": "multiple",
|
|
"maxItems": 5
|
|
}
|
|
}
|
|
}
|
|
} |