Table of Contents
Introduction
Places are a foundational aspect of the Linked Art model for providing context as to where activities occur. They are extents in space described by a geometry, and independent of time or what object(s) may be present at the location. Places are a relatively simple model and therefore a relatively simple API, using the shared features and common patterns, along with a WKT based definition of the geometry.
For more information about the usage of Places, please see the Place model.
Property Definitions
Dereferencing an entity via the Place endpoint would result in a JSON-LD document with a JSON object with the following properties.
Properties of Places
| Property Name | Datatype | Requirement | Description |
|---|---|---|---|
@context |
string, array | Required | The value MUST be the URI of the Linked Art context as a string, "https://linked.art/ns/v1/linked-art.json" or an array in which the URI is the last entry to allow for extensions |
id |
string | Required | The value MUST be the HTTP(S) URI at which the place's representation can be dereferenced |
type |
string | Required | The class of the place, which MUST be the value "Place" |
_label |
string | Recommended | A human readable label for the place, intended for developers |
classified_as |
array | Recommended | An array of json objects, each of which is a classification of the Place and MUST follow the requirements for Type |
identified_by |
array | Recommended | An array of json objects, each of which is a name of the Place and MUST follow the requirements for Name, or an identifier for the Place and MUST follow the requirements for Identifier |
referred_to_by |
array | Optional | An array of json objects, each of which is a human readable statement about the Place and MUST follow the requirements for Statement |
defined_by |
string | Optional | A string containing the WKT representation of the geometry of the Place |
approximated_by |
array | Optional | An array of json objects, each of which is an approximation of the current Place and MUST follow the requirements for an entity reference to a Place |
part_of |
array | Optional | An array of json objects, each of which is a Place that the current Place falls within and MUST follow the requirements for an entity reference to a Place |
member_of |
array | Optional | An array of json objects, each of which is a Set that the current Place is a member of and MUST follow the requirements for an entity reference to a Set |
Property Diagram
Incoming Properties
Type instances are typically found as the object of the following properties, other than the self-referential properties above. This list is not exhaustive, but is intended to cover the likely cases where other endpoints refer to Places.
| Property Name | Source Endpoint | Description |
|---|---|---|
current_location |
Physical Object | The current location of an object is managed by the object |
current_permanent_location |
Physical Object | The normal location of the object is also managed by the object |
moved_from |
Provenance Activity | In Provenance Activities, objects can be moved in a Move activity from one place ... |
moved_to |
Provenance Activity | ... to another place |
residence |
Person, Group | People and Groups have Places at which they are or have been resident |
took_place_at |
All | All Events and Activities can take place at a Place, which appear in most of the endpoints such as the location of the birth of a person, or the location of the assignment of an identifier |
Example
The JSON for a Place entry for the city of Los Angeles could be as below.
- It has the Linked Art context document reference in
@context - It self-documents its URI in
id - It has a
typeof "Place" - It has a
_labelwith the value "Los Angeles" for humans reading the JSON - It is
classified_asa city, which has anidof aat:300008389, atypeof Type, and a label. - It is
identified_byaName, with thecontent"Los Angeles" - It is
identified_byanIdentifier, with thecontent"06-44000" - It is
defined_bya particular WKT Polygon - It is
referred_to_byaLinguisticObject, which isclassified_asa Description (aat:300411780), and hascontentof "Los Angeles is the largest city in California" - It is
approximated_byanotherPlace, which is the centroid of Los Angeles - It is
part_ofanotherPlace, which is the state California - It is a
member_oftheSetof top 10 cities in the USA
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/place/0",
"type": "Place",
"_label": "Los Angeles",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300008389",
"type": "Type",
"_label": "City"
}
],
"identified_by": [
{
"id": "https://linked.art/example/name/0",
"type": "Name",
"content": "Los Angeles"
},
{
"id": "https://linked.art/example/identifier/0",
"type": "Identifier",
"content": "06-44000"
}
],
"defined_by": "POLYGON((-118.574 34.185,-117.558 34.185,-117.5585 33.512,-118.574 33.512,-118.5745 34.185))",
"referred_to_by": [
{
"id": "https://linked.art/example/text/0",
"type": "LinguisticObject",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300411780",
"type": "Type",
"_label": "Description",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300418049",
"type": "Type",
"_label": "Brief Text"
}
]
}
],
"content": "Los Angeles is the largest city in California"
}
],
"approximated_by": [
{
"id": "https://linked.art/example/place/1",
"type": "Place",
"_label": "Los Angeles Centroid"
}
],
"member_of": [
{
"id": "https://linked.art/example/Set/0",
"type": "Set",
"_label": "Top 10 Cities in USA"
}
],
"part_of": [
{
"id": "https://linked.art/example/place/2",
"type": "Place",
"_label": "California"
}
]
}
Incoming Reference Example
A Physical Object referring to two places via the current_location and the location that it was created.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/0",
"type": "HumanMadeObject",
"_label": "Van Gogh Painting",
"produced_by": {
"id": "https://linked.art/example/activity/0",
"type": "Production",
"_label": "Production of Painting",
"took_place_at": [
{
"id": "https://linked.art/example/place/4",
"type": "Place",
"_label": "Amsterdam"
}
]
},
"current_location": {
"id": "https://linked.art/example/place/3",
"type": "Place",
"_label": "Rijksmuseum Gallery"
}
}
