Introduction
It is very unlikely that the descriptions provided in this model are the only digital representations of the entities that they describe. For building human-readable views, or just for linking to existing web pages, these other digital resources should also be referenced. This section describes how to link those digital resources, such as images and web pages, into the Linked Art descriptions of the entities.
Digital Objects
All Digital Objects share some basic characteristics, regardless of their particular nature. The basic patterns of Name, Identifier, Classification, and Statement all apply in the regular way. Beyond the baseline, digital objects can have the following descriptive features:
- Access Point - The URLs where the object is available. These may also treated as Digital Objects in their own right, but typically only the URL is given.
- Format - The
format
of a digital object is its media type, often called a MIME type, given as a string - Standard - Many digital objects further conform to standard specifications, which can be referenced using the
conforms_to
property. This differs fromformat
, as there may not be a media type for the specification, and fromclassified_as
which is a broader classification (Image, rather than conforming to the standard for JPEG 2000) - Dimensions - Digital dimensions follow the same pattern as physical dimensions, but might use different types (file size) or the same (height, width for images) and different units (bytes, pixels).
- Creation - Digital Objects are created by
Creation
events rather thanProduction
events, but otherwise have the same activity model.
Example:
A web page was created by a Museum Education department using the HTML format (and standard), is 100k in size, and is available on the museum website.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/digital/1",
"type": "DigitalObject",
"_label": "Digital Object",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300264578",
"type": "Type",
"_label": "Web Page"
}
],
"identified_by": [
{
"type": "Name",
"content": "Informative Web Page"
}
],
"dimension": [
{
"type": "Dimension",
"_label": "100 kb",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300265863",
"type": "Type",
"_label": "File Size"
}
],
"value": 100,
"unit": {
"id": "http://vocab.getty.edu/aat/300265870",
"type": "MeasurementUnit",
"_label": "kilobytes"
}
}
],
"access_point": [
{
"id": "https://www.eg.museum/edu/page1.html",
"type": "DigitalObject"
}
],
"format": "text/html",
"conforms_to": [
{
"id": "http://w3.org/TR/html",
"type": "InformationObject"
}
],
"created_by": {
"type": "Creation",
"timespan": {
"type": "TimeSpan",
"begin_of_the_begin": "2007-01-20T13:53:00Z",
"end_of_the_end": "2007-01-20T13:54:00Z"
},
"carried_out_by": [
{
"type": "Group",
"_label": "Museum Education Department"
}
]
}
}
Digital Images
Many of the entities that are described using Linked Art will have digital images that depict them. These images are useful for building compelling user interfaces for the data, and often take a prominent position in those interfaces.
One image might show many different entities, of different types. An image of an artist standing next to one of her paintings would show both the artist (a Person
) and the painting (a HumanMadeObject
). Further, the same image might be shown by many digital copies and derivatives, each available at a different URL. The same image might also be shown by a physical object, either by printing a digital file or that the digital image is a digitization of the physical object.
In order to accommodate these relationships, the model for digital objects echos the physical object / visual work distinction. In particular, digital images digitally_show
a VisualItem
. The different entities in the model can then have a Visual Item as a representation
, meaning that the visual item depicts the entity in its content. As the image might have many different URLs from which it is available, it has an access_point
property that lists those URLs.
Example:
A Person (E.G. Person) is depicted in a digital image, and thus has a representation in the visual item which is digitally shown by the image.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/person/18",
"type": "Person",
"_label": "E.G. Person",
"representation": [
{
"type": "VisualItem",
"digitally_shown_by": [
{
"type": "DigitalObject",
"_label": "Image of Person",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300215302",
"type": "Type",
"_label": "Digital Image"
}
],
"format": "image/jpeg",
"access_point": [
{
"id": "http://example.org/egperson/image.jpg",
"type": "DigitalObject"
}
]
}
]
}
]
}
Digital Surrogates
Some digital representations are intended to be faithful reproductions of a physical object. Especially when digitizing two dimensional works, it is useful to distinguish between a digital image that depicts the object but perhaps along with other objects, people and the surroundings, compared to a digital image which shows only the same visual content as the physical object. The basic digital model and image model are the same as above, however we can be more explicit that the same visual item that the physical object shows
is also digitally_shown_by
the digital image.
These images are sometimes called "Digital Surrogates", as they can stand in for the physical object. A digital surrogate might show more than just the object, such as a color strip and a ruler, however the main focus of the visual item must clearly be the object itself. The line between surrogate and depiction is left to the policies and practices of the implementing organizations.
Example:
The same visual item is shown by both the physical painting, and the digitized image of the painting.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/27",
"type": "HumanMadeObject",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300033618",
"type": "Type",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
],
"shows": [
{
"type": "VisualItem",
"digitally_shown_by": [
{
"type": "DigitalObject",
"_label": "Digitized Image of Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300215302",
"type": "Type",
"_label": "Digital Image"
}
],
"format": "image/jpeg",
"access_point": [
{
"id": "http://example.org/painting/image.jpg",
"type": "DigitalObject"
}
]
}
]
}
]
}
Home Page
Another very common scenario is that there is a web page about the object, perhaps managed by a collections management system. For humans, this page is much more useful than the data intended for machines. It can be referenced with the subject_of
property, and points to a DigitalObject
which is classified_as
a web page, or aat:300264578. As with digital images, the home page can have a format
of "text/html" and other properties.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/28",
"type": "HumanMadeObject",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300033618",
"type": "Type",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
],
"subject_of": [
{
"type": "DigitalObject",
"_label": "Homepage for Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300264578",
"type": "Type",
"_label": "Web Page"
}
],
"format": "text/html",
"access_point": [
{
"id": "http://example.org/collection/1/painting/index.html",
"type": "DigitalObject"
}
]
}
]
}
Other Pages
While the publishing organization might have a home page for their object as above, there are likely to be many other web pages about the object as well in different systems. These pages follow the same model of being a DigitalObject
, but instead use the referred_to_by
property for the link in the same manner as other texts.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/29",
"type": "HumanMadeObject",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300033618",
"type": "Type",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
],
"referred_to_by": [
{
"type": "DigitalObject",
"_label": "Webpage that discusses Painting, but is not its homepage",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300264578",
"type": "Type",
"_label": "Web Page"
}
],
"format": "text/html",
"access_point": [
{
"id": "http://example.org/journal/article",
"type": "DigitalObject"
}
]
}
]
}
IIIF
IIIF, the International Image Interoperability Framework, is an increasingly common way to make images and descriptions intended to be displayed to humans available. There are two primary alignments with the Digital Object model.
IIIF Images
The IIIF Image API is a DigitalService
from which various derivatives of the image content can be requested. Similarly to the access_point
property used in the previous sections, this service is referenced via the digitally_available_via
property from the core DigitalObject
that represents the digital image. The same image might have both access points and image services.
The IIIF Image service should have a conforms_to
property that refers to "http://iiif.io/api/image" as the URI of an InformationObject
, so that applications know what sort of service is being referred to.
Example:
A sculpture is digitized, and the image content made available through IIIF.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/30",
"type": "HumanMadeObject",
"_label": "Sculpture",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300047090",
"type": "Type",
"_label": "Sculpture",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
],
"shows": [
{
"type": "VisualItem",
"_label": "Visual content shown by sculpture",
"digitally_shown_by": [
{
"type": "DigitalObject",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300215302",
"type": "Type",
"_label": "Digital Image"
}
],
"access_point": [
{
"id": "http://example.org/iiif/img/full/max/0/default.jpg",
"type": "DigitalObject"
}
],
"digitally_available_via": [
{
"type": "DigitalService",
"access_point": [
{
"id": "http://example.org/iiif/img",
"type": "DigitalObject"
}
],
"conforms_to": [
{
"id": "http://iiif.io/api/image",
"type": "InformationObject"
}
]
}
]
}
]
}
]
}
IIIF Manifests
The IIIF Presentation API is considered to be a DigitalObject
that is about the object, in the same way as the home page of the object in a collection information system. The property used to refer to it from the object is, thus, subject_of
. The conformsTo
property should also be used with the Presentation API URI, and the Digital Object can also be given a format
for JSON-LD.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/31",
"type": "HumanMadeObject",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300033618",
"type": "Type",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
],
"subject_of": [
{
"id": "http://iiif.example.org/presentation/1/manifest.json",
"type": "DigitalObject",
"format": "application/ld+json;profile=\"http://iiif.io/api/presentation/3/context.json\"",
"conforms_to": [
{
"id": "http://iiif.io/api/presentation",
"type": "InformationObject"
}
]
}
]
}