A product system describes the supply chain of a product (the functional unit) ...
~
Properties:
processes | List[Ref] | The descriptors of all processes and sub-systems that are contained in the product system. |
referenceProcess | Ref[Process] | The descriptor of the process that provides the flow of the functional unit of the product system. |
referenceExchange | ExchangeRef | The exchange of the reference processes (typically the product output) that provides the flow of the functional unit of the product system. |
targetAmount | double | The flow amount of the functional unit of the product system. |
targetUnit | Ref[Unit] | The unit in which the flow amount of the functional unit is given. |
targetFlowProperty | Ref[FlowProperty] | The flow property in which the flow amount of the functional unit is given. |
processLinks | List[ProcessLink] | The process links of the product system. |
parameterSets | List[ParameterRedefSet] | A list of possible sets of parameter redefinitions for this product system. |
~
Properties from CategorizedEntity:
category | Ref[Category] | The category of the entity. |
tags | List[string] | A list of optional tags. A tag is just a string which should not contain commas (and other special characters). |
library | string | If this entity is part of a library, this field contains the identifier of that library. The identifier is typically just the combination of the library name and version. |
~
Properties from RootEntity:
name | string | The name of the entity. |
description | string | The description of the entity. |
version | string | A version number in MAJOR.MINOR.PATCH format where the MINOR and PATCH fields are optional and the fields may have leading zeros (so 01.00.00 is the same as 1.0.0 or 1). |
lastChange | dateTime | The timestamp when the entity was changed the last time. |
~
JSON-LD Example
{ "@context": "http://greendelta.github.io/olca-schema/context.jsonld", "@type": "ProductSystem", "@id": "e673be33-b071-4ba2-9097-5b77a9c3ced2", "name": "Ingot casting", "description": "", "version": "01.00.000", "referenceProcess": { "@type": "Process", "@id": "55fd27b1-c73d-4a76-b560-cfc461e81efd", "name": "Ingot casting" }, "referenceExchange": { "@type": "Exchange", "@id": "e4649009-ddb9-3c85-be99-1d635ffd3030" }, "targetFlowProperty": { "@type": "FlowProperty", "@id": "93a60a56-a3c8-11da-a746-0800200b9a66", "name": "Mass" }, "targetUnit": { "@type": "Unit", "@id": "20aadc24-a391-41cf-b340-3e4529f44bde", "name": "kg" }, "targetAmount": 1.0, "processes": [ { "@type": "Process", "@id": "55fd27b1-c73d-4a76-b560-cfc461e81efd", "name": "Ingot casting" }, { "@type": "Process", "@id": "41b31d77-5223-47a1-a24a-153ac1a9f670", "name": "Electrolysis" } ], "processLinks": [ { "@type": "ProcessLink", "provider": { "@type": "Process", "@id": "41b31d77-5223-47a1-a24a-153ac1a9f670", "name": "Electrolysis" }, "flow": { "@type": "Flow", "@id": "b55f8bd2-404d-4830-b053-4731e36668b9", "name": "liquid aluminium" }, "process": { "@type": "Process", "@id": "55fd27b1-c73d-4a76-b560-cfc461e81efd", "name": "Ingot casting" }, "exchange": { "@type": "Exchange", "@id": "1c2dd916-8c4e-3e1a-bdfc-4e4b214b97b3" } } ] }