@tricoteuses/assemblee
Version:
Retrieve, clean up & handle French Assemblée nationale's open data
75 lines (72 loc) • 1.72 kB
JSON
{
"title": "Contenu de la séance du débat.",
"type": "object",
"properties": {
"finSeance": {
"properties": {
"point": {
"$ref": "Point.json"
}
},
"type": "object",
"required": [
"point"
]
},
"ouvertureSeance": {
"anyOf": [
{
"$ref": "Point.json"
},
{
"items": {
"$ref": "Point.json"
},
"type": "array"
}
]
},
"paragraphe": {
"items": {
"$ref": "Point.json"
},
"type": "array"
},
"point": {
"anyOf": [
{
"$ref": "Point.json"
},
{
"items": {
"$ref": "Point.json"
},
"type": "array"
}
]
},
"quantiemes": {
"properties": {
"journee": {
"type": "string"
},
"session": {
"type": "string"
}
},
"type": "object",
"required": [
"journee",
"session"
]
}
},
"required": [
"quantiemes",
"ouvertureSeance",
"point"
],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "Contenu.json",
"$$target": "Contenu.json"
}