-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata-schema.json
53 lines (53 loc) · 1.77 KB
/
data-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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"title": "PerCollECT",
"description": "Perception Sensor Collaborative Cause and Effect Tree",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"description": "The unique identifier of the node",
"type": "string"
},
"parentIds": {
"description": "IDs of all direct parent nodes",
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
},
"title": {
"description": "Very short description of the effect or cause, that will be displayed directly in the visualization",
"type": "string"
},
"decomBlock": {
"description": "Associated decomposition block",
"type": "string",
"enum": ["Emission", "Signal propagation", "Reception", "Pre-processing", "Detection identification", "Feature identification", "Object identification"]
},
"description": {
"description": "Contains a more detailed explanation of the effect or cause",
"type": "string"
},
"references": {
"description": "Contains for every parent the first author, the title and the link to the literature item. Optionally a short note about the reference e.q. the page number of interest can be added",
"type": "string"
},
"nodeType": {
"description": "The unique identifier of the node",
"type": "string",
"enum": ["effect", "designParameter", "systemIndependent"]
},
"tags": {
"description": "Node tags for search",
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
}
},
"required": [ "id", "parentIds", "title", "decomBlock", "description", "references", "nodeType"]
}
}