@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf4j: <http://rdf4j.org/schema/rdf4j#> .
@prefix sesame: <http://www.openrdf.org/schema/sesame#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fn: <http://www.w3.org/2005/xpath-functions#> .
@prefix : <http://schema.org/> .

<http://purl.org/dsnotify/vocab/eventset/CreateEvent>
    a owl:Class ;
    rdfs:comment "An event class describing that a particular resource was 'created' in a dataset. This means that one or more triples having the associated resource as subject or object were created in the corresponding RDF model."@en-us ;
    rdfs:label "create event"@en-us ;
    rdfs:subClassOf <http://purl.org/dsnotify/vocab/eventset/ResourceChangeEvent> .

<http://purl.org/dsnotify/vocab/eventset/MoveEvent>
    a owl:Class ;
    rdfs:comment "An event class describing that a particular resource was 'moved' in a dataset or between datasets. This means that all triples having the associated older resource as subject/object were replaced by triples having the target resource as subject/object in the corresponding RDF models. "@en-us ;
    rdfs:label "Move event"@en-us ;
    rdfs:subClassOf <http://purl.org/dsnotify/vocab/eventset/ResourceChangeEvent> .

<http://purl.org/dsnotify/vocab/eventset/RemoveEvent>
    a owl:Class ;
    rdfs:comment "An event class describing that a particular resource was 'removed' from a dataset. This means that all triples having the associated resource as subject or object were removed from the corresponding RDF model."@en-us ;
    rdfs:label "Remove event"@en-us ;
    rdfs:subClassOf <http://purl.org/dsnotify/vocab/eventset/ResourceChangeEvent> .

<http://purl.org/dsnotify/vocab/eventset/UpdateEvent>
    a owl:Class ;
    rdfs:comment "An event class describing that a particular resource was 'updated' in a dataset. This means that some triples having the associated resource as subject or object were modified/created/removed in the corresponding RDF model."@en-us ;
    rdfs:label "Update event"@en-us ;
    rdfs:subClassOf <http://purl.org/dsnotify/vocab/eventset/ResourceChangeEvent> .

<http://purl.org/dsnotify/vocab/eventset/sourceResource>
    a owl:DatatypeProperty ;
    rdfs:comment "The identifier (URI) of a resource that was published under a new URI (i.e., when a MoveEvent occurred)."@en-us ;
    rdfs:domain <http://purl.org/dsnotify/vocab/eventset/MoveEvent> ;
    rdfs:label "source resource"@en-us ;
    rdfs:range xsd:anyURI .

<http://purl.org/dsnotify/vocab/eventset/targetResource>
    a owl:DatatypeProperty ;
    rdfs:comment "The identifier (URI) of a resource that was affected by the corresponding event."@en-us ;
    rdfs:domain <http://purl.org/dsnotify/vocab/eventset/ResourceChangeEvent> ;
    rdfs:label "target resource"@en-us ;
    rdfs:range xsd:anyURI .

<http://purl.org/vocab/changeset/schema#ChangeSet>
    <http://purl.org/dc/terms/issued> "2005-12-14" ;
    a owl:Class ;
    rdfs:isDefinedBy <http://purl.org/vocab/changeset/schema> ;
    rdfs:label "ChangeSet"@en ;
    rdfs:subClassOf [
        a owl:Class ;
        owl:intersectionOf ([
                a owl:Restriction ;
                owl:minCardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty <http://purl.org/vocab/changeset/schema#statement>
            ]
            [
                a owl:Restriction ;
                owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty <http://purl.org/vocab/changeset/schema#previousChangeSet>
            ]
            [
                a owl:Restriction ;
                owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty <http://purl.org/vocab/changeset/schema#subjectOfChange>
            ]
            [
                a owl:Restriction ;
                owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty <http://purl.org/vocab/changeset/schema#createdDate>
            ]
            [
                a owl:Restriction ;
                owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty <http://purl.org/vocab/changeset/schema#creatorName>
            ]
            [
                a owl:Restriction ;
                owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty <http://purl.org/vocab/changeset/schema#changeReason>
            ]
        )
    ] ;
    <http://www.w3.org/2004/02/skos/core#changeNote> [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Improved documentation"
    ] ;
    <http://www.w3.org/2004/02/skos/core#definition> "The encapsulation of a delta between two versions of a resource description"@en ;
    <http://www.w3.org/2004/02/skos/core#historyNote> [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Added property cardinality restrictions"
    ] .

<http://purl.org/vocab/changeset/schema#addition>
    <http://purl.org/dc/terms/issued> "2005-12-14" ;
    a owl:ObjectProperty ;
    rdfs:comment """
      By convention the subject of the triple being added should be the same as the subjectOfChange
    """@en ;
    rdfs:domain <http://purl.org/vocab/changeset/schema#ChangeSet> ;
    rdfs:isDefinedBy <http://purl.org/vocab/changeset/schema> ;
    rdfs:label "addition"@en ;
    rdfs:range rdf:Statement ;
    rdfs:subPropertyOf <http://purl.org/vocab/changeset/schema#statement> ;
    <http://www.w3.org/2004/02/skos/core#changeNote> [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Added definitition and documentation"
    ] ;
    <http://www.w3.org/2004/02/skos/core#definition> "a triple to be added to the resource description"@en ;
    <http://www.w3.org/2004/02/skos/core#historyNote> [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Made a sub-property of statement"
    ], [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Made owl:ObjectProperty"
    ] .

