{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://example.com/root.json",
"type": "array",
"items": {
"$id": "#/items",
"type": "object",
"required": [
"liste",
"pourcentSuffrageCantonal",
"carteSuffrageListe"
],
"properties": {
"liste": {
"$id": "#/items/properties/liste",
"type": "object",
"required": [
"id",
"noDepot"
],
"properties": {
"id": {
"$id": "#/items/properties/liste/properties/id",
"type": "integer",
"examples": [
400201
]
},
"noDepot": {
"$id": "#/items/properties/liste/properties/noDepot",
"type": "integer",
"examples": [
1
]
}
}
},
"pourcentSuffrageCantonal": {
"$id": "#/items/properties/pourcentSuffrageCantonal",
"type": "number",
"examples": [
6.2
]
},
"carteSuffrageListe": {
"$id": "#/items/properties/carteSuffrageListe",
"type": "array",
"items": {
"$id": "#/items/properties/carteSuffrageListe/items",
"type": "object",
"required": [
"local",
"pourcentSuffrageListe",
"deltaCantonPourcentSuffrageListe"
],
"properties": {
"local": {
"$id": "#/items/properties/carteSuffrageListe/items/properties/local",
"type": "object",
"required": [
"id",
"nom"
],
"properties": {
"id": {
"$id": "#/items/properties/carteSuffrageListe/items/properties/local/properties/id",
"type": "integer",
"examples": [
100
]
},
"nom": {
"$id": "#/items/properties/carteSuffrageListe/items/properties/local/properties/nom",
"type": "string",
"examples": [
"Aire-la-Ville"
],
"pattern": "^(.*)$"
}
}
},
"pourcentSuffrageListe": {
"$id": "#/items/properties/carteSuffrageListe/items/properties/pourcentSuffrageListe",
"type": "number",
"examples": [
6.2
]
},
"deltaCantonPourcentSuffrageListe": {
"$id": "#/items/properties/carteSuffrageListe/items/properties/deltaCantonPourcentSuffrageListe",
"type": "integer",
"examples": [
100
]
}
}
}
}
}
}
}