Actor

An actor is a person or organisation.

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

address

city

country

email

telefax

telephone

website

zipCode

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 Actor:
  id: str
  address: str
  category: str
  city: str
  country: str
  description: str
  email: str
  last_change: str
  name: str
  tags: List[str]
  telefax: str
  telephone: str
  version: str
  website: str
  zip_code: str