mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 10:53:11 +09:00
25 lines
No EOL
953 B
JSON
25 lines
No EOL
953 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"id": "4-targChoiceSetFound.json",
|
|
"assertionType": "may",
|
|
"expectedResult": "valid",
|
|
"onUnexpectedResult" : "passAndContinue",
|
|
"errorMessage": "A Target may be a Choice or Set.",
|
|
"title": "Implements a **Choice or Set** as target - [model 3.2.7](https://www.w3.org/TR/annotation-model/#choice-of-bodies-and-targets)",
|
|
"description": "True when Choice or Set is a target. (Section 3.2.7)",
|
|
"type": "object",
|
|
"properties":
|
|
{
|
|
"target":
|
|
{
|
|
"oneOf": [
|
|
{ "$ref": "choiceSet.json#/definitions/choiceOrSetDetected" } ,
|
|
{ "type": "Array",
|
|
"minItems": 1,
|
|
"not":
|
|
{ "items": { "not": { "$ref": "choiceSet.json#/definitions/choiceOrSetDetected" } } }
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |