View on GitHub

SHOP4CF Data Models

Documentation of FIWARE data models used in SHOP4CF

Person

Person is a human (human worker) who can perform a step in manufacturing.

{
    "id": "urn:ngsi-ld:Person:company-xyz:worker-xqi7wnx",
    "type": "Person",
    "firstName": {
        "type": "Property",
        "value": "John"
    },
    "lastName": {
        "type": "Property",
        "value": "Smith"
    },
    "status": {
        "type": "Property",
        "value": "available",
        "observedAt": "2020-12-01T11:23:19Z"
    },
    "isSpecifiedBy": {
        "type": "Property",
        "value": [
            {
                "type": "Relationship",
                "object": "urn:ngsi-ld:ResourceSpecification:company-xyz:any-operator"
            },
            {
                "type": "Relationship",
                "object": "urn:ngsi-ld:ResourceSpecification:company-xyz:operator-with-high-voltage-privileges"
            }
        ]
    },
    "@context": [
        "https://smartdatamodels.org/context.jsonld",
        "https://raw.githubusercontent.com/shop4cf/data-models/master/docs/shop4cfcontext.jsonld"
    ]
}

Further notes on the attributes: