https://fasnl.net/id/individual/1acd8e99-7821-4388-8701-23f373cdf5c6
first name
Robert
last name
Cook
display name
Cook, Robert



RDF
json
{
  "@context": "https://fasnl.net/res/fasnl-context.json",
  "@type": "Person",
  "id": "individual:1acd8e99-7821-4388-8701-23f373cdf5c6",
  "_label": "Cook, Robert",
  "identified_by": [
    {
      "type": "Name",
      "classified_as": [
        {
          "id": "aat:300404670",
          "type": "Type",
          "_label": "Primary Name"
        }
      ],
      "content": "Robert Cook",
      "part": [
        {
          "type": "Name",
          "classified_as": [
            {
              "id": "aat:300404651",
              "type": "Type",
              "_label": "Given Name"
            }
          ],
          "content": "Robert"
        },
        {
          "type": "Name",
          "classified_as": [
            {
              "id": "aat:300404652",
              "type": "Type",
              "_label": "Last Name"
            }
          ],
          "content": "Cook"
        }
      ]
    }
  ]
}
ttl
@prefix aat: <http://vocab.getty.edu/aat/> .
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix individual: <https://fasnl.net/id/individual/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

individual:1acd8e99-7821-4388-8701-23f373cdf5c6 a crm:E21_Person ;
    rdfs:label "Cook, Robert" ;
    crm:P1_is_identified_by [ a crm:E33_E41_Linguistic_Appellation ;
            crm:P106_is_composed_of [ a crm:E33_E41_Linguistic_Appellation ;
                    crm:P190_has_symbolic_content "Robert" ;
                    crm:P2_has_type aat:300404651 ],
                [ a crm:E33_E41_Linguistic_Appellation ;
                    crm:P190_has_symbolic_content "Cook" ;
                    crm:P2_has_type aat:300404652 ] ;
            crm:P190_has_symbolic_content "Robert Cook" ;
            crm:P2_has_type aat:300404670 ] .

aat:300404651 a crm:E55_Type ;
    rdfs:label "Given Name" .

aat:300404652 a crm:E55_Type ;
    rdfs:label "Last Name" .

aat:300404670 a crm:E55_Type ;
    rdfs:label "Primary Name" .

xml
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
  xmlns:crm="http://www.cidoc-crm.org/cidoc-crm/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
  <crm:E21_Person rdf:about="https://fasnl.net/id/individual/1acd8e99-7821-4388-8701-23f373cdf5c6">
    <rdfs:label>Cook, Robert</rdfs:label>
    <crm:P1_is_identified_by>
      <crm:E33_E41_Linguistic_Appellation rdf:nodeID="Neb39608f4874405f98b7a37a4ca46330">
        <crm:P2_has_type rdf:resource="http://vocab.getty.edu/aat/300404670"/>
        <crm:P190_has_symbolic_content>Robert Cook</crm:P190_has_symbolic_content>
        <crm:P106_is_composed_of>
          <crm:E33_E41_Linguistic_Appellation rdf:nodeID="Nb8dea5cb56734f558af063ffe0d7b03a">
            <crm:P2_has_type rdf:resource="http://vocab.getty.edu/aat/300404651"/>
            <crm:P190_has_symbolic_content>Robert</crm:P190_has_symbolic_content>
          </crm:E33_E41_Linguistic_Appellation>
        </crm:P106_is_composed_of>
        <crm:P106_is_composed_of>
          <crm:E33_E41_Linguistic_Appellation rdf:nodeID="Nd5487ee0c9454cd794fe324346c73b06">
            <crm:P2_has_type rdf:resource="http://vocab.getty.edu/aat/300404652"/>
            <crm:P190_has_symbolic_content>Cook</crm:P190_has_symbolic_content>
          </crm:E33_E41_Linguistic_Appellation>
        </crm:P106_is_composed_of>
      </crm:E33_E41_Linguistic_Appellation>
    </crm:P1_is_identified_by>
  </crm:E21_Person>
  <crm:E55_Type rdf:about="http://vocab.getty.edu/aat/300404670">
    <rdfs:label>Primary Name</rdfs:label>
  </crm:E55_Type>
  <crm:E55_Type rdf:about="http://vocab.getty.edu/aat/300404651">
    <rdfs:label>Given Name</rdfs:label>
  </crm:E55_Type>
  <crm:E55_Type rdf:about="http://vocab.getty.edu/aat/300404652">
    <rdfs:label>Last Name</rdfs:label>
  </crm:E55_Type>
</rdf:RDF>