A location like a country, state, city, etc.
~
Properties:
code | string | The code of the location (e.g. an ISO 2-letter country code). |
latitude | double | The average latitude of the location. |
longitude | double | The average longitude of the location. |
geometry | GeoJSON | A GeoJSON object. |
~
Properties from CategorizedEntity:
category | Ref[Category] | The category of the entity. |
tags | List[string] | A list of optional tags. A tag is just a string which should not contain commas (and other special characters). |
library | string | If this entity is part of a library, this field contains the identifier of that library. The identifier is typically just the combination of the library name and version. |
~
Properties from RootEntity:
name | string | The name of the entity. |
description | string | The description of the entity. |
version | string | A version number in MAJOR.MINOR.PATCH format where the MINOR and PATCH fields are optional and the fields may have leading zeros (so 01.00.00 is the same as 1.0.0 or 1). |
lastChange | dateTime | The timestamp when the entity was changed the last time. |
~
JSON-LD Example
{ "@context": "http://greendelta.github.io/olca-schema/context.jsonld", "@type": "Location", "@id": "28840420-4e3d-3522-a930-8317344a285d", "name": "Poland", "description": "reference location, sources: ISO 3166-1, ecoinvent 3, ILCD, GaBi", "code": "PL", "latitude": 52.125, "longitude": 19.401 }