-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathagrifood-schema.json
30 lines (30 loc) · 1.07 KB
/
agrifood-schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://smart-data-models.github.io/dataModel.Agrifood/agrifood-schema.json",
"title": "AgriFood Commons schema",
"description": "Common definitions to describe agri food data models",
"definitions": {
"AgriFood-Commons": {
"type": "object",
"properties": {
"relatedSource": {
"type": "array",
"description": "Property. List of IDs the current entity may have in external applications",
"items": {
"type": "object",
"properties": {
"application": {
"$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/EntityIdentifierType",
"description": "Relationship. Identifier of the entity describing the external application"
},
"applicationEntityId": {
"type": "string",
"description": "Property. Identifier in the external application"
}
}
}
}
}
}
}
}