FlowMap

A crosswalk of flows from a source flow list to a target flow list.

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

mappings

A list of flow mappings from flows in a source flow list to flows in a target flow list.

source

The reference (id, name, description) of the source flow list.

  • Type: Ref
  • Proto-Index: 11

target

The reference (id, name, description) of the target flow list.

  • Type: Ref
  • Proto-Index: 12

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 FlowMap:
  id: str
  category: str
  description: str
  last_change: str
  mappings: List[FlowMapEntry]
  name: str
  source: Ref
  tags: List[str]
  target: Ref
  version: str