27 lines
579 B
JSON
27 lines
579 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"description": "Nom du scrutin",
|
|
"type": "string"
|
|
},
|
|
"desc": {
|
|
"description": "Description",
|
|
"type": ["string", "null"]
|
|
},
|
|
"activity_see": {
|
|
"description": "Activité à laquelle il faut être inscrit pour voir le scrutin",
|
|
"type": ["integer", "null"]
|
|
},
|
|
"question": {
|
|
"description": "Question",
|
|
"type": "string"
|
|
},
|
|
"votes": {
|
|
"description": "Votes",
|
|
"type": ["array", "null"]
|
|
}
|
|
},
|
|
"required": ["name", "question"]
|
|
} |