René's URL Explorer Experiment


Title: Person - Schema.org Type

Description: Schema.org Type: Person - A person (alive, dead, undead, or fictional).

direct link

Domain: schema.org


Hey, it has json ld scripts:
{
  "@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/",
    "geo": "http://www.opengis.net/ont/geosparql#",
    "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#",
    "wgs": "https://www.w3.org/2003/01/geo/wgs84_pos#",
    "xsd": "http://www.w3.org/2001/XMLSchema#"
  },
  "@graph": [
    {
      "@id": "schema:Person",
      "@type": "rdfs:Class",
      "rdfs:comment": "A person (alive, dead, undead, or fictional).",
      "rdfs:label": "Person",
      "owl:equivalentClass": {
        "@id": "foaf:Person"
      },
      "rdfs:subClassOf": {
        "@id": "schema:Thing"
      },
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/rNews"
      }
    },
    {
      "@id": "schema:Thing",
      "@type": "rdfs:Class",
      "rdfs:comment": "The most generic type of item.",
      "rdfs:label": "Thing"
    },
    {
      "@id": "schema:additionalName",
      "@type": "rdf:Property",
      "rdfs:comment": "An additional name for a Person, can be used for a middle name.",
      "rdfs:label": "additionalName",
      "rdfs:subPropertyOf": {
        "@id": "schema:alternateName"
      },
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:additionalType",
      "@type": "rdf:Property",
      "rdfs:comment": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. Typically the value is a URI-identified RDF class, and in this case corresponds to the\n    use of rdf:type in RDF. Text values can be used sparingly, for cases where useful information can be added without their being an appropriate schema to reference. In the case of text values, the class label should follow the schema.org style guide.",
      "rdfs:label": "additionalType",
      "rdfs:subPropertyOf": {
        "@id": "rdf:type"
      },
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:Text"
        },
        {
          "@id": "schema:URL"
        }
      ]
    },
    {
      "@id": "schema:address",
      "@type": "rdf:Property",
      "rdfs:comment": "Physical address of the item.",
      "rdfs:label": "address",
      "owl:equivalentProperty": {
        "@id": "https://ref.gs1.org/voc/address"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:GeoCoordinates"
        },
        {
          "@id": "schema:GeoShape"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Place"
        }
      ],
      "schema:rangeIncludes": [
        {
          "@id": "schema:PostalAddress"
        },
        {
          "@id": "schema:Text"
        }
      ]
    },
    {
      "@id": "schema:affiliation",
      "@type": "rdf:Property",
      "rdfs:comment": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.",
      "rdfs:label": "affiliation",
      "rdfs:subPropertyOf": {
        "@id": "schema:memberOf"
      },
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Organization"
      }
    },
    {
      "@id": "schema:agentInteractionStatistic",
      "@type": "rdf:Property",
      "rdfs:comment": "The number of completed interactions for this entity, in a particular role (the 'agent'), in a particular action (indicated in the statistic), and in a particular context (i.e. interactionService).",
      "rdfs:label": "agentInteractionStatistic",
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": {
        "@id": "schema:InteractionCounter"
      },
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/2858"
      }
    },
    {
      "@id": "schema:alternateName",
      "@type": "rdf:Property",
      "rdfs:comment": "An alias for the item.",
      "rdfs:label": "alternateName",
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:alumniOf",
      "@type": "rdf:Property",
      "rdfs:comment": "An organization that the person is an alumni of.",
      "rdfs:label": "alumniOf",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:inverseOf": {
        "@id": "schema:alumni"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:EducationalOrganization"
        },
        {
          "@id": "schema:Organization"
        }
      ]
    },
    {
      "@id": "schema:award",
      "@type": "rdf:Property",
      "rdfs:comment": "An award won by or for this item.",
      "rdfs:label": "award",
      "schema:domainIncludes": [
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Product"
        },
        {
          "@id": "schema:Service"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:awards",
      "@type": "rdf:Property",
      "rdfs:comment": "Awards won by or for this item.",
      "rdfs:label": "awards",
      "schema:domainIncludes": [
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Product"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      },
      "schema:supersededBy": {
        "@id": "schema:award"
      }
    },
    {
      "@id": "schema:birthDate",
      "@type": "rdf:Property",
      "rdfs:comment": "Date of birth.",
      "rdfs:label": "birthDate",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Date"
      }
    },
    {
      "@id": "schema:birthPlace",
      "@type": "rdf:Property",
      "rdfs:comment": "The place where the person was born.",
      "rdfs:label": "birthPlace",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Place"
      }
    },
    {
      "@id": "schema:brand",
      "@type": "rdf:Property",
      "rdfs:comment": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.",
      "rdfs:label": "brand",
      "owl:equivalentProperty": {
        "@id": "http://unece.org/vocab#brandName"
      },
      "rdfs:subPropertyOf": {
        "@id": "https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/hasDesignation"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Product"
        },
        {
          "@id": "schema:Service"
        }
      ],
      "schema:rangeIncludes": [
        {
          "@id": "schema:Brand"
        },
        {
          "@id": "schema:Organization"
        }
      ]
    },
    {
      "@id": "schema:callSign",
      "@type": "rdf:Property",
      "rdfs:comment": "A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.",
      "rdfs:label": "callSign",
      "rdfs:subPropertyOf": {
        "@id": "schema:identifier"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:BroadcastService"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Vehicle"
        }
      ],
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      },
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/2109"
      }
    },
    {
      "@id": "schema:children",
      "@type": "rdf:Property",
      "rdfs:comment": "A child of the person.",
      "rdfs:label": "children",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      }
    },
    {
      "@id": "schema:colleague",
      "@type": "rdf:Property",
      "rdfs:comment": "A colleague of the person.",
      "rdfs:label": "colleague",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:URL"
        }
      ]
    },
    {
      "@id": "schema:colleagues",
      "@type": "rdf:Property",
      "rdfs:comment": "A colleague of the person.",
      "rdfs:label": "colleagues",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      },
      "schema:supersededBy": {
        "@id": "schema:colleague"
      }
    },
    {
      "@id": "schema:contactPoint",
      "@type": "rdf:Property",
      "rdfs:comment": "A contact point for a person or organization.",
      "rdfs:label": "contactPoint",
      "owl:equivalentProperty": [
        {
          "@id": "https://ref.gs1.org/voc/contactPoint"
        },
        {
          "@id": "https://spec.edmcouncil.org/fibo/ontology/FND/Organizations/Organizations/hasContactPoint"
        }
      ],
      "schema:domainIncludes": [
        {
          "@id": "schema:HealthInsurancePlan"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:ContactPoint"
      }
    },
    {
      "@id": "schema:contactPoints",
      "@type": "rdf:Property",
      "rdfs:comment": "A contact point for a person or organization.",
      "rdfs:label": "contactPoints",
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:ContactPoint"
      },
      "schema:supersededBy": {
        "@id": "schema:contactPoint"
      }
    },
    {
      "@id": "schema:deathDate",
      "@type": "rdf:Property",
      "rdfs:comment": "Date of death.",
      "rdfs:label": "deathDate",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Date"
      }
    },
    {
      "@id": "schema:deathPlace",
      "@type": "rdf:Property",
      "rdfs:comment": "The place where the person died.",
      "rdfs:label": "deathPlace",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Place"
      }
    },
    {
      "@id": "schema:description",
      "@type": "rdf:Property",
      "rdfs:comment": "A description of the item.",
      "rdfs:label": "description",
      "owl:equivalentProperty": [
        {
          "@id": "dcterms:description"
        },
        {
          "@id": "http://ogp.me/ns#description"
        },
        {
          "@id": "https://ref.gs1.org/voc/description"
        }
      ],
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:Text"
        },
        {
          "@id": "schema:TextObject"
        }
      ]
    },
    {
      "@id": "schema:disambiguatingDescription",
      "@type": "rdf:Property",
      "rdfs:comment": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.",
      "rdfs:label": "disambiguatingDescription",
      "rdfs:subPropertyOf": {
        "@id": "schema:description"
      },
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:duns",
      "@type": "rdf:Property",
      "rdfs:comment": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
      "rdfs:label": "duns",
      "owl:equivalentProperty": {
        "@id": "http://unece.org/vocab#dUNSId"
      },
      "rdfs:subPropertyOf": {
        "@id": "schema:identifier"
      },
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:email",
      "@type": "rdf:Property",
      "rdfs:comment": "Email address.",
      "rdfs:label": "email",
      "owl:equivalentProperty": {
        "@id": "https://ref.gs1.org/voc/email"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:ContactPoint"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:familyName",
      "@type": "rdf:Property",
      "rdfs:comment": "Family name. In the U.S., the last name of a Person.",
      "rdfs:label": "familyName",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:faxNumber",
      "@type": "rdf:Property",
      "rdfs:comment": "The fax number.",
      "rdfs:label": "faxNumber",
      "owl:equivalentProperty": {
        "@id": "https://ref.gs1.org/voc/faxNumber"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:ContactPoint"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Place"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:follows",
      "@type": "rdf:Property",
      "rdfs:comment": "The most generic uni-directional social relation.",
      "rdfs:label": "follows",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      }
    },
    {
      "@id": "schema:funder",
      "@type": "rdf:Property",
      "rdfs:comment": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
      "rdfs:label": "funder",
      "rdfs:subPropertyOf": {
        "@id": "schema:sponsor"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:Event"
        },
        {
          "@id": "schema:Grant"
        },
        {
          "@id": "schema:MonetaryGrant"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ]
    },
    {
      "@id": "schema:funding",
      "@type": "rdf:Property",
      "rdfs:comment": "A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].",
      "rdfs:label": "funding",
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/TP"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:BioChemEntity"
        },
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:Event"
        },
        {
          "@id": "schema:MedicalEntity"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Product"
        }
      ],
      "schema:inverseOf": {
        "@id": "schema:fundedItem"
      },
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Grant"
      },
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/383"
      }
    },
    {
      "@id": "schema:gender",
      "@type": "rdf:Property",
      "rdfs:comment": "Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While https://schema.org/Male and https://schema.org/Female may be used, text strings are also acceptable for people who are not a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of \"Mixed\".",
      "rdfs:label": "gender",
      "schema:domainIncludes": [
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:SportsTeam"
        }
      ],
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:GenderType"
        },
        {
          "@id": "schema:Text"
        }
      ],
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/2341"
      }
    },
    {
      "@id": "schema:givenName",
      "@type": "rdf:Property",
      "rdfs:comment": "Given name. In the U.S., the first name of a Person.",
      "rdfs:label": "givenName",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:globalLocationNumber",
      "@type": "rdf:Property",
      "rdfs:comment": "The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
      "rdfs:label": "globalLocationNumber",
      "owl:equivalentProperty": [
        {
          "@id": "http://unece.org/vocab#gLNId"
        },
        {
          "@id": "https://ref.gs1.org/voc/globalLocationNumber"
        }
      ],
      "rdfs:subPropertyOf": {
        "@id": "schema:identifier"
      },
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Place"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:hasCertification",
      "@type": "rdf:Property",
      "rdfs:comment": "Certification information about a product, organization, service, place, or person.",
      "rdfs:label": "hasCertification",
      "owl:equivalentProperty": {
        "@id": "http://unece.org/vocab#ApplicableCertificate"
      },
      "rdfs:subPropertyOf": [
        {
          "@id": "https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Documents/isReferencedIn"
        },
        {
          "@id": "https://www.omg.org/spec/Commons/Classifiers/isClassifiedBy"
        }
      ],
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Place"
        },
        {
          "@id": "schema:Product"
        },
        {
          "@id": "schema:Service"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Certification"
      },
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/3230"
      }
    },
    {
      "@id": "schema:hasCredential",
      "@type": "rdf:Property",
      "rdfs:comment": "A credential awarded to the Person or Organization.",
      "rdfs:label": "hasCredential",
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Credential"
      },
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
      }
    },
    {
      "@id": "schema:hasOccupation",
      "@type": "rdf:Property",
      "rdfs:comment": "The Person's occupation. For past professions, use Role for expressing dates.",
      "rdfs:label": "hasOccupation",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Occupation"
      },
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
      }
    },
    {
      "@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:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Service"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:OfferCatalog"
      }
    },
    {
      "@id": "schema:hasPOS",
      "@type": "rdf:Property",
      "rdfs:comment": "Points-of-Sales operated by the organization or person.",
      "rdfs:label": "hasPOS",
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Place"
      }
    },
    {
      "@id": "schema:height",
      "@type": "rdf:Property",
      "rdfs:comment": "The height of the item.",
      "rdfs:label": "height",
      "schema:domainIncludes": [
        {
          "@id": "schema:MediaObject"
        },
        {
          "@id": "schema:OfferShippingDetails"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Product"
        },
        {
          "@id": "schema:ShippingConditions"
        },
        {
          "@id": "schema:VisualArtwork"
        }
      ],
      "schema:rangeIncludes": [
        {
          "@id": "schema:Distance"
        },
        {
          "@id": "schema:QuantitativeValue"
        }
      ],
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/3617"
      }
    },
    {
      "@id": "schema:homeLocation",
      "@type": "rdf:Property",
      "rdfs:comment": "A contact location for a person's residence.",
      "rdfs:label": "homeLocation",
      "rdfs:subPropertyOf": {
        "@id": "schema:location"
      },
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:ContactPoint"
        },
        {
          "@id": "schema:Place"
        }
      ]
    },
    {
      "@id": "schema:honorificPrefix",
      "@type": "rdf:Property",
      "rdfs:comment": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.",
      "rdfs:label": "honorificPrefix",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:honorificSuffix",
      "@type": "rdf:Property",
      "rdfs:comment": "An honorific suffix following a Person's name such as M.D./PhD/MSCSW.",
      "rdfs:label": "honorificSuffix",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:identifier",
      "@type": "rdf:Property",
      "rdfs:comment": "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.\n        ",
      "rdfs:label": "identifier",
      "owl:equivalentProperty": [
        {
          "@id": "dcterms:identifier"
        },
        {
          "@id": "https://www.omg.org/spec/Commons/Identifiers/identifiedBy"
        }
      ],
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:PropertyValue"
        },
        {
          "@id": "schema:Text"
        },
        {
          "@id": "schema:URL"
        }
      ]
    },
    {
      "@id": "schema:image",
      "@type": "rdf:Property",
      "rdfs:comment": "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].",
      "rdfs:label": "image",
      "owl:equivalentProperty": {
        "@id": "http://ogp.me/ns#image"
      },
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:ImageObject"
        },
        {
          "@id": "schema:URL"
        }
      ]
    },
    {
      "@id": "schema:interactionStatistic",
      "@type": "rdf:Property",
      "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.",
      "rdfs:label": "interactionStatistic",
      "schema:domainIncludes": [
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:InteractionCounter"
      },
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/2421"
      }
    },
    {
      "@id": "schema:isicV4",
      "@type": "rdf:Property",
      "rdfs:comment": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
      "rdfs:label": "isicV4",
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Place"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:jobTitle",
      "@type": "rdf:Property",
      "rdfs:comment": "The job title of the person (for example, Financial Manager).",
      "rdfs:label": "jobTitle",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:DefinedTerm"
        },
        {
          "@id": "schema:Text"
        }
      ],
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/2192"
      }
    },
    {
      "@id": "schema:knows",
      "@type": "rdf:Property",
      "rdfs:comment": "The most generic bi-directional social/work relation.",
      "rdfs:label": "knows",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      }
    },
    {
      "@id": "schema:knowsAbout",
      "@type": "rdf:Property",
      "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.",
      "rdfs:label": "knowsAbout",
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/TP"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:Text"
        },
        {
          "@id": "schema:Thing"
        },
        {
          "@id": "schema:URL"
        }
      ],
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
      }
    },
    {
      "@id": "schema:knowsLanguage",
      "@type": "rdf:Property",
      "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).",
      "rdfs:label": "knowsLanguage",
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/TP"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:Language"
        },
        {
          "@id": "schema:Text"
        }
      ],
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
      }
    },
    {
      "@id": "schema:lifeEvent",
      "@type": "rdf:Property",
      "rdfs:comment": "A life event like baptism, communions, Bar Mitzvahs, Aqiqah, Namakarana, Miyamairi, burial, ....",
      "rdfs:label": "lifeEvent",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Event"
      },
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/4540"
      }
    },
    {
      "@id": "schema:mainEntityOfPage",
      "@type": "rdf:Property",
      "rdfs:comment": "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.",
      "rdfs:label": "mainEntityOfPage",
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:inverseOf": {
        "@id": "schema:mainEntity"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:URL"
        }
      ]
    },
    {
      "@id": "schema:makesOffer",
      "@type": "rdf:Property",
      "rdfs:comment": "A pointer to products or services offered by the organization or person.",
      "rdfs:label": "makesOffer",
      "owl:equivalentProperty": {
        "@id": "https://spec.edmcouncil.org/fibo/ontology/FND/ProductsAndServices/ProductsAndServices/offers"
      },
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:inverseOf": {
        "@id": "schema:offeredBy"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Offer"
      }
    },
    {
      "@id": "schema:memberOf",
      "@type": "rdf:Property",
      "rdfs:comment": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
      "rdfs:label": "memberOf",
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:inverseOf": {
        "@id": "schema:member"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:MemberProgramTier"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:ProgramMembership"
        }
      ]
    },
    {
      "@id": "schema:naics",
      "@type": "rdf:Property",
      "rdfs:comment": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
      "rdfs:label": "naics",
      "rdfs:subPropertyOf": {
        "@id": "https://www.omg.org/spec/Commons/Classifiers/isClassifiedBy"
      },
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:name",
      "@type": "rdf:Property",
      "rdfs:comment": "The name of the item.",
      "rdfs:label": "name",
      "owl:equivalentProperty": [
        {
          "@id": "dcterms:title"
        },
        {
          "@id": "http://ogp.me/ns#title"
        },
        {
          "@id": "https://www.omg.org/spec/Commons/Text/hasName"
        }
      ],
      "rdfs:subPropertyOf": {
        "@id": "rdfs:label"
      },
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@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"
      }
    },
    {
      "@id": "schema:netWorth",
      "@type": "rdf:Property",
      "rdfs:comment": "The total financial value of the person as calculated by subtracting the total value of liabilities from the total value of assets.",
      "rdfs:label": "netWorth",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:MonetaryAmount"
        },
        {
          "@id": "schema:PriceSpecification"
        }
      ]
    },
    {
      "@id": "schema:owner",
      "@type": "rdf:Property",
      "rdfs:comment": "A person or organization who owns this Thing.",
      "rdfs:label": "owner",
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:inverseOf": {
        "@id": "schema:owns"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/4603"
      }
    },
    {
      "@id": "schema:owns",
      "@type": "rdf:Property",
      "rdfs:comment": "Things owned by the organization or person.",
      "rdfs:label": "owns",
      "owl:equivalentProperty": {
        "@id": "https://ref.gs1.org/voc/owns"
      },
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:inverseOf": {
        "@id": "schema:owner"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Thing"
      },
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/4603"
      }
    },
    {
      "@id": "schema:parent",
      "@type": "rdf:Property",
      "rdfs:comment": "A parent of this person.",
      "rdfs:label": "parent",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      }
    },
    {
      "@id": "schema:parents",
      "@type": "rdf:Property",
      "rdfs:comment": "A parents of the person.",
      "rdfs:label": "parents",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      },
      "schema:supersededBy": {
        "@id": "schema:parent"
      }
    },
    {
      "@id": "schema:performerIn",
      "@type": "rdf:Property",
      "rdfs:comment": "Event that this person is a performer or participant in.",
      "rdfs:label": "performerIn",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Event"
      }
    },
    {
      "@id": "schema:potentialAction",
      "@type": "rdf:Property",
      "rdfs:comment": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.",
      "rdfs:label": "potentialAction",
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Action"
      }
    },
    {
      "@id": "schema:pronouns",
      "@type": "rdf:Property",
      "rdfs:comment": "A short string listing or describing pronouns for a person. Typically the person concerned is the best authority as pronouns are a critical part of personal identity and expression. Publishers and consumers of this information are reminded to treat this data responsibly, take country-specific laws related to gender expression into account, and be wary of out-of-date data and drawing unwarranted inferences about the person being described.\n\nIn English, formulations such as \"they/them\", \"she/her\", and \"he/him\" are commonly used online and can also be used here. We do not intend to enumerate all possible micro-syntaxes in all languages. More structured and well-defined external values for pronouns can be referenced using the [[StructuredValue]] or [[DefinedTerm]] values.\n",
      "rdfs:label": "pronouns",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:isPartOf": {
        "@id": "https://pending.schema.org"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:DefinedTerm"
        },
        {
          "@id": "schema:StructuredValue"
        },
        {
          "@id": "schema:Text"
        }
      ],
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/2935"
      }
    },
    {
      "@id": "schema:publishingPrinciples",
      "@type": "rdf:Property",
      "rdfs:comment": "The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.\n",
      "rdfs:label": "publishingPrinciples",
      "schema:domainIncludes": [
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": [
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:URL"
        }
      ]
    },
    {
      "@id": "schema:relatedTo",
      "@type": "rdf:Property",
      "rdfs:comment": "The most generic familial relation.",
      "rdfs:label": "relatedTo",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      }
    },
    {
      "@id": "schema:sameAs",
      "@type": "rdf:Property",
      "rdfs:comment": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.",
      "rdfs:label": "sameAs",
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": {
        "@id": "schema:URL"
      }
    },
    {
      "@id": "schema:seeks",
      "@type": "rdf:Property",
      "rdfs:comment": "A pointer to products or services sought by the organization or person (demand).",
      "rdfs:label": "seeks",
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Demand"
      }
    },
    {
      "@id": "schema:sibling",
      "@type": "rdf:Property",
      "rdfs:comment": "A sibling of the person.",
      "rdfs:label": "sibling",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      }
    },
    {
      "@id": "schema:siblings",
      "@type": "rdf:Property",
      "rdfs:comment": "A sibling of the person.",
      "rdfs:label": "siblings",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      },
      "schema:supersededBy": {
        "@id": "schema:sibling"
      }
    },
    {
      "@id": "schema:skills",
      "@type": "rdf:Property",
      "rdfs:comment": "A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is either claimed by a person, an organization or desired or required to fulfill a role or to work in an occupation.",
      "rdfs:label": "skills",
      "schema:domainIncludes": [
        {
          "@id": "schema:JobPosting"
        },
        {
          "@id": "schema:Occupation"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": [
        {
          "@id": "schema:DefinedTerm"
        },
        {
          "@id": "schema:Text"
        }
      ],
      "schema:source": [
        {
          "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
        },
        {
          "@id": "https://github.com/schemaorg/schemaorg/issues/2322"
        }
      ]
    },
    {
      "@id": "schema:sponsor",
      "@type": "rdf:Property",
      "rdfs:comment": "A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
      "rdfs:label": "sponsor",
      "schema:domainIncludes": [
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:Event"
        },
        {
          "@id": "schema:Grant"
        },
        {
          "@id": "schema:MedicalStudy"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ]
    },
    {
      "@id": "schema:spouse",
      "@type": "rdf:Property",
      "rdfs:comment": "The person's spouse.",
      "rdfs:label": "spouse",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Person"
      }
    },
    {
      "@id": "schema:subjectOf",
      "@type": "rdf:Property",
      "rdfs:comment": "A CreativeWork or Event about this Thing.",
      "rdfs:label": "subjectOf",
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:inverseOf": {
        "@id": "schema:about"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:CreativeWork"
        },
        {
          "@id": "schema:Event"
        }
      ],
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/1670"
      }
    },
    {
      "@id": "schema:taxID",
      "@type": "rdf:Property",
      "rdfs:comment": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
      "rdfs:label": "taxID",
      "owl:equivalentProperty": {
        "@id": "https://spec.edmcouncil.org/fibo/ontology/FND/Parties/Parties/hasTaxIdentifier"
      },
      "rdfs:subPropertyOf": {
        "@id": "schema:identifier"
      },
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:telephone",
      "@type": "rdf:Property",
      "rdfs:comment": "The telephone number.",
      "rdfs:label": "telephone",
      "owl:equivalentProperty": {
        "@id": "https://ref.gs1.org/voc/telephone"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:ContactPoint"
        },
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Place"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:url",
      "@type": "rdf:Property",
      "rdfs:comment": "URL of the item.",
      "rdfs:label": "url",
      "owl:equivalentProperty": {
        "@id": "http://ogp.me/ns#url"
      },
      "schema:domainIncludes": {
        "@id": "schema:Thing"
      },
      "schema:rangeIncludes": {
        "@id": "schema:URL"
      }
    },
    {
      "@id": "schema:vatID",
      "@type": "rdf:Property",
      "rdfs:comment": "The value-added Tax ID of the organization or person with national prefix (for example IT123456789). Can also be described as [[iso6523Code]] with proper prefix.",
      "rdfs:label": "vatID",
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:Organization"
        },
        {
          "@id": "schema:Person"
        }
      ],
      "schema:rangeIncludes": {
        "@id": "schema:Text"
      }
    },
    {
      "@id": "schema:weight",
      "@type": "rdf:Property",
      "rdfs:comment": "The weight of the product or person.",
      "rdfs:label": "weight",
      "schema:contributor": {
        "@id": "https://schema.org/docs/collab/GoodRelationsTerms"
      },
      "schema:domainIncludes": [
        {
          "@id": "schema:OfferShippingDetails"
        },
        {
          "@id": "schema:Person"
        },
        {
          "@id": "schema:Product"
        },
        {
          "@id": "schema:ShippingConditions"
        },
        {
          "@id": "schema:VisualArtwork"
        }
      ],
      "schema:rangeIncludes": [
        {
          "@id": "schema:Mass"
        },
        {
          "@id": "schema:QuantitativeValue"
        }
      ],
      "schema:source": {
        "@id": "https://github.com/schemaorg/schemaorg/issues/3617"
      }
    },
    {
      "@id": "schema:workLocation",
      "@type": "rdf:Property",
      "rdfs:comment": "A contact location for a person's place of work.",
      "rdfs:label": "workLocation",
      "rdfs:subPropertyOf": {
        "@id": "schema:location"
      },
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": [
        {
          "@id": "schema:ContactPoint"
        },
        {
          "@id": "schema:Place"
        }
      ]
    },
    {
      "@id": "schema:worksFor",
      "@type": "rdf:Property",
      "rdfs:comment": "Organizations that the person works for.",
      "rdfs:label": "worksFor",
      "schema:domainIncludes": {
        "@id": "schema:Person"
      },
      "schema:rangeIncludes": {
        "@id": "schema:Organization"
      }
    }
  ]
}

