movies-app/.gitapp/schemas/people.json

27 lines
431 B
JSON

{
"$id": "people",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"bio": {
"type": "string"
},
"birthDate": {
"type": "string",
"format": "date"
},
"photo": {
"type": "string"
},
"knownFor": {
"type": "string"
}
}
}