<http://purl.org/vocab/changeset/schema#createdDate>
    <http://purl.org/dc/terms/issued> "2005-12-14" ;
    a owl:DatatypeProperty ;
    rdfs:comment """
      The date should be in W3CDTF format
    """@en ;
    rdfs:domain <http://purl.org/vocab/changeset/schema#ChangeSet> ;
    rdfs:isDefinedBy <http://purl.org/vocab/changeset/schema> ;
    rdfs:label "createdDate"@en ;
    rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/date> ;
    <http://www.w3.org/2004/02/skos/core#definition> "the date that the changeset was created"@en ;
    <http://www.w3.org/2004/02/skos/core#historyNote> [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Made owl:DatatypeProperty"
    ] .

<http://purl.org/vocab/changeset/schema#removal>
    <http://purl.org/dc/terms/issued> "2005-12-14" ;
    a owl:ObjectProperty ;
    rdfs:comment """
      By convention the subject of the triple being removed should be the same as the subjectOfChange
    """@en ;
    rdfs:domain <http://purl.org/vocab/changeset/schema#ChangeSet> ;
    rdfs:isDefinedBy <http://purl.org/vocab/changeset/schema> ;
    rdfs:label "removal"@en ;
    rdfs:range rdf:Statement ;
    rdfs:subPropertyOf <http://purl.org/vocab/changeset/schema#statement> ;
    <http://www.w3.org/2004/02/skos/core#changeNote> [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Added definitition and documentation"
    ] ;
    <http://www.w3.org/2004/02/skos/core#definition> "a triple to be removed from the resource description"@en ;
    <http://www.w3.org/2004/02/skos/core#historyNote> [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Made a sub-property of statement"
    ], [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Made owl:ObjectProperty"
    ] .

<http://purl.org/vocab/changeset/schema#subjectOfChange>
    <http://purl.org/dc/terms/issued> "2005-12-14" ;
    a owl:ObjectProperty ;
    rdfs:domain <http://purl.org/vocab/changeset/schema#ChangeSet> ;
    rdfs:isDefinedBy <http://purl.org/vocab/changeset/schema> ;
    rdfs:label "subjectOfChange"@en ;
    rdfs:range rdfs:Resource ;
    <http://www.w3.org/2004/02/skos/core#changeNote> [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Added definitition and documentation"
    ] ;
    <http://www.w3.org/2004/02/skos/core#definition> "the resource to which this set of changes applies"@en ;
    <http://www.w3.org/2004/02/skos/core#historyNote> [
        <http://purl.org/dc/terms/creator> "Ian Davis" ;
        <http://purl.org/dc/terms/date> "2006-03-21" ;
        rdf:value "Made owl:ObjectProperty"
    ] .

:Collection
    :isPartOf <https://bib.schema.org> ;
    a rdfs:Class ;
    rdfs:comment "A collection of items e.g. creative works or products." ;
    rdfs:label "Collection" ;
    rdfs:subClassOf :CreativeWork .

:CreativeWork
    :source <http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews> ;
    a rdfs:Class ;
    rdfs:comment "The most generic kind of creative work, including books, movies, photographs, software programs, etc." ;
    rdfs:label "CreativeWork" ;
    rdfs:subClassOf :Thing .

:DataDownload
    :source <http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass> ;
    a rdfs:Class ;
    rdfs:comment "A dataset in downloadable form." ;
    rdfs:label "DataDownload" ;
    rdfs:subClassOf :MediaObject ;
    owl:equivalentClass <http://www.w3.org/ns/dcat#Distribution> .

:Dataset
    :source <http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass> ;
    a rdfs:Class ;
    rdfs:comment "A body of structured information describing some topic(s) of interest." ;
    rdfs:label "Dataset" ;
    rdfs:subClassOf :CreativeWork ;
    owl:equivalentClass <http://purl.org/dc/dcmitype/Dataset>, <http://rdfs.org/ns/void#Dataset>, <http://www.w3.org/ns/dcat#Dataset> .

:DefinedTermSet
    :isPartOf <https://pending.schema.org> ;
    :source <https://github.com/schemaorg/schemaorg/issues/894> ;
    a rdfs:Class ;
    rdfs:comment "A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration." ;
    rdfs:label "DefinedTermSet" ;
    rdfs:subClassOf :CreativeWork .

:ImageObject
    a rdfs:Class ;
    rdfs:comment "An image file." ;
    rdfs:label "ImageObject" ;
    rdfs:subClassOf :MediaObject ;
    owl:equivalentClass <http://purl.org/dc/dcmitype/Image> .

:Organization
    a rdfs:Class ;
    rdfs:comment "An organization such as a school, NGO, corporation, club, etc." ;
    rdfs:label "Organization" ;
    rdfs:subClassOf :Thing .

:StructuredValue
    a rdfs:Class ;
    rdfs:comment "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." ;
    rdfs:label "StructuredValue" ;
    rdfs:subClassOf :Intangible .

:about
    :domainIncludes :CommunicateAction, :CreativeWork, :Event ;
    :inverseOf :subjectOf ;
    :rangeIncludes :Thing ;
    :source <https://github.com/schemaorg/schemaorg/issues/1670> ;
    a rdf:Property ;
    rdfs:comment "The subject matter of the content." ;
    rdfs:label "about" .

:alternateName
    :domainIncludes :Thing ;
    :rangeIncludes :Text ;
    a rdf:Property ;
    rdfs:comment "An alias for the item." ;
    rdfs:label "alternateName" .

:citation
    :domainIncludes :CreativeWork ;
    :rangeIncludes :CreativeWork, :Text ;
    a rdf:Property ;
    rdfs:comment "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc." ;
    rdfs:label "citation" .

:contentSize
    :domainIncludes :MediaObject ;
    :rangeIncludes :Text ;
    a rdf:Property ;
    rdfs:comment "File size in (mega/kilo) bytes." ;
    rdfs:label "contentSize" .

:contentUrl
    :domainIncludes :MediaObject ;
    :rangeIncludes :URL ;
    a rdf:Property ;
    rdfs:comment "Actual bytes of the media object, for example the image file or video file." ;
    rdfs:label "contentUrl" .

:contributor
    :domainIncludes :CreativeWork, :Event ;
    :rangeIncludes :Organization, :Person ;
    a rdf:Property ;
    rdfs:comment "A secondary contributor to the CreativeWork or Event." ;
    rdfs:label "contributor" .

:creator
    :domainIncludes :CreativeWork, :UserComments ;
    :rangeIncludes :Organization, :Person ;
    a rdf:Property ;
    rdfs:comment "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork." ;
    rdfs:label "creator" .

:creditText
    :domainIncludes :CreativeWork ;
    :isPartOf <https://pending.schema.org> ;
    :rangeIncludes :Text ;
    :source <https://github.com/schemaorg/schemaorg/issues/2659> ;
    a rdf:Property ;
    rdfs:comment "Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work." ;
    rdfs:label "creditText" .

:dateCreated
    :domainIncludes :CreativeWork, :DataFeedItem ;
    :rangeIncludes :Date, :DateTime ;
    a rdf:Property ;
    rdfs:comment "The date on which the CreativeWork was created or the item was added to a DataFeed." ;
    rdfs:label "dateCreated" .

:description
    :domainIncludes :Thing ;
    :rangeIncludes :Text ;
    a rdf:Property ;
    rdfs:comment "A description of the item." ;
    rdfs:label "description" ;
    owl:equivalentProperty <http://purl.org/dc/terms/description> .

:distribution
    :domainIncludes :Dataset ;
    :rangeIncludes :DataDownload ;
    a rdf:Property ;
    rdfs:comment "A downloadable form of this dataset, at a specific location, in a specific format." ;
    rdfs:label "distribution" .

:encodingFormat
    :domainIncludes :CreativeWork, :MediaObject ;
    :rangeIncludes :Text, :URL ;
    a rdf:Property ;
    rdfs:comment """Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).

In cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.

Unregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.""" ;
    rdfs:label "encodingFormat" .

:image
    :domainIncludes :Thing ;
    :rangeIncludes :ImageObject, :URL ;
    a rdf:Property ;
    rdfs:comment "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]." ;
    rdfs:label "image" .

:inLanguage
    :domainIncludes :BroadcastService, :CommunicateAction, :CreativeWork, :Event, :LinkRole, :PronounceableText, :WriteAction ;
    :rangeIncludes :Language, :Text ;
    :source <https://github.com/schemaorg/schemaorg/issues/2382> ;
    a rdf:Property ;
    rdfs:comment "The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]." ;
    rdfs:label "inLanguage" .

:isPartOf
    :domainIncludes :CreativeWork ;
    :inverseOf :hasPart ;
    :rangeIncludes :CreativeWork, :URL ;
    a rdf:Property ;
    rdfs:comment "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of." ;
    rdfs:label "isPartOf" .

:keywords
    :domainIncludes :CreativeWork, :Event, :Organization, :Place, :Product ;
    :rangeIncludes :DefinedTerm, :Text, :URL ;
    a rdf:Property ;
    rdfs:comment "Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property." ;
    rdfs:label "keywords" .

:license
    :domainIncludes :CreativeWork ;
    :rangeIncludes :CreativeWork, :URL ;
    a rdf:Property ;
    rdfs:comment "A license document that applies to this content, typically indicated by URL." ;
    rdfs:label "license" .

:name
    :domainIncludes :Thing ;
    :rangeIncludes :Text ;
    a rdf:Property ;
    rdfs:comment "The name of the item." ;
    rdfs:label "name" ;
    rdfs:subPropertyOf rdfs:label ;
    owl:equivalentProperty <http://purl.org/dc/terms/title> .

:position
    :domainIncludes :CreativeWork, :ListItem ;
    :rangeIncludes :Integer, :Text ;
    a rdf:Property ;
    rdfs:comment "The position of an item in a series or sequence of items." ;
    rdfs:label "position" .

:publisher
    :domainIncludes :CreativeWork ;
    :rangeIncludes :Organization, :Person ;
    a rdf:Property ;
    rdfs:comment "The publisher of the creative work." ;
    rdfs:label "publisher" .

:sameAs
    :domainIncludes :Thing ;
    :rangeIncludes :URL ;
    a 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" .

:thumbnail
    :domainIncludes :ImageObject, :VideoObject ;
    :rangeIncludes :ImageObject ;
    a rdf:Property ;
    rdfs:comment "Thumbnail image for an image or video." ;
    rdfs:label "thumbnail" .

:thumbnailUrl
    :domainIncludes :CreativeWork ;
    :rangeIncludes :URL ;
    a rdf:Property ;
    rdfs:comment "A thumbnail image relevant to the Thing." ;
    rdfs:label "thumbnailUrl" .

:url
    :domainIncludes :Thing ;
    :rangeIncludes :URL ;
    a rdf:Property ;
    rdfs:comment "URL of the item." ;
    rdfs:label "url" .

:value
    :domainIncludes :MonetaryAmount, :PropertyValue, :QuantitativeValue ;
    :rangeIncludes :Boolean, :Number, :StructuredValue, :Text ;
    :source <http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms> ;
    a rdf:Property ;
    rdfs:comment "The value of the quantitative value or property value node.\\n\\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\\n* For [[PropertyValue]], it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator." ;
    rdfs:label "value" .

<http://vocab.getty.edu/aat/300404671>
    a <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#definition> "Multiple-word terms or names that are arranged in the form used in speech or written text. Examples are \"Rocking Chair\" and \"Wedding Dress\". Distinguished from inverted terms."@en, "Termes à mots multiples qui sont organisés selon la forme utilisée à l'expression orale ou à l'écrit en anglais. Des exemples sont « Rocking Chair » et « Wedding Dress ». Se distingue des termes inversés."@fr ;
    <http://www.w3.org/2004/02/skos/core#example> "Barber's Chair"@en ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Termes en ordre naturel"@fr, "natural order terms"@en ;
    <http://www.w3.org/2004/02/skos/core#scopeNote> "Used only for English terms (both single-word and multi-word)"@en, "Utilisé seulement pour les termes en anglais (pour les unitermes et ceux à mots multiples)."@fr .

<http://vocab.getty.edu/aat/300404672>
    a <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#definition> "Multiple-word terms that are arranged in the form used in back-of-book indexing or other similar situations. Examples are \"Chair, Rocking\" and \"Dress, Wedding\". Distinguished from natural order terms."@en, "Termes à mots multiples qui sont organisés selon la forme utilisée lors de l'indexation à la fin des livres en anglais ou lors de situations similaires. Des exemples sont « Chair, Rocking » et « Dress, Wedding ». Se distingue des termes en ordre naturel."@fr ;
    <http://www.w3.org/2004/02/skos/core#example> "Chair, Barber's"@en ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Termes inversés"@fr, "inverted terms"@en ;
    <http://www.w3.org/2004/02/skos/core#scopeNote> "Used only for English multi-word terms."@en, "Utilisé seulement pour les termes à mots multiples en anglais."@fr .

<http://www.cidoc-crm.org/cidoc-crm/E55_Type>
    a rdfs:Class ;
    rdfs:comment """This class comprises concepts denoted by terms from thesauri and controlled vocabularies used to characterize and classify instances of CIDOC CRM classes. Instances of E55 Type represent concepts in contrast to instances of E41 Appellation which are used to name instances of CIDOC CRM classes.
E55 Type is the CIDOC CRM’s interface to domain specific ontologies and thesauri. These can be represented in the CIDOC CRM as subclasses of E55 Type, forming hierarchies of terms, i.e., instances of E55 Type linked via P127 has broader term (has narrower term): E55 Type. Such hierarchies may be extended with additional properties."""@en ;
    rdfs:label "Tipo"@pt, "Type"@en, "Type"@fr, "Typus"@de, "Τύπος"@el, "Тип"@ru, "类型"@zh ;
    rdfs:subClassOf <http://www.cidoc-crm.org/cidoc-crm/E28_Conceptual_Object> .

<http://www.lexinfo.net/ontology/3.0/lexinfo#Gender>
    a owl:Class ;
    rdfs:label "gender"@en ;
    owl:priorVersion <http://www.lexinfo.net/ontology/2.0/lexinfo#Gender> .

<http://www.lexinfo.net/ontology/3.0/lexinfo#feminine>
    a <http://www.lexinfo.net/ontology/3.0/lexinfo#Gender> ;
    rdfs:comment "De, relatif à, ou constituant le genre qui inclut habituellement la plupart des mots ou formes grammaticales se référant aux femmes."@fr, "Of, relating to, or constituting the gender that ordinarily includes most words or grammatical forms referring to females."@en ;
    rdfs:label "feminine"@en, "féminin"@fr .

<http://www.lexinfo.net/ontology/3.0/lexinfo#masculine>
    a <http://www.lexinfo.net/ontology/3.0/lexinfo#Gender> ;
    rdfs:comment "De, relatif à, ou constituant le genre qui inclut habituellement la plupart des mots ou formes grammaticales se référant aux hommes."@fr, "Of, relating to, or constituting the gender that ordinarily includes most words or grammatical forms referring to males."@en ;
    rdfs:label "masculin"@fr, "masculine"@en .

<http://www.lingvoj.org/ontology#Lingvo>
    <http://lexvo.org/ontology#somewhatSameAs> <http://lexvo.org/ontology#Language> ;
    <http://purl.org/vocab/vann/example> <http://id.loc.gov/vocabulary/iso639-1/ja>, <http://lexvo.org/id/iso639-3/fra> ;
    a owl:Class ;
    rdfs:comment "A language used in spoken or written human communication, or in which a resource is written or recorded. It is recommended to use instances defined on the basis of ISO 639 codes, such as those in examples"@en, "Een taal gebruikt in geschreven of gesproken communicatie tussen mensen of in welke een bron is geschreven of opgenomen. Het is aan te raden instanties te gebruiken gedefinieerd op basis van de ISO 630 codes, zoals in deze voorbeelden"@nl, "Um idioma utilizado na comunicação oral ou escrita entre pessoas, ou na que se escreve ou grava um recurso. Recomenda-se a utilização das instâncias definidas segundo os códigos ISO 639, como os que aparecem nos excemplos"@pt, "Una lengua utilizada en la comunicación oral o escrita entre personas, o en la que se escribe o graba un recurso. Se recomienda el uso de las instancias definidas según los códigos ISO 639, como los que aparecen en los ejemplos"@es, "Une langue utilisée dans la communication orale ou écrite entre humains, ou dans laquelle une ressource est écrite ou enregistrée. Il est recommandé d'utiliser des instances définies sur la base d'un code ISO 639, comme dans les exemples"@fr, "会話または記述による人間のコミュニケーションで使用される言語、または資源が記述または記録される言語。例にあるような、ISO 639コードに基づいて定義されたインスタンスを使用することが推奨される"@ja ;
    rdfs:label "Dil"@tr, "Idioma"@pt, "Jezyk"@pl, "Kieli"@fi, "Language"@en, "Langue"@fr, "Lenguaje"@es, "Linguaggio"@it, "Lingvo"@eo, "Sprache"@de, "Språk"@no, "Språk"@sv, "Taal"@nl, "Язык"@ru, "言語"@ja, "语言"@zh ;
    rdfs:subClassOf <http://purl.org/dc/terms/LinguisticSystem>, <http://www.loc.gov/mads/rdf/v1#Language> ;
    owl:equivalentClass <http://d-nb.info/standards/elementset/gnd#Language>, <http://purl.org/linguistics/gold/Language>, :Language, <http://www.ontotext.com/proton/protontop#Language> .

<http://www.lingvoj.org/ontology#tag>
    a owl:DatatypeProperty ;
    rdfs:comment "A tag para ser usada, por exemplo como valor de xml:lang. Ver https://tools.ietf.org/html/bcp47"@pt, "La etiqueta a utilizar para el lenguaje, por ejemplo como valor de xml:lang. Ver https://tools.ietf.org/html/bcp47"@es, "Le tag à utiliser pour la langue, par exemple comme valeur de xml:lang. Voir https://tools.ietf.org/html/bcp47"@fr, "The tag to use for the language, for example as value of xml:lang. See https://tools.ietf.org/html/bcp47"@en, "例えばxml:langの値として、言語に用いるタグ。https://tools.ietf.org/html/bcp47を参照"@ja ;
    rdfs:domain <http://www.lingvoj.org/ontology#Lingvo> ;
    rdfs:label "etiqueta"@es, "language tag"@en, "taal tag"@nl, "tag de idioma"@pt, "tag de langue"@fr, "言語タグ"@ja ;
    rdfs:subPropertyOf <http://purl.org/dc/terms/identifier> .

<http://xmlns.com/foaf/0.1/Agent>
    a rdfs:Class, owl:Class ;
    rdfs:comment "An agent (eg. person, group, software or physical artifact)." ;
    rdfs:label "Agent" ;
    owl:equivalentClass <http://purl.org/dc/terms/Agent> ;
    <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable" .

<http://xmlns.com/foaf/0.1/name>
    a rdf:Property, owl:DatatypeProperty ;
    rdfs:comment "A name for some thing." ;
    rdfs:domain owl:Thing ;
    rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> ;
    rdfs:label "name" ;
    rdfs:range rdfs:Literal ;
    rdfs:subPropertyOf rdfs:label ;
    <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .

<http://xmlns.com/foaf/0.1/nick>
    a rdf:Property, owl:DatatypeProperty ;
    rdfs:comment "A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames)." ;
    rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> ;
    rdfs:label "nickname" ;
    <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .

<http://xmlns.com/foaf/0.1/primaryTopic>
    a rdf:Property, owl:FunctionalProperty, owl:ObjectProperty ;
    rdfs:comment "The primary topic of some page or document." ;
    rdfs:domain <http://xmlns.com/foaf/0.1/Document> ;
    rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> ;
    rdfs:label "primary topic" ;
    rdfs:range owl:Thing ;
    owl:inverseOf <http://xmlns.com/foaf/0.1/isPrimaryTopicOf> ;
    <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable" .

<https://nomenclature.info/nom/agent/1>
    a <http://xmlns.com/foaf/0.1/Agent> ;
    <http://xmlns.com/foaf/0.1/name> "American Association for State and Local History (AASLH)"@en, "American Association for State and Local History (AASLH)"@fr ;
    <http://xmlns.com/foaf/0.1/nick> "AASLH" .

<https://nomenclature.info/nom/agent/2>
    :sameAs <http://www.wikidata.org/entity/Q3456610> ;
    a <http://xmlns.com/foaf/0.1/Agent> ;
    <http://xmlns.com/foaf/0.1/name> "Canadian Heritage Information Network (CHIN)"@en, "Réseau canadien d’information sur le patrimoine (RCIP)"@fr ;
    <http://xmlns.com/foaf/0.1/nick> "CHIN", "RCIP" .

<https://nomenclature.info/nom/agent/3>
    a <http://xmlns.com/foaf/0.1/Agent> ;
    <http://xmlns.com/foaf/0.1/name> "Gouvernement du Nunavut"@fr, "Government of Nunavut"@en ;
    <http://xmlns.com/foaf/0.1/nick> "GN" .

<https://nomenclature.info/nom/agent/4>
    a <http://xmlns.com/foaf/0.1/Agent> ;
    <http://xmlns.com/foaf/0.1/name> "Getty Research Institute"@en, "Getty Research Institute"@fr ;
    <http://xmlns.com/foaf/0.1/nick> "GRI" .

<https://nomenclature.info/nom/lang/>
    <http://purl.org/dc/terms/title> "Nomenclature - Languages"@en, "Nomenclature - Langues"@fr ;
    a <http://www.w3.org/2004/02/skos/core#ConceptScheme> .

<https://nomenclature.info/nom/lang/cr>
    <http://www.lingvoj.org/ontology#tag> "cr" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-1/cr>, <http://lexvo.org/id/iso639-3/cre>, <http://vocab.getty.edu/aat/300388182>, <http://www.wikidata.org/entity/Q33390> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "cr" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Cree"@en, "cri"@fr .

