IndustryFusion / DigitalTwin

This repository contains the ingredients for the Digital Twin Concept of Industry Fusion.
Apache License 2.0
31 stars 19 forks source link

Create example data: NGSI-LD #190

Closed wagmarcel closed 10 months ago

wagmarcel commented 2 years ago

[ { "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld", "id": "urn:plasmacutter:1", "type": "https://industry-fusion.com/types/v0.9/plasmacutter", "https://industry-fusion.com/types/v0.9/state": { "type": "Property", "value": { "@id": "https://industry-fusion.com/types/v0.9/state_OFF" } }, "https://industry-fusion.com/types/v0.9/hasWorkpiece": { "type": "Relationship", "object": "urn:workpiece:1" }, "https://industry-fusion.com/types/v0.9/hasFilter": { "type": "Relationship", "object": "urn:filter:1" } }, { "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld", "id": "urn:filter:1", "type": "https://industry-fusion.com/types/v0.9/filter", "https://industry-fusion.com/types/v0.9/state": { "type": "Property", "value": { "@id": "https://industry-fusion.com/types/v0.9/state_ON" } }, "https://industry-fusion.com/types/v0.9/strength": { "type": "Property", "value": "1.0" }, "https://industry-fusion.com/types/v0.9/hasCartridge": { "type": "Relationship", "object": "urn:filterCartridge:1" } }, { "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld", "id": "urn:workpiece:1", "type": "https://industry-fusion.com/types/v0.9/workpiece", "https://industry-fusion.com/types/v0.9/material": { "type": "Property", "value": { "@value": "1.4301", "@type": "iff:steelGrade" } }, "https://schema.org/depth": { "type": "Property", "unitCode": "MMT", "value": "249" }, "https://schema.org/height": { "type": "Property", "value": "100", "unitCode": "MMT" }, "https://schema.org/weight": { "type": "Property", "value": "10000", "unitCode": "GRM" }, "https://schema.org/width": { "type": "Property", "value": "100", "unitCode": "MMT" } }, { "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld", "id": "urn:filterCartridge:1", "type": "https://industry-fusion.com/types/v0.9/filterCartridge", "https://industry-fusion.com/types/v0.9/inUseFrom": { "type": "Property", "value": "2021-10-25 13:51:51.0" }, "https://industry-fusion.com/types/v0.9/inUseUntil": { "type": "Property", "value": "2021-10-25 13:54:55.4" }, "https://industry-fusion.com/types/v0.9/wasteClass": [{ "type": "Property", "value": { "@id": "https://industry-fusion.com/types/v0.9/WC3"}

    }]
  },
  {
    "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld",
    "id": "urn:lasercutter:1",
    "type": "https://industry-fusion.com/types/v0.9/lasercutter",
    "https://industry-fusion.com/types/v0.9/state": {
      "type": "Property",
      "value": {
        "@id": "https://industry-fusion.com/types/v0.9/state_PREPARING"
      }
    },
    "https://industry-fusion.com/types/v0.9/hasWorkpiece": {
      "type": "Relationship",
      "object": "urn:workpiece:2"
    },
    "https://industry-fusion.com/types/v0.9/hasFilter": {
      "type": "Relationship",
      "object": "urn:filter:2"
    }
  },
  {
    "@context": "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld",
    "id": "urn:filter:2",
    "type": "https://industry-fusion.com/types/v0.9/filter",
    "https://industry-fusion.com/types/v0.9/state": {
      "type": "Property",
      "value": {
        "@id": "https://industry-fusion.com/types/v0.9/state_OFF"
      }
    },
    "https://industry-fusion.com/types/v0.9/strength": {
      "type": "Property",
      "value": "1.0"
    },
    "https://industry-fusion.com/types/v0.9/hasCartridge": {
      "type": "Relationship",
      "object": "urn:filterCartridge:2"
    }
  }

]