Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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

library

Inherited from RootEntity.library

otherProperties

Inherited from RootEntity.otherProperties

  • Type: optional JsonObject (an arbitrary JSON object for custom extensions)
  • Proto-Index: 1000

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
  library: str
  mappings: List[FlowMapEntry]
  name: str
  other_properties: Dict[str, Any]
  source: Ref
  tags: List[str]
  target: Ref
  version: str