Person#

class technote.metadata.model.Person(*, name, email=None, affiliations=<factory>, orcid=None, internal_id=None)#

Bases: object

The domain model for a person (e.g. an author).

Parameters:

Attributes Summary

affiliations

The institutions the person is affiliated with.

email

The email address of the person.

internal_id

An internal/institutional identifier for a person.

name

The name of the person.

orcid

The ORCiD ID (URL) of the person.

Attributes Documentation

affiliations: list[Organization] = <dataclasses._MISSING_TYPE object>#

The institutions the person is affiliated with.

email: str | None = None#

The email address of the person.

internal_id: str | None = None#

An internal/institutional identifier for a person.

name: StructuredName = <dataclasses._MISSING_TYPE object>#

The name of the person.

orcid: str | None = None#

The ORCiD ID (URL) of the person.