Ajout du validateur json + correctif factory metadata
This commit is contained in:
23
lib/All/json-schema-validator/test/issue-96/schema.json
Normal file
23
lib/All/json-schema-validator/test/issue-96/schema.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"$id": "http://xxx.local/schemas/mySchema.json",
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"definitions": {
|
||||
"topDef": {
|
||||
"$id": "#topDef_ref",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "integer",
|
||||
"maximum": 100
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"top": {
|
||||
"$ref": "#/definitions/topDef"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user