mirror of
https://github.com/soulaklabs/bitoduc.fr.git
synced 2025-12-08 17:13:23 +00:00
32 lines
937 B
JSON
32 lines
937 B
JSON
{ "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",
|
|
"nom commun",
|
|
"nom propre",
|
|
"proposition",
|
|
"verbe"
|
|
]
|
|
},
|
|
"genre": {
|
|
"type": "string",
|
|
"enum": ["f", "m", "n"]
|
|
},
|
|
"pluriel": {"type": "boolean"}
|
|
},
|
|
"required": ["anglais", "français", "classe"]
|
|
}
|
|
}
|
|
}
|