Getty Photo Archive Mapping

Table of Contents


Introduction

A brief walk through of mapping a sample Photo Archive record from the Getty.

Sample Record

{
    "artist_name_1": "Rubens, Peter Paul", 
    "artist_dates_1": "1577-1640", 
    "artist_role_1": "Painter", 
    "brief_citation": "Vlieghe, CorpRub 8 (1972-73), no.144.", 
    "category": "PAINTINGS", 
    "collection_type": "Public", 
    "curr_owner_inst": "Galleria Nazionale d'Arte Antica, Palazzo Corsini", 
    "curr_regn_dist": "Lazio", 
    "curr_city": "Rome", 
    "curr_country": "Italy", 
    "curr_province": "Roma", 
    "date": "ca. 1604", 
    "dimension_units1": "cm",  
    "excollections_provenance": "Cardinal Neri Corsini (1685-1770); Purchased by the Italian government form Prince Tommaso Corsini (1884)", 
    "filing_category": "Religious, Devotional", 
    "gcpa_acc_no": "292221", 
    "height_1": "153", 
    "media_materials": "Oil on canvas", 
    "name_title": "St. Sebastian", 
    "national_school_1": "Flemish", 
    "photo_collection": "Erwin Panofsky Collection", 
    "photo_color": "Bl/Wh", 
    "photo_source": "Anderson", 
    "photo_src_ref": "1195", 
    "reference_number": "Inv. 388",
    "width_1": "118"
}

Which describes a photograph of a painting of St Sebastian being tended by angels. You can see information about the painting at these sites:

The current, aging, online record built from the information above looks like:

Star Record Screenshot

Overview

The model for the photo archive is divided into two main parts: the description of the photograph and its provenance, and the description of the artwork depicted in the photograph. Both are treated as valuable objects in their own right.

The Photograph

The Photograph in the archive does not have many properties in the data. Most are about the object depicted in the Photograph.

In particular:

Other records also have:

The mapping approach is:

This results in the model:

Photograph Model

The Depicted Object

The rest of the information is about the object depicted.

Mapping in Detail

The Photograph

We create a ManMadeObject to represent the photograph, by checking the photo_color property to see whether it should be black and white (aat:300128359), color (aat:300128347) or if not present, then just a photograph (aat:300046300). We construct a label for the photograph based on this type and the name of the object depicted.

{
  "@context": "https://linked.art/ns/context/1/full.jsonld", 
  "id": "https://linked.art/example/object/0", 
  "type": "ManMadeObject", 
  "label": "Black and White Photograph of 'St. Sebastian'", 
  "classified_as": ["aat:300128359"]
}

Raw | Playground | Raw Turtle | Styled Turtle

We create an Identifier for the Accession Number, and type it as (aat:300312355). This is referenced from the photograph with the identified_by property.

{
  "@context": "https://linked.art/ns/context/1/full.jsonld", 
  "id": "https://linked.art/example/identifier/0", 
  "type": "Identifier", 
  "value": "292221", 
  "classified_as": ["aat:300312355"]
}

Raw | Playground | Raw Turtle | Styled Turtle

A second, more complex, Identifier for Anderson's identifier is created. This identifier is associated with the source collection, via a set of identifiers of which it is part. We also create an Acquisition activity, by which the photograph is acquired by The Getty. This is not shown in the example below, but is shown in the full description of the photograph.

{
  "@context": "https://linked.art/ns/context/1/full.jsonld", 
  "id": "https://linked.art/example/identifier/1", 
  "type": "Identifier", 
  "value": "1195", 
  "composed_from": [
    {
      "id": "https://linked.art/example/info/0", 
      "type": "InformationObject", 
      "label": "Identifiers of Anderson", 
      "refers_to": [
        {
          "id": "https://linked.art/example/object/1", 
          "type": "PhysicalObject", 
          "label": "Collection of Anderson", 
          "classified_as": ["aat:300025976"], 
          "current_owner": {
            "id": "https://linked.art/example/actor/0", 
            "type": "Actor", 
            "label": "Anderson"
          }
        }
      ]
    }
  ]
}

