mirror of
https://github.com/soulaklabs/bitoduc.fr.git
synced 2025-12-09 09:33:23 +00:00
déplacement des fichiers d'intégration continue dans un répertoire dédié
This commit is contained in:
38
vérifications/schéma.json
Normal file
38
vérifications/schéma.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{ "type": "object",
|
||||
"properties": {
|
||||
"faux mots": {
|
||||
"type": "array",
|
||||
"items": {"$ref": "#/definitions/mot"}
|
||||
},
|
||||
"vrais mots": {
|
||||
"type": "array",
|
||||
"items": {"$ref": "#/definitions/mot"}
|
||||
}
|
||||
},
|
||||
"definitions": {
|
||||
"mot": {
|
||||
"type": "object",
|
||||
"properties":
|
||||
{
|
||||
"anglais": {"type": "string"},
|
||||
"français": {"type": "string"},
|
||||
"classe": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"adjectif",
|
||||
"groupe nominal",
|
||||
"groupe verbal",
|
||||
"proposition",
|
||||
"verbe"
|
||||
]
|
||||
},
|
||||
"genre": {
|
||||
"type": "string",
|
||||
"enum": ["f", "m"]
|
||||
},
|
||||
"pluriel": {"type": "boolean"}
|
||||
},
|
||||
"required": ["anglais", "français", "classe"]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user