Skip to content
This repository has been archived by the owner on Feb 13, 2021. It is now read-only.

Discogs JSON LD and N3 examples

tworrall edited this page Feb 7, 2019 · 9 revisions

Here are two examples of the JSON-LD that the Discogs QA authority produces, each followed by the corresponding N3. The examples are from the Discogs test data spreadsheet that lists the Sinatra 45s needing to be catalogued. The N3 was generated using the EasyRDF Converter.

The second example includes full tracklist data with extra artists.

Example 1

JSON-LD

{
  "@context": {
    "bf2": "http://id.loc.gov/ontologies/bibframe/",
    "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
    "xsd": "http://www.w3.org/2001/XMLSchema#",
    "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  },
  "@graph": [
    {
      "@id": "Work1",
      "@type": [
        "bf2:Work",
        "bf2:Audio"
      ],
      "bf2:title": {
        "@id": "Work1Title"
      },
      "bf2:genreForm": {
        "@id": "http://id.loc.gov/authorities/genreForms/gf2014027009"
      },
      "bf2:contribution": [
        {
          "@id": "Work1PrimaryContribution1"
        },
        {
          "@id": "Work1SecondaryContribution1"
        },
        {
          "@id": "Work1SecondaryContribution2"
        }
      ],
      "bf2:hasInstance": {
        "@id": "Instance1"
      },
      "bf2:hasPart": [
        {
          "@id": "Work2"
        },
        {
          "@id": "Work3"
        }
      ]
    },
    {
      "@id": "Work1Title",
      "bf2:mainTitle": "I Guess I'll Have To Dream The Rest"
    },
    {
      "@id": "http://id.loc.gov/authorities/genreForms/gf2014027009",
      "@type": "bf2:GenreForm",
      "rdfs:label": "Popular music"
    },
    {
      "@id": "Work1PrimaryContribution1",
      "@type": "http://id.loc.gov/ontologies/bflc/PrimaryContribution",
      "bf2:agent": {
        "@id": "Frank Sinatra"
      }
    },
    {
      "@id": "Work1SecondaryContribution1",
      "@type": "bf2:Contribution",
      "bf2:agent": {
        "@id": "Harold Green"
      }
    },
    {
      "@id": "Work1SecondaryContribution2",
      "@type": "bf2:Contribution",
      "bf2:agent": {
        "@id": "Mickey Stoner"
      }
    },
    {
      "@id": "Harold Green",
      "@type": "bf2:Agent",
      "bf2:role": {
        "@id": "Work1SecondaryContributor_Role1"
      }
    },
    {
      "@id": "Mickey Stoner",
      "@type": "bf2:Agent",
      "bf2:role": {
        "@id": "Work1SecondaryContributor_Role2"
      }
    },
    {
      "@id": "Work1SecondaryContributor_Role1",
      "@type": "bf2:Role",
      "rdfs:label": "Written-By"
    },
    {
      "@id": "Work1SecondaryContributor_Role2",
      "@type": "bf2:Role",
      "rdfs:label": "Written-By"
    },
    {
      "@id": "Instance1",
      "@type": "bf2:Instance",
      "bf2:editionStatement": "Promo",
      "bf2:title": {
        "@id": "Instance1Title"
      },
      "bf2:dimensions": {
        "@id": "7 inches"
      },
      "bf2:baseMaterial": {
        "@id": "http://vocab.getty.edu/aat/300014502"
      },
      "bf2:carrier": {
        "@id": "http://id.loc.gov/vocabulary/carriers/sd"
      },
      "bf2:identifiedBy": [
        {
          "@id": "IdentifierPrimary"
        },
        {
          "@id": "Identifier1"
        },
        {
          "@id": "Identifier2"
        },
        {
          "@id": "Identifier3"
        }
      ],
      "bf2:provisionActivity": [
        {
          "@id": "ProvisionActivityDate"
        },
        {
          "@id": "ProvisionActivity1"
        },
        {
          "@id": "ProvisionActivity2"
        },
        {
          "@id": "ProvisionActivity3"
        }
      ],
      "bf2:soundCharacteristic": [
        {
          "@id": "http://id.loc.gov/vocabulary/mplayback/ste"
        },
        {
          "@id": "PlayingSpeed1"
        },
        {
          "@id": "http://id.loc.gov/vocabulary/mplayback/mon"
        }
      ]
    },
   {
      "@id": "Instance1Title",
      "bf2:mainTitle": "I Guess I'll Have To Dream The Rest"
    },
    {
      "@id": "http://vocab.getty.edu/aat/300014502",
      "@type": "bf2:BaseMaterial",
      "rdfs:label": "Vinyl"
    },
    {
      "@id": "http://id.loc.gov/vocabulary/carriers/sd",
      "@type": "bf2:Carrier",
      "rdfs:label": "audio disc"
    },
    {
      "@id": "IdentifierPrimary",
      "@type": "bf2:Identifier",
      "rdf:value": {
        "@value": "7141302",
        "@type": "xsd:integer"
      }
    },
    {
      "@id": "Identifier1",
      "@type": "bf2:Identifier",
      "rdfs:label": "ASCAP"
    },
    {
      "@id": "Identifier2",
      "@type": "bf2:Identifier",
      "rdfs:label": "ZSP-3842-A"
    },
    {
      "@id": "Identifier3",
      "@type": "bf2:Identifier",
      "rdfs:label": "ZSP-3842-B"
    },
    {
      "@id": "ProvisionActivityDate",
      "@type": "bf2:ProvisionActivity",
      "bf2:date": {
        "@value": "1971",
        "@type": "xsd:date"
      }
    },
    {
      "@id": "ProvisionActivity1",
      "@type": "bf2:ProvisionActivity",
      "bf2:agent": {
        "@id": "TV Music Co."
      }
    },
    {
      "@id": "ProvisionActivity2",
      "@type": "bf2:ProvisionActivity",
      "bf2:agent": {
        "@id": "Columbia Records"
      }
    },
    {
      "@id": "ProvisionActivity3",
      "@type": "bf2:ProvisionActivity",
      "bf2:agent": {
        "@id": "TV Music Co."
      }
    },
    {
      "@id": "http://id.loc.gov/vocabulary/mplayback/ste",
      "@type": "bf2:PlaybackChannel",
      "rdfs:label": "stereo"
    },
    {
      "@id": "PlayingSpeed1",
      "@type": "bf2:PlayingSpeed",
      "rdfs:label": "45 RPM"
    },
    {
      "@id": "http://id.loc.gov/vocabulary/mplayback/mon",
      "@type": "bf2:PlaybackChannel",
      "rdfs:label": "mono"
    },
    {
      "@id": "TV Music Co.",
      "@type": "bf2:Agent",
      "bf2:role": [
        {
          "@id": "PA_Role1"
        },
        {
          "@id": "PA_Role3"
        }
      ]
    },
    {
      "@id": "Columbia Records",
      "@type": "bf2:Agent",
      "bf2:role": {
        "@id": "PA_Role2"
      }
    },
    {
      "@id": "PA_Role1",
      "@type": "bf2:Role",
      "rdfs:label": "Label"
    },
    {
      "@id": "PA_Role2",
      "@type": "bf2:Role",
      "rdfs:label": "Licensed From"
    },
    {
      "@id": "PA_Role3",
      "@type": "bf2:Role",
      "rdfs:label": "Published By"
    },
    {
      "@id": "Work2",
      "@type": [
        "bf2:Work",
        "bf2:Audio"
      ],
      "bf2:duration": "2:42",
      "bf2:title": {
        "@id": "Work2Title"
      },
      "bf2:contribution": {
        "@id": "Work2PrimaryContribution1"
      }
    },
    {
      "@id": "Work2Title",
      "bf2:mainTitle": "I Guess I'll Have To Dream The Rest",
      "@type": "bf2:Title"
    },
    {
      "@id": "Work2PrimaryContribution1",
      "@type": "http://id.loc.gov/ontologies/bflc/PrimaryContribution",
      "bf2:agent": {
        "@id": "Frank Sinatra"
      }
    },
    {
      "@id": "Work3",
      "@type": [
        "bf2:Work",
        "bf2:Audio"
      ],
      "bf2:duration": "2:42",
      "bf2:title": {
        "@id": "Work3Title"
      },
      "bf2:contribution": {
        "@id": "Work3PrimaryContribution1"
      }
    },
    {
      "@id": "Work3Title",
      "bf2:mainTitle": "I Guess I'll Have To Dream The Rest",
      "@type": "bf2:Title"
    },
    {
      "@id": "Work3PrimaryContribution1",
      "@type": "http://id.loc.gov/ontologies/bflc/PrimaryContribution",
      "bf2:agent": {
        "@id": "Frank Sinatra"
      }
    },
    {
      "@id": "Frank Sinatra",
      "@type": "bf2:Agent"
    }
  ]
}

N3

@prefix ns0: <http://id.loc.gov/ontologies/bibframe/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://njh.me/Work1>
  a <http://id.loc.gov/ontologies/bibframe/Work>, <http://id.loc.gov/ontologies/bibframe/Audio> ;
  ns0:contribution <http://njh.me/Work1PrimaryContribution1>, <http://njh.me/Work1SecondaryContribution1>, <http://njh.me/Work1SecondaryContribution2> ;
  ns0:genreForm <http://id.loc.gov/authorities/genreForms/gf2014027009> ;
  ns0:hasInstance <http://njh.me/Instance1> ;
  ns0:hasPart <http://njh.me/Work2>, <http://njh.me/Work3> ;
  ns0:title <http://njh.me/Work1Title> .

<http://njh.me/Work1PrimaryContribution1>
  a <http://id.loc.gov/ontologies/bflc/PrimaryContribution> ;
  ns0:agent <http://njh.me/Frank Sinatra> .

<http://njh.me/Work1SecondaryContribution1>
  a ns0:Contribution ;
  ns0:agent <http://njh.me/Harold Green> .

<http://njh.me/Work1SecondaryContribution2>
  a ns0:Contribution ;
  ns0:agent <http://njh.me/Mickey Stoner> .

<http://id.loc.gov/authorities/genreForms/gf2014027009>
  a ns0:GenreForm ;
  rdfs:label "Popular music"^^xsd:string .

<http://njh.me/Instance1>
  a ns0:Instance ;
  ns0:baseMaterial <http://vocab.getty.edu/aat/300014502> ;
  ns0:carrier <http://id.loc.gov/vocabulary/carriers/sd> ;
  ns0:dimensions <http://njh.me/7 inches> ;
  ns0:editionStatement "Promo"^^xsd:string ;
  ns0:identifiedBy <http://njh.me/IdentifierPrimary>, <http://njh.me/Identifier1>, <http://njh.me/Identifier2>, <http://njh.me/Identifier3> ;
  ns0:provisionActivity <http://njh.me/ProvisionActivityDate>, <http://njh.me/ProvisionActivity1>, <http://njh.me/ProvisionActivity2>, <http://njh.me/ProvisionActivity3> ;
  ns0:soundCharacteristic <http://id.loc.gov/vocabulary/mplayback/ste>, <http://njh.me/PlayingSpeed1>, <http://id.loc.gov/vocabulary/mplayback/mon> ;
  ns0:title <http://njh.me/Instance1Title> .

<http://njh.me/Work2>
  a ns0:Work, ns0:Audio ;
  ns0:contribution <http://njh.me/Work2PrimaryContribution1> ;
  ns0:duration "2:42"^^xsd:string ;
  ns0:title <http://njh.me/Work2Title> .

<http://njh.me/Work3>
  a ns0:Work, ns0:Audio ;
  ns0:contribution <http://njh.me/Work3PrimaryContribution1> ;
  ns0:duration "2:42"^^xsd:string ;
  ns0:title <http://njh.me/Work3Title> .

<http://njh.me/Work1Title> ns0:mainTitle "I Guess I'll Have To Dream The Rest"^^xsd:string .
<http://njh.me/Frank Sinatra> a ns0:Agent .
<http://njh.me/Harold Green>
  a ns0:Agent ;
  ns0:role <http://njh.me/Work1SecondaryContributor_Role1> .

<http://njh.me/Mickey Stoner>
  a ns0:Agent ;
  ns0:role <http://njh.me/Work1SecondaryContributor_Role2> .

<http://njh.me/Work1SecondaryContributor_Role1>
  a ns0:Role ;
  rdfs:label "Written-By"^^xsd:string .

<http://njh.me/Work1SecondaryContributor_Role2>
  a ns0:Role ;
  rdfs:label "Written-By"^^xsd:string .

<http://vocab.getty.edu/aat/300014502>
  a ns0:BaseMaterial ;
  rdfs:label "Vinyl"^^xsd:string .

<http://id.loc.gov/vocabulary/carriers/sd>
  a ns0:Carrier ;
  rdfs:label "audio disc"^^xsd:string .

<http://njh.me/IdentifierPrimary>
  a ns0:Identifier ;
  rdf:value 7141302 .

<http://njh.me/Identifier1>
  a ns0:Identifier ;
  rdfs:label "ASCAP"^^xsd:string .

<http://njh.me/Identifier2>
  a ns0:Identifier ;
  rdfs:label "ZSP-3842-A"^^xsd:string .

<http://njh.me/Identifier3>
  a ns0:Identifier ;
  rdfs:label "ZSP-3842-B"^^xsd:string .

<http://njh.me/ProvisionActivityDate>
  a ns0:ProvisionActivity ;
  ns0:date "1971"^^xsd:date .

<http://njh.me/ProvisionActivity1>
  a ns0:ProvisionActivity ;
  ns0:agent <http://njh.me/TV Music Co.> .

<http://njh.me/ProvisionActivity2>
  a ns0:ProvisionActivity ;
  ns0:agent <http://njh.me/Columbia Records> .

<http://njh.me/ProvisionActivity3>
  a ns0:ProvisionActivity ;
  ns0:agent <http://njh.me/TV Music Co.> .

<http://id.loc.gov/vocabulary/mplayback/ste>
  a ns0:PlaybackChannel ;
  rdfs:label "stereo"^^xsd:string .

<http://njh.me/PlayingSpeed1>
  a ns0:PlayingSpeed ;
  rdfs:label "45 RPM"^^xsd:string .

<http://id.loc.gov/vocabulary/mplayback/mon>
  a ns0:PlaybackChannel ;
  rdfs:label "mono"^^xsd:string .

<http://njh.me/Instance1Title> ns0:mainTitle "I Guess I'll Have To Dream The Rest"^^xsd:string .
<http://njh.me/TV Music Co.>
  a ns0:Agent ;
  ns0:role <http://njh.me/PA_Role1>, <http://njh.me/PA_Role3> .

<http://njh.me/Columbia Records>
  a ns0:Agent ;
  ns0:role <http://njh.me/PA_Role2> .

<http://njh.me/PA_Role1>
  a ns0:Role ;
  rdfs:label "Label"^^xsd:string .

<http://njh.me/PA_Role3>
  a ns0:Role ;
  rdfs:label "Published By"^^xsd:string .

<http://njh.me/PA_Role2>
  a ns0:Role ;
  rdfs:label "Licensed From"^^xsd:string .

<http://njh.me/Work2PrimaryContribution1>
  a <http://id.loc.gov/ontologies/bflc/PrimaryContribution> ;
  ns0:agent <http://njh.me/Frank Sinatra> .

<http://njh.me/Work2Title>
  a ns0:Title ;
  ns0:mainTitle "I Guess I'll Have To Dream The Rest"^^xsd:string .

<http://njh.me/Work3PrimaryContribution1>
  a <http://id.loc.gov/ontologies/bflc/PrimaryContribution> ;
  ns0:agent <http://njh.me/Frank Sinatra> .

<http://njh.me/Work3Title>
  a ns0:Title ;
  ns0:mainTitle "I Guess I'll Have To Dream The Rest"^^xsd:string .

Example 2

JSON-LD

{
  "@context": {
    "bf2": "http://id.loc.gov/ontologies/bibframe/",
    "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
    "xsd": "http://www.w3.org/2001/XMLSchema#",
    "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  },
  "@graph": [
    {
      "@id": "Work1",
      "@type": [
        "bf2:Work",
        "bf2:Audio"
      ],
      "bf2:title": {
        "@id": "Work1Title"
      },
      "bf2:genreForm": [
        {
          "@id": "http://id.loc.gov/authorities/genreForms/gf2014027009"
        },
        {
          "@id": "http://id.loc.gov/authorities/genreForms/gf2014026879"
        }
      ],
      "bf2:contribution": [
        {
          "@id": "Work1PrimaryContribution1"
        },
        {
          "@id": "Work1PrimaryContribution2"
        },
        {
          "@id": "Work1SecondaryContribution1"
        }
      ],
      "bf2:hasInstance": {
        "@id": "Instance1"
      },
      "bf2:hasPart": [
        {
          "@id": "Work3"
        },
        {
          "@id": "Work2"
        }
      ]
    },
    {
      "@id": "Work1Title",
      "bf2:mainTitle": "Sorry / Why Remind Me"
    },
    {
      "@id": "http://id.loc.gov/authorities/genreForms/gf2014026879",
      "@type": "bf2:GenreForm",
      "rdfs:label": "Jazz"
    },
    {
      "@id": "http://id.loc.gov/authorities/genreForms/gf2014027009",
      "@type": "bf2:GenreForm",
      "rdfs:label": "Popular music"
    },
    {
      "@id": "Work1PrimaryContribution1",
      "@type": "http://id.loc.gov/ontologies/bflc/PrimaryContribution",
      "bf2:agent": {
        "@id": "Frank Sinatra"
      }
    },
    {
      "@id": "Work1PrimaryContribution2",
      "@type": "http://id.loc.gov/ontologies/bflc/PrimaryContribution",
      "bf2:agent": {
        "@id": "The Modernaires"
      }
    },
    {
      "@id": "Work1SecondaryContribution1",
      "@type": "bf2:Contribution",
      "bf2:agent": {
        "@id": "Axel Stordahl"
      }
    },
    {
      "@id": "Axel Stordahl",
      "@type": "bf2:Agent",
      "bf2:role": {
        "@id": "Work1SecondaryContributor_Role1"
      }
    },
    {
      "@id": "Work1SecondaryContributor_Role1",
      "@type": "bf2:Role",
      "rdfs:label": "Directed By [Orchestra]"
    },
    {
      "@id": "Instance1",
      "@type": "bf2:Instance",
      "bf2:dimensions": {
        "@id": "7 inches"
      },
      "bf2:title": {
        "@id": "Instance1Title"
      },
      "bf2:baseMaterial": {
        "@id": "http://vocab.getty.edu/aat/300014502"
      },
      "bf2:carrier": {
        "@id": "http://id.loc.gov/vocabulary/carriers/sd"
      },
      "bf2:identifiedBy": [
        {
          "@id": "IdentifierPrimary"
        },
        {
          "@id": "Identifier1"
        },
        {
          "@id": "Identifier2"
        }
      ],
      "bf2:provisionActivity": [
        {
          "@id": "ProvisionActivityDate"
        },
        {
          "@id": "ProvisionActivity1"
        }
      ],
      "bf2:soundCharacteristic": {
        "@id": "PlayingSpeed1"
      }
    },
    {
      "@id": "Instance1Title",
      "bf2:mainTitle": "Sorry / Why Remind Me"
    },
    {
      "@id": "http://vocab.getty.edu/aat/300014502",
      "@type": "bf2:BaseMaterial",
      "rdfs:label": "Vinyl"
    },
    {
      "@id": "http://id.loc.gov/vocabulary/carriers/sd",
      "@type": "bf2:Carrier",
      "rdfs:label": "audio disc"
    },
    {
      "@id": "IdentifierPrimary",
      "@type": "bf2:Identifier",
      "rdf:value": {
        "@value": "11620608",
        "@type": "xsd:integer"
      }
    },
    {
      "@id": "Identifier1",
      "@type": "bf2:Identifier",
      "rdfs:label": "ZLP 1892 1A"
    },
    {
      "@id": "Identifier2",
      "@type": "bf2:Identifier",
      "rdfs:label": "ZLP 1893 10"
    },
    {
      "@id": "ProvisionActivityDate",
      "@type": "bf2:ProvisionActivity",
      "bf2:date": {
        "@value": "1950",
        "@type": "xsd:date"
      }
    },
    {
      "@id": "ProvisionActivity1",
      "@type": "bf2:ProvisionActivity",
      "bf2:agent": {
        "@id": "Columbia"
      }
    },
    {
      "@id": "PlayingSpeed1",
      "@type": "bf2:PlayingSpeed",
      "rdfs:label": "33 1/3 RPM"
    },
    {
      "@id": "Columbia",
      "@type": "bf2:Agent",
      "bf2:role": {
        "@id": "PA_Role1"
      }
    },
    {
      "@id": "PA_Role1",
      "@type": "bf2:Role",
      "rdfs:label": "Label"
    },
    {
      "@id": "Work2",
      "@type": [
        "bf2:Work",
        "bf2:Audio"
      ],
      "bf2:title": {
        "@id": "Work2Title"
      },
      "bf2:contribution": [
        {
          "@id": "Work2PrimaryContribution1"
        },
        {
          "@id": "Work2PrimaryContribution2"
        },
        {
          "@id": "Work2Contribution1"
        },
        {
          "@id": "Work2Contribution2"
        }
      ]
    },
    {
      "@id": "Work2Title",
      "bf2:mainTitle": "Sorry",
      "@type": "bf2:Title"
    },
    {
      "@id": "Work2PrimaryContribution1",
      "@type": "http://id.loc.gov/ontologies/bflc/PrimaryContribution",
      "bf2:agent": {
        "@id": "Frank Sinatra"
      }
    },
    {
      "@id": "Work2PrimaryContribution2",
      "@type": "http://id.loc.gov/ontologies/bflc/PrimaryContribution",
      "bf2:agent": {
        "@id": "The Modernaires"
      }
    },
    {
      "@id": "Work2Contribution1",
      "@type": "bf2:Contribution",
      "bf2:agent": {
        "@id": "Buddy Pepper"
      }
    },
    {
      "@id": "Work2Contribution2",
      "@type": "bf2:Contribution",
      "bf2:agent": {
        "@id": "Richard Whiting"
      }
    },
    {
      "@id": "Buddy Pepper",
      "@type": "bf2:Agent",
      "bf2:role": {
        "@id": "Work2ContributorRole1"
      }
    },
    {
      "@id": "Richard Whiting",
      "@type": "bf2:Agent",
      "bf2:role": {
        "@id": "Work2ContributorRole2"
      }
    },
    {
      "@id": "Work2ContributorRole1",
      "@type": "bf2:Role",
      "rdfs:label": "Written-By"
    },
    {
      "@id": "Work2ContributorRole2",
      "@type": "bf2:Role",
      "rdfs:label": "Written-By"
    },
    {
      "@id": "Work3",
      "@type": [
        "bf2:Work",
        "bf2:Audio"
      ],
      "bf2:title": {
        "@id": "Work3Title"
      },
      "bf2:contribution": [
        {
          "@id": "Work3PrimaryContribution1"
        },
        {
          "@id": "Work3PrimaryContribution2"
        },
        {
          "@id": "Work3Contribution1"
        },
        {
          "@id": "Work3Contribution2"
        }
      ]
    },
    {
      "@id": "Work3Title",
      "bf2:mainTitle": "Why Remind Me",
      "@type": "bf2:Title"
    },
    {
      "@id": "Work3PrimaryContribution1",
      "@type": "http://id.loc.gov/ontologies/bflc/PrimaryContribution",
      "bf2:agent": {
        "@id": "Frank Sinatra"
      }
    },
    {
      "@id": "Work3PrimaryContribution2",
      "@type": "http://id.loc.gov/ontologies/bflc/PrimaryContribution",
      "bf2:agent": {
        "@id": "The Modernaires"
      }
    },
    {
      "@id": "Frank Sinatra",
      "@type": "bf2:Agent"
    },
    {
      "@id": "The Modernaires",
      "@type": "bf2:Agent"
    },
    {
      "@id": "Work3Contribution1",
      "@type": "bf2:Contribution",
      "bf2:agent": {
        "@id": "Doris Tauber"
      }
    },
    {
      "@id": "Work3Contribution2",
      "@type": "bf2:Contribution",
      "bf2:agent": {
        "@id": "Sis Willner"
      }
    },
    {
      "@id": "Doris Tauber",
      "@type": "bf2:Agent",
      "bf2:role": {
        "@id": "Work3ContributorRole1"
      }
    },
    {
      "@id": "Sis Willner",
      "@type": "bf2:Agent",
      "bf2:role": {
        "@id": "Work3ContributorRole2"
      }
    },
    {
      "@id": "Work3ContributorRole1",
      "@type": "bf2:Role",
      "rdfs:label": "Written-By"
    },
    {
      "@id": "Work3ContributorRole2",
      "@type": "bf2:Role",
      "rdfs:label": "Written-By"
    }
  ]
}

N3

@prefix ns0: <http://id.loc.gov/ontologies/bibframe/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://njh.me/Work1>
  a <http://id.loc.gov/ontologies/bibframe/Work>, <http://id.loc.gov/ontologies/bibframe/Audio> ;
  ns0:contribution <http://njh.me/Work1PrimaryContribution1>, <http://njh.me/Work1PrimaryContribution2>, <http://njh.me/Work1SecondaryContribution1> ;
  ns0:genreForm <http://id.loc.gov/authorities/genreForms/gf2014027009>, <http://id.loc.gov/authorities/genreForms/gf2014026879> ;
  ns0:hasInstance <http://njh.me/Instance1> ;
  ns0:hasPart <http://njh.me/Work3>, <http://njh.me/Work2> ;
  ns0:title <http://njh.me/Work1Title> .

<http://njh.me/Work1PrimaryContribution1>
  a <http://id.loc.gov/ontologies/bflc/PrimaryContribution> ;
  ns0:agent <http://njh.me/Frank Sinatra> .

<http://njh.me/Work1PrimaryContribution2>
  a <http://id.loc.gov/ontologies/bflc/PrimaryContribution> ;
  ns0:agent <http://njh.me/The Modernaires> .

<http://njh.me/Work1SecondaryContribution1>
  a ns0:Contribution ;
  ns0:agent <http://njh.me/Axel Stordahl> .

<http://id.loc.gov/authorities/genreForms/gf2014027009>
  a ns0:GenreForm ;
  rdfs:label "Popular music"^^xsd:string .

<http://id.loc.gov/authorities/genreForms/gf2014026879>
  a ns0:GenreForm ;
  rdfs:label "Jazz"^^xsd:string .

<http://njh.me/Instance1>
  a ns0:Instance ;
  ns0:baseMaterial <http://vocab.getty.edu/aat/300014502> ;
  ns0:carrier <http://id.loc.gov/vocabulary/carriers/sd> ;
  ns0:dimensions <http://njh.me/7 inches> ;
  ns0:identifiedBy <http://njh.me/IdentifierPrimary>, <http://njh.me/Identifier1>, <http://njh.me/Identifier2> ;
  ns0:provisionActivity <http://njh.me/ProvisionActivityDate>, <http://njh.me/ProvisionActivity1> ;
  ns0:soundCharacteristic <http://njh.me/PlayingSpeed1> ;
  ns0:title <http://njh.me/Instance1Title> .

<http://njh.me/Work3>
  a ns0:Work, ns0:Audio ;
  ns0:contribution <http://njh.me/Work3PrimaryContribution1>, <http://njh.me/Work3PrimaryContribution2>, <http://njh.me/Work3Contribution1>, <http://njh.me/Work3Contribution2> ;
  ns0:title <http://njh.me/Work3Title> .

<http://njh.me/Work2>
  a ns0:Work, ns0:Audio ;
  ns0:contribution <http://njh.me/Work2PrimaryContribution1>, <http://njh.me/Work2PrimaryContribution2>, <http://njh.me/Work2Contribution1>, <http://njh.me/Work2Contribution2> ;
  ns0:title <http://njh.me/Work2Title> .

<http://njh.me/Work1Title> ns0:mainTitle "Sorry / Why Remind Me"^^xsd:string .
<http://njh.me/Frank Sinatra> a ns0:Agent .
<http://njh.me/The Modernaires> a ns0:Agent .
<http://njh.me/Axel Stordahl>
  a ns0:Agent ;
  ns0:role <http://njh.me/Work1SecondaryContributor_Role1> .

<http://njh.me/Work1SecondaryContributor_Role1>
  a ns0:Role ;
  rdfs:label "Directed By [Orchestra]"^^xsd:string .

<http://vocab.getty.edu/aat/300014502>
  a ns0:BaseMaterial ;
  rdfs:label "Vinyl"^^xsd:string .

<http://id.loc.gov/vocabulary/carriers/sd>
  a ns0:Carrier ;
  rdfs:label "audio disc"^^xsd:string .

<http://njh.me/IdentifierPrimary>
  a ns0:Identifier ;
  rdf:value 11620608 .

<http://njh.me/Identifier1>
  a ns0:Identifier ;
  rdfs:label "ZLP 1892 1A"^^xsd:string .

<http://njh.me/Identifier2>
  a ns0:Identifier ;
  rdfs:label "ZLP 1893 10"^^xsd:string .

<http://njh.me/ProvisionActivityDate>
  a ns0:ProvisionActivity ;
  ns0:date "1950"^^xsd:date .

<http://njh.me/ProvisionActivity1>
  a ns0:ProvisionActivity ;
  ns0:agent <http://njh.me/Columbia> .

<http://njh.me/PlayingSpeed1>
  a ns0:PlayingSpeed ;
  rdfs:label "33 1/3 RPM"^^xsd:string .

<http://njh.me/Instance1Title> ns0:mainTitle "Sorry / Why Remind Me"^^xsd:string .
<http://njh.me/Columbia>
  a ns0:Agent ;
  ns0:role <http://njh.me/PA_Role1> .

<http://njh.me/PA_Role1>
  a ns0:Role ;
  rdfs:label "Label"^^xsd:string .

<http://njh.me/Work2PrimaryContribution1>
  a <http://id.loc.gov/ontologies/bflc/PrimaryContribution> ;
  ns0:agent <http://njh.me/Frank Sinatra> .

<http://njh.me/Work2PrimaryContribution2>
  a <http://id.loc.gov/ontologies/bflc/PrimaryContribution> ;
  ns0:agent <http://njh.me/The Modernaires> .

<http://njh.me/Work2Contribution1>
  a ns0:Contribution ;
  ns0:agent <http://njh.me/Buddy Pepper> .

<http://njh.me/Work2Contribution2>
  a ns0:Contribution ;
  ns0:agent <http://njh.me/Richard Whiting> .

<http://njh.me/Work2Title>
  a ns0:Title ;
  ns0:mainTitle "Sorry"^^xsd:string .

<http://njh.me/Buddy Pepper>
  a ns0:Agent ;
  ns0:role <http://njh.me/Work2ContributorRole1> .

<http://njh.me/Richard Whiting>
  a ns0:Agent ;
  ns0:role <http://njh.me/Work2ContributorRole2> .

<http://njh.me/Work2ContributorRole1>
  a ns0:Role ;
  rdfs:label "Written-By"^^xsd:string .

<http://njh.me/Work2ContributorRole2>
  a ns0:Role ;
  rdfs:label "Written-By"^^xsd:string .

<http://njh.me/Work3PrimaryContribution1>
  a <http://id.loc.gov/ontologies/bflc/PrimaryContribution> ;
  ns0:agent <http://njh.me/Frank Sinatra> .

<http://njh.me/Work3PrimaryContribution2>
  a <http://id.loc.gov/ontologies/bflc/PrimaryContribution> ;
  ns0:agent <http://njh.me/The Modernaires> .

<http://njh.me/Work3Contribution1>
  a ns0:Contribution ;
  ns0:agent <http://njh.me/Doris Tauber> .

<http://njh.me/Work3Contribution2>
  a ns0:Contribution ;
  ns0:agent <http://njh.me/Sis Willner> .

<http://njh.me/Work3Title>
  a ns0:Title ;
  ns0:mainTitle "Why Remind Me"^^xsd:string .

<http://njh.me/Doris Tauber>
  a ns0:Agent ;
  ns0:role <http://njh.me/Work3ContributorRole1> .

<http://njh.me/Sis Willner>
  a ns0:Agent ;
  ns0:role <http://njh.me/Work3ContributorRole2> .

<http://njh.me/Work3ContributorRole1>
  a ns0:Role ;
  rdfs:label "Written-By"^^xsd:string .

<http://njh.me/Work3ContributorRole2>
  a ns0:Role ;
  rdfs:label "Written-By"^^xsd:string .