FlowProperty
A flow property is a quantity that can be used to express amounts of a flow.
Properties
@type
Inherited from Entity.@type
- Type:
string
(external doc) - Proto-Index: 1
@id
Inherited from RefEntity.@id
- Type:
string
(external doc) - Proto-Index: 2
name
Inherited from RefEntity.name
- Type:
string
(external doc) - Proto-Index: 3
description
Inherited from RefEntity.description
- Type:
string
(external doc) - Proto-Index: 4
category
Inherited from RootEntity.category
- Type:
string
(external doc) - Proto-Index: 5
lastChange
Inherited from RootEntity.lastChange
- Type:
dateTime
(external doc) - Proto-Index: 6
tags
Inherited from RootEntity.tags
- Type:
List
ofstring
(external doc) - Proto-Index: 7
version
Inherited from RootEntity.version
- Type:
string
(external doc) - Proto-Index: 8
flowPropertyType
The type of the flow property
- Type: FlowPropertyType
- Proto-Index: 10
unitGroup
The units of measure that can be used to express quantities of the flow property.
Python class stub
The snippet below shows the names of the properties of the corresponding Python class of the olca-schema package. Note that this is not the full class definition but just shows the names of the class and its properties.
@dataclass
class FlowProperty:
id: str
category: str
description: str
flow_property_type: FlowPropertyType
last_change: str
name: str
tags: List[str]
unit_group: Ref
version: str
JSON example
{
"@type": "FlowProperty",
"@id": "93a60a56-a3c8-11da-a746-0800200b9a66",
"name": "Mass",
"category": "Technical flow properties",
"flowPropertyType": "PHYSICAL_QUANTITY",
"unitGroup": {
"@type": "UnitGroup",
"@id": "93a60a57-a4c8-11da-a746-0800200c9a66",
"name": "Units of mass"
}
}