2
我在兩個數組都有模式中有兩個屬性。我想比較一下它們的長度是否相等。JSON Schema將兩個屬性比較爲相等長度數組
例如:
schema.json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"thing": {
"type": "object",
"properties": {
"fields": {
"type": "array",
"items": {}
},
"values": {
"type": "array",
"items": {}
}
},
"required": ["fields", "values"]
}
}
}
data.json
{
"thing": {
"fields:": ["age", "sex", "location"],
"values:": [25, "Male", "Cape Town"]
}
}
我想是比較該字段和值都在架構相同的長度。我會怎麼做?