Source

A source is a literature reference.

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

externalFile

A direct link (relative or absolute URL) to the source file.

textReference

The full text reference of the source.

url

A URL that points to the source.

year

The publication year of the source.

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 Source:
  id: str
  category: str
  description: str
  external_file: str
  last_change: str
  name: str
  tags: List[str]
  text_reference: str
  url: str
  version: str
  year: int