<https://nomenclature.info/nom/lang/cr-latn>
    <http://www.lingvoj.org/ontology#tag> "cr-latn" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "cr-latn" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Cree in Latin script"@en, "cri en écriture latine"@fr .

<https://nomenclature.info/nom/lang/en>
    <http://www.lingvoj.org/ontology#tag> "en" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-1/en>, <http://lexvo.org/id/iso639-3/eng>, <http://vocab.getty.edu/aat/300388277>, <http://www.wikidata.org/entity/Q1860> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "en" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "English"@en, "anglais"@fr .

<https://nomenclature.info/nom/lang/en-ca>
    <http://www.lingvoj.org/ontology#tag> "en-ca" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://www.wikidata.org/entity/Q44676> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "en-ca" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Canadian English"@en, "anglais canadien"@fr .

<https://nomenclature.info/nom/lang/es>
    <http://www.lingvoj.org/ontology#tag> "es" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-1/es>, <http://lexvo.org/id/iso639-3/spa>, <http://vocab.getty.edu/aat/300389311>, <http://www.wikidata.org/entity/Q1321> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "es" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Spanish"@en, "espagnol"@fr .

<https://nomenclature.info/nom/lang/fr>
    <http://www.lingvoj.org/ontology#tag> "fr" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-1/fr>, <http://lexvo.org/id/iso639-3/fra>, <http://vocab.getty.edu/aat/300388306>, <http://www.wikidata.org/entity/Q150> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "fr" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "French"@en, "français"@fr .

<https://nomenclature.info/nom/lang/fr-ca>
    <http://www.lingvoj.org/ontology#tag> "fr-ca" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://vocab.getty.edu/aat/300419445>, <http://www.wikidata.org/entity/Q1450506> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "fr-ca" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Canadian French"@en, "français canadien"@fr .

<https://nomenclature.info/nom/lang/hai>
    <http://www.lingvoj.org/ontology#tag> "hai" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-2/hai>, <http://lexvo.org/id/iso639-3/hai>, <http://vocab.getty.edu/aat/300388387>, <http://www.wikidata.org/entity/Q33303> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "hai" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Haida"@en, "haïda"@fr .

<https://nomenclature.info/nom/lang/hai-latn>
    <http://www.lingvoj.org/ontology#tag> "hai-latn" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "hai-latn" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Haida in Latin script"@en, "haïda en écriture latine"@fr .

<https://nomenclature.info/nom/lang/he>
    <http://www.lingvoj.org/ontology#tag> "he" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-1/he>, <http://lexvo.org/id/iso639-3/heb>, <http://vocab.getty.edu/aat/300388401>, <http://www.wikidata.org/entity/Q9288> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "he" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Hebrew"@en, "hébreu"@fr .

<https://nomenclature.info/nom/lang/he-latn>
    <http://www.lingvoj.org/ontology#tag> "he-latn" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://vocab.getty.edu/aat/300388402> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "he-latn" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Hebrew in Latin script"@en, "hébreu en écriture latine"@fr .

<https://nomenclature.info/nom/lang/iro>
    <http://www.lingvoj.org/ontology#tag> "iro" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-2/iro>, <http://lexvo.org/id/iso639-5/iro>, <http://vocab.getty.edu/aat/300388468>, <http://www.wikidata.org/entity/Q33623> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "iro" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Iroquoian"@en, "iroquoien"@fr .

<https://nomenclature.info/nom/lang/iro-latn>
    <http://www.lingvoj.org/ontology#tag> "iro-latn" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "iro-latn" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Iroquoian in Latin script"@en, "iroquoien en écriture latine"@fr .

<https://nomenclature.info/nom/lang/iu>
    <http://www.lingvoj.org/ontology#tag> "iu" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-1/iu>, <http://lexvo.org/id/iso639-3/iku>, <http://vocab.getty.edu/aat/300443664>, <http://www.wikidata.org/entity/Q29921> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "iu" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Inuktitut"@en, "inuktitut"@fr .

<https://nomenclature.info/nom/lang/iu-latn>
    <http://www.lingvoj.org/ontology#tag> "iu-latn" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "iu-latn" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Inuktitut in Latin script"@en, "inuktitut en écriture latine"@fr .

<https://nomenclature.info/nom/lang/moh>
    <http://www.lingvoj.org/ontology#tag> "moh" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-2/moh>, <http://lexvo.org/id/iso639-3/moh>, <http://vocab.getty.edu/aat/300388892>, <http://www.wikidata.org/entity/Q13339> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "moh" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Mohawk"@en, "mohawk"@fr .

<https://nomenclature.info/nom/lang/moh-latn>
    <http://www.lingvoj.org/ontology#tag> "moh-latn" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "moh-latn" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Mohawk in Latin script"@en, "mohawk en écriture latine"@fr .

<https://nomenclature.info/nom/lang/oj>
    <http://www.lingvoj.org/ontology#tag> "oj" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#altLabel> "Ojibway"@en, "Ojibwe"@en, "odjibwé"@fr, "ojibwa"@fr ;
    <http://www.w3.org/2004/02/skos/core#exactMatch> <http://id.loc.gov/vocabulary/iso639-1/oj>, <http://lexvo.org/id/iso639-3/oji>, <http://vocab.getty.edu/aat/300389015>, <http://www.wikidata.org/entity/Q33875> ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "oj" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Ojibwa"@en, "ojibwé"@fr .