Raw | Playground | Raw Turtle | Styled Turtle

We create the original collection, despite only having a label for it, which will be referenced from the photograph via the part_of property. Plus we link the, as of yet unconfigured, Painting resource to it via depicts.

{
  "@context": "https://linked.art/ns/context/1/full.jsonld", 
  "id": "https://linked.art/example/object/2", 
  "type": "ManMadeObject", 
  "label": "Black and White Photograph of 'St. Sebastian'", 
  "classified_as": ["aat:300128359"], 
  "part_of": [
    {
      "id": "https://linked.art/example/object/3", 
      "type": "PhysicalObject", 
      "label": "Erwin Panofsky Collection", 
      "classified_as": ["aat:300025976"]
    }
  ], 
  "depicts": [
    {
      "id": "https://linked.art/example/object/4", 
      "type": "ManMadeObject", 
      "classified_as": ["aat:300033618","aat:300133025"]
    }
  ]
}

Raw | Playground | Raw Turtle | Styled Turtle

We can thus fill in the data about the photograph to our model:

Photograph Data following Model

The Art Object

We can fill out a lot of details about the object itself. In particular, it has a Title (which we also associate with the object directly as a label), height and width dimensions in centimetres, and a parseable materials statement. We record both the statement as a LinguisticObject, as well as breaking the information out into machine readable material and part resources.

{
  "@context": "https://linked.art/ns/context/1/full.jsonld", 
  "id": "https://linked.art/example/object/5", 
  "type": "ManMadeObject", 
  "label": "St. Sebastian", 
  "identified_by": [
    {
      "id": "https://linked.art/example/name/0", 
      "type": "Appellation", 
      "value": "St. Sebastian"
    }
  ], 
  "classified_as": ["aat:300033618","aat:300133025"], 
  "made_of": [{"id": "aat:300015050","type": "Material","label": "oil"}], 
  "part": [
    {
      "id": "https://linked.art/example/object/6", 
      "type": "PhysicalObject", 
      "label": "Canvas Support", 
      "classified_as": ["aat:300014844"], 
      "made_of": [{"id": "aat:300014078","type": "Material","label": "canvas"}]
    }
  ], 
  "referred_to_by": [
    {
      "id": "https://linked.art/example/text/0", 
      "type": "LinguisticObject", 
      "value": "Oil on canvas", 
      "classified_as": ["aat:300010358"]
    }
  ], 
  "dimension": [
    {
      "id": "https://linked.art/example/Dimension/0", 
      "type": "Dimension", 
      "label": "Height", 
      "value": 153, 
      "classified_as": ["aat:300055644"], 
      "unit": {"id": "aat:300379098","type": "MeasurementUnit","label": "cm"}
    }, 
    {
      "id": "https://linked.art/example/Dimension/1", 
      "type": "Dimension", 
      "label": "Width", 
      "value": 118, 
      "classified_as": ["aat:300055647"], 
      "unit": "aat:300379098"
    }
  ]
}

Raw | Playground | Raw Turtle | Styled Turtle

Now we can tackle the creation of the painting. The activity is a Production, which was carried out by the artist at a particular point in time. We know the artist's name and their birth and death dates, and an approximate date for the activity.

{
  "@context": "https://linked.art/ns/context/1/full.jsonld", 
  "id": "https://linked.art/example/activity/0", 
  "type": "Production", 
  "carried_out_by": [
    {
      "id": "https://linked.art/example/person/0", 
      "type": "Person", 
      "label": "Rubens, Peter Paul", 
      "brought_into_existence_by": {
        "id": "https://linked.art/example/event/0", 
        "type": "BeginningOfExistence", 
        "timespan": {
          "id": "https://linked.art/example/time/0", 
          "type": "TimeSpan", 
          "label": "1577", 
          "end_of_the_end": "1578-01-01T00:00:00Z", 
          "begin_of_the_begin": "1577-01-01T00:00:00Z"
        }
      }, 
      "taken_out_of_existence_by": {
        "id": "https://linked.art/example/event/1", 
        "type": "EndOfExistence", 
        "timespan": {
          "id": "https://linked.art/example/time/1", 
          "type": "TimeSpan", 
          "label": "1640", 
          "end_of_the_end": "1641-01-01T00:00:00Z", 
          "begin_of_the_begin": "1640-01-01T00:00:00Z"
        }
      }
    }
  ], 
  "timespan": {
    "id": "https://linked.art/example/time/2", 
    "type": "TimeSpan", 
    "label": "ca. 1604", 
    "end_of_the_end": "1606-01-01T00:00:00Z", 
    "begin_of_the_begin": "1603-01-01T00:00:00Z"
  }
}

