Improve and connect RNA Adapter

This commit is contained in:
Damien Le Thiec 2022-09-22 17:13:53 +02:00
parent 2791871c9a
commit 542c5b518f
6 changed files with 147 additions and 29 deletions

View file

@ -0,0 +1,33 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://demarches-simplifiees.fr/association.schema.json",
"title": "Association",
"type": "object",
"properties": {
"association_titre": {
"type": "string"
},
"association_objet": {
"type": "string"
},
"association_rna": {
"type": "string"
},
"association_date_creation": {
"type": "string",
"format": "date"
},
"association_date_declaration": {
"type": "string",
"format": "date"
},
"association_date_publication": {
"type": "string",
"format": "date"
}
},
"required": [
"association_titre",
"association_rna"
]
}