<https://nomenclature.info/nom/lang/oj-latn>
    <http://www.lingvoj.org/ontology#tag> "oj-latn" ;
    a <http://www.lingvoj.org/ontology#Lingvo>, <http://www.w3.org/2004/02/skos/core#Concept> ;
    <http://www.w3.org/2004/02/skos/core#altLabel> "Ojibway in Latin script"@en, "Ojibwe in Latin script"@en, "odjibwé en écriture latine"@fr, "ojibwa en écriture latine"@fr ;
    <http://www.w3.org/2004/02/skos/core#inScheme> <https://nomenclature.info/nom/lang/> ;
    <http://www.w3.org/2004/02/skos/core#notation> "oj-latn" ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Ojibwa in Latin script"@en, "ojibwé en écriture latine"@fr .

<https://nomenclature.info/nom/level/1>
    :position 1 ;
    a :Collection, <http://www.w3.org/2004/02/skos/core#Collection> ;
    rdfs:isDefinedBy <https://nomenclature.info/nom/ontology/> ;
    <http://www.w3.org/2004/02/skos/core#definition> "Premier niveau de la hiérarchie, contenant le niveau le plus générique du regroupement d’objets par contexte fonctionnel."@fr, "Top level of the Nomenclature hierarchy, containing the broadest level of object grouping by functional context."@en ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Category"@en, "Catégorie"@fr .

<https://nomenclature.info/nom/level/2>
    :position 2 ;
    a :Collection, <http://www.w3.org/2004/02/skos/core#Collection> ;
    rdfs:isDefinedBy <https://nomenclature.info/nom/ontology/> ;
    <http://www.w3.org/2004/02/skos/core#definition> "Deuxième niveau de la hiérarchie de Nomenclature."@fr, "Second level of the Nomenclature hierarchy."@en ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Class"@en, "Classe"@fr .

<https://nomenclature.info/nom/level/3>
    :position 3 ;
    a :Collection, <http://www.w3.org/2004/02/skos/core#Collection> ;
    rdfs:isDefinedBy <https://nomenclature.info/nom/ontology/> ;
    <http://www.w3.org/2004/02/skos/core#definition> "Third level of the Nomenclature Hierarchy."@en, "Troisième niveau de la hiérarchie de Nomenclature."@fr ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Sous-classe"@fr, "Subclass"@en .

<https://nomenclature.info/nom/level/4>
    :position 4 ;
    a :Collection, <http://www.w3.org/2004/02/skos/core#Collection> ;
    rdfs:isDefinedBy <https://nomenclature.info/nom/ontology/> ;
    <http://www.w3.org/2004/02/skos/core#definition> "Fourth level of the Nomenclature Hierarchy, containing the most general object names."@en, "Quatrième niveau de la hiérarchie de Nomenclature, contenant le nom d’objet le plus générique."@fr ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Primary Term"@en, "Terme primaire"@fr .

<https://nomenclature.info/nom/level/5>
    :position 5 ;
    a :Collection, <http://www.w3.org/2004/02/skos/core#Collection> ;
    rdfs:isDefinedBy <https://nomenclature.info/nom/ontology/> ;
    <http://www.w3.org/2004/02/skos/core#definition> "Cinquième niveau de la hiérarchie de Nomenclature."@fr, "Fifth level of the Nomenclature Hierarchy."@en ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Secondary Term"@en, "Terme secondaire"@fr .

<https://nomenclature.info/nom/level/6>
    :position 6 ;
    a :Collection, <http://www.w3.org/2004/02/skos/core#Collection> ;
    rdfs:isDefinedBy <https://nomenclature.info/nom/ontology/> ;
    <http://www.w3.org/2004/02/skos/core#definition> "Sixième niveau de la hiérarchie de Nomenclature."@fr, "Sixth level of the Nomenclature Hierarchy."@en ;
    <http://www.w3.org/2004/02/skos/core#prefLabel> "Terme tertiaire"@fr, "Tertiary Term"@en .

<https://nomenclature.info/nom/ontology/>
    <http://purl.org/dc/elements/1.1/description> "L'ontologie de NOM définit les valeurs utilisées dans Nomenclature pour le catalogage des objets de musée. Elle utilise les ontologies SKOS, SKOS-XL, DC, DCT, FOAF, Schema, Lexinfo, Changeset."@fr, "NOM Ontology defines the values used in Nomenclature for Museum Cataloging. It uses the SKOS, SKOS-XL, DC, DCT, FOAF, Schema, Lexinfo, Changeset ontologies."@en ;
    <http://purl.org/dc/elements/1.1/format> "meta/rdf-schema" ;
    <http://purl.org/dc/elements/1.1/title> "Nomenclature for Museum Cataloging Ontology"@en, "Ontologie de Nomenclature pour le catalogage des objets de musée"@fr ;
    <http://purl.org/dc/terms/created> "2022-02-28"^^xsd:date ;
    <http://purl.org/dc/terms/creator> <https://nomenclature.info/nom/agent/2> ;
    <http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/4.0/> ;
    <http://purl.org/dc/terms/modified> "2022-04-22"^^xsd:date ;
    <http://purl.org/vocab/vann/preferredNamespacePrefix> "nomo" ;
    <http://purl.org/vocab/vann/preferredNamespaceUri> "https://nomenclature.info/nom/ontology/" ;
    a owl:Ontology ;
    rdfs:comment "L'ontologie de NOM définit les valeurs utilisées dans Nomenclature pour le catalogage des objets de musée. Elle utilise les ontologies SKOS, SKOS-XL, DC, DCT, FOAF, Schema, Lexinfo, Changeset."@fr, "NOM Ontology defines the values used in Nomenclature for Museum Cataloging. It uses the SKOS, SKOS-XL, DC, DCT, FOAF, Schema, Lexinfo, Changeset ontologies."@en ;
    rdfs:label "Nomenclature for Museum Cataloging Ontology"@en, "Ontologie de Nomenclature pour le catalogage des objets de musée"@fr ;
    rdfs:seeAlso <http://www.wikidata.org/entity/P7749>, <http://www.wikidata.org/entity/Q64351785>, <https://nomenclature.info/>, <https://nomenclature.info/.well-known/void> ;
    owl:versionInfo "1.0" .

