Objects: Rights Information

Table of Contents

Up: Objects

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 as a LinguisticObject, that is classified_as aat:300026687 being the identity for "acknowledgements". The actual string is given in value.

{
  "@context": "https://linked.art/ns/v1/linked-art.json", 
  "id": "https://linked.art/example/object/64", 
  "type": "ManMadeObject", 
  "label": "Example Painting", 
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300033618", 
      "type": "Type", 
      "label": "Painting"
    }, 
    {
      "id": "http://vocab.getty.edu/aat/300133025", 
      "type": "Type", 
      "label": "Artwork"
    }
  ], 
  "referred_to_by": [
    {
      "id": "https://linked.art/example/text/26", 
      "type": "LinguisticObject", 
      "content": "Donation of Ms J. Smith; Example Organization", 
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300026687", 
          "type": "Type", 
          "label": "Credit Statement"
        }, 
        {
          "id": "http://vocab.getty.edu/aat/300418049", 
          "type": "Type", 
          "label": "Brief Text"
        }
      ]
    }
  ]
}

JSON-LD (Raw) | JSON-LD (Playground) | Turtle (Raw) | Turtle (Styled)

Rights Statement

For general statements about rights that have not been aligned with any other controlled vocabularies such as AAT or rightsstatements.org, the information can be provided in the same way as for a credit line. The difference is that it is classified_as aat:300055547, being the identity for general "legal concepts".

{
  "@context": "https://linked.art/ns/v1/linked-art.json", 
  "id": "https://linked.art/example/object/65", 
  "type": "ManMadeObject", 
  "label": "Example Painting", 
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300033618", 
      "type": "Type", 
      "label": "Painting"
    }, 
    {
      "id": "http://vocab.getty.edu/aat/300133025", 
      "type": "Type", 
      "label": "Artwork"
    }
  ], 
  "referred_to_by": [
    {
      "id": "https://linked.art/example/text/27", 
      "type": "LinguisticObject", 
      "content": "Copyright of this object has not yet been assessed", 
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300055547", 
          "type": "Type", 
          "label": "Rights Statement"
        }, 
        {
          "id": "http://vocab.getty.edu/aat/300418049", 
          "type": "Type", 
          "label": "Brief Text"
        }
      ]
    }
  ]
}

JSON-LD (Raw) | JSON-LD (Playground) | Turtle (Raw) | Turtle (Styled)

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.

The pattern is identical to custom rights statements, however the URI of the statement is given as the URI from rightsstatements.org, rather than a local one. A label can also be given to provide clarity, and to display to the user.

{
  "@context": "https://linked.art/ns/v1/linked-art.json", 
  "id": "https://linked.art/example/object/66", 
  "type": "ManMadeObject", 
  "label": "Object", 
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300033618", 
      "type": "Type", 
      "label": "Painting"
    }, 
    {
      "id": "http://vocab.getty.edu/aat/300133025", 
      "type": "Type", 
      "label": "Artwork"
    }
  ], 
  "referred_to_by": [
    {
      "id": "http://rightsstatements.org/vocab/NKC/1.0/", 
      "type": "LinguisticObject", 
      "label": "No known copyright", 
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300055547", 
          "type": "Type", 
          "label": "Rights Statement"
        }, 
        {
          "id": "http://vocab.getty.edu/aat/300418049", 
          "type": "Type", 
          "label": "Brief Text"
        }
      ]
    }
  ]
}

JSON-LD (Raw) | JSON-LD (Playground) | Turtle (Raw) | Turtle (Styled)

Other Rights Assertions

Other, or more detailed, rights assertions for copyright, ownership or other legal matters can be described using the PropertyInterest class.