@prefix :      <https://w3id.org/TRO#> .
@prefix schema: <https://schema.org/> .
@prefix owl:   <http://www.w3.org/2002/07/owl#> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann:  <http://purl.org/vocab/vann/> .
@prefix dc:    <http://purl.org/dc/elements/1.1/> .

:url    a           owl:DatatypeProperty ;
        rdfs:label  "URL"@en ;
        dc:creator  "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date     "2023-03-10T19:19:41Z"^^xsd:dateTime .

:OpenData  a              owl:Class ;
        rdfs:comment      "Data available at an Open Data portal, usually developed by a public administration"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Open data"@en ;
        rdfs:subClassOf   :Evidence ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-27T15:36:32Z"^^xsd:dateTime .

:Owner  a                 owl:Class ;
        rdfs:comment      "The owner of a company"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Owner"@en ;
        rdfs:subClassOf   :Role ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-08T21:12:53Z"^^xsd:dateTime .

schema:Person  a          owl:Class ;
        rdfs:comment      "A person (alive, dead, undead, or fictional)."@en ;
        rdfs:isDefinedBy  "https://schema.org"^^xsd:anyURI ;
        rdfs:label        "Person"@en ;
        rdfs:subClassOf   [ a                            owl:Restriction ;
                            owl:minQualifiedCardinality  "1"^^xsd:nonNegativeInteger ;
                            owl:onDataRange              xsd:string ;
                            owl:onProperty               <http://www.w3.org/ns/person#name>
                          ] ;
        rdfs:subClassOf   [ a                  owl:Restriction ;
                            owl:allValuesFrom  xsd:string ;
                            owl:onProperty     :profile_url
                          ] ;
        rdfs:subClassOf   [ a                  owl:Restriction ;
                            owl:allValuesFrom  xsd:string ;
                            owl:onProperty     schema:email
                          ] ;
        rdfs:subClassOf   [ a                   owl:Restriction ;
                            owl:onProperty      :has_role ;
                            owl:someValuesFrom  :Role
                          ] .

:start_date  a       owl:DatatypeProperty ;
        rdfs:domain  :Role ;
        rdfs:label   "Start date"@en ;
        rdfs:range   xsd:dateTime ;
        dc:creator   "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date      "2023-03-09T09:02:16Z"^^xsd:dateTime .

<https://w3id.org/TRO/IndividualContractor>
        a                 owl:Class ;
        rdfs:comment      "A person that acts as a single contractor to other organizations, usually government organizations"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Individual contractor"@en ;
        rdfs:subClassOf   :Role ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2024-01-27T10:23:30Z"^^xsd:dateTime .

terms:license  a  owl:AnnotationProperty .

<https://ontologies.semanticarts.com/gist/Commitment>
        a                 owl:Class ;
        rdfs:comment      "An obligation (possibly unilateral)"@en ;
        rdfs:isDefinedBy  "https://ontologies.semanticarts.com/gist/"^^xsd:anyURI ;
        rdfs:label        "Commitment"@en .

