mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
113 lines
No EOL
3.5 KiB
JSON
113 lines
No EOL
3.5 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"id": "4.3.2-requestHeaderStateState.json",
|
|
"assertionType": "may",
|
|
"expectedResult": "valid",
|
|
"onUnexpectedResult" : "passAndContinue",
|
|
"errorMessage": "The description of a Specific Resource may include requestHeaderState State .",
|
|
"title": "Implements **Specific Resource Request Header State** - [model 4.3.2](https://www.w3.org/TR/annotation-model/#request-header-state)",
|
|
"description": "True when Annotation includes one or more Specific Resources, one or more of which includes a requestHeaderState State. (Section 4.3.2)",
|
|
"type": "object",
|
|
"anyOf":
|
|
[
|
|
{ "properties":
|
|
{ "body":
|
|
{ "oneOf":
|
|
[
|
|
{ "type": "object",
|
|
"oneOf":
|
|
[
|
|
{ "$ref": "#/definitions/stateSchema" },
|
|
{ "$ref": "#/definitions/itemSchema" }
|
|
]
|
|
},
|
|
{ "type": "array",
|
|
"minItems": 1,
|
|
"not":
|
|
{ "items":
|
|
{ "not":
|
|
{ "oneOf":
|
|
[
|
|
{ "$ref": "#/definitions/stateSchema" },
|
|
{ "$ref": "#/definitions/itemSchema" }
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"required": [ "body" ]
|
|
},
|
|
{ "properties":
|
|
{ "target":
|
|
{ "oneOf":
|
|
[
|
|
{ "type": "object",
|
|
"oneOf":
|
|
[
|
|
{ "$ref": "#/definitions/stateSchema" },
|
|
{ "$ref": "#/definitions/itemSchema" }
|
|
]
|
|
},
|
|
{ "type": "array",
|
|
"minItems": 1,
|
|
"not":
|
|
{ "items":
|
|
{ "not":
|
|
{ "oneOf":
|
|
[
|
|
{ "$ref": "#/definitions/stateSchema" },
|
|
{ "$ref": "#/definitions/itemSchema" }
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"required": [ "target" ]
|
|
}
|
|
],
|
|
"definitions":
|
|
{
|
|
"stateSchema":
|
|
{ "type": "object",
|
|
"properties":
|
|
{ "state":
|
|
{ "oneOf":
|
|
[
|
|
{ "type": "object",
|
|
"$ref": "specificResource.json#/definitions/requestHeaderStateDetected"
|
|
},
|
|
{ "type": "array",
|
|
"minItems": 1,
|
|
"not":
|
|
{ "items":
|
|
{ "not": { "$ref": "specificResource.json#/definitions/requestHeaderStateDetected" } }
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"required": [ "state" ]
|
|
},
|
|
|
|
"itemSchema":
|
|
{ "type": "object",
|
|
"properties":
|
|
{ "items":
|
|
{ "type": "array",
|
|
"minItems": 1,
|
|
"not":
|
|
{ "items":
|
|
{ "not": { "$ref": "#/definitions/stateSchema" } }
|
|
}
|
|
}
|
|
},
|
|
"required": [ "items" ]
|
|
}
|
|
}
|
|
} |