FlowProperty

A flow property is a quantity that can be used to express amounts of a flow.

Properties

@type

Inherited from Entity.@type

@id

Inherited from RefEntity.@id

name

Inherited from RefEntity.name

description

Inherited from RefEntity.description

category

Inherited from RootEntity.category

lastChange

Inherited from RootEntity.lastChange

tags

Inherited from RootEntity.tags

version

Inherited from RootEntity.version

flowPropertyType

The type of the flow property

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"
  }
}