schema:email  a      owl:DatatypeProperty ;
        rdfs:domain  [ a            owl:Class ;
                       owl:unionOf  ( <https://ontologies.semanticarts.com/gist/Organization> schema:Person )
                     ] ;
        rdfs:label   "Email"@en ;
        rdfs:range   xsd:string .

schema:GovernmentOrganization
        a                 owl:Class ;
        rdfs:comment      "A governmental organization or agency"@en ;
        rdfs:isDefinedBy  "https://schema.org"^^xsd:anyURI ;
        rdfs:label        "GovernmentOrganization"@en ;
        rdfs:subClassOf   <https://ontologies.semanticarts.com/gist/Organization> .

schema:NewsArticle  a     owl:Class ;
        rdfs:comment      "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news"@en ;
        rdfs:isDefinedBy  "https://schema.org"^^xsd:anyURI ;
        rdfs:label        "NewsArticle"@en ;
        rdfs:subClassOf   :Evidence .

:profile_url  a             owl:DatatypeProperty ;
        rdfs:domain         [ a            owl:Class ;
                              owl:unionOf  ( schema:Person :Role )
                            ] ;
        rdfs:label          "Profile URL"@en ;
        rdfs:range          xsd:anyURI ;
        rdfs:subPropertyOf  :url ;
        dc:creator          "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date             "2023-03-09T09:04:41Z"^^xsd:dateTime .

vann:preferredNamespaceUri
        a       owl:AnnotationProperty .

<http://purl.org/goodrelations/v1#valueAddedTaxIncluded>
        a            owl:DatatypeProperty ;
        rdfs:domain  <http://purl.org/goodrelations/v1#PriceSpecification> ;
        rdfs:label   "Value added tax included"@en ;
        rdfs:range   xsd:boolean .

<http://purl.org/goodrelations/v1#PriceSpecification>
        a                 owl:Class ;
        rdfs:comment      "The superclass of all price specifications"@en ;
        rdfs:isDefinedBy  "http://purl.org/goodrelations/v1"^^xsd:anyURI ;
        rdfs:label        "Price specification"@en ;
        rdfs:subClassOf   <https://ontologies.semanticarts.com/gist/Commitment> ;
        rdfs:subClassOf   [ a                   owl:Restriction ;
                            owl:onProperty      <http://purl.org/goodrelations/v1#hasCurrencyValue> ;
                            owl:someValuesFrom  xsd:double
                          ] ;
        rdfs:subClassOf   [ a                   owl:Restriction ;
                            owl:onProperty      <http://purl.org/goodrelations/v1#hasCurrency> ;
                            owl:someValuesFrom  xsd:string
                          ] .

<http://www.w3.org/ns/person#name>
        a            owl:DatatypeProperty ;
        rdfs:domain  schema:Person ;
        rdfs:label   "Name"@en ;
        rdfs:range   xsd:string .

:Role   a                 owl:Class ;
        rdfs:comment      "The role of a person in a en entity during a given time period, provided in months or years"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Role"@en ;
        rdfs:subClassOf   <https://ontologies.semanticarts.com/gist/Commitment> ;
        rdfs:subClassOf   [ a                  owl:Restriction ;
                            owl:allValuesFrom  xsd:decimal ;
                            owl:onProperty     <http://www.w3.org/2006/time#years>
                          ] ;
        rdfs:subClassOf   [ a                   owl:Restriction ;
                            owl:onProperty      :in_entity ;
                            owl:someValuesFrom  <https://ontologies.semanticarts.com/gist/Organization>
                          ] ;
        rdfs:subClassOf   [ a                  owl:Restriction ;
                            owl:allValuesFrom  xsd:decimal ;
                            owl:onProperty     <http://www.w3.org/2006/time#months>
                          ] ;
        rdfs:subClassOf   [ a                  owl:Restriction ;
                            owl:allValuesFrom  xsd:dateTime ;
                            owl:onProperty     :end_date
                          ] ;
        rdfs:subClassOf   [ a                  owl:Restriction ;
                            owl:allValuesFrom  xsd:dateTime ;
                            owl:onProperty     :start_date
                          ] ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-08T21:06:06Z"^^xsd:dateTime .

<https://dbpedia.org/ontology/PoliticalParty>
        a                 owl:Class ;
        rdfs:comment      "organized group of individuals who share similar political beliefs, ideologies, and policy goals, and they work together to gain political power and influence within a government system"@en ;
        rdfs:isDefinedBy  "http://dbpedia.org/ontology/"^^xsd:anyURI ;
        rdfs:label        "Political Party"@en ;
        rdfs:subClassOf   <https://ontologies.semanticarts.com/gist/Organization> .

:represents  a          owl:ObjectProperty ;
        rdfs:label      "Represents"@en ;
        dc:contributor  "Jaime Gómez-Obregón (https://ladonacion.es/)"@es ;
        dc:creator      "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date         "2022-02-21T14:21:32Z"^^xsd:dateTime .

terms:created  a  owl:AnnotationProperty .

terms:title  a  owl:AnnotationProperty .

:President  a             owl:Class ;
        rdfs:comment      "The president of an organization"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "President"@en ;
        rdfs:subClassOf   :Role ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-09T08:50:34Z"^^xsd:dateTime .

:Manager  a               owl:Class ;
        rdfs:comment      "A person within an organization who is responsible for planning, coordinating, and overseeing various activities and resources to achieve specific goals and objectives"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Manager"@en ;
        rdfs:subClassOf   :Role ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-09T10:33:21Z"^^xsd:dateTime .

:Director  a              owl:Class ;
        rdfs:comment      "The director of an organization"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Director"@en ;
        rdfs:subClassOf   :Role ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-09T08:50:19Z"^^xsd:dateTime .

:cpv_code  a          owl:DatatypeProperty ;
        rdfs:domain   <http://data.europa.eu/a4g/ontology#Contract> ;
        rdfs:label    "CPV code"@en ;
        rdfs:range    xsd:string ;
        rdfs:seeAlso  "https://single-market-economy.ec.europa.eu/single-market/public-procurement/digital-procurement/common-procurement-vocabulary_en" ;
        dc:creator    "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date       "2023-05-19T07:51:57Z"^^xsd:dateTime .

:Evidence  a              owl:Class ;
        rdfs:comment      "The evidence of a relation. Normally an evidence will be a source of news. This is not legal evidence"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Evidence"@en ;
        rdfs:subClassOf   [ a                   owl:Restriction ;
                            owl:onProperty      :url ;
                            owl:someValuesFrom  xsd:anyURI
                          ] ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2022-02-15T11:19:58Z"^^xsd:dateTime .

:pays_to  a             owl:ObjectProperty ;
        rdfs:label      "Pays to"@en ;
        dc:contributor  "Jaime Gómez-Obregón (https://ladonacion.es/)"@es ;
        dc:creator      "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date         "2022-02-21T14:24:12Z"^^xsd:dateTime .

terms:abstract  a  owl:AnnotationProperty .

:Employee  a              owl:Class ;
        rdfs:comment      "A person hired by an organization"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Employee"@en ;
        rdfs:subClassOf   :Role ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-08T21:13:05Z"^^xsd:dateTime .

dc:creator  a   owl:AnnotationProperty .

:takes_place_in  a  owl:ObjectProperty ;
        rdfs:label  "Takes place in"@en ;
        dc:creator  "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date     "2022-02-21T14:35:58Z"^^xsd:dateTime .

<https://w3id.org/TRO>
        a                              owl:Ontology ;
        dc:contributor                 "Jaime Gómez-Obregón (https://ladonacion.es/)"@es , "Off-shore leaks DataBase (https://offshoreleaks.icij.org/)"@en ;
        dc:creator                     "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)"@eu ;
        terms:abstract                 "Transparent Relations Ontology (TRO) offers a vocabulary to publish information about relations that should be more transparent, usually between powerful parties, to detect potential conflicts of interests: for example, governments and their providers, or politicians and their personal relationships. Research journalism and Open Data are two areas in which this sort of data is growing, and new methods and standards are needed to cope with the FAIR publication and consumption of such data."@en ;
        terms:created                  "2022-04-01T00:00:01"^^xsd:dateTime ;
        terms:description              "A vocabulary to represent relations that should be more transparent, usually between powerfull people or institutions"@en ;
        terms:issued                   "2022-04-01T00:00:01"^^xsd:dateTime ;
        terms:license                  "https://apache.org/licenses/LICENSE-2.0"^^xsd:anyURI ;
        terms:modified                 "2023-06-06T00:00:01"^^xsd:dateTime ;
        terms:title                    "Transparent Relations Ontology"@en ;
        vann:preferredNamespacePrefix  "tro"@en ;
        vann:preferredNamespaceUri     "https://w3id.org/TRO#"^^xsd:anyURI ;
        owl:priorVersion               "0.1.2" ;
        owl:versionIRI                 <https://w3id.org/TRO/0.1.3> ;
        owl:versionInfo                "0.1.3" ;
        schema:schemaVersion           "https://w3id.org/TRO/0.1.3" .

schema:parent  a            owl:ObjectProperty ;
        rdfs:label          "Parent"@en ;
        rdfs:subPropertyOf  schema:knows .

schema:NGO  a             owl:Class ;
        rdfs:comment      "Non-governmental Organization"@en ;
        rdfs:isDefinedBy  "https://schema.org"^^xsd:anyURI ;
        rdfs:label        "NGO"@en ;
        rdfs:subClassOf   <https://ontologies.semanticarts.com/gist/Organization> .

:sibling  a                 owl:SymmetricProperty , owl:ObjectProperty ;
        rdfs:label          "Sibling"@en ;
        rdfs:subPropertyOf  schema:knows ;
        dc:creator          "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date             "2023-03-27T15:34:21Z"^^xsd:dateTime .

schema:schemaVersion  a  owl:AnnotationProperty .

:Associate  a             owl:Class ;
        rdfs:comment      "A person who is connected to another organization in a relationship that is less close or committed than a partnership"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Associate"@en ;
        rdfs:subClassOf   :Role ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-08T21:12:46Z"^^xsd:dateTime .

:PublicProfile  a         owl:Class ;
        rdfs:comment      "A public profile in the web (e.g. LinkedIn)"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Public Profile"@en ;
        rdfs:subClassOf   :Evidence ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-10T19:19:00Z"^^xsd:dateTime .

[ a            owl:AllDisjointClasses ;
  owl:members  ( <https://ontologies.semanticarts.com/gist/Commitment> <https://ontologies.semanticarts.com/gist/Organization> schema:Person :Evidence )
] .

schema:identifier  a  owl:FunctionalProperty , owl:DatatypeProperty ;
        rdfs:label  "Identifier"@en ;
        rdfs:range  xsd:string .

schema:SportsOrganization
        a                 owl:Class ;
        rdfs:comment      "all sports organizations, including sports teams, governing bodies, and sports associations"@en ;
        rdfs:isDefinedBy  "https://schema.org"^^xsd:anyURI ;
        rdfs:label        "Sports Organization"@en ;
        rdfs:subClassOf   <https://ontologies.semanticarts.com/gist/Organization> .

<http://purl.org/goodrelations/v1#hasCurrencyValue>
        a            owl:DatatypeProperty ;
        rdfs:domain  <http://purl.org/goodrelations/v1#PriceSpecification> ;
        rdfs:label   "Has currency value"@en ;
        rdfs:range   xsd:double .

<http://www.w3.org/2006/time#years>
        a           owl:DatatypeProperty ;
        rdfs:label  "Years"@en .

:Member  a                owl:Class ;
        rdfs:comment      "A person is a member of an organization"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Member"@en ;
        rdfs:subClassOf   :Role ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-27T15:32:50Z"^^xsd:dateTime .

schema:spouse  a            owl:ObjectProperty ;
        rdfs:label          "Spouse"@en ;
        rdfs:subPropertyOf  schema:knows .

<http://purl.org/goodrelations/v1#hasPriceSpecification>
        a           owl:ObjectProperty ;
        rdfs:label  "Has price specification"@en .

<https://ontologies.semanticarts.com/gist/Organization>
        a                 owl:Class ;
        rdfs:comment      "A generic organization that can be formal or informal, legal or non-legal. It can have members, or not"@en ;
        rdfs:isDefinedBy  "https://ontologies.semanticarts.com/gist/"^^xsd:anyURI ;
        rdfs:label        "Organization"@en .

:Officer  a               owl:Class ;
        rdfs:comment      "An officer usually belongs to a publica organization"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Officer"@en ;
        rdfs:subClassOf   :Role ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-03-09T08:51:05Z"^^xsd:dateTime .

:Minor_contract  a        owl:Class ;
        rdfs:comment      "In some administrations minor contracts do not have to be justified"@en ;
        rdfs:isDefinedBy  "https://w3id.org/TRO"^^xsd:anyURI ;
        rdfs:label        "Contrato menor"@es , "Minor contract"@en , "Kontratu txikia"@eu ;
        rdfs:seeAlso      "http://contsem.unizar.es/def/sector-publico/pproc#Minor" , "https://www.boe.es/boe/dias/2019/03/07/pdfs/BOE-A-2019-3281.pdf" ;
        rdfs:subClassOf   <http://data.europa.eu/a4g/ontology#Contract> ;
        dc:creator        "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date           "2023-05-19T08:10:50Z"^^xsd:dateTime .

:registered_in  a       owl:ObjectProperty ;
        rdfs:label      "Registered in"@en ;
        dc:contributor  "Jaime Gómez-Obregón (https://ladonacion.es/)"@es ;
        dc:creator      "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date         "2022-02-21T14:30:10Z"^^xsd:dateTime .

dc:date  a      owl:AnnotationProperty .

terms:modified  a  owl:AnnotationProperty .

schema:Corporation  a     owl:Class ;
        rdfs:comment      "A business corporation"@en ;
        rdfs:isDefinedBy  "https://schema.org"^^xsd:anyURI ;
        rdfs:label        "Corporation"@en ;
        rdfs:subClassOf   <https://ontologies.semanticarts.com/gist/Organization> ;
        rdfs:subClassOf   [ a                            owl:Restriction ;
                            owl:minQualifiedCardinality  "1"^^xsd:nonNegativeInteger ;
                            owl:onDataRange              xsd:string ;
                            owl:onProperty               schema:identifier
                          ] .

vann:preferredNamespacePrefix
        a       owl:AnnotationProperty .

:end_date  a         owl:DatatypeProperty ;
        rdfs:domain  :Role ;
        rdfs:label   "End date"@en ;
        rdfs:range   xsd:dateTime ;
        dc:creator   "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date      "2023-03-09T09:02:35Z"^^xsd:dateTime .

terms:issued  a  owl:AnnotationProperty .

schema:WorkersUnion  a    owl:Class ;
        rdfs:comment      "A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying"@en ;
        rdfs:isDefinedBy  "https://schema.org"^^xsd:anyURI ;
        rdfs:label        "Workers Union"@en ;
        rdfs:subClassOf   <https://ontologies.semanticarts.com/gist/Organization> .

:has_role  a         owl:ObjectProperty ;
        rdfs:domain  schema:Person ;
        rdfs:label   "Has role"@en ;
        rdfs:range   :Role ;
        dc:creator   "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date      "2023-03-08T21:10:19Z"^^xsd:dateTime .

terms:description  a  owl:AnnotationProperty .

dc:contributor  a  owl:AnnotationProperty .

<http://data.europa.eu/a4g/ontology#Contract>
        a                 owl:Class ;
        rdfs:comment      "A voluntary, deliberate, and legally binding agreement between two or more competent parties. Additional information: This includes concession contracts. (WG approval 01/06/2018)"@en ;
        rdfs:isDefinedBy  "http://data.europa.eu/a4g/ontology"^^xsd:anyURI ;
        rdfs:label        "Contract"@en ;
        rdfs:subClassOf   <https://ontologies.semanticarts.com/gist/Commitment> ;
        rdfs:subClassOf   [ a                   owl:Restriction ;
                            owl:onProperty      :url ;
                            owl:someValuesFrom  xsd:anyURI
                          ] ;
        rdfs:subClassOf   [ a                  owl:Restriction ;
                            owl:allValuesFrom  xsd:dateTime ;
                            owl:onProperty     :start_date
                          ] ;
        rdfs:subClassOf   [ a                   owl:Restriction ;
                            owl:onProperty      <http://data.europa.eu/a4g/ontology#bindsContractor> ;
                            owl:someValuesFrom  [ a            owl:Class ;
                                                  owl:unionOf  ( <https://ontologies.semanticarts.com/gist/Organization> schema:Person )
                                                ]
                          ] ;
        rdfs:subClassOf   [ a                  owl:Restriction ;
                            owl:allValuesFrom  xsd:string ;
                            owl:onProperty     :cpv_code
                          ] ;
        rdfs:subClassOf   [ a                   owl:Restriction ;
                            owl:onProperty      schema:identifier ;
                            owl:someValuesFrom  xsd:string
                          ] ;
        rdfs:subClassOf   [ a                   owl:Restriction ;
                            owl:onProperty      <http://purl.org/goodrelations/v1#hasPriceSpecification> ;
                            owl:someValuesFrom  <http://purl.org/goodrelations/v1#PriceSpecification>
                          ] ;
        rdfs:subClassOf   [ a                  owl:Restriction ;
                            owl:allValuesFrom  xsd:dateTime ;
                            owl:onProperty     :end_date
                          ] .

:provider_of  a       owl:ObjectProperty ;
        rdfs:comment  "A company or and individual provides services or products to an institution"@en ;
        rdfs:label    "Provider of"@en ;
        dc:creator    "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date       "2022-02-15T11:23:05Z"^^xsd:dateTime .

:in_entity  a        owl:ObjectProperty ;
        rdfs:domain  :Role ;
        rdfs:label   "In entity"@en ;
        rdfs:range   <https://ontologies.semanticarts.com/gist/Organization> ;
        dc:creator   "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date      "2023-03-08T21:13:36Z"^^xsd:dateTime .

<http://data.europa.eu/a4g/ontology#bindsContractor>
        a            owl:ObjectProperty ;
        rdfs:domain  <http://data.europa.eu/a4g/ontology#Contract> ;
        rdfs:label   "Binds Contractor"@en ;
        rdfs:range   [ a            owl:Class ;
                       owl:unionOf  ( <https://ontologies.semanticarts.com/gist/Organization> schema:Person )
                     ] .

:has_bank_account_in  a  owl:ObjectProperty ;
        rdfs:label      "Has bank account in"@en ;
        dc:contributor  "Jaime Gómez-Obregón (https://ladonacion.es/)"@es ;
        dc:creator      "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date         "2022-02-21T14:25:46Z"^^xsd:dateTime .

schema:knows  a      owl:ObjectProperty ;
        rdfs:domain  schema:Person ;
        rdfs:label   "Knows"@en ;
        rdfs:range   schema:Person .

:with_evidence  a    owl:ObjectProperty ;
        rdfs:domain  :Role ;
        rdfs:label   "With evidence"@en ;
        rdfs:range   :Evidence ;
        dc:creator   "Mikel Egaña Aranguren (https://orcid.org/0000-0001-8081-1839)" ;
        dc:date      "2023-03-08T21:27:00Z"^^xsd:dateTime .

<http://purl.org/goodrelations/v1#hasCurrency>
        a            owl:DatatypeProperty ;
        rdfs:domain  <http://purl.org/goodrelations/v1#PriceSpecification> ;
        rdfs:label   "Has currency"@en ;
        rdfs:range   xsd:string .

<http://www.w3.org/2006/time#months>
        a           owl:DatatypeProperty ;
        rdfs:label  "Months"@en .