<https://nomenclature.info/nom/ontology/invertedFormOf>
    a owl:ObjectProperty ;
    rdfs:comment "Used only for multi-word English labels"@en, "Utilisée seulement pour les termes anglais à mots multiples"@fr ;
    rdfs:domain <http://www.w3.org/2008/05/skos-xl#Label> ;
    rdfs:isDefinedBy <https://nomenclature.info/nom/ontology/> ;
    rdfs:label "forme inversée de"@fr, "inverted form of"@en ;
    rdfs:range <http://www.w3.org/2008/05/skos-xl#Label> ;
    rdfs:seeAlso <https://www.w3.org/TR/skos-reference/#xl-label-relations> ;
    rdfs:subPropertyOf <http://www.w3.org/2008/05/skos-xl#labelRelation> ;
    <http://www.w3.org/2004/02/skos/core#example> "\"Box, Drink\" est la forme inversée de \"Drink Box\""@fr, "\"Box, Drink\" is the inverted form of \"Drink Box\""@en .

<https://nomenclature.info/nom/source/AAT>
    <http://rdfs.org/ns/void#uriSpace> "http://vocab.getty.edu/aat" ;
    :name "Art and Architecture Thesaurus"@en, "Art and Architecture Thesaurus"@fr ;
    :url <http://www.getty.edu/research/tools/vocabularies/aat/> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

<https://nomenclature.info/nom/source/CultureFr-Joconde>
    <http://rdfs.org/ns/void#uriSpace> "http://data.culture.fr/thesaurus/resource/ark:/67717/T505" ;
    :name "Liste d’autorités Dénomination - Joconde"@en, "Liste d’autorités Dénomination - Joconde"@fr ;
    :url <http://data.culture.fr/thesaurus/resource/ark:/67717/T505> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

<https://nomenclature.info/nom/source/CultureFr-architecturales>
    <http://rdfs.org/ns/void#uriSpace> "http://data.culture.fr/thesaurus/resource/ark:/67717/T96" ;
    :name "Thésaurus de la désignation des œuvres architecturales et des espaces aménagés"@en, "Thésaurus de la désignation des œuvres architecturales et des espaces aménagés"@fr ;
    :url <http://data.culture.fr/thesaurus/resource/ark:/67717/T96> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

<https://nomenclature.info/nom/source/CultureFr-archives>
    <http://rdfs.org/ns/void#uriSpace> "http://data.culture.fr/thesaurus/resource/ark:/67717/T3" ;
    :name "Liste d’autorité Typologie documentaire pour l'indexation des archives locales"@en, "Liste d’autorité Typologie documentaire pour l'indexation des archives locales"@fr ;
    :url <http://data.culture.fr/thesaurus/resource/ark:/67717/T3> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

<https://nomenclature.info/nom/source/CultureFr-mobiliers>
    <http://rdfs.org/ns/void#uriSpace> "http://data.culture.fr/thesaurus/resource/ark:/67717/T69" ;
    :name "Thésaurus de la désignation des objets mobiliers"@en, "Thésaurus de la désignation des objets mobiliers"@fr ;
    :url <http://data.culture.fr/thesaurus/resource/ark:/67717/T69> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

<https://nomenclature.info/nom/source/DBpedia>
    <http://rdfs.org/ns/void#uriSpace> "http://dbpedia.org/resource", "http://fr.dbpedia.org/resource" ;
    :name "DBpedia"@en, "DBpedia"@fr ;
    :url <http://dbpedia.org> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

<https://nomenclature.info/nom/source/GND>
    <http://rdfs.org/ns/void#uriSpace> "http://d-nb.info/gnd" ;
    :name "Fichier d’autorité intégré de la Bibliothèque nationale allemande"@fr, "Gemeinsame Normdatei"@de, "German National Library Integrated Authority File"@en ;
    :url <https://www.dnb.de/gnd> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

<https://nomenclature.info/nom/source/LCSH>
    <http://rdfs.org/ns/void#uriSpace> "http://id.loc.gov/authorities/subjects" ;
    :name "Library of Congress Subject Headings"@en, "Library of Congress Subject Headings"@fr ;
    :url <http://id.loc.gov/authorities/subjects> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

<https://nomenclature.info/nom/source/RAMEAU>
    <http://rdfs.org/ns/void#uriSpace> "http://data.bnf.fr/ark:/12148" ;
    :name "Encyclopedic and Unified Alphabetical Directory of Authority-Matter (RAMEAU)"@en, "Répertoire d'autorité-matière encyclopédique et alphabétique unifié (RAMEAU)"@fr ;
    :url <https://rameau.bnf.fr/> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

<https://nomenclature.info/nom/source/WD>
    <http://rdfs.org/ns/void#uriSpace> "http://www.wikidata.org/entity" ;
    :name "Wikidata"@en, "Wikidata"@fr ;
    :url <https://www.wikidata.org> ;
    a <http://rdfs.org/ns/void#Dataset>, :Dataset .

