Introduction
The rights information about both the physical objects and their digital representations is important to capture. For general, textual statements about rights information the model uses the LinguisticObject pattern that should be familiar. For more specific rights that can be identified individually, such as copyright, and optionally who holds those rights, there is the ability to assert them in a machine readable way.
Credit / Attribution Statement
It is important to be able to give a credit or attribution statement that should be displayed along with the object. For example, a painting that has been donated might have the requirement to state who the donor was. This is modeled using the statement pattern as a LinguisticObject
, that is classified_as
aat:300026687 - the term for "acknowledgements". The text is given in the content
property.
Example:
The painting was a donation of a Ms J. Smith.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/66",
"type": "HumanMadeObject",
"_label": "Example 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": "LinguisticObject",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300026687",
"type": "Type",
"_label": "Credit Statement",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300418049",
"type": "Type",
"_label": "Brief Text"
}
]
}
],
"content": "Donation of Ms J. Smith; Example Organization"
}
]
}
Rights Statement
For general statements about rights that have not been aligned with any other controlled vocabularies such as rightsstatements.org, the information can be provided in the same way as for a credit or attribution. The difference is that it is classified_as
aat:300435434 - the term for license or legal statements.
Example:
An assertion that the copyright status of an object has not been assessed, and is thus unknown.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/67",
"type": "HumanMadeObject",
"_label": "Example 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": "LinguisticObject",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435434",
"type": "Type",
"_label": "Copyright/License Statement",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300418049",
"type": "Type",
"_label": "Brief Text"
}
]
}
],
"content": "Copyright of this object has not yet been assessed"
}
]
}
Rights Assertions
More detailed information is, however, often available and it is useful to be explicit. These patterns associate a Right
that the object is subject_to
, and then give more detail about the nature of that right, such as what sort of right, and who holds it.
RightsStatements.org Assertions
There is a recent effort to standardize rights statements, described at rightsstatements.org. Twelve basic rights statements were identified and given URIs to identify them. If any of these statements apply, it is useful to use these URIs to ensure that client systems can process them the in the same way.
These assertions are modeled as individual Rights, which are then classified_as
the rights statement URI. A label, via_label
, can also be given to provide clarity for developers looking at the data in the same way as Type
objects.
Example:
The painting has no known copyright.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/68",
"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_to": [
{
"type": "Right",
"classified_as": [
{
"id": "http://rightsstatements.org/vocab/NKC/1.0/",
"type": "Type",
"_label": "No known copyright"
}
]
}
]
}