You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
563 B
20 lines
563 B
{ |
|
"$schema": "http://json-schema.org/schema#", |
|
"title": "Fichier d'import d'une liste de types de plugin", |
|
"description": "Règles de validation du fichier JSON d'import d'une liste de types de plugin", |
|
"definitions": { |
|
"type_plugin": { |
|
"type": "object", |
|
"properties": { |
|
"identifiant": { "type": "string" }, |
|
"titre": { "type": "string" }, |
|
"descriptif": { "type": "string" } |
|
}, |
|
"required": ["identifiant", "titre"] |
|
} |
|
}, |
|
"type": "array", |
|
"items": { |
|
"$ref": "#/definitions/type_plugin" |
|
} |
|
}
|
|
|