Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added models from KITT4SME project into Smart Manufacturing #139

Merged
merged 7 commits into from
Nov 24, 2023
Merged
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
{
"id": "urn:ngsi-ld:Shop floor:001",
"type": "Machine",
"equipmentDevice": {
"name": "",
"deviceProperties": {
"properties": {}
},
"devicePosition": {
"x": 0,
"y": 0,
"z": 0
},
"description": ""
},
"qualityKPIs": {
"value": {
"perc_ok_welding_points": "val",
"tbd": "val"
},
"type": "StructuredValue"
},
"detectedAnomalies": {
"value": {
"anom_1": "val",
"anom_2": "val"
},
"type": "StructuredValue"
},
"mlPredictionValues": {
"value": {
"pred_1": "val",
"pred_2": "val"
},
"type": "StructuredValue"
},
"BarCode": {
"value": "scanned Barcode of battery",
"type": "string"
},
"Face": {
"value": "1st",
"type": "string"
},
"Cell": {
"value": "1st",
"type": "string"
},
"Point": {
"value": "Point of battery pack",
"type": "string"
},
"Group": {
"value": "A-E1",
"type": "string"
},
"WeldCounter": {
"value": 5,
"type": "integer"
},
"OutputJoules": {
"value": 10.0,
"type": "Double"
},
"Charge": {
"value": 10.0,
"type": "Double"
},
"Residue": {
"value": 10.0,
"type": "Double"
},
"ForceLN": {
"value": 10.0,
"type": "Double"
},
"ForceLN1": {
"value": 10.0,
"type": "Double"
},
"timestamp": {
"type": "StructuredValue",
"value": {
"dateTime": "2022-10-12T18:01:10.120Z",
"format": "YYYY-MM-DDThh:mm:ss.zzzZ",
"timezoneId": "UTC"
}
},
"metadata": {}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"id": "urn:ngsi-ld:Shop floor:001",
"type": "Machine",
"equipmentDevice": {
"name": "",
"deviceProperties": {
"properties": {}
},
"devicePosition": {
"x": 0,
"y": 0,
"z": 0
},
"description": ""
},
"qualityKPIs": {
"perc_ok_welding_points": "val",
"tbd": "val"
},
"detectedAnomalies": {

"anom_1": "val",
"anom_2": "val"
},
"mlPredictionValues": {

"pred_1": "val",
"pred_2": "val"
},
"BarCode": "scanned Barcode of battery",

"Face": "1st",
"Cell": "1st",

"Point": "Point of battery pack",

"Group":"A-E1",

"WeldCounter": 5,

"OutputJoules": 10.0,
"Charge": 10.0,
"Residue": 10.0,
"ForceLN": 10.0,
"ForceLN1": 10.0,
"timestamp": {
"dateTime": "2022-10-12T18:01:10.120Z",
"format": "YYYY-MM-DDThh:mm:ss.zzzZ",
"timezoneId": "UTC"

},
"metadata": {}
}
7 changes: 7 additions & 0 deletions SMARTMANUFACTURING/KITT4SME/BatteryManufacturing/notes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
notesHeader:

notesMiddle:

notesFooter:

notesReadme: Battery manufacturing data model used in the KITT4SME project. https://kitt4sme.eu/
186 changes: 186 additions & 0 deletions SMARTMANUFACTURING/KITT4SME/BatteryManufacturing/schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,186 @@
{
"$schema": "http://json-schema.org/schema#",
"$schemaVersion": "0.0.1",
"modelTags": "",
"derivedFrom": "",
"license": "",
"$id": "https://smart-data-models.github.io/XXXsubjectXXX/XXXdataModelXXX/schema.json",
"title": "",
"description": "",
"type": "object",
"allOf": [
{
"$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/GSMA-Commons"
},
{
"$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/Location-Commons"
},
{
"properties": {
"type": {
"description": "Property. NGSI Entity type.",
"enum": [
"Machine"
]
},
"equipmentDevice": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Property. The name of this item"
},
"deviceProperties": {
"type": "object",
"properties": {
"properties": {
"type": "object",
"properties": {},
"description": "Property. "
}
},
"description": "Property. "
},
"devicePosition": {
"type": "object",
"properties": {
"x": {
"type": "number",
"description": "Property. "
},
"y": {
"type": "number",
"description": "Property. "
},
"z": {
"type": "number",
"description": "Property. "
}
},
"description": "Property. "
},
"description": {
"type": "string",
"description": "Property. A description of this item"
}
},
"description": "Property. "
},
"qualityKPIs": {
"type": "object",
"properties": {
"perc_ok_welding_points": {
"type": "string",
"description": "Property. "
},
"tbd": {
"type": "string",
"description": "Property. "
}
},
"description": "Property. "
},
"detectedAnomalies": {
"type": "object",
"properties": {
"anom_1": {
"type": "string",
"description": "Property. "
},
"anom_2": {
"type": "string",
"description": "Property. "
}
},
"description": "Property. "
},
"mlPredictionValues": {
"type": "object",
"properties": {
"pred_1": {
"type": "string",
"description": "Property. "
},
"pred_2": {
"type": "string",
"description": "Property. "
}
},
"description": "Property. "
},
"BarCode": {
"type": "string",
"description": "Property. "
},
"Face": {
"type": "string",
"description": "Property. "
},
"Cell": {
"type": "string",
"description": "Property. "
},
"Point": {
"type": "string",
"description": "Property. "
},
"Group": {
"type": "string",
"description": "Property. "
},
"WeldCounter": {
"type": "number",
"description": "Property. "
},
"OutputJoules": {
"type": "number",
"description": "Property. "
},
"Charge": {
"type": "number",
"description": "Property. "
},
"Residue": {
"type": "number",
"description": "Property. "
},
"ForceLN": {
"type": "number",
"description": "Property. "
},
"ForceLN1": {
"type": "number",
"description": "Property. "
},
"timestamp": {
"type": "object",
"properties": {
"dateTime": {
"type": "string",
"format": "date-time",
"description": "Property. "
},
"format": {
"type": "string",
"description": "Property. Format of the output"
},
"timezoneId": {
"type": "string",
"description": "Property. "
}
},
"description": "Property. "
},
"metadata": {
"type": "object",
"properties": {},
"description": "Property. "
}
}
}
],
"required": [
"id",
"type"
]
}
Loading
Loading