Raw | Playground | Raw Turtle | Styled Turtle

Due to research by the photo archive catalogers, we know a relatively recent (if not necessarily absolutely current) owner, location and identifier for the object. The owner and identifer follow the same pattern as for the identifiers of the photograph.

{
  "@context": "https://linked.art/ns/context/1/full.jsonld", 
  "id": "https://linked.art/example/identifier/2", 
  "type": "Identifier", 
  "value": "Inv. 388", 
  "composed_from": [
    {
      "id": "https://linked.art/example/info/1", 
      "type": "InformationObject", 
      "label": "Identifiers of Galleria Nazionale d'Arte Antica, Palazzo Corsini", 
      "refers_to": [
        {
          "id": "https://linked.art/example/object/7", 
          "type": "PhysicalObject", 
          "classified_as": ["aat:300025976","aat:300411912"], 
          "current_owner": {
            "id": "https://linked.art/example/group/0", 
            "type": "Group", 
            "label": "Galleria Nazionale d'Arte Antica, Palazzo Corsini"
          }
        }
      ]
    }
  ]
}

Raw | Playground | Raw Turtle | Styled Turtle

And its current location is very well described in the data, so we map all of it in this example. However, this is not a recommended pattern and instead a gazetter or vocabulary such as TGN or Geonames should be used instead. Only places that do not have existing identities should have new identities created. Instead, the city of Rome should be identified as tgn:7000874-place and then the TGN hierarchy used for the province, region, and country.

{
  "@context": "https://linked.art/ns/context/1/full.jsonld", 
  "id": "https://linked.art/example/place/3", 
  "type": "Place", 
  "label": "Rome", 
  "spatially_within": [
    {
      "id": "https://linked.art/example/place/2", 
      "type": "Place", 
      "label": "Roma", 
      "spatially_within": [
        {
          "id": "https://linked.art/example/place/1", 
          "type": "Place", 
          "label": "Lazio", 
          "spatially_within": [
            {"id": "https://linked.art/example/place/0","type": "Place","label": "Italy"}
          ]
        }
      ]
    }
  ]
}

Raw | Playground | Raw Turtle | Styled Turtle

And a few additional features for the provenance statement, a brief citation and a category:

{
  "@context": "https://linked.art/ns/context/1/full.jsonld", 
  "id": "https://linked.art/example/object/8", 
  "type": "ManMadeObject", 
  "label": "St. Sebastian", 
  "classified_as": ["aat:300033618","aat:300133025"], 
  "carries": [
    {
      "id": "https://linked.art/example/info/2", 
      "type": "InformationObject", 
      "about": ["https://linked.art/example/Type/0"]
    }
  ], 
  "referred_to_by": [
    {
      "id": "https://linked.art/example/text/1", 
      "type": "LinguisticObject", 
      "value": "Cardinal Neri Corsini (1685-1770); Purchased by the Italian government form Prince Tommaso Corsini (1884)", 
      "classified_as": ["aat:300055863"]
    }, 
    {
      "id": "https://linked.art/example/text/2", 
      "type": "LinguisticObject", 
      "label": "Vlieghe, CorpRub 8 (1972-73), no.144."
    }
  ]
}

Raw | Playground | Raw Turtle | Styled Turtle

Putting all of the above together gives us a full description of the artwork depicted in the photograph.