1{
2  "$schema": "http://json-schema.org/draft-04/schema#",
3  "id": "3.3.2-collectionCreatorAgentIdImplemented.json",
4  "assertionType": "may",
5  "expectedResult": "valid",
6  "onUnexpectedResult" : "passAndContinue",
7  "errorMessage": "Id for Annotation Collection Creator (Agent) not found or more than 1 found. Agents should have exactly one id of format uri.",
8  "title": "Implements Annotation Collection-level creator (Agent) **_id_ key** with **single value** that is a **string of format uri** - [model 3.2.2](https://www.w3.org/TR/annotation-model/#agents)",
9  "description": "True when type for Annotation Collection Creator (Agent) has exactly one id (Section 3.3.2)",
10  "properties":
11  {  "creator":
12    { "oneOf":
13      [
14      { "$ref": "id.json#/definitions/idValueFound" },
15      { "type": "array",
16        "minItems": 1,
17        "not":
18        { "items": { "not": { "$ref": "id.json#/definitions/idValueFound" } } }
19      }
20      ]
21    }
22  },
23  "required": ["creator"]
24}
25