update slot imports in classes
This commit is contained in:
parent
ecfddcd239
commit
8f77f62585
216 changed files with 12948 additions and 631 deletions
2084
data/ontology/dwc.rdf
Normal file
2084
data/ontology/dwc.rdf
Normal file
File diff suppressed because it is too large
Load diff
409
data/ontology/pnv.ttl
Normal file
409
data/ontology/pnv.ttl
Normal file
|
|
@ -0,0 +1,409 @@
|
|||
@prefix : <https://w3id.org/pnv#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@base <https://w3id.org/pnv> .
|
||||
|
||||
<https://w3id.org/pnv> rdf:type owl:Ontology ;
|
||||
rdfs:comment "The Person Name Vocabulary (PNV) is an rdf vocabulary and data model for persons' names. It is applicable to many datasets in which persons are described, as it accommodates different levels of data granularity."@en ;
|
||||
<http://purl.org/dc/terms/rights> <https://creativecommons.org/licenses/by-nc-sa/4.0/> ;
|
||||
<http://purl.org/dc/terms/modified> "2019-07-01"^^xsd:date ;
|
||||
<http://purl.org/dc/terms/publisher> <https://www.huygens.knaw.nl/> ;
|
||||
<http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/pnv#" ;
|
||||
<http://xmlns.com/foaf/0.1/depiction> <https://www.lodewijkpetram.nl/vocab/pnv/doc/img/PNV_visualization.png> ;
|
||||
<http://purl.org/dc/terms/creator> "Gijsbert Kruithof, National Archives, The Netherlands" ,
|
||||
"Lodewijk Petram, Huygens Institute for the History of the Netherlands" ;
|
||||
<http://purl.org/vocab/vann/preferredNamespacePrefix> "pnv" ;
|
||||
<http://purl.org/dc/terms/creator> "Elvin Dechesne, Ordina, The Netherlands" ;
|
||||
rdfs:label "Person Name Vocabulary"@en ;
|
||||
<http://purl.org/dc/elements/1.1/title> "Person Name Vocabulary"@en .
|
||||
|
||||
#################################################################
|
||||
# Annotation properties
|
||||
#################################################################
|
||||
|
||||
### http://purl.org/dc/elements/1.1/title
|
||||
<http://purl.org/dc/elements/1.1/title> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
### http://purl.org/dc/terms/creator
|
||||
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
### http://purl.org/dc/terms/modified
|
||||
<http://purl.org/dc/terms/modified> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
### http://purl.org/dc/terms/publisher
|
||||
<http://purl.org/dc/terms/publisher> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
### http://purl.org/dc/terms/rights
|
||||
<http://purl.org/dc/terms/rights> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
### http://purl.org/vocab/vann/preferredNamespacePrefix
|
||||
<http://purl.org/vocab/vann/preferredNamespacePrefix> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
### http://purl.org/vocab/vann/preferredNamespaceUri
|
||||
<http://purl.org/vocab/vann/preferredNamespaceUri> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
### http://www.w3.org/2004/02/skos/core#altLabel
|
||||
<http://www.w3.org/2004/02/skos/core#altLabel> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
### http://www.w3.org/2004/02/skos/core#prefLabel
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
### http://xmlns.com/foaf/0.1/depiction
|
||||
<http://xmlns.com/foaf/0.1/depiction> rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
#################################################################
|
||||
# Object Properties
|
||||
#################################################################
|
||||
|
||||
### https://w3id.org/pnv#hasName
|
||||
:hasName rdf:type owl:ObjectProperty ;
|
||||
rdfs:domain :Person ;
|
||||
rdfs:range :PersonName ;
|
||||
rdfs:label "has name"@en ,
|
||||
"heeft naam"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "heeft naam"@nl .
|
||||
|
||||
|
||||
#################################################################
|
||||
# Data properties
|
||||
#################################################################
|
||||
|
||||
### http://schema.org/disambiguatingDescription
|
||||
<http://schema.org/disambiguatingDescription> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty :disambiguatingDescription .
|
||||
|
||||
|
||||
### http://schema.org/familyName
|
||||
<http://schema.org/familyName> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty <http://www.wikidata.org/prop/direct/P734> ,
|
||||
<http://xmlns.com/foaf/0.1/familyName> ,
|
||||
:surname .
|
||||
|
||||
|
||||
### http://schema.org/givenName
|
||||
<http://schema.org/givenName> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty <http://www.wikidata.org/prop/direct/P735> ,
|
||||
<http://xmlns.com/foaf/0.1/givenName> ,
|
||||
:givenName .
|
||||
|
||||
|
||||
### http://schema.org/honorificPrefix
|
||||
<http://schema.org/honorificPrefix> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty :prefix .
|
||||
|
||||
|
||||
### http://schema.org/honorificSuffix
|
||||
<http://schema.org/honorificSuffix> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty :honorificSuffix .
|
||||
|
||||
|
||||
### http://www.wikidata.org/prop/direct/P2561
|
||||
<http://www.wikidata.org/prop/direct/P2561> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty <http://xmlns.com/foaf/0.1/name> ,
|
||||
:literalName .
|
||||
|
||||
|
||||
### http://www.wikidata.org/prop/direct/P734
|
||||
<http://www.wikidata.org/prop/direct/P734> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty <http://xmlns.com/foaf/0.1/familyName> ,
|
||||
:surname .
|
||||
|
||||
|
||||
### http://www.wikidata.org/prop/direct/P735
|
||||
<http://www.wikidata.org/prop/direct/P735> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty <http://xmlns.com/foaf/0.1/givenName> ,
|
||||
:givenName .
|
||||
|
||||
|
||||
### http://xmlns.com/foaf/0.1/familyName
|
||||
<http://xmlns.com/foaf/0.1/familyName> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty :surname .
|
||||
|
||||
|
||||
### http://xmlns.com/foaf/0.1/givenName
|
||||
<http://xmlns.com/foaf/0.1/givenName> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty :givenName .
|
||||
|
||||
|
||||
### http://xmlns.com/foaf/0.1/name
|
||||
<http://xmlns.com/foaf/0.1/name> rdf:type owl:DatatypeProperty ;
|
||||
owl:equivalentProperty :literalName .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#baseSurname
|
||||
:baseSurname rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A Base surname is a family name without any prefixes, if those prefixes need to be ignored in sorting. If the family name is e.g. \"de Vries\" and it needs to be sorted under \"V\", the Base surname is \"Vries\". Base surname is equivalent to BioDes:geslachtsnaam."@en ,
|
||||
"A2A:PersonNameLastName"@en ;
|
||||
rdfs:label "base surname"@en ,
|
||||
"basis achternaam"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "basis achternaam"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#disambiguatingDescription
|
||||
:disambiguatingDescription rdf:type owl:DatatypeProperty ;
|
||||
rdfs:subPropertyOf :suffix ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A Disambiguating description is a name part that is appended to make sure that the right person is designated. Name parts like \"Sr.\" and \"Jr.\", used to distinguish a child from his parent, are disambiguating descriptions."@en ;
|
||||
rdfs:label "disambiguating description"@en ,
|
||||
"onderscheidend achtervoegsel"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "onderscheidend achtervoegsel"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#firstName
|
||||
:firstName rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A First name is a combination of a given name, a patronym (if any) and a given name suffix. This property is only to be used by data providers who have combined these name elements into one field (following the BioDes structure). First name is equivalent to BioDes:voornaam."@en ,
|
||||
"BioDes:voornaam"@en ;
|
||||
rdfs:label "first name (Biodes)"@en ,
|
||||
"voornaam BioDes"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "voornaam Biodes"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#givenName
|
||||
:givenName rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A Given name designates the name(s) given to someone at birth or any other name-giving event"@en ,
|
||||
"A2A:PersonNameFirstName"@en ;
|
||||
rdfs:label "een of meer voornamen"@nl ,
|
||||
"given name"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#altLabel> "Christian name"@en ,
|
||||
"forename"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "een of meer voornamen"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#givenNameSuffix
|
||||
:givenNameSuffix rdf:type owl:DatatypeProperty ;
|
||||
rdfs:subPropertyOf :givenName ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A Given name suffix is a name part that is appended to a given name. In the name of the fifteenth-century Duke of Burgundy Philip the Good, for example, \"the Good\" is the Given name suffix."@en ;
|
||||
rdfs:label "given name suffix"@en ,
|
||||
"toevoegsel voornaam"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "toevoegsel voornaam"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#honorificSuffix
|
||||
:honorificSuffix rdf:type owl:DatatypeProperty ;
|
||||
rdfs:subPropertyOf :suffix ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "An Honorific suffix is a name part that is appended to distinguish someone"@en ;
|
||||
rdfs:label "honorific suffix"@en ,
|
||||
"titel (adellijk of burgerlijk) als achtervoegsel"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "titel (adellijk of burgerlijk) als achtervoegsel"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#infix
|
||||
:infix rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "An Infix designates name elements that come in between pnv:firstName and pnv:baseSurname. This property is only to be used by data providers who have structured their name elements following the BioDes structure. Infix is equivalent to BioDes:intrapositie."@en ,
|
||||
"BioDes:intrapositie"@en ;
|
||||
rdfs:label "infix (BioDes)"@en .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#infixTitle
|
||||
:infixTitle rdf:type owl:DatatypeProperty ;
|
||||
rdfs:subPropertyOf :infix ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "An Infix title designates a title in the middle of a name"@en ;
|
||||
rdfs:label "adellijke titel in het midden van een naam"@nl ,
|
||||
"infix title"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "adellijke titel in het midden van een naam"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#initials
|
||||
:initials rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A2A:PersonNameInitials"@en ,
|
||||
"An initial is the first letter of a person's given name (or sometimes a combination of letters). The Initials property can be used to separately record the initial(s) of a person's given name(s). Each initial should be followed by a dot. It is recommended to always use the Initials property to record initials, but if only the initials of a given name are known, they may also be recorded using pnv:givenName (or pnv:firstName). Example 1: \"Peter R. de Vries\" would be modelled using pnv:initials \"P.R.\" and pnv:givenName \"Peter R.\". Example 2: \"C.Joh. Kieviet\" would ideally be modelled using pnv:initials \"C.Joh.\", but pnv:givenName \"C.Joh.\" is also possible. Example 3: \"H.A.F.M.O. (Hans) van Mierlo\" would be modelled using pnv:initials \"H.A.F.M.O.\" and pnv:givenName \"Hans\"."@en ;
|
||||
rdfs:label "initialen"@nl ,
|
||||
"initials"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "initialen"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#literalName
|
||||
:literalName rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A2A:PersonNameLiteral"@en ,
|
||||
"Literal name designates a full personal name. This property may only be left blank if a person's name was unknown or if a person was unnamed (e.g. a child that died shortly after being born), in which cases the property pnv:nameSpecification should state \"unknown\" or \"unnamed\"."@en ;
|
||||
rdfs:label "full name"@en ,
|
||||
"volledige naam"@nl ;
|
||||
rdfs:seeAlso <https://schema.org/name> ;
|
||||
<http://www.w3.org/2004/02/skos/core#altLabel> "letterlijke naam"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "volledige naam"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#nameSpecification
|
||||
:nameSpecification rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:comment "The Name specification property can be used to specify the type of name, e.g. to discern between name variants, or to state that the person's name is unknown or that the person was unnamed, e.g. in the case of a child that died before it was given a name. It can be a string (e.g. \"unknown\", \"unnamed\", \"religious name\", \"stage name\", \"pen name\", \"married name\" or \"birth name\") or a reference to a controlled vocabulary."@en ;
|
||||
rdfs:label "naamspecificatie"@nl ,
|
||||
"name specification"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "naamspecificatie"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#patronym
|
||||
:patronym rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A Patronym is a name element based on the given name of one's father or grandfather. This is also the preferred property for a matronym (i.e. a name element based on the given name of one's mother or grandmother)."@en ,
|
||||
"A2A:PersonNamePatronym"@en ;
|
||||
rdfs:label "patroniem"@nl ,
|
||||
"patronym"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "patroniem"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#prefix
|
||||
:prefix rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A Prefix is a noble or honorific title prefixing a name, e.g. \"Prof. dr.\" or \"Jhr.\""^^xsd:string ,
|
||||
"""A2A:PersonNameTitle
|
||||
A2A:PersonNameTitleOfNobility"""@en ,
|
||||
"BioDes:prepositie"@en ;
|
||||
rdfs:label "prefix"@en ,
|
||||
"voorvoegsel"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#suffix
|
||||
:suffix rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A Suffix designates name elements that come after the family name. This property is only to be used by data providers who have structured their name elements following the BioDes structure."^^xsd:string ,
|
||||
"BioDes:postpositie"@en ;
|
||||
rdfs:label "achtervoegsel BioDes"@nl ,
|
||||
"suffix (BioDes)"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "achtervoegsel BioDes"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#surname
|
||||
:surname rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A surname is the name of the family a person is born into, including one or more prefixes. In some cases the honorific prefix can be incorporated into the surname (e.g. Van Welderen baron Rengers)."@en ,
|
||||
"A2A:PersonNameFamilyName"@en ;
|
||||
rdfs:label "familienaam"@nl ,
|
||||
"surname"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#altLabel> "surname"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "familienaam"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#surnamePrefix
|
||||
:surnamePrefix rdf:type owl:DatatypeProperty ;
|
||||
rdfs:subPropertyOf owl:topDataProperty ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A Surname prefix is a name part prefixing the surname (e.g. \"van\" or \"van den\")."@en ,
|
||||
"A2A:PersonNamePrefixLastName"@en ;
|
||||
rdfs:label "surname prefix"@en ,
|
||||
"tussenvoegsel"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "tussenvoegsel"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#trailingPatronym
|
||||
:trailingPatronym rdf:type owl:DatatypeProperty ;
|
||||
rdfs:subPropertyOf :patronym ;
|
||||
rdfs:domain :PersonName ;
|
||||
rdfs:range xsd:string ;
|
||||
rdfs:comment "A Trailing patronym refers to the parent's given name, suffixing the person's family name, mostly used for disambiguation."^^xsd:string ;
|
||||
rdfs:label "patroniem na achternaam"@nl ,
|
||||
"trailing patronym"@en ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "patroniem na achternaam"@nl .
|
||||
|
||||
|
||||
#################################################################
|
||||
# Classes
|
||||
#################################################################
|
||||
|
||||
### http://dbpedia.org/ontology/Name
|
||||
<http://dbpedia.org/ontology/Name> rdf:type owl:Class ;
|
||||
owl:equivalentClass :PersonName .
|
||||
|
||||
|
||||
### http://dbpedia.org/ontology/Person
|
||||
<http://dbpedia.org/ontology/Person> rdf:type owl:Class ;
|
||||
owl:equivalentClass :Person .
|
||||
|
||||
|
||||
### http://schema.org/Person
|
||||
<http://schema.org/Person> rdf:type owl:Class ;
|
||||
owl:equivalentClass :Person .
|
||||
|
||||
|
||||
### http://www.cidoc-crm.org/cidoc-crm/E21_person
|
||||
<http://www.cidoc-crm.org/cidoc-crm/E21_person> rdf:type owl:Class ;
|
||||
owl:equivalentClass :Person .
|
||||
|
||||
|
||||
### http://www.cidoc-crm.org/cidoc-crm/E41_Appellation
|
||||
<http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> rdf:type owl:Class ;
|
||||
owl:equivalentClass :PersonName .
|
||||
|
||||
|
||||
### http://www.loc.gov/premis/rdf/v3/Person
|
||||
<http://www.loc.gov/premis/rdf/v3/Person> rdf:type owl:Class ;
|
||||
rdfs:subClassOf <http://www.w3.org/ns/prov#Person> ,
|
||||
<http://xmlns.com/foaf/0.1/Person> .
|
||||
|
||||
|
||||
### http://www.w3.org/ns/prov#Person
|
||||
<http://www.w3.org/ns/prov#Person> rdf:type owl:Class .
|
||||
|
||||
|
||||
### http://www.wikidata.org/entity/Q1071027
|
||||
<http://www.wikidata.org/entity/Q1071027> rdf:type owl:Class ;
|
||||
owl:equivalentClass :PersonName .
|
||||
|
||||
|
||||
### http://www.wikidata.org/entity/Q5
|
||||
<http://www.wikidata.org/entity/Q5> rdf:type owl:Class ;
|
||||
owl:equivalentClass :Person .
|
||||
|
||||
|
||||
### http://xmlns.com/foaf/0.1/Person
|
||||
<http://xmlns.com/foaf/0.1/Person> rdf:type owl:Class ;
|
||||
owl:equivalentClass :Person .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#Person
|
||||
:Person rdf:type owl:Class ;
|
||||
owl:disjointWith :PersonName ;
|
||||
rdfs:comment "A Person is a human being whose individual existence can somehow be documented"@en ;
|
||||
rdfs:label "Person"@en ,
|
||||
"Persoon"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "Person"@en ,
|
||||
"Persoon"@nl .
|
||||
|
||||
|
||||
### https://w3id.org/pnv#PersonName
|
||||
:PersonName rdf:type owl:Class ;
|
||||
rdfs:comment "A name is considered to be a resource type in its own right"@en ,
|
||||
"A2A:PersonName"@en ;
|
||||
rdfs:label "A Person's name"@en ,
|
||||
"Naam van een persoon"@nl ;
|
||||
<http://www.w3.org/2004/02/skos/core#prefLabel> "Naam van een persoon"@nl .
|
||||
|
||||
|
||||
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
|
||||
3017
data/ontology/rec.ttl
Normal file
3017
data/ontology/rec.ttl
Normal file
File diff suppressed because it is too large
Load diff
3333
data/ontology/spdx.ttl
Normal file
3333
data/ontology/spdx.ttl
Normal file
File diff suppressed because it is too large
Load diff
3432
data/ontology/spdx2.owl
Normal file
3432
data/ontology/spdx2.owl
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"generated": "2026-02-08T15:20:09.940Z",
|
||||
"generated": "2026-02-08T16:18:30.347Z",
|
||||
"schemaRoot": "/schemas/20251121/linkml",
|
||||
"totalFiles": 2916,
|
||||
"categoryCounts": {
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ imports:
|
|||
- modules/slots/20260202_matang/new/source_uri
|
||||
- modules/slots/20260202_matang/new/standardized_name
|
||||
- modules/slots/20260202_matang/new/started_at_time
|
||||
- modules/slots/20260202_matang/new/temporal_extent
|
||||
- modules/slots/20260202_matang/temporal_extent
|
||||
- modules/slots/20260202_matang/new/preferred_label
|
||||
- modules/slots/20260202_matang/new/place_designation
|
||||
# valid_from and valid_to ARCHIVED (2026-01-14) - migrated to temporal_extent (Rule 53)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"generated": "2026-02-08T16:18:30.347Z",
|
||||
"generated": "2026-02-08T18:22:13.374Z",
|
||||
"schemaRoot": "/schemas/20251121/linkml",
|
||||
"totalFiles": 2916,
|
||||
"categoryCounts": {
|
||||
|
|
|
|||
|
|
@ -9,13 +9,13 @@ prefixes:
|
|||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_name
|
||||
- ../slots/20260202_matang/has_label
|
||||
classes:
|
||||
AcademicInstitution:
|
||||
class_uri: schema:EducationalOrganization
|
||||
description: Academic institution.
|
||||
slots:
|
||||
- has_name
|
||||
- has_label
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
specificity_rationale: Generic utility class/slot created during migration
|
||||
|
|
|
|||
|
|
@ -9,13 +9,13 @@ prefixes:
|
|||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_name
|
||||
- ../slots/20260202_matang/has_label
|
||||
classes:
|
||||
AcademicProgram:
|
||||
class_uri: schema:EducationalOccupationalProgram
|
||||
description: Academic program.
|
||||
slots:
|
||||
- has_name
|
||||
- has_label
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
specificity_rationale: Generic utility class/slot created during migration
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_frequency
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/has_user_category
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Access:
|
||||
class_uri: dcterms:RightsStatement
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/review_date
|
||||
- ../slots/20260202_matang/new/rights_statement
|
||||
- ../slots/20260202_matang/new/rights_statement_url
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
AccessPolicy:
|
||||
class_uri: premis:RightsStatus
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ default_prefix: hc
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
AccessTriggerEvent:
|
||||
class_uri: prov:Activity
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
AccessionEvent:
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ default_prefix: hc
|
|||
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
AccreditationEvent:
|
||||
class_uri: prov:Activity
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Accumulation:
|
||||
class_uri: rico:AccumulationRelation
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
# default_range: string
|
||||
enums:
|
||||
AcquisitionMethodEnum:
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_method
|
||||
- ../slots/20260202_matang/has_origin
|
||||
- ../slots/20260202_matang/has_provenance
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
AcquisitionEvent:
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ imports:
|
|||
- ../slots/20260202_matang/succeeded_by
|
||||
- ../slots/20260202_matang/new/note
|
||||
- ../slots/20260202_matang/new/preceding_activity
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Activity:
|
||||
class_uri: prov:Activity
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ classes:
|
|||
- identified_by
|
||||
- has_label
|
||||
# has_admin_staff_count REMOVED - migrated to has_staff_member (Rule 53)
|
||||
- has_staff_member
|
||||
- has_staff
|
||||
- has_function
|
||||
- is_leased
|
||||
- lease_expiry
|
||||
|
|
@ -75,7 +75,7 @@ classes:
|
|||
function_category: SUPPORT
|
||||
function_name: Information technology
|
||||
- value: Management access only
|
||||
has_staff_member:
|
||||
has_staff:
|
||||
range: Staff
|
||||
multivalued: true
|
||||
inlined: true
|
||||
|
|
@ -132,7 +132,7 @@ classes:
|
|||
function_name: Information technology
|
||||
- function_category: ADMINISTRATIVE
|
||||
function_name: Legal affairs
|
||||
has_staff_member:
|
||||
has_staff:
|
||||
- has_quantity:
|
||||
has_value: 45
|
||||
has_unit:
|
||||
|
|
@ -157,7 +157,7 @@ classes:
|
|||
function_name: Quality control
|
||||
- function_category: SUPPORT
|
||||
function_name: Technical support
|
||||
has_staff_member:
|
||||
has_staff:
|
||||
- has_quantity:
|
||||
has_value: 12
|
||||
has_unit:
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/signed_on
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Agreement:
|
||||
class_uri: schema:Contract
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ prefixes:
|
|||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
AllocationEvent:
|
||||
class_uri: prov:Activity
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
AmendmentEvent:
|
||||
class_uri: prov:Activity
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ default_prefix: hc
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_reason
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
AnnexCreationEvent:
|
||||
class_uri: prov:Activity
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
Appointment:
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ imports:
|
|||
- ../metadata
|
||||
- ../slots/20260202_matang/has_quantity
|
||||
- ../slots/20260202_matang/has_unit
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
AppreciationEvent:
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ classes:
|
|||
slots:
|
||||
- has_policy
|
||||
- has_scope
|
||||
- has_subtype
|
||||
- has_hyponym
|
||||
- has_type
|
||||
- has_schema
|
||||
- preservation_standard
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ imports:
|
|||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
ArchivingPlan:
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/registered_office_clause
|
||||
- ../slots/20260202_matang/new/requires_articles_at_registration
|
||||
- ../slots/20260202_matang/new/supersedes_or_superseded
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
@ -73,7 +73,7 @@ classes:
|
|||
- has_status
|
||||
- has_format
|
||||
- has_url
|
||||
- included_in
|
||||
- listed_in
|
||||
- has_description
|
||||
- has_title
|
||||
- has_type
|
||||
|
|
@ -171,7 +171,7 @@ classes:
|
|||
archived_in:
|
||||
range: CustodianArchive
|
||||
required: false
|
||||
included_in:
|
||||
listed_in:
|
||||
range: CustodianCollection
|
||||
required: false
|
||||
examples:
|
||||
|
|
@ -244,7 +244,7 @@ classes:
|
|||
registered_office_clause: De stichting heeft haar zetel in de gemeente Amsterdam.
|
||||
language: nl
|
||||
articles_archival_stage: HERITAGE
|
||||
included_in: https://nde.nl/ontology/hc/collection/rm/institutional-archive
|
||||
listed_in: https://nde.nl/ontology/hc/collection/rm/institutional-archive
|
||||
requires_articles_at_registration: true
|
||||
refers_to_legal_status: https://nde.nl/ontology/hc/legal-status/rm
|
||||
refers_to_custodian: https://nde.nl/ontology/hc/nl-nh-ams-m-rm-q190804
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/new/draws_or_drew_opinion
|
||||
- ../slots/20260202_matang/conducted_by
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Audit:
|
||||
class_uri: prov:Activity
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/related_project
|
||||
- ../slots/20260202_matang/new/serves_finding_aid
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/settlement
|
||||
- ../slots/20260202_matang/new/specialized_place
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
@ -74,7 +74,7 @@ classes:
|
|||
- temporal_extent
|
||||
- derived_from
|
||||
- generated_by
|
||||
- has_geometry
|
||||
- geometric_extent
|
||||
slot_usage:
|
||||
identified_by:
|
||||
# range: string # uriorcurie
|
||||
|
|
@ -159,7 +159,7 @@ classes:
|
|||
geospatial_id: https://nde.nl/ontology/hc/geo/depot-amersfoort-building
|
||||
latitude: 52.1561
|
||||
longitude: 5.3878
|
||||
has_geometry:
|
||||
geometric_extent:
|
||||
- has_format:
|
||||
has_value: POLYGON((5.385 52.154, 5.390 52.154, 5.390 52.158, 5.385 52.158, 5.385 52.154))
|
||||
has_type:
|
||||
|
|
@ -172,7 +172,7 @@ classes:
|
|||
geospatial_id: https://nde.nl/ontology/hc/geo/schiphol-branch
|
||||
latitude: 52.3086
|
||||
longitude: 4.7639
|
||||
has_geometry:
|
||||
geometric_extent:
|
||||
- has_format:
|
||||
has_value: POINT(4.7639 52.3086)
|
||||
has_type:
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ classes:
|
|||
- identified_by
|
||||
- listed_in
|
||||
- was_acquired_through
|
||||
- describes_or_described
|
||||
- describe
|
||||
- has_place
|
||||
- has_hypernym
|
||||
- acquired_by
|
||||
|
|
@ -279,7 +279,7 @@ classes:
|
|||
country: MU
|
||||
latitude: -20.2
|
||||
longitude: 57.5
|
||||
describes_or_described:
|
||||
describe:
|
||||
required: false
|
||||
range: Locality
|
||||
inlined: true
|
||||
|
|
@ -402,7 +402,7 @@ classes:
|
|||
part_type:
|
||||
- SKELETON
|
||||
preservation_method: FOSSIL_PREPARED
|
||||
describes_or_described:
|
||||
describe:
|
||||
- verbatim_text: Argentina, Buenos Aires Province
|
||||
iucn_status: EX
|
||||
current_keeper: https://nde.nl/ontology/hc/custodian/nl/naturalis
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/inference_provenance
|
||||
- ../slots/20260202_matang/new/is_inferred
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
BirthDate:
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ classes:
|
|||
slots:
|
||||
- has_label
|
||||
- has_description
|
||||
- has_owner
|
||||
- owned_by
|
||||
- has_score
|
||||
slot_usage:
|
||||
has_label:
|
||||
|
|
@ -45,7 +45,7 @@ classes:
|
|||
examples:
|
||||
- value: Ex Libris Johann Wolfgang von Goethe
|
||||
- value: Bibliotheca Regia
|
||||
has_owner:
|
||||
owned_by:
|
||||
# range: string
|
||||
examples:
|
||||
- value: Johann Wolfgang von Goethe
|
||||
|
|
@ -58,7 +58,7 @@ classes:
|
|||
- value:
|
||||
id: https://nde.nl/ontology/hc/bookplate/kb-exlibris-goethe-001
|
||||
has_label: Ex Libris J.W. von Goethe
|
||||
has_owner: Johann Wolfgang von Goethe
|
||||
owned_by: Johann Wolfgang von Goethe
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
specificity_rationale: Generic utility class/slot created during migration
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/revision_date
|
||||
- ../slots/20260202_matang/new/revision_number
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ classes:
|
|||
- dcterms:BibliographicResource
|
||||
slots:
|
||||
- due_on
|
||||
- opened_on
|
||||
- initiate_on
|
||||
slot_usage:
|
||||
due_on:
|
||||
range: TimeSpan
|
||||
|
|
@ -75,7 +75,7 @@ classes:
|
|||
- value:
|
||||
has_rate: "100%"
|
||||
maximal_of_maximal: 100
|
||||
opened_on:
|
||||
initiate_on:
|
||||
range: TimeSpan
|
||||
examples:
|
||||
- value:
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/has_unit
|
||||
- ../slots/20260202_matang/new/is_estimate
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
Capacity:
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/observed_by
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
CeasingEvent:
|
||||
class_uri: schema:Event
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
ClassificationStatus:
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/item
|
||||
- ../slots/20260202_matang/new/part_of_custodian_collection
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
# - ./CurationActivity
|
||||
classes:
|
||||
Collection:
|
||||
|
|
@ -62,7 +62,7 @@ classes:
|
|||
- instantiated_by
|
||||
- has_quantity
|
||||
- item
|
||||
- sub_collection_of
|
||||
- part_of
|
||||
- part_of_custodian_collection
|
||||
- has_provenance
|
||||
- record_set_type
|
||||
|
|
@ -160,7 +160,7 @@ classes:
|
|||
# range: string
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/access-policy/open-access
|
||||
sub_collection_of:
|
||||
part_of:
|
||||
range: Collection
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/collection/nationaal-archief-voc-fonds
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_place
|
||||
- ../slots/20260202_matang/has_provenance
|
||||
- ../slots/20260202_matang/acquired_by
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
- ../slots/20260202_matang/new/field_number
|
||||
- ../slots/20260202_matang/new/sampling_protocol
|
||||
- ../slots/20260202_matang/new/habitat_description
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/powers_platform
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/repository_url
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ imports:
|
|||
- ../metadata
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
ColonialStatus:
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ imports:
|
|||
- ../metadata
|
||||
- ../slots/20260202_matang/has_quantity
|
||||
- ../slots/20260202_matang/has_unit
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
CommentReply:
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_provenance
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/based_on
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Conflict:
|
||||
class_uri: crm:E5_Event
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ classes:
|
|||
- value: Paintings
|
||||
- value: Works on paper
|
||||
- value: Furniture
|
||||
has_equipment_type:
|
||||
has_equipment:
|
||||
range: EquipmentType
|
||||
multivalued: true
|
||||
inlined: true
|
||||
|
|
@ -150,7 +150,7 @@ classes:
|
|||
- Works on paper
|
||||
- Furniture
|
||||
- Metalwork
|
||||
has_equipment_type:
|
||||
has_equipment:
|
||||
- has_label: Stereomicroscopes
|
||||
- has_label: X-ray fluorescence spectrometer
|
||||
- has_label: Infrared reflectography system
|
||||
|
|
@ -173,7 +173,7 @@ classes:
|
|||
- Parchment
|
||||
- Seals
|
||||
- Maps and plans
|
||||
has_equipment_type:
|
||||
has_equipment:
|
||||
- has_label: Leaf casting machine
|
||||
- has_label: Suction tables
|
||||
- has_label: Book presses
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ classes:
|
|||
has_type: VacuumLining
|
||||
has_label: Vacuum hot table lining
|
||||
has_description: Canvas lined using vacuum table with BEVA 371 adhesive
|
||||
describes_or_described:
|
||||
describe:
|
||||
range: ExaminationMethod
|
||||
multivalued: true
|
||||
inlined: true
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
ConservationReview:
|
||||
|
|
|
|||
|
|
@ -40,10 +40,10 @@ classes:
|
|||
- has_score
|
||||
- has_custodian
|
||||
- has_custodian_observation
|
||||
- has_custodian_name
|
||||
- has_label
|
||||
- has_section
|
||||
- identified_by
|
||||
- has_social_media_profile
|
||||
- has_profile
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
specificity_rationale: Generic utility class/slot created during migration
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Content:
|
||||
class_uri: rico:RecordSetType
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
# default_range: string
|
||||
classes:
|
||||
ConversionRate:
|
||||
|
|
|
|||
|
|
@ -14,5 +14,5 @@ imports:
|
|||
classes:
|
||||
CoordinateProvenance:
|
||||
slots:
|
||||
- has_citation
|
||||
- based_on
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_place
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
CreationEvent:
|
||||
class_uri: crm:E65_Creation
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/place_designation
|
||||
- ../slots/20260202_matang/new/preferred_label
|
||||
- ../slots/20260202_matang/new/preserves_or_preserved
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Custodian:
|
||||
class_uri: crm:E39_Actor
|
||||
|
|
@ -109,7 +109,7 @@ classes:
|
|||
- has_policy
|
||||
- has_digital_presence
|
||||
- encompassed_by
|
||||
- has_exhibition
|
||||
- exhibit
|
||||
- has_collection
|
||||
- identified_by
|
||||
- legal_status
|
||||
|
|
@ -119,7 +119,7 @@ classes:
|
|||
- place_designation
|
||||
- preferred_label
|
||||
- preserves_or_preserved
|
||||
- has_social_media_profile
|
||||
- has_profile
|
||||
- has_facility
|
||||
- has_score
|
||||
- temporal_extent
|
||||
|
|
@ -165,7 +165,7 @@ classes:
|
|||
has_policy:
|
||||
# range: string
|
||||
required: false
|
||||
has_social_media_profile:
|
||||
has_profile:
|
||||
# range: string # uriorcurie
|
||||
# range: SocialMediaProfile
|
||||
multivalued: true
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/retention_period_year
|
||||
- ../slots/20260202_matang/new/retention_schedule
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/processing_started_date
|
||||
- ../slots/20260202_matang/new/processing_status
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
@ -49,7 +49,7 @@ classes:
|
|||
class_uri: rico:RecordSet
|
||||
slots:
|
||||
- accessioned_through
|
||||
- has_accumulation
|
||||
- accumulated_at
|
||||
- has_note
|
||||
- has_description
|
||||
- has_label
|
||||
|
|
@ -113,7 +113,7 @@ classes:
|
|||
identified_by:
|
||||
- has_value: 2024-0001
|
||||
has_type: Accession Number
|
||||
has_accumulation:
|
||||
accumulated_at:
|
||||
range: Accumulation
|
||||
inlined: true
|
||||
examples:
|
||||
|
|
@ -199,7 +199,7 @@ classes:
|
|||
begin_of_the_begin: '2024-01-15'
|
||||
identified_by:
|
||||
- has_value: RM-2024-0001
|
||||
has_accumulation:
|
||||
accumulated_at:
|
||||
temporal_extent:
|
||||
begin_of_the_begin: '2010-01-01'
|
||||
end_of_the_end: '2020-12-31'
|
||||
|
|
@ -224,7 +224,7 @@ classes:
|
|||
begin_of_the_begin: '2015-06-01'
|
||||
identified_by:
|
||||
- has_value: NA-2015-GOV-0234
|
||||
has_accumulation:
|
||||
accumulated_at:
|
||||
temporal_extent:
|
||||
begin_of_the_begin: '1990-01-01'
|
||||
end_of_the_end: '2005-12-31'
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/managing_unit
|
||||
- ../slots/20260202_matang/new/preservation_level
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/registration_authority
|
||||
- ../slots/20260202_matang/new/registration_date
|
||||
- ../slots/20260202_matang/new/service_area
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
CustodianLegalStatus:
|
||||
is_a: ReconstructedEntity
|
||||
|
|
@ -91,7 +91,7 @@ classes:
|
|||
slots:
|
||||
- responsible_for
|
||||
- dissolved_by
|
||||
- defines_or_defined
|
||||
- define
|
||||
- has_document
|
||||
- identified_by
|
||||
- legal_entity_type
|
||||
|
|
@ -208,7 +208,7 @@ classes:
|
|||
examples:
|
||||
- value:
|
||||
has_label: Active
|
||||
defines_or_defined:
|
||||
define:
|
||||
# range: string # uriorcurie
|
||||
# range: GovernanceStructure
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/standardized_name
|
||||
- ../slots/20260202_matang/new/supersedes_or_superseded
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
# - ./ReconstructionActivity
|
||||
classes:
|
||||
CustodianName:
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/place_specificity
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/settlement
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
CustodianPlace:
|
||||
is_a: ReconstructedEntity
|
||||
|
|
@ -44,7 +44,7 @@ classes:
|
|||
- prov:Entity
|
||||
- crm:E27_Site
|
||||
slots:
|
||||
- has_auxiliary_entities
|
||||
- related_to
|
||||
- country
|
||||
- has_location
|
||||
- place_language
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ classes:
|
|||
custodian_types: '[''*'']'
|
||||
slots:
|
||||
- has_provenance
|
||||
- has_web_claim
|
||||
- has_provenance
|
||||
- location
|
||||
- legal_status
|
||||
- mission_statement
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ imports:
|
|||
- ../slots/20260202_matang/retrieved_through
|
||||
- ../slots/20260202_matang/new/observation_ref
|
||||
- ../slots/20260202_matang/new/source_url
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
- ../enums/OrganizationalChangeEventTypeEnum
|
||||
- ../enums/TimelineExtractionMethodEnum
|
||||
default_prefix: hc
|
||||
|
|
|
|||
|
|
@ -37,14 +37,14 @@ classes:
|
|||
- custodian_type_broader
|
||||
- custodian_type_narrower
|
||||
- custodian_type_related
|
||||
- has_type_code
|
||||
- has_code
|
||||
- modified
|
||||
- has_score
|
||||
- has_description
|
||||
- has_label
|
||||
- identified_by
|
||||
slot_usage:
|
||||
has_type_code:
|
||||
has_code:
|
||||
# range: string
|
||||
required: false
|
||||
pattern: ^[ABCDEFGHILMNOPRSTUX]$
|
||||
|
|
@ -92,7 +92,7 @@ classes:
|
|||
identified_by:
|
||||
- https://nde.nl/ontology/hc/type/museum/Q207694
|
||||
- Q207694
|
||||
has_type_code: M
|
||||
has_code: M
|
||||
has_label:
|
||||
- Art Museum@en
|
||||
- kunstmuseum@nl
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ classes:
|
|||
- used_in
|
||||
- identified_by
|
||||
- has_description
|
||||
- protocol_name
|
||||
- has_label
|
||||
- protocol_version
|
||||
- related_types
|
||||
- narrower_type
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/caused_by
|
||||
- ../slots/20260202_matang/new/occurs_or_occurred_at
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
DeceasedStatus:
|
||||
class_uri: schema:DeathEvent
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_status
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/has_url
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
|
|||
|
|
@ -49,14 +49,14 @@ classes:
|
|||
- has_label
|
||||
- has_type
|
||||
- has_description
|
||||
- managed_by
|
||||
- administered_by
|
||||
- identified_by
|
||||
- dissolved_by
|
||||
- located_at
|
||||
- mandate
|
||||
- parent_department
|
||||
- refers_to_custodian
|
||||
- has_staff_member
|
||||
- has_staff
|
||||
- has_score
|
||||
slot_usage:
|
||||
identified_by:
|
||||
|
|
@ -102,7 +102,7 @@ classes:
|
|||
range: Department
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/dept/nationaal-archief-collections
|
||||
managed_by:
|
||||
administered_by:
|
||||
range: Manager
|
||||
inlined: true
|
||||
required: false
|
||||
|
|
@ -110,7 +110,7 @@ classes:
|
|||
- value:
|
||||
has_name: Dr. Maria van der Berg
|
||||
has_title: Head of Colonial Records Department
|
||||
has_staff_member:
|
||||
has_staff:
|
||||
range: PersonObservation
|
||||
multivalued: true
|
||||
inlined_as_list: true
|
||||
|
|
@ -167,7 +167,7 @@ classes:
|
|||
has_type: DepartmentCode
|
||||
has_description:
|
||||
has_text: Responsible for the museum's collection of paintings from the Middle Ages to the 20th century. Includes Dutch Golden Age masterpieces, Flemish Baroque, and European paintings.
|
||||
managed_by:
|
||||
administered_by:
|
||||
has_name: Dr. Pieter Roelofs
|
||||
has_title: Head of Paintings Department
|
||||
refers_to_custodian: https://nde.nl/ontology/hc/nl-nh-ams-m-rm
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ classes:
|
|||
is_a: CustodianType
|
||||
class_uri: schema:ArchiveOrganization
|
||||
slots:
|
||||
- part_of_archive_series
|
||||
- part_of
|
||||
- has_type
|
||||
- has_service_area
|
||||
- hold_or_held_record_set_type
|
||||
|
|
@ -52,7 +52,7 @@ classes:
|
|||
identified_by:
|
||||
covers_country:
|
||||
alpha_2: FR
|
||||
part_of_archive_series:
|
||||
part_of:
|
||||
# range: string
|
||||
multivalued: true
|
||||
examples:
|
||||
|
|
@ -108,7 +108,7 @@ classes:
|
|||
identified_by:
|
||||
covers_country:
|
||||
alpha_2: FR
|
||||
part_of_archive_series:
|
||||
part_of:
|
||||
- "A-L (ancien r\xE9gime)"
|
||||
- "E (\xE9tat civil)"
|
||||
- M (administration)
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
DeploymentEvent:
|
||||
class_uri: prov:Activity
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/repository_software
|
||||
- ../slots/20260202_matang/new/serves_finding_aid
|
||||
- ../slots/20260202_matang/new/sparql_endpoint
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
@ -92,7 +92,7 @@ classes:
|
|||
- dcat:accessURL
|
||||
slots:
|
||||
- has_endpoint
|
||||
- has_auxiliary_entities
|
||||
- related_to
|
||||
- checked_through
|
||||
- has_url
|
||||
- inventory_web_address
|
||||
|
|
|
|||
|
|
@ -38,27 +38,27 @@ classes:
|
|||
description: "Enhanced digital platform data structure (v2)"
|
||||
class_uri: org:Organization
|
||||
slots:
|
||||
- has_transformation_metadata
|
||||
- has_organization_status
|
||||
- has_metadata
|
||||
- has_status
|
||||
- has_data_quality_notes
|
||||
- has_organization_profile
|
||||
- has_primary_platform
|
||||
- has_key_contact
|
||||
- has_service_details
|
||||
- has_profile
|
||||
- has_digital_platform
|
||||
- has_contact_point
|
||||
- has_service
|
||||
- identified_by
|
||||
- has_provenance
|
||||
- has_auxiliary_platform
|
||||
- has_navigation_link
|
||||
- related_to
|
||||
- has_url
|
||||
- has_homepage
|
||||
- has_name
|
||||
- has_type
|
||||
- refers_to_custodian
|
||||
- has_contact_information
|
||||
- has_contact_details
|
||||
- has_facility
|
||||
- has_secondary_platform
|
||||
- has_web_claim
|
||||
- has_collection_url
|
||||
- has_inventory_url
|
||||
- has_digital_platform
|
||||
- has_provenance
|
||||
- contain_collection
|
||||
- has_url
|
||||
slot_usage:
|
||||
identified_by:
|
||||
description: External identifiers (Wikidata, Sigla, ICO, etc.)
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ classes:
|
|||
is_a: ArchiveOrganizationType
|
||||
class_uri: schema:ArchiveOrganization
|
||||
slots:
|
||||
- grants_or_granted_access_through
|
||||
- grant_access_to
|
||||
- has_type
|
||||
- hold_or_held_record_set_type
|
||||
- restriction_category
|
||||
|
|
@ -53,7 +53,7 @@ classes:
|
|||
- value:
|
||||
- user_based
|
||||
- process_based
|
||||
grants_or_granted_access_through:
|
||||
grant_access_to:
|
||||
range: AccessApplication
|
||||
inlined: true
|
||||
required: false
|
||||
|
|
@ -100,7 +100,7 @@ classes:
|
|||
- user_based
|
||||
- process_based
|
||||
- content_based
|
||||
grants_or_granted_access_through:
|
||||
grant_access_to:
|
||||
has_url:
|
||||
has_value: https://archive.example.org/apply
|
||||
has_time_interval:
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ prefixes:
|
|||
org: http://www.w3.org/ns/org#
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
DissolutionEvent:
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/scheme_name
|
||||
- ../slots/20260202_matang/new/scheme_type
|
||||
- ../slots/20260202_matang/new/scheme_url
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
DonationScheme:
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Education:
|
||||
class_uri: schema:EducationalOccupationalCredential
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../metadata
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Embargo:
|
||||
class_uri: odrl:Prohibition
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ imports:
|
|||
- ../metadata
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_method
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
EnrichmentMetadata:
|
||||
class_uri: prov:Activity
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/monitoring_platform_url
|
||||
- ../slots/20260202_matang/new/observation
|
||||
- ../slots/20260202_matang/new/part_of_facility
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
EnvironmentalZone:
|
||||
class_uri: hc:EnvironmentalZone
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../metadata
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
EstablishmentEvent:
|
||||
class_uri: org:ChangeEvent
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/involves_or_involved
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/new/takes_or_took_place_at
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
Event:
|
||||
class_uri: crm:E5_Event
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ imports:
|
|||
- ../slots/20260202_matang/cataloged_in
|
||||
- ../slots/20260202_matang/located_in
|
||||
- ../slots/20260202_matang/new/organized_by
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
Exhibition:
|
||||
|
|
@ -59,7 +59,7 @@ classes:
|
|||
- has_type
|
||||
- has_url
|
||||
- located_in
|
||||
- exhibits_or_exhibited
|
||||
- exhibit
|
||||
- organized_by
|
||||
- has_score
|
||||
- has_venue
|
||||
|
|
@ -168,7 +168,7 @@ classes:
|
|||
range: uri
|
||||
examples:
|
||||
- value: https://www.rijksmuseum.nl/nl/vermeer
|
||||
exhibits_or_exhibited:
|
||||
exhibit:
|
||||
range: FeaturedObject
|
||||
multivalued: true
|
||||
inlined: true
|
||||
|
|
@ -248,7 +248,7 @@ classes:
|
|||
- https://nde.nl/ontology/hc/object/rijksmuseum-milkmaid
|
||||
- https://nde.nl/ontology/hc/object/mauritshuis-view-delft
|
||||
- https://nde.nl/ontology/hc/object/rijksmuseum-woman-reading-letter
|
||||
exhibits_or_exhibited:
|
||||
exhibit:
|
||||
- Girl with a Pearl Earring (Mauritshuis)
|
||||
- The Milkmaid (Rijksmuseum)
|
||||
- View of Delft (Mauritshuis)
|
||||
|
|
@ -278,7 +278,7 @@ classes:
|
|||
- organizer_entity: https://nde.nl/ontology/hc/custodian/nl/rijksmuseum
|
||||
has_role:
|
||||
located_in: Gallery of Honour (Eregalerij)
|
||||
exhibits_or_exhibited:
|
||||
exhibit:
|
||||
- The Night Watch (Rembrandt)
|
||||
- The Merry Drinker (Frans Hals)
|
||||
- The Jewish Bride (Rembrandt)
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ classes:
|
|||
- price
|
||||
- published_at
|
||||
- has_publisher
|
||||
- indexed
|
||||
- indexed_as
|
||||
- has_score
|
||||
slot_usage:
|
||||
identified_by:
|
||||
|
|
@ -194,7 +194,7 @@ classes:
|
|||
# range: string
|
||||
examples:
|
||||
- value: "The official catalog of the groundbreaking Vermeer exhibition at the \nRijksmuseum, featuring 28 of the Dutch master's 37 known paintings.\nIncludes scholarly essays on Vermeer's technique, pigments, and\nsubjects, along with detailed entries for each work.\n"
|
||||
indexed:
|
||||
indexed_as:
|
||||
required: false
|
||||
range: Index
|
||||
multivalued: true
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_quantity
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/has_type # was: expense_type
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
- ../slots/temporal_extent # was: valid_from + valid_to
|
||||
default_prefix: hc
|
||||
classes:
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@ classes:
|
|||
- has_type
|
||||
- manages_or_managed
|
||||
- site_portfolio
|
||||
- managed_by
|
||||
- administered_by
|
||||
- has_score
|
||||
- has_service
|
||||
slot_usage:
|
||||
|
|
@ -180,7 +180,7 @@ classes:
|
|||
- value: Monitoring condition, Emergency stabilization
|
||||
- value: Free public access, No booking required
|
||||
- value: Restricted access, Conservation priority, Virtual alternatives
|
||||
managed_by:
|
||||
administered_by:
|
||||
# range: string # uriorcurie
|
||||
required: true
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/derived_from
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
FeaturePlace:
|
||||
is_a: ReconstructedEntity
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/statement_name
|
||||
- ../slots/20260202_matang/new/statement_type
|
||||
- ../slots/20260202_matang/new/states_or_stated
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/slug
|
||||
- ../slots/20260202_matang/new/start
|
||||
- ../slots/20260202_matang/new/supersedes_or_superseded
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
FindingAid:
|
||||
class_uri: rico:FindingAid
|
||||
|
|
@ -248,7 +248,7 @@ classes:
|
|||
- list_item
|
||||
- section_id
|
||||
- has_score
|
||||
- has_provenance_path
|
||||
- has_provenance
|
||||
slot_usage:
|
||||
has_level:
|
||||
range: integer
|
||||
|
|
@ -262,7 +262,7 @@ classes:
|
|||
- range: PageLink
|
||||
list_item:
|
||||
multivalued: true
|
||||
has_provenance_path:
|
||||
has_provenance:
|
||||
range: XPath
|
||||
inlined: true
|
||||
exact_mappings:
|
||||
|
|
@ -278,7 +278,7 @@ classes:
|
|||
- link_type
|
||||
- link_url
|
||||
- has_score
|
||||
- has_provenance_path
|
||||
- has_provenance
|
||||
slot_usage:
|
||||
link_text:
|
||||
required: true
|
||||
|
|
@ -289,7 +289,7 @@ classes:
|
|||
range: LinkTypeEnum
|
||||
is_sub_guide:
|
||||
range: boolean
|
||||
has_provenance_path:
|
||||
has_provenance:
|
||||
range: XPath
|
||||
inlined: true
|
||||
FeaturedCard:
|
||||
|
|
@ -303,7 +303,7 @@ classes:
|
|||
- has_label
|
||||
- has_url
|
||||
- has_score
|
||||
- has_provenance_path
|
||||
- has_provenance
|
||||
slot_usage:
|
||||
has_description:
|
||||
# range: string
|
||||
|
|
@ -344,7 +344,7 @@ classes:
|
|||
examples:
|
||||
- value:
|
||||
has_value: https://archive.org/page
|
||||
has_provenance_path:
|
||||
has_provenance:
|
||||
range: XPath
|
||||
inlined: true
|
||||
types:
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
FoundingEvent:
|
||||
class_uri: crm:E63_Beginning_of_Existence
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label # was: function_name
|
||||
- ../slots/20260202_matang/categorized_as # was: function_category
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
- ../slots/temporal_extent # was: valid_from + valid_to
|
||||
default_prefix: hc
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/route_keyword
|
||||
- ../slots/20260202_matang/new/route_relevance_to_heritage
|
||||
- ../slots/20260202_matang/new/route_title
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
FundingAgenda:
|
||||
|
|
@ -55,7 +55,7 @@ classes:
|
|||
- has_url
|
||||
- identified_by
|
||||
- has_label
|
||||
- governed_by
|
||||
- administered_by
|
||||
- related_to
|
||||
- implemented_by
|
||||
- related_agenda
|
||||
|
|
@ -110,7 +110,7 @@ classes:
|
|||
has_url: https://wetenschapsagenda.nl/publicaties/
|
||||
has_type:
|
||||
has_code: DOCUMENT
|
||||
governed_by:
|
||||
administered_by:
|
||||
range: GoverningBody
|
||||
examples:
|
||||
- value:
|
||||
|
|
@ -181,7 +181,7 @@ classes:
|
|||
'
|
||||
has_url: https://www.nwo.nl/en/researchprogrammes/dutch-research-agenda-nwa
|
||||
has_documentation: https://wetenschapsagenda.nl/publicaties/
|
||||
governed_by:
|
||||
administered_by:
|
||||
identified_by: https://nde.nl/ontology/hc/encompassing-body/umbrella/nl-ministry-ocw
|
||||
implemented_by:
|
||||
- identified_by: https://nde.nl/ontology/hc/encompassing-body/funding/nwo
|
||||
|
|
@ -220,7 +220,7 @@ classes:
|
|||
transformation, and post-COVID recovery.
|
||||
'
|
||||
has_url: https://research-and-innovation.ec.europa.eu/funding/funding-opportunities/funding-programmes-and-open-calls/horizon-europe/strategic-plan_en
|
||||
governed_by:
|
||||
administered_by:
|
||||
identified_by: https://nde.nl/ontology/hc/encompassing-body/umbrella/eu-commission
|
||||
implemented_by:
|
||||
- https://nde.nl/ontology/hc/encompassing-body/funding/ec-rea
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/requirement_value
|
||||
- ../slots/20260202_matang/new/source_section
|
||||
- ../slots/20260202_matang/new/supersedes_or_superseded
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
FundingRequirement:
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_provenance
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
|
||||
classes:
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/osm_id
|
||||
- ../slots/20260202_matang/new/spatial_resolution
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
types:
|
||||
WktLiteral:
|
||||
uri: geosparql:wktLiteral
|
||||
|
|
@ -58,7 +58,7 @@ classes:
|
|||
- identified_by
|
||||
- coordinate_reference_system
|
||||
- has_geofeature
|
||||
- has_geometry
|
||||
- geometric_extent
|
||||
- osm_id
|
||||
- spatial_resolution
|
||||
- has_score
|
||||
|
|
@ -108,7 +108,7 @@ classes:
|
|||
latitude: 52.36
|
||||
longitude: 4.8852
|
||||
altitude: 0.0
|
||||
has_geometry:
|
||||
geometric_extent:
|
||||
- has_format:
|
||||
has_value: POLYGON((4.8830 52.3590, 4.8870 52.3590, 4.8870 52.3610, 4.8830 52.3610, 4.8830 52.3590))
|
||||
has_type:
|
||||
|
|
@ -125,7 +125,7 @@ classes:
|
|||
has_coordinates:
|
||||
latitude: 52.3676
|
||||
longitude: 4.9041
|
||||
has_geometry:
|
||||
geometric_extent:
|
||||
- has_type:
|
||||
has_label: POINT
|
||||
coordinate_reference_system: EPSG:4326
|
||||
|
|
@ -139,7 +139,7 @@ classes:
|
|||
has_coordinates:
|
||||
latitude: 52.5
|
||||
longitude: 4.8
|
||||
has_geometry:
|
||||
geometric_extent:
|
||||
- has_format:
|
||||
has_value: MULTIPOLYGON(((4.5 52.2, 5.2 52.2, 5.2 52.8, 4.5 52.8, 4.5 52.2)))
|
||||
has_type:
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ imports:
|
|||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/shop_type
|
||||
- ../slots/20260202_matang/new/square_meters
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
@ -60,7 +60,7 @@ classes:
|
|||
- accept
|
||||
- has_revenue
|
||||
- has_range
|
||||
- managed_by
|
||||
- administered_by
|
||||
- online_shop
|
||||
- opening_hour
|
||||
- physical_location
|
||||
|
|
@ -176,7 +176,7 @@ classes:
|
|||
required: false
|
||||
examples:
|
||||
- value: 250.0
|
||||
managed_by:
|
||||
administered_by:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
@ -265,7 +265,7 @@ classes:
|
|||
range: integer
|
||||
inlined: false # Fixed invalid inline for primitive type
|
||||
square_meters: 450.0
|
||||
managed_by: In-house (Rijksmuseum BV)
|
||||
administered_by: In-house (Rijksmuseum BV)
|
||||
has_supplier:
|
||||
- has_label:
|
||||
label_text: King & McGaw
|
||||
|
|
|
|||
|
|
@ -31,14 +31,14 @@ classes:
|
|||
- prov:Entity
|
||||
- schema:Rating
|
||||
slots:
|
||||
- has_author_name
|
||||
- has_author
|
||||
- has_url
|
||||
- has_rating
|
||||
- has_description
|
||||
- has_text
|
||||
- has_publication_date
|
||||
slot_usage:
|
||||
has_author_name:
|
||||
has_author:
|
||||
description: Author/Reviewer name
|
||||
has_url:
|
||||
description: Author profile URL
|
||||
|
|
|
|||
|
|
@ -17,11 +17,11 @@ classes:
|
|||
class_uri: schema:DataFeedItem
|
||||
description: "Count of connections for a specific heritage type.\n\nUsed in NetworkAnalysis to provide breakdown by GLAM type.\n\n**Example**:\n```json\n{\n \"heritage_type_code\": \"M\",\n \"count\": 89\n}\n```\n"
|
||||
slots:
|
||||
- has_type_code
|
||||
- has_code
|
||||
- has_quantity
|
||||
- has_score
|
||||
slot_usage:
|
||||
has_type_code:
|
||||
has_code:
|
||||
range: HeritageTypeCode
|
||||
required: true
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/located_in
|
||||
- ../slots/20260202_matang/new/temporal_extent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
HistoricalRegion:
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue