La mia stringa JSON sarebbe essere formattato come:Come scrivere uno schema JSON per array di oggetti?
{
"count":3,
"data":[
{
"a":{"ax":1}
},
{
"b":{"bx":2}
},
{
"c":{"cx":4}
}
]
}
L'array data
contiene molti a
e b
e c
. E nessun altro tipo di oggetti.
Se count==0
, data
deve essere un array vuoto []
.
Sto usando https://github.com/hoxworth/json-schema per convalidare tali oggetti JSON in Ruby.
require 'rubygems'
require 'json-schema'
p JSON::Validator.fully_validate('schema.json',"test.json")
Il schema.json
è:
{
"type":"object",
"$schema": "http://json-schema.org/draft-03/schema",
"required":true,
"properties":{
"count": { "type":"number", "id": "count", "required":true },
"data": { "type":"array", "id": "data", "required":true,
"items":[
{ "type":"object", "required":false, "properties":{ "a": { "type":"object", "id": "a", "required":true, "properties":{ "ax": { "type":"number", "id": "ax", "required":true } } } } },
{ "type":"object", "required":false, "properties":{ "b": { "type":"object", "id": "b", "required":true, "properties":{ "bx": { "type":"number", "id": "bx", "required":true } } } } },
{ "type":"object", "required":false, "properties":{ "c": { "type":"object", "id": "c", "required":true, "properties":{ "cx": { "type":"number", "id": "cx", "required":true } } } } }
]
}
}
}
Ma questo per test.json
passerà la convalida, mentre suppongo che dovrebbe fallire:
{
"count":3,
"data":[
{
"a":{"ax":1}
},
{
"b":{"bx":2}
},
{
"c":{"cx":2}
},
{
"c": {"z":"aa"}
}
]
}
E questo come test.json
fallirà, mentre suppongo dovrebbe passare:
{
"count":3,
"data":[
{
"a":{"ax":1}
},
{
"b":{"bx":2}
}
]
}
Sembra che lo schema errato convalidi che l'array data
contiene a,b,c
una volta.
Quale deve essere lo schema corretto?
@Phrogz Ho aggiornato la questione. Puoi vedere l'esempio. –