|  | The source file for the webpage contains json-ld encoded data: 
 
 
{
  "@context": {
    "brick": "https://brickschema.org/schema/Brick#",
    "csvw": "http://www.w3.org/ns/csvw#",
    "dc": "http://purl.org/dc/elements/1.1/",
    "dcam": "http://purl.org/dc/dcam/",
    "dcat": "http://www.w3.org/ns/dcat#",
    "dcmitype": "http://purl.org/dc/dcmitype/",
    "dcterms": "http://purl.org/dc/terms/",
    "doap": "http://usefulinc.com/ns/doap#",
    "foaf": "http://xmlns.com/foaf/0.1/",
    "odrl": "http://www.w3.org/ns/odrl/2/",
    "org": "http://www.w3.org/ns/org#",
    "owl": "http://www.w3.org/2002/07/owl#",
    "prof": "http://www.w3.org/ns/dx/prof/",
    "prov": "http://www.w3.org/ns/prov#",
    "qb": "http://purl.org/linked-data/cube#",
    "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
    "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
    "schema": "https://schema.org/",
    "sh": "http://www.w3.org/ns/shacl#",
    "skos": "http://www.w3.org/2004/02/skos/core#",
    "sosa": "http://www.w3.org/ns/sosa/",
    "ssn": "http://www.w3.org/ns/ssn/",
    "time": "http://www.w3.org/2006/time#",
    "vann": "http://purl.org/vocab/vann/",
    "void": "http://rdfs.org/ns/void#",
    "xsd": "http://www.w3.org/2001/XMLSchema#"
  },
  "@graph": [
    {
      "@id": "schema:name",
      "@type": "rdf:Property",
      "owl:equivalentProperty": {
        "@id": "dcterms:title"
      },
      "rdfs:comment": "The name of the item.",
      "rdfs:label": "name",
      "rdfs:subPropertyOf": {
        "@id": "rdfs:label"
      },
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:description",
      "@type": "rdf:Property",
      "owl:equivalentProperty": {
        "@id": "dcterms:description"
      },
      "rdfs:comment": "A description of the item.",
      "rdfs:label": "description",
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:Text"
        },
        {
          "@id": "schema:TextObject"
        }
      ]
    },
    {
      "@id": "schema:hasOfferCatalog",
      "@type": "rdf:Property",
      "rdfs:comment": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
      "rdfs:label": "hasOfferCatalog",
      "schema:domainIncludes": [
        {
          "@id": "schema:Service"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:OfferCatalog"
      }
    }
}
 | 
		|  | @graph": [
    {
      "@id": "schema:Thing",
      "@type": "rdfs:Class",
      "rdfs:comment": "The most generic type of item.",
      "rdfs:label": "Thing"
    },
   {
      "@id": "schema:Person",
      "@type": "rdfs:Class",
      "owl:equivalentClass": {
        "@id": "foaf:Person"
      },
      "rdfs:comment": "A person (alive, dead, undead, or fictional).",
      "rdfs:label": "Person",
      "rdfs:subClassOf": {
        "@id": "schema:Thing"
      },
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/rNews"
      }
    },
    {
      "@id": "schema:nationality",
      "@type": "rdf:Property",
      "rdfs:comment": "Nationality of the person.",
      "rdfs:label": "nationality",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Country"
      }
    },
 Thing -> Person.Nationality
 
 |