exampleTarget.json (509B)
1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "Check if target feature implemented", 4 "description": "'There must be 1 or more target relationships associated with an Annotation.' (Section 3.1)", 5 "assertionType": "must", 6 "expectedResult": "valid", 7 "errorMessage": "Error: Annotation has no target relationships - at least 1 is required. (Section 3.1)", 8 "type": "object", 9 "properties": { 10 "target": { "type": ["string", "array", "object"] } 11 }, 12 "required": ["target"] 13 }