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.
19 lines
545 B
19 lines
545 B
{ |
|
"$schema": "http://json-schema.org/schema#", |
|
"title": "Fichier d'import d'une liste d'affectations type de plugin-plugin", |
|
"description": "Règles de validation du fichier JSON d'import d'une liste d'affectations type de plugin-plugin", |
|
"definitions": { |
|
"affectation": { |
|
"type": "object", |
|
"properties": { |
|
"type": { "type": "string" }, |
|
"prefixe": { "type": "string" } |
|
}, |
|
"required": ["type", "prefixe"] |
|
} |
|
}, |
|
"type": "array", |
|
"items": { |
|
"$ref": "#/definitions/affectation" |
|
} |
|
}
|
|
|