-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilterCatridge_schema.json
157 lines (157 loc) · 5.25 KB
/
filterCatridge_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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://industry-fusion.org/types/v0.1/filterCatridge",
"title": "Filter catridge template",
"description": "Properties for type filter catridge",
"type": "object",
"properties": {
"ifric_template_id": {
"type": "string",
"title": "IFRIC Template ID",
"description": "ID mapping for ECLASS",
"default": "No classification in ECLASS",
"readOnly": true
},
"creation_date": {
"type": "string",
"title": "Creation Date",
"description": "Date of the creation of asset"
},
"asset_status": {
"type": "string",
"title": "Asset Status",
"description": "State of the Asset in Fleet Manager",
"readOnly": true
},
"asset_category": {
"type": "string",
"title": "Asset Category",
"description": "Category of the asset"
},
"asset_manufacturer_name": {
"type": "string",
"title": "Asset Manufacturer Name",
"description": "The manufacturer of the asset"
},
"logo_manufacturer": {
"type": "object",
"title": "Logo Manufacturer",
"contentEncoding": "base64",
"contentMediaType": "image/png",
"description": "Logo of the manufacturer"
},
"product_name": {
"type": "string",
"title": "Product Name",
"description": "Name of the asset from the manufacturer"
},
"asset_serial_number": {
"type": "string",
"title": "Serial Number",
"description": "Serial number of asset"
},
"product_icon": {
"type": "object",
"title": "Product Icon",
"contentEncoding": "base64",
"contentMediaType": "image/png",
"description": "The production icon of the asset"
},
"manufacturing_year": {
"type": "number",
"title": "Year of manufacturing",
"description": "The manufacturer year of the asset"
},
"documentation": {
"type": "object",
"title": "Operating Manual",
"contentEncoding": "base64",
"contentMediaType": "application/pdf",
"description": "The legally required documentation for the machine"
},
"asset_communication_protocol": {
"type": "array",
"title": "Communication Protocol",
"description": "The communication protocol of the asset",
"enum": [
"opc-ua",
"mqtt",
"modbus",
"http"
]
},
"ce_marking": {
"type": "object",
"title": "CE-Marking",
"description": "The ce-marking of the asset",
"contentEncoding": "base64",
"contentMediaType": "application/pdf"
},
"height": {
"type": "number",
"title": "Height",
"description": "The height of the asset in millimeters",
"unit": "mm"
},
"width": {
"type": "number",
"title": "Width",
"description": "the width of the asset in millimeters",
"unit": "mm"
},
"length": {
"type": "number",
"title": "Length",
"description": "the length of the asset in millimeters",
"unit": "mm"
},
"weigth": {
"type": "number",
"title": "Weight",
"description": "the length of the asset in kilograms",
"unit": "kg"
},
"ambient_operating_temperature_min": {
"type": "number",
"title": "Ambient Operating Temperature (min.)",
"description": "The min temperature in °C",
"unit": "°C"
},
"ambient_operating_temperature_max": {
"type": "number",
"title": "Ambient Operating Temperature (max.)",
"description": "The max temperature in °C",
"unit": "°C"
},
"relative_humidity_min": {
"type": "number",
"title": "Relative Humidity (min.)",
"description": "The min humidity in percentage",
"unit": "%"
},
"relative_humidity_max": {
"type": "number",
"title": "Relative Humidity (max.)",
"description": "The max humidity in percentage",
"unit": "%"
},
"atmospheric_pressure_min": {
"type": "number",
"title": "Atmospheric Pressure (min.)",
"description": "The min pressure in mbar",
"unit": "mbar"
},
"atmospheric_pressure_max": {
"type": "number",
"title": "Atmospheric Pressure (max.)",
"description": "the max pressure in mbar",
"unit": "mbar"
},
"dustiness_max": {
"type": "number",
"title": "Dust Density (max.)",
"description": "The max dust density in mg/m³",
"unit": "mg/m³"
}
}
}