Nonesnippet

Links:

Schema.orghttps://schema.org
how we workhttps://schema.org/docs/howwework.html
Schema.orghttps://schema.org/
Docshttps://schema.org/docs/documents.html
Schemashttps://schema.org/docs/schemas.html
Validatehttps://validator.schema.org
Abouthttps://schema.org/docs/about.html
javascript:void(0);
10M+ Domains Based on monthly aggregations from Google's web index. https://schema.org/docs/usage_stats.html
Thinghttps://schema.org/Thing
Personhttps://schema.org/Person
Check for open issues.https://github.com/schemaorg/schemaorg/issues?q=is%3Aissue+is%3Aopen+Person
Personhttps://schema.org/Person
additionalNamehttps://schema.org/additionalName
Texthttps://schema.org/Text
addresshttps://schema.org/address
PostalAddresshttps://schema.org/PostalAddress
Texthttps://schema.org/Text
affiliationhttps://schema.org/affiliation
Organizationhttps://schema.org/Organization
agentInteractionStatistichttps://schema.org/agentInteractionStatistic
InteractionCounterhttps://schema.org/InteractionCounter
alumniOfhttps://schema.org/alumniOf
EducationalOrganizationhttps://schema.org/EducationalOrganization
Organizationhttps://schema.org/Organization
alumnihttps://schema.org/alumni
awardhttps://schema.org/award
Texthttps://schema.org/Text
awardshttps://schema.org/awards
birthDatehttps://schema.org/birthDate
Datehttps://schema.org/Date
birthPlacehttps://schema.org/birthPlace
Placehttps://schema.org/Place
brandhttps://schema.org/brand
Brandhttps://schema.org/Brand
Organizationhttps://schema.org/Organization
callSignhttps://schema.org/callSign
Texthttps://schema.org/Text
callsignhttps://en.wikipedia.org/wiki/Call_sign
childrenhttps://schema.org/children
Personhttps://schema.org/Person
colleaguehttps://schema.org/colleague
Personhttps://schema.org/Person
URLhttps://schema.org/URL
colleagueshttps://schema.org/colleagues
contactPointhttps://schema.org/contactPoint
ContactPointhttps://schema.org/ContactPoint
contactPointshttps://schema.org/contactPoints
deathDatehttps://schema.org/deathDate
Datehttps://schema.org/Date
deathPlacehttps://schema.org/deathPlace
Placehttps://schema.org/Place
dunshttps://schema.org/duns
Texthttps://schema.org/Text
emailhttps://schema.org/email
Texthttps://schema.org/Text
familyNamehttps://schema.org/familyName
Texthttps://schema.org/Text
faxNumberhttps://schema.org/faxNumber
Texthttps://schema.org/Text
followshttps://schema.org/follows
Personhttps://schema.org/Person
funderhttps://schema.org/funder
Organizationhttps://schema.org/Organization
Personhttps://schema.org/Person
fundinghttps://schema.org/funding
Granthttps://schema.org/Grant
Granthttps://schema.org/Grant
ownershipFundingInfohttps://schema.org/ownershipFundingInfo
fundedItemhttps://schema.org/fundedItem
genderhttps://schema.org/gender
GenderTypehttps://schema.org/GenderType
Texthttps://schema.org/Text
Personhttps://schema.org/Person
genderhttps://schema.org/gender
SportsTeamhttps://schema.org/SportsTeam
givenNamehttps://schema.org/givenName
Texthttps://schema.org/Text
globalLocationNumberhttps://schema.org/globalLocationNumber
Texthttps://schema.org/Text
Global Location Numberhttp://www.gs1.org/gln
hasCertificationhttps://schema.org/hasCertification
Certificationhttps://schema.org/Certification
hasCredentialhttps://schema.org/hasCredential
Credentialhttps://schema.org/Credential
hasOccupationhttps://schema.org/hasOccupation
Occupationhttps://schema.org/Occupation
hasOfferCataloghttps://schema.org/hasOfferCatalog
OfferCataloghttps://schema.org/OfferCatalog
hasPOShttps://schema.org/hasPOS
Placehttps://schema.org/Place
heighthttps://schema.org/height
Distancehttps://schema.org/Distance
QuantitativeValuehttps://schema.org/QuantitativeValue
homeLocationhttps://schema.org/homeLocation
ContactPointhttps://schema.org/ContactPoint
Placehttps://schema.org/Place
honorificPrefixhttps://schema.org/honorificPrefix
Texthttps://schema.org/Text
honorificSuffixhttps://schema.org/honorificSuffix
Texthttps://schema.org/Text
interactionStatistichttps://schema.org/interactionStatistic
InteractionCounterhttps://schema.org/InteractionCounter
interactionCounthttps://schema.org/interactionCount
isicV4https://schema.org/isicV4
Texthttps://schema.org/Text
jobTitlehttps://schema.org/jobTitle
DefinedTermhttps://schema.org/DefinedTerm
Texthttps://schema.org/Text
knowshttps://schema.org/knows
Personhttps://schema.org/Person
knowsAbouthttps://schema.org/knowsAbout
Texthttps://schema.org/Text
Thinghttps://schema.org/Thing
URLhttps://schema.org/URL
Personhttps://schema.org/Person
Organizationhttps://schema.org/Organization
JobPostinghttps://schema.org/JobPosting
knowsLanguagehttps://schema.org/knowsLanguage
Languagehttps://schema.org/Language
Texthttps://schema.org/Text
Personhttps://schema.org/Person
Organizationhttps://schema.org/Organization
IETF BCP 47 standardhttp://tools.ietf.org/html/bcp47
lifeEventhttps://schema.org/lifeEvent
Eventhttps://schema.org/Event
makesOfferhttps://schema.org/makesOffer
Offerhttps://schema.org/Offer
offeredByhttps://schema.org/offeredBy
memberOfhttps://schema.org/memberOf
MemberProgramTierhttps://schema.org/MemberProgramTier
Organizationhttps://schema.org/Organization
ProgramMembershiphttps://schema.org/ProgramMembership
memberhttps://schema.org/member
naicshttps://schema.org/naics
Texthttps://schema.org/Text
nationalityhttps://schema.org/nationality
Countryhttps://schema.org/Country
netWorthhttps://schema.org/netWorth
MonetaryAmounthttps://schema.org/MonetaryAmount
PriceSpecificationhttps://schema.org/PriceSpecification
ownshttps://schema.org/owns
Thinghttps://schema.org/Thing
ownerhttps://schema.org/owner
parenthttps://schema.org/parent
Personhttps://schema.org/Person
parentshttps://schema.org/parents
performerInhttps://schema.org/performerIn
Eventhttps://schema.org/Event
pronounshttps://schema.org/pronouns
DefinedTermhttps://schema.org/DefinedTerm
StructuredValuehttps://schema.org/StructuredValue
Texthttps://schema.org/Text
StructuredValuehttps://schema.org/StructuredValue
DefinedTermhttps://schema.org/DefinedTerm
publishingPrincipleshttps://schema.org/publishingPrinciples
CreativeWorkhttps://schema.org/CreativeWork
URLhttps://schema.org/URL
URLhttps://schema.org/URL
Organizationhttps://schema.org/Organization
Personhttps://schema.org/Person
CreativeWorkhttps://schema.org/CreativeWork
NewsArticlehttps://schema.org/NewsArticle
CreativeWorkhttps://schema.org/CreativeWork
funderhttps://schema.org/funder
relatedTohttps://schema.org/relatedTo
Personhttps://schema.org/Person
seekshttps://schema.org/seeks
Demandhttps://schema.org/Demand
siblinghttps://schema.org/sibling
Personhttps://schema.org/Person
siblingshttps://schema.org/siblings
skillshttps://schema.org/skills
DefinedTermhttps://schema.org/DefinedTerm
Texthttps://schema.org/Text
sponsorhttps://schema.org/sponsor
Organizationhttps://schema.org/Organization
Personhttps://schema.org/Person
spousehttps://schema.org/spouse
Personhttps://schema.org/Person
taxIDhttps://schema.org/taxID
Texthttps://schema.org/Text
telephonehttps://schema.org/telephone
Texthttps://schema.org/Text
vatIDhttps://schema.org/vatID
Texthttps://schema.org/Text
iso6523Codehttps://schema.org/iso6523Code
weighthttps://schema.org/weight
Masshttps://schema.org/Mass
QuantitativeValuehttps://schema.org/QuantitativeValue
workLocationhttps://schema.org/workLocation
ContactPointhttps://schema.org/ContactPoint
Placehttps://schema.org/Place
worksForhttps://schema.org/worksFor
Organizationhttps://schema.org/Organization
Thinghttps://schema.org/Thing
additionalTypehttps://schema.org/additionalType
Texthttps://schema.org/Text
URLhttps://schema.org/URL
style guidehttps://schema.org/docs/styleguide.html
alternateNamehttps://schema.org/alternateName
Texthttps://schema.org/Text
descriptionhttps://schema.org/description
Texthttps://schema.org/Text
TextObjecthttps://schema.org/TextObject
disambiguatingDescriptionhttps://schema.org/disambiguatingDescription
Texthttps://schema.org/Text
identifierhttps://schema.org/identifier
PropertyValuehttps://schema.org/PropertyValue
Texthttps://schema.org/Text
URLhttps://schema.org/URL
Thinghttps://schema.org/Thing
background noteshttps://schema.org/docs/datamodel.html#identifierBg
imagehttps://schema.org/image
ImageObjecthttps://schema.org/ImageObject
URLhttps://schema.org/URL
URLhttps://schema.org/URL
ImageObjecthttps://schema.org/ImageObject
mainEntityOfPagehttps://schema.org/mainEntityOfPage
CreativeWorkhttps://schema.org/CreativeWork
URLhttps://schema.org/URL
background noteshttps://schema.org/docs/datamodel.html#mainEntityBackground
mainEntityhttps://schema.org/mainEntity
namehttps://schema.org/name
Texthttps://schema.org/Text
ownerhttps://schema.org/owner
Organizationhttps://schema.org/Organization
Personhttps://schema.org/Person
ownshttps://schema.org/owns
potentialActionhttps://schema.org/potentialAction
Actionhttps://schema.org/Action
sameAshttps://schema.org/sameAs
URLhttps://schema.org/URL
subjectOfhttps://schema.org/subjectOf
CreativeWorkhttps://schema.org/CreativeWork
Eventhttps://schema.org/Event
abouthttps://schema.org/about
urlhttps://schema.org/url
URLhttps://schema.org/URL
Personhttps://schema.org/Person
accountablePersonhttps://schema.org/accountablePerson
CreativeWorkhttps://schema.org/CreativeWork
acquiredFromhttps://schema.org/acquiredFrom
OwnershipInfohttps://schema.org/OwnershipInfo
actorhttps://schema.org/actor
Cliphttps://schema.org/Clip
CreativeWorkSeasonhttps://schema.org/CreativeWorkSeason
Episodehttps://schema.org/Episode
Eventhttps://schema.org/Event
Moviehttps://schema.org/Movie
MovieSerieshttps://schema.org/MovieSeries
PodcastSerieshttps://schema.org/PodcastSeries
RadioSerieshttps://schema.org/RadioSeries
TVSerieshttps://schema.org/TVSeries
VideoGamehttps://schema.org/VideoGame
VideoGameSerieshttps://schema.org/VideoGameSeries
VideoObjecthttps://schema.org/VideoObject
actorshttps://schema.org/actors
Cliphttps://schema.org/Clip
Episodehttps://schema.org/Episode
Moviehttps://schema.org/Movie
MovieSerieshttps://schema.org/MovieSeries
RadioSerieshttps://schema.org/RadioSeries
TVSerieshttps://schema.org/TVSeries
VideoGamehttps://schema.org/VideoGame
VideoGameSerieshttps://schema.org/VideoGameSeries
VideoObjecthttps://schema.org/VideoObject
agenthttps://schema.org/agent
Actionhttps://schema.org/Action
alumnihttps://schema.org/alumni
EducationalOrganizationhttps://schema.org/EducationalOrganization
Organizationhttps://schema.org/Organization
artisthttps://schema.org/artist
ComicIssuehttps://schema.org/ComicIssue
ComicStoryhttps://schema.org/ComicStory
VisualArtworkhttps://schema.org/VisualArtwork
athletehttps://schema.org/athlete
SportsTeamhttps://schema.org/SportsTeam
attendeehttps://schema.org/attendee
Eventhttps://schema.org/Event
attendeeshttps://schema.org/attendees
Eventhttps://schema.org/Event
authorhttps://schema.org/author
CreativeWorkhttps://schema.org/CreativeWork
Ratinghttps://schema.org/Rating
awayTeamhttps://schema.org/awayTeam
SportsEventhttps://schema.org/SportsEvent
bccRecipienthttps://schema.org/bccRecipient
Messagehttps://schema.org/Message
bookingAgenthttps://schema.org/bookingAgent
Reservationhttps://schema.org/Reservation
borrowerhttps://schema.org/borrower
LendActionhttps://schema.org/LendAction
brokerhttps://schema.org/broker
Invoicehttps://schema.org/Invoice
Orderhttps://schema.org/Order
Reservationhttps://schema.org/Reservation
Servicehttps://schema.org/Service
buyerhttps://schema.org/buyer
SellActionhttps://schema.org/SellAction
byArtisthttps://schema.org/byArtist
MusicAlbumhttps://schema.org/MusicAlbum
MusicRecordinghttps://schema.org/MusicRecording
candidatehttps://schema.org/candidate
VoteActionhttps://schema.org/VoteAction
ccRecipienthttps://schema.org/ccRecipient
Messagehttps://schema.org/Message
characterhttps://schema.org/character
CreativeWorkhttps://schema.org/CreativeWork
childrenhttps://schema.org/children
Personhttps://schema.org/Person
claimInterpreterhttps://schema.org/claimInterpreter
Claimhttps://schema.org/Claim
Claimhttps://schema.org/Claim
MediaObjecthttps://schema.org/MediaObject
interpretedAsClaimhttps://schema.org/interpretedAsClaim
MediaObjecthttps://schema.org/MediaObject
coachhttps://schema.org/coach
SportsTeamhttps://schema.org/SportsTeam
colleaguehttps://schema.org/colleague
Personhttps://schema.org/Person
colleagueshttps://schema.org/colleagues
Personhttps://schema.org/Person
coloristhttps://schema.org/colorist
ComicIssuehttps://schema.org/ComicIssue
ComicStoryhttps://schema.org/ComicStory
VisualArtworkhttps://schema.org/VisualArtwork
competitorhttps://schema.org/competitor
SportsEventhttps://schema.org/SportsEvent
composerhttps://schema.org/composer
Eventhttps://schema.org/Event
MusicCompositionhttps://schema.org/MusicComposition
contributorhttps://schema.org/contributor
CreativeWorkhttps://schema.org/CreativeWork
Eventhttps://schema.org/Event
copyrightHolderhttps://schema.org/copyrightHolder
CreativeWorkhttps://schema.org/CreativeWork
creatorhttps://schema.org/creator
CreativeWorkhttps://schema.org/CreativeWork
UserCommentshttps://schema.org/UserComments
creditedTohttps://schema.org/creditedTo
MusicReleasehttps://schema.org/MusicRelease
customerhttps://schema.org/customer
Invoicehttps://schema.org/Invoice
Orderhttps://schema.org/Order
directorhttps://schema.org/director
Cliphttps://schema.org/Clip
CreativeWorkSeasonhttps://schema.org/CreativeWorkSeason
Episodehttps://schema.org/Episode
Eventhttps://schema.org/Event
Moviehttps://schema.org/Movie
MovieSerieshttps://schema.org/MovieSeries
RadioSerieshttps://schema.org/RadioSeries
TVSerieshttps://schema.org/TVSeries
VideoGamehttps://schema.org/VideoGame
VideoGameSerieshttps://schema.org/VideoGameSeries
VideoObjecthttps://schema.org/VideoObject
directorshttps://schema.org/directors
Cliphttps://schema.org/Clip
Episodehttps://schema.org/Episode
Moviehttps://schema.org/Movie
MovieSerieshttps://schema.org/MovieSeries
RadioSerieshttps://schema.org/RadioSeries
TVSerieshttps://schema.org/TVSeries
VideoGamehttps://schema.org/VideoGame
VideoGameSerieshttps://schema.org/VideoGameSeries
VideoObjecthttps://schema.org/VideoObject
editorhttps://schema.org/editor
CreativeWorkhttps://schema.org/CreativeWork
employeehttps://schema.org/employee
Organizationhttps://schema.org/Organization
employeeshttps://schema.org/employees
Organizationhttps://schema.org/Organization
endorseehttps://schema.org/endorsee
EndorseActionhttps://schema.org/EndorseAction
endorsershttps://schema.org/endorsers
Diethttps://schema.org/Diet
followeehttps://schema.org/followee
FollowActionhttps://schema.org/FollowAction
followshttps://schema.org/follows
Personhttps://schema.org/Person
founderhttps://schema.org/founder
Organizationhttps://schema.org/Organization
foundershttps://schema.org/founders
Organizationhttps://schema.org/Organization
fundedItemhttps://schema.org/fundedItem
Granthttps://schema.org/Grant
Granthttps://schema.org/Grant
ownershipFundingInfohttps://schema.org/ownershipFundingInfo
funderhttps://schema.org/funder
CreativeWorkhttps://schema.org/CreativeWork
Eventhttps://schema.org/Event
Granthttps://schema.org/Grant
MonetaryGranthttps://schema.org/MonetaryGrant
Organizationhttps://schema.org/Organization
Personhttps://schema.org/Person
granteehttps://schema.org/grantee
DigitalDocumentPermissionhttps://schema.org/DigitalDocumentPermission
hiringOrganizationhttps://schema.org/hiringOrganization
JobPostinghttps://schema.org/JobPosting
homeTeamhttps://schema.org/homeTeam
SportsEventhttps://schema.org/SportsEvent
illustratorhttps://schema.org/illustrator
Bookhttps://schema.org/Book
inkerhttps://schema.org/inker
ComicIssuehttps://schema.org/ComicIssue
ComicStoryhttps://schema.org/ComicStory
VisualArtworkhttps://schema.org/VisualArtwork
instructorhttps://schema.org/instructor
CourseInstancehttps://schema.org/CourseInstance
CourseInstancehttps://schema.org/CourseInstance
knowshttps://schema.org/knows
Personhttps://schema.org/Person
landlordhttps://schema.org/landlord
RentActionhttps://schema.org/RentAction
legalRepresentativehttps://schema.org/legalRepresentative
Organizationhttps://schema.org/Organization
legislationCountersignedByhttps://schema.org/legislationCountersignedBy
Legislationhttps://schema.org/Legislation
legislationPassedByhttps://schema.org/legislationPassedBy
Legislationhttps://schema.org/Legislation
legislationResponsiblehttps://schema.org/legislationResponsible
Legislationhttps://schema.org/Legislation
lenderhttps://schema.org/lender
BorrowActionhttps://schema.org/BorrowAction
lettererhttps://schema.org/letterer
ComicIssuehttps://schema.org/ComicIssue
ComicStoryhttps://schema.org/ComicStory
VisualArtworkhttps://schema.org/VisualArtwork
loserhttps://schema.org/loser
WinActionhttps://schema.org/WinAction
lyricisthttps://schema.org/lyricist
MusicCompositionhttps://schema.org/MusicComposition
maintainerhttps://schema.org/maintainer
CreativeWorkhttps://schema.org/CreativeWork
Datasethttps://schema.org/Dataset
SoftwareApplicationhttps://schema.org/SoftwareApplication
Projecthttps://schema.org/Project
Personhttps://schema.org/Person
Organizationhttps://schema.org/Organization
maintainerhttps://schema.org/maintainer
Datasethttps://schema.org/Dataset
isBasedOnhttps://schema.org/isBasedOn
memberhttps://schema.org/member
Organizationhttps://schema.org/Organization
ProgramMembershiphttps://schema.org/ProgramMembership
membershttps://schema.org/members
Organizationhttps://schema.org/Organization
ProgramMembershiphttps://schema.org/ProgramMembership
merchanthttps://schema.org/merchant
Orderhttps://schema.org/Order
musicByhttps://schema.org/musicBy
Cliphttps://schema.org/Clip
Episodehttps://schema.org/Episode
Moviehttps://schema.org/Movie
MovieSerieshttps://schema.org/MovieSeries
RadioSerieshttps://schema.org/RadioSeries
TVSerieshttps://schema.org/TVSeries
VideoGamehttps://schema.org/VideoGame
VideoGameSerieshttps://schema.org/VideoGameSeries
VideoObjecthttps://schema.org/VideoObject
musicGroupMemberhttps://schema.org/musicGroupMember
MusicGrouphttps://schema.org/MusicGroup
offeredByhttps://schema.org/offeredBy
Offerhttps://schema.org/Offer
opponenthttps://schema.org/opponent
ExerciseActionhttps://schema.org/ExerciseAction
organizerhttps://schema.org/organizer
Eventhttps://schema.org/Event
ownerhttps://schema.org/owner
Thinghttps://schema.org/Thing
parenthttps://schema.org/parent
Personhttps://schema.org/Person
parentshttps://schema.org/parents
Personhttps://schema.org/Person
participanthttps://schema.org/participant
Actionhttps://schema.org/Action
pencilerhttps://schema.org/penciler
ComicIssuehttps://schema.org/ComicIssue
ComicStoryhttps://schema.org/ComicStory
VisualArtworkhttps://schema.org/VisualArtwork
performerhttps://schema.org/performer
Eventhttps://schema.org/Event
performershttps://schema.org/performers
Eventhttps://schema.org/Event
producerhttps://schema.org/producer
CreativeWorkhttps://schema.org/CreativeWork
providerhttps://schema.org/provider
Actionhttps://schema.org/Action
CreativeWorkhttps://schema.org/CreativeWork
EducationalOccupationalProgramhttps://schema.org/EducationalOccupationalProgram
FinancialIncentivehttps://schema.org/FinancialIncentive
Invoicehttps://schema.org/Invoice
ParcelDeliveryhttps://schema.org/ParcelDelivery
Reservationhttps://schema.org/Reservation
Servicehttps://schema.org/Service
Triphttps://schema.org/Trip
publishedByhttps://schema.org/publishedBy
PublicationEventhttps://schema.org/PublicationEvent
publisherhttps://schema.org/publisher
CreativeWorkhttps://schema.org/CreativeWork
FinancialIncentivehttps://schema.org/FinancialIncentive
readByhttps://schema.org/readBy
Audiobookhttps://schema.org/Audiobook
recipienthttps://schema.org/recipient
AuthorizeActionhttps://schema.org/AuthorizeAction
CommunicateActionhttps://schema.org/CommunicateAction
DonateActionhttps://schema.org/DonateAction
GiveActionhttps://schema.org/GiveAction
Messagehttps://schema.org/Message
PayActionhttps://schema.org/PayAction
ReturnActionhttps://schema.org/ReturnAction
SendActionhttps://schema.org/SendAction
TipActionhttps://schema.org/TipAction
refereehttps://schema.org/referee
SportsEventhttps://schema.org/SportsEvent
relatedTohttps://schema.org/relatedTo
Personhttps://schema.org/Person
reviewedByhttps://schema.org/reviewedBy
WebPagehttps://schema.org/WebPage
sdPublisherhttps://schema.org/sdPublisher
CreativeWorkhttps://schema.org/CreativeWork
sdPublisherhttps://schema.org/sdPublisher
sellerhttps://schema.org/seller
BuyActionhttps://schema.org/BuyAction
Demandhttps://schema.org/Demand
Flighthttps://schema.org/Flight
Offerhttps://schema.org/Offer
Orderhttps://schema.org/Order
senderhttps://schema.org/sender
Messagehttps://schema.org/Message
ReceiveActionhttps://schema.org/ReceiveAction
siblinghttps://schema.org/sibling
Personhttps://schema.org/Person
siblingshttps://schema.org/siblings
Personhttps://schema.org/Person
spokenByCharacterhttps://schema.org/spokenByCharacter
Quotationhttps://schema.org/Quotation
sponsorhttps://schema.org/sponsor
CreativeWorkhttps://schema.org/CreativeWork
Eventhttps://schema.org/Event
Granthttps://schema.org/Grant
MedicalStudyhttps://schema.org/MedicalStudy
Organizationhttps://schema.org/Organization
Personhttps://schema.org/Person
spousehttps://schema.org/spouse
Personhttps://schema.org/Person
toRecipienthttps://schema.org/toRecipient
Messagehttps://schema.org/Message
translatorhttps://schema.org/translator
CreativeWorkhttps://schema.org/CreativeWork
Eventhttps://schema.org/Event
underNamehttps://schema.org/underName
Reservationhttps://schema.org/Reservation
Tickethttps://schema.org/Ticket
vendorhttps://schema.org/vendor
BuyActionhttps://schema.org/BuyAction
winnerhttps://schema.org/winner
LoseActionhttps://schema.org/LoseAction
Patienthttps://schema.org/Patient
rnews.orghttp://rnews.org
Example 1https://schema.org/Person#eg-0001
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 2https://schema.org/Person#eg-0189
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 3https://schema.org/Person#eg-0206
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 4https://schema.org/Person#eg-0212
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 5https://schema.org/Person#eg-0249
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 6https://schema.org/Person#eg-0250
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 7https://schema.org/Person#eg-0276
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 8https://schema.org/Person#eg-0295
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 9https://schema.org/Person#eg-0374
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 10https://schema.org/Person#eg-0375
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 11https://schema.org/Person#eg-0376
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 12https://schema.org/Person#eg-0388
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 13https://schema.org/Person#eg-0427
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 14https://schema.org/Person#eg-0428
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Example 15https://schema.org/Person#eg-0454
Microdatahttps://en.wikipedia.org/wiki/Microdata_(HTML)
RDFahttps://en.wikipedia.org/wiki/RDFa
JSON-LDhttps://en.wikipedia.org/wiki/JSON-LD
Terms and conditionshttps://schema.org/docs/terms.html

Viewport: width=device-width, initial-scale=1


URLs of crawlers that visited me.