Actor

Actor


Type:Node


A person or institution.


FieldTypeRequiredDefinition
firstName
stringNo

The Actor's first name.

lastName
stringYes

The Actor's last name or the name of the institution.

orcid
stringNo

The Actor's ORCiD identifier.

scopusID
stringNo

The Actor's Scopus identifier.

primaryInstitution
stringNo

The Actor's primary institution.

city
stringNo

A city or town.

country
TermNo

The country from the Glossary, following GADM naming conventions.

This field has additional validation rules when set:

  • the country.termType must have one of the following values: region.

email
stringNo

The email address of the Actor.

website
iriNo

A link to a website describing the Actor.

dataPrivate
booleanYes

If these data are private. Private means that HESTIA administrators can access these data and you can grant access to other platform users, but these data will not be made available to any other users of the platform or distributed to third parties.


Internal Properties

The following properties are automatically set when data are uploaded to the HESTIA platform. If they are included in a file which is uploaded, they will be overwritten.

FieldTypeDefinition
@context

The location of the JSON-LD context file.

@id

The unique ID assigned to the Node by HESTIA.

@type

Actor

name
string

An automatically generated field made up of: firstName initial, lastName, primaryInstitution. If the Actor is an institution, the lastName only.

originalId
string

The identifier for these data in the source database (e.g., if the data were converted from openLCA or ecoinvent, the id field from that database).

schemaVersion
string

The version of the schema when these data were created.

createdAt
date

Date created on HESTIA in ISO 8601 format (YYYY-MM-DD).

updatedAt
date

Last update date on HESTIA in ISO 8601 format (YYYY-MM-DD).


Example 1

{
  "@context": "https://DOMAIN/schema/Actor.jsonld",
  "@id": "actor",
  "@type": "Actor",
  "name": "J. Poore, University of Oxford",
  "firstName": "Joseph",
  "lastName": "Poore",
  "orcid": "0000-0002-2527-7466",
  "scopusID": "6506007033",
  "primaryInstitution": "University of Oxford",
  "city": "Oxford",
  "country": {
    "@id": "GADM-GBR",
    "@type": "Term",
    "name": "United Kingdom",
    "termType": "region"
  },
  "email": "joseph.poore@biology.ox.ac.uk",
  "website": {
    "@id": "https://www.oxfordmartin.ox.ac.uk/people/joseph-poore/"
  },
  "dataPrivate": false
}