mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 20:03:08 +09:00
23 lines
No EOL
1.2 KiB
JSON
23 lines
No EOL
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"id": "4-targSpecificResourceNoValue.json",
|
|
"assertionType": "must",
|
|
"expectedResult": "valid",
|
|
"onUnexpectedResult" : "failAndContinue",
|
|
"errorMessage": "An Specific Resource target cannot include a value key. value key is only valid with Specific Resources.",
|
|
"title": "If a **Specific Resource** is a target, it does NOT have a **_value_ key** - [model 4](https://www.w3.org/TR/annotation-model/#specific-resources)",
|
|
"description": "True when no Specific Resource targets or when none of the Specific Resource targets include the value key. (Section 4)",
|
|
"type": "object",
|
|
"properties":
|
|
{
|
|
"target":
|
|
{
|
|
"allOf": [
|
|
{ "not": { "$ref": "specificResource.json#/definitions/specificResourceWithValue" } },
|
|
{ "items": { "not": { "$ref": "specificResource.json#/definitions/specificResourceWithValue" } } },
|
|
{ "not": { "$ref": "specificResource.json#/definitions/itemSRWithValue" } },
|
|
{ "items": { "not": { "$ref": "specificResource.json#/definitions/itemSRWithValue" } } }
|
|
]
|
|
}
|
|
}
|
|
} |