24 lines
379 B
JSON
24 lines
379 B
JSON
{
|
|
"$id": "cuisines",
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"type": "object",
|
|
"required": [
|
|
"name",
|
|
"region"
|
|
],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"region": {
|
|
"type": "string"
|
|
},
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"flag": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
} |