Newer
Older
In the following code block, you can see an exemplary JSON schema of a QCF file, which can be used for the quality control of an
additively manufactured object. It defines customizations and requirements. The schema may look different for other
processes and application areas.
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "JSON schema quality control lotsize 1",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"cad_model": {
"type": "string"
},
"manufacturing_profile": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"vendor": {
"type": "string"
},
"weight": {
"type": "string"
},
"material_kind": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"processing_temp": {
"type": "number"
}
},
"required": [
"id",
"name",
"processing_temp"
]
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
},
"id": {
"id",
"material",
"layer_height",
"scale_settings",
"nozzle_diameter"
"type": "object",
"properties": {
"id": {
"type": "string"
},
"content": {
"type": "string"
},
"position": {
"type": "array",
"items": {
"type": "number"
}
},
"customization_kind": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"required": [
"id",
"content",
"position",
"customization_kind"
]
}
},
"scan": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
"unit": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"factor_to_m": {
"type": "number"
}
},
"required": [
"id",
"name",
"factor_to_m"
]
},
"model": {
"type": "string"
},
"vendor": {
"type": "string"
},
"model_no": {
},
"file_type": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name"
]
"unit",
"model",
"vendor",
"model_no",
"file_type"
"type": "object",
"properties": {
"id": {
"type": "string"
},
"requirement_type": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"position": {
"type": "array",
"items": {
"type": "number"
}
},
"direction": {
"type": "array",
"items": {
"type": "number"
}
},
"required": [
"id",
"name",
"position",
"direction"
]
"cad_model",
"manufacturing_profile",
"customization",
"scan",
"requirements"
]