mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 20:18:16 +00:00
28 lines
610 B
JSON
28 lines
610 B
JSON
|
|
{
|
|
"type": "array",
|
|
"description": "List of characters in the movie",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "Name of the character"
|
|
},
|
|
"actor": {
|
|
"type": "string",
|
|
"description": "Actor who portrays the character"
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"description": "Brief description of the character"
|
|
}
|
|
},
|
|
"required": [
|
|
"name",
|
|
"actor",
|
|
"description"
|
|
]
|
|
}
|
|
}
|