language en es

Public Procurement Ontology
PPROC

Release 29 Oct 2014

This version:
http://contsem.unizar.es/def/sector-publico/pproc_1.0.0.html
Latest version:
http://contsem.unizar.es/def/sector-publico/pproc
Previous version:
http://contsem.unizar.es/def/sector-publico/pproc_0.1.4.html
Revision
1.0.0
Authors:
J.F. Muñoz, ARAID
G. Esteban, ARAID
M.A. Bernal, Universidad de Zaragoza
F.J. Serón, Universidad de Zaragoza
Contributors:
O. Corcho, Universidad Politécnica de Madrid
C. Bobed, Universidad de Zaragoza
C. Becana, iA Soft (OESIA)
Extended Ontologies:
Public Contracts Ontology

This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International.


Abstract

The PPROC ontology defines the necessary concepts to describe public procurement process and the contracts of public sector (public e-procurement). The ontology has been designed with the main purpose of publishing data about public contracts. This ontology extends the Public Contracts Ontology, an ontology developed by the czech Open Data initiative. The development of this ontology was part of the CONTSEM project (TSI-020606-2012-4), led by iASoft (OESIA).

Ontology location

The ontology defined in this document can be obtained in RDF/XML at http://contsem.unizar.es/docs/pproc_1.0.0.rdf.

Ontology usage

The actual usage of this ontology and the SPARQL endpoints of the public authorities publishing semantic data using this ontology are gathered at http://contsem.unizar.es/def/sector-publico/usage.html.

Table of Contents

1. Introduction back to ToC

The PPROC ontology has been developed under the project Public procurement optimization through semantic technologies (CONTSEM as spanish acronym). This project involves the participation of iASoft (OESIA) company, the University of Zaragoza, ARAID (Agency created by the Government of Aragon with the aim of promoting research, development and innovation in Aragon) and, as public entities users, the Government of Aragón, the Provincial Council of Huesca and the town halls of Huesca and Zaragoza. The main purpose of the project is to add semantic technologies in the software used by public authorities in the procurement procedures. More specifically, one of the core objectives is to describe semantically the information published in official procurement bulletins. For this purpose CONTSEM participants have developed the PPROC ontology, focused towards Spain laws and Europe in general.

The Ontology Requisites Specification Document can be found at http://figshare.com/articles/Ontology_Requirements_Specification_Document_ORSD_/1314591

The ontology reuses various ontologies and schemes to describe some entities, more specifically, we make use of the following ontologies and schemes:

1.1. Namespace declarations back to ToC

Table 1: Namespaces used in the document
pproc<http://contsem.unizar.es/def/sector-publico/pproc#>
owl<http://www.w3.org/2002/07/owl#>
rdfs<http://www.w3.org/2000/01/rdf-schema#>
xsd<http://www.w3.org/2001/XMLSchema#>
dcterms<http://purl.org/dc/terms/#>
pc<http://purl.org/procurement/public-contracts#>
org<http://www.w3.org/ns/org#>
s<http://schema.org/>
skos<http://www.w3.org/2004/02/skos/core#>
gr<http://purl.org/goodrelations/v1#>
foaf<http://xmlns.com/foaf/0.1/>
ex<http://example.com/>

2. PPROC Overview back to ToC

The main class of PPROC ontology is pproc:Contract. This class act as a core from which most of properties that defines the contract starts from. We define pproc:Contract as a subclass of pc:Contract, reusing some of its properties.

Classes

Properties

Data Properties

Individuals

3. PPROC Description back to ToC

3.1. Contract classification back to ToC

The main class of PPROC ontology is pproc:Contract, as it defines the core concept of every public procurement. This class has many subclasses that helps to better define the nature of the contract, the full classification of the pproc:Contract class is the following.


contract classification

As we can see the pproc:Contract class may represent a full contract, a lot belonging to a contract... obviously, there are some limitations that have to be taken into account when using contract classification. First of all, there is a disjoint union of some classes, avoiding the possibility of having a contract that, for example, is both a pproc:WorksContract and a pproc:SuppliesContract.

The ontology also prevents obvious mistakes like use the pproc:lot property with a pproc:ContractWithoutLots instance. Next we include two examples about the use of lots.

Example of contract with lots
ex:aContract
    rdf:type pproc:ContractWithLots;
    pproc:lot ex:aContract/Lot_001, ex:aContract/Lot_002 .
    
ex:aContract/Lot_001
    rdf:type pproc:Lot;
    
ex:aContract/Lot_002
    rdf:type pproc:ExtendableContract;

In the first example, we described a contract that have two lots, using the pproc:lot property from a pproc:ContractWithLots to a pproc:Lot and a pproc:ExtendableContract. Since the class pproc:ExtendableContract is not in disjoint union with pproc:Lot, we can state that we are doing fine so far. However, the next example we mistakenly relates a pproc:ContractWithLots with a pproc:ContractWithoutLots, as this last class is in disjoint union with pproc:Lot (expected range of pproc:lot).

Example of an illegal contract
ex:anIllegalContract
    rdf:type pproc:ContractWithLots;
    pc:lot ex:anIllegalContract/Lot_001 .
    
ex:anIllegalContract/Lot_001
    rdf:type pproc:ContractWithoutLots;

3.2. PPROC classes back to ToC

Being the class pproc:Contract the core of the ontology, we may find it is connected to several classes that are firmly related with the contract itself (i.e. tenderers requirements or the object of the contract). The next figure shows a general view of the ontology, highlighting by default the properties whose domain is pproc:Contract. The classes of the diagram are grouped in 4 sections, each one symbolizing a particular part of e-procurement. These sections are not explicitly defined in the ontology, they are only shown in the diagrama in order to clarify the part of e-procurement that classes are focused in.

You can also select the class and properties you want to highlight by yourself in the next form.

Contract Contract object Procedure specifications
ontology diagram

As we can see, there are some classes directly related with a pproc:Contract aimed to describe different aspects of e-procurement depending of its nature. The next diagram shows only these main classes that conforms the core of the ontology.

ontology core

3.3. Reused entities back to ToC

PPROC ontology reuses a few classes to describe certain concept. This section number these external classes and the properties recommended to describe them.

3.3.1. Offering back to ToC

The gr:Offering class is used to describe the items the contracting authority seeks or the tender offers. It belongs to the Good Relations vocabulary. This gr:Offering class can be related with pproc:ContractObject (using the property pproc:provision) and pc:Tender class (using the property pproc:item).

The class gr:Offering allows to describe the object using some properties from Good Relations ontology:

Example describing a printer offering
ex:Offering_001 a gr:Offering ;
    gr:name "Canon printer model TS-5010"^^xsd:string ;
    gr:description "The Canon TS-5010 is a modern printer that allows send multiple
                   documents to multiple trays, delivering superb quality documents
                   while printing 200 pages per minute."^^xsd:string ;
    gr:hasEligibleQuantity [
        a gr:QuantitativeValueInteger;
        gr:hasValueInteger "20"^^xsd:int;
        gr:hasUnitOfMeasurement "C62"^^xsd:string
    ] .
    gr:hasPriceSpecification ex:Offering_001/Price ;
    gr:condition "used"^^xsd:string ;
    foaf:page "http://www.canon.com/products/canon5010printer" . 

ex:Offering_001/Price a gr:PriceSpecification;

This examples states an offering of 20 units of Canon printer TS-5010

Example describing a cell bundle offering
ex:Offering_002 a gr:Offering;
    # ... other offer properties omitted for readability
    gr:includesObject [ a gr:TypeAndQuantityNode;
                        gr:amountOfThisGood "20"^^xsd:float;
                        gr:hasUnitOfMeasurement "C62"^^xsd:string;
                        gr:typeOfGood ex:cellphone ];
    gr:includesObject [ a gr:TypeAndQuantityNode;
                        gr:amountOfThisGood "40"^^xsd:float;
                        gr:hasUnitOfMeasurement "C62"^^xsd:string;
                        gr:typeOfGood ex:charger ] .

ex:cellphone a gr:SomeItems;
    gr:name "ACME Cellphone BulkyTalky"@en;

ex:charger a gr:SomeItems;
    gr:name "ACME Travelcharger"@en;

This examples states a bundle offering of 20 cellphones and 40 chargers

If the properties explained here are not enough to describe the needed products, we recommend to read the gr:Offering documentation to learn about further properties and classes to describe an offering.

3.3.2. Price specifications back to ToC

In order to describe the differentes prices of a contract and its objects PPROC reuses two classes from Good Relations ontology: gr:PriceSpecification and its subclass gr:UnitPriceSpecification.

This first class, gr:PriceSpecification is not meant to be used directly, as it is defined as an abstract class by Good Relations. Instead of that, Good Relations defines three subclasses to be used, from which we are only interested in gr:UnitPriceSpecification. This last class allows us to define a price per unit of a gr:Offering.

However, the class gr:UnitPriceSpecification does not permit to define the price of the offer or a contract as a whole or the price of certain type of offerings. Thus, in order to describe this kind of prices (where we don't have to specify the value of each individual item), we use the class pproc:BundlePriceSpecification, defined as a subclass of gr:PriceSpecification.

Therefore we have two classes to define prices, each one aimed to a different type of price. The following diagram shows how we can use them.

ontology prices

As for describing these price classes, we refer to Good Relations specification of gr:PriceSpecification class and include a few examples next.

Example of a contract budget price specification
ex:contract_A
    rdf:type pproc:Contract ;
    pproc:contractEcononicConditions ex:contract_A/CEC .

ex:contract_A/CEC
    rdf:type pproc:ContractEconomicConditions ;
    pproc:budgetPrice ex:contract_A/CEC/budget .

ex:contract_A/CEC/budget
    rdf:type pproc:BundlePriceSpecifications ;
    gr:hasCurrencyValue "50000.0"^^xsd:float ;
    gr:valueAddedTaxIncluded "false"^^xsd:boolean ;
    gr:hasCurrency "EUR"^^xsd:string .

This example defines a contract with a budget of 50,000 EUR taxes not included.

Example of an offering bundle price specification
ex:Offering_002
    rdf:type gr:Offering ;
    gr:hasPriceSpecification ex:Offering_002/Price .

ex:Offering_002/Price
    rdf:type pproc:BundlePriceSpecifications ;
    gr:hasCurrencyValue "5000.0"^^xsd:float ;
    gr:valueAddedTaxIncluded "true"^^xsd:boolean ;
    gr:hasCurrency "EUR"^^xsd:string .

In this example we refer to the bundle gr:Offering example of the previous section (2nd example), setting the price of the bundle (20 cellphones and 40 chargers) at 5,000 EUR (tax included).

Example of an offering unit price specification
ex:Offering_001
    rdf:type gr:Offering ;
    gr:hasPriceSpecification ex:Offering_001/Price .

ex:Offering_001/Price
    rdf:type gr:UnitPriceSpecifications ;
    gr:hasCurrencyValue "1000.0"^^xsd:float ;
    gr:valueAddedTaxIncluded "true"^^xsd:boolean ;
    gr:hasCurrency "EUR"^^xsd:string .

In this example we refer to the gr:Offering example of the previous section (1st example), setting the price of each printer at 1,000 EUR (tax included).

In this case, the contracting authority still seeks for 20 printers, and the price of the whole gr:Offering would be 20,000 EUR. We could use pproc:BundlePriceSpecification to set that price instead.

Note that when using gr:UnitPriceSpecification to setting prices of a contract offering, the gr:Offering needs to have defined the number of the items the authority seeks, that is, a triple using the gr:hasEligibleQuantity property.

3.3.3. Organizations back to ToC

To describe the several organizations needed in the PPROC ontology, like the contracting authority or the suppliers, we make use of the Organization Ontology. This ontology provides the classes and properties needed to describe organizational structures.

The entities meant to be used together with PPROC are the following:

The properties meant to be linked to an org:Organization are the following.

All these properties but the last one have pproc:Contract as domain.

As for describing these classes, we refer to Organization Ontology specification and include a few examples next.

Example describing organizations
ex:contract_A
    rdf:type pproc:Contract ;
    pc:contractingAuthority ex:zaragozaCityHall ;
    pproc:contractingBody ex:zaragozaCityHall/ContractingBody ;
    pproc:managingDepartment ex:zaragozaCityHall/WaterAndSewerDepartment .

ex:zaragozaCityHall
    rdf:type org:Organization ;
    s:name "Zaragoza City Hall"^^xsd:string ;
    org:identifier "string to uniquely identify the Zaragoza City Hall"^^xsd:string ;
    org:hasSite ex:zaragozaCityHall/Place .
    
ex:zaragozaCityHall/ContractingBody
    rdf:type org:Organization ;
    s:name "Contracting Body of Zaragoza City Hall"^^xsd:string ;
    org:subOrganizationOf ex:zaragozaCityHall ;
    org:hasSite ex:zaragozaCityHall/Place .

ex:zaragozaCityHall/WaterAndSewerDepartment
    rdf:type org:Organization ;
    s:name "Zaragoza Water and Sewer Department"^^xsd:string ;
    org:subOrganizationOf ex:zaragozaCityHall ;
    org:hasSite ex:zaragozaCityHall/Place .

In this example, we described three Organizations, two of them contained inside a mayor one.

To name the Organizations, we could use the properties s:name, rdfs:label or skos:prefLabel.

3.3.4. Persons back to ToC

In order to define committee members we use the foaf:Person class. We could describe them with the next properties.

FOAF cite regarding the use of 'first' and 'last' names

The foaf:firstName property is provided (alongside foaf:lastName) as a mechanism to support legacy data that cannot be easily interpreted in terms of the (otherwise preferred) foaf:familyName and foaf:givenName properties. The concepts of 'first' and 'last' names do not work well across cultural and linguistic boundaries; however they are widely used in addressbooks and databases.

Example describing committee members
ex:Contract_001/TenderCommittee
    rdf:type pproc:TenderCommittee ;
    pproc:fullMember ex:Persons/AGarcia ;
    pproc:alternateMember ex:Persons/MCarcas ;
    
ex:Persons/AGarcia
    rdf:type foaf:Person ;
    foaf:firstName "Alberto"^^xsd:string ;
    foaf:lastName "Garcia"^^xsd:string ;
    s:jobTitle "Major"^^xsd:string ;
    pproc:tenderCommitteeRole "President"^^xsd:string;
    org:memberOf ex:zaragozaCityHall/ContractingBody .
    
ex:Persons/MCarcas
    rdf:type foaf:Person ;
    foaf:firstName "Maria"^^xsd:string ;
    foaf:lastName "Carcas"^^xsd:string ;
    s:jobTitle "Public contract manager"^^xsd:string ;
    pproc:tenderCommitteeRole "Vocal"^^xsd:string;
    org:memberOf ex:zaragozaCityHall .

3.3.5. Places back to ToC

In the PPROC ontology we can find several entities that needs of a description of a certain place or location, e.g. the location where the goods have to be delivered or the postal address of a supplier.

In order to describe these places we make use of the Schema.org vocabulary, concretely the class s:Place and its related properties.

To describe s:Place we could use following properties.

In order to define the physical address using s:PostalAddress we could use the next properties.

All of the last properties have xsd:string as a range.

Example describing a place
ex:zaragozaCityHall/Place
    rdf:type s:Place ;
    s:name "Place of Zaragoza City Hall"^^xsd:string ;
    s:address ex:zaragozaCityHall/PostalAddress .
    
ex:zaragozaCityHall/PostalAddress
    rdf:type s:PostalAddress ;
    s:streetAddress "Plaza del Pilar, 18"^^xsd:string ;
    s:postalCode "50003"^^xsd:string ;
    s:addressLocality "Zaragoza"^^xsd:string ;
    s:addressCountry "Spain"^^xsd:string .

4. Cross reference for PPROC classes and properties

This section provides details for each class and property defined by PPROC.

4.1. Classes

Accepted tenderc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#AcceptedTender

Class describing the tenders accepted in the procurement public contract.

has super-classes
Tender c
is disjoint with
Excluded tender c

Additional information noticec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#AdditionalInformationNotice

has super-classes
Notice c
is disjoint with
Contract award notice c, Contract notice c, Correction notice c, Formalization notice c, Prior information notice c

Agreement contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#AgreementContract

Class describing the contract concerts with natural or legal person performing similar services at the public service in question.

has super-classes
Public services management contract c
is disjoint with
Concession contract c, Mixed capital company contract c, Shared result agreement contract c

Award criteria combinationc back to ToC or Class ToC

IRI: http://purl.org/procurement/public-contracts#AwardCriteriaCombination

is defined by
http://purl.org/procurement/public-contracts#
is in range of
Criterion op

Award criterionc back to ToC or Class ToC

IRI: http://purl.org/procurement/public-contracts#AwardCriterion

is defined by
http://purl.org/procurement/public-contracts#
has sub-classes
Objective award criterion c, Subjective award criterion c
is in domain of
Criterion evaluation mode dp, Criterion maximum and minimum score dp, Is negotiable dp

Awarded tenderc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#AwardedTender

Backward compatible with:
http://purl.org/procurement/public-contracts#awardedTender (visualise it with LODE)

Class describing the awarded tenders.

has super-classes
Tender c

Briefingc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Briefing

Informative meeting about the public procurement contract.

has super-classes
Event c
is in range of
Briefing op, Tender briefing op

Bundle pricec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#BundlePriceSpecification

Class used to describe the price a set of objets.

Can be used to define the total price of an gr:Offering. Its value must be equal to the gr:UnitPriceSpecification multiplied by the number of items.

has super-classes
Price specification c
is in range of
Contract budget price op, Estimated value of the contract op, Fee op

Buy contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#BuyContract

Class to describe the supplies contracts aimed to buy supplies.

has super-classes
Supplies contract c
is disjoint with
Lease contract c, Rent contract c

Committee memberc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#CommitteeMember

Class that describes the member a committee.

has super-classes
Person c
is in domain of
Tender committee role dp
is in range of
Alternate member op, Full member op

Concept schemec back to ToC or Class ToC

IRI: http://www.w3.org/2004/02/skos/core#ConceptScheme

is defined by
http://www.w3.org/2004/02/skos/core#
has members
Information kind scheme ni, Procedure type scheme ni, Urgency type scheme ni

Concession contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ConcessionContract

Class of the contracts in which the awarded tenderer manage the public service themselves.

has super-classes
Public services management contract c
is disjoint with
Agreement contract c, Mixed capital company contract c, Shared result agreement contract c

Conclusion contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ConclusionContract

Class describing the contracts consisting in the conclusion of a framework agreement or a dynamic purchasing system.

has super-classes
Public contract c
Framework agreement op some Framework agreement or dynamic purchasing system c
has sub-classes
Dynamic purchasing system conclusion contract c, Framework conclusion contract c
is in domain of
Framework agreement derivative contract op
is disjoint with
Derivative contract c

Contractc back to ToC or Class ToC

IRI: http://purl.org/procurement/public-contracts#Contract

is defined by
http://purl.org/procurement/public-contracts#
has sub-classes
Public contract c

Contract activitesc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractActivities

Class describing all activities of a contract (e.g. meetings or agreements of the contracting body).

is in domain of
Contracting body agreement op, Notice op, Tender Meeting op
is in range of
Contract activities op

Contract additional obligationsc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractAdditionalObligations

Class describing the additional obligations the contract needs (e.g. guarantees or advertisement costs)

is in domain of
Advertisement amount dp, Final financial guarantee dp, Final financial guarantee duration dp, Other guarantee dp, Provisional financial guarantee dp
is in range of
Contract additional obligations op

Contract award noticec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractAwardNotice

has super-classes
Notice c
is disjoint with
Additional information notice c, Contract notice c, Correction notice c, Formalization notice c, Prior information notice c

Contract bodiesc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractBodies

Class describing the bodies related to the contract.

is in domain of
Committee op
is in range of
Contract bodies op

Contract economic conditionsc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractEconomicConditions

Class defining the actual economic conditions of the contract (e.g. budget or the formula that describes the revision of its price).

is in domain of
Construction subsidies dp, Contract budget price op, Estimated value of the contract op, Fee op, Price Review Index dp, Price review allowable dp
is in range of
Contract economic conditions op

Contract execution conditionsc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractExecutionConditions

Class that defines the execution conditions of the contract (e.g. special execution conditions or subcontracting percentage amounts).

is in domain of
Execution requeriments dp, Maximum subcontracting dp, Minimum subcontracting dp
is in range of
Contract execution conditions op

Contract modificationc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractModification

During the execution of a contract it could happen that the contract should be modified, to describe these kind of situations we use this class.

is in domain of
Contracting body agreement op, Duration change dp, Modification reason dp, Modification scope dp, Price percentage change dp
is in range of
Contract modification op

Contract modification conditionsc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractModificationConditions

Class describing the conditions for which a contract can be modified (e.g. maximum percentage of its price or budget).

is in domain of
Expected cause modification dp, Maximum budget change dp, Maximum final price change dp
is in range of
Contract modification conditions op

Contract noticec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractNotice

has super-classes
Notice c
is disjoint with
Additional information notice c, Contract award notice c, Correction notice c, Formalization notice c, Prior information notice c

Contract objectc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractObject

Class that defines the object of the contract and the conditions or modifications the contract can have.

is in domain of
Additional object of contract op, Contract economic conditions op, Contract execution conditions op, Contract modification conditions op, Contract temporal conditions op, Main object of contract op, Place of contract's realization op, Provision op, Variant admission dp, Variant description dp
is in range of
Object of the contract op

Contract or procedure extinctionc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractOrProcedureExtinction

Abstract class. There are some circumstances resulting in the extinction of the procedure of the contract or the contract itself. To describe that situations we may use one of its subclasses.

has sub-classes
Contract resolution c, Procedure resignation c, Procedure void c, Procedure waive c
is in domain of
Contracting body agreement op, Extinction cause dp
is in range of
Contract or procedure extinction op

Contract procedurec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractProcedureSpecifications

Class that specifies the procedure of a contract (e.g. type of procedure or its urgency).

is in domain of
Assumption protecting the chosen procedure type dp, Briefing op, Contracting body agreement op, Contract additional obligations op, Contract bodies op, Contract activities op, Early tramitation dp, Electronic auction op, Maximum number of invitations dp, Minimum number of invitations dp, Notice op, Procedure type op, Start date of the tender dossier dp, Tender admission meeting op, Tender information provider op, Tender submission location op, Tender submission mode dp, Time-limit for submission of tenders or requests to participate dp, Urgency type op
is in range of
Contract procedure specifications op

Contract resolutionc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractResolution

has super-classes
Contract or procedure extinction c
is in range of
Contract resolution op

Contract temporal conditionsc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractTemporalConditions

Class that describes the temporal conditions of the contract.

is in domain of
Estimated duration dp, Estimated end date dp, Prorogation number expected dp
is in range of
Contract temporal conditions op

Contract with lotsc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractWithLots

Class of the contract that have lots.

has super-classes
Public contract c
Lot op some Lot c
is in domain of
Lot op
is disjoint with
Contract without lots c, Lot c

Contract without lotsc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractWithoutLots

Class to describe the contract not divided into lots.

has super-classes
Public contract c
Lot op max 0 Lot c
is disjoint with
Contract with lots c, Lot c

Contracting body agreementc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ContractingBodyAgreement

is in domain of
Resolution document reference op
is in range of
Award agreement op, Contracting body agreement op

Correction noticec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#CorrectionNotice

has super-classes
Notice c
is disjoint with
Additional information notice c, Contract award notice c, Contract notice c, Formalization notice c, Prior information notice c

Criterion scorec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#CriterionScore

Class to describe an award criterion and its score.

is in domain of
Criterion op, Score dp
is in range of
Criterion score op

Derivative contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#DerivativeContract

Class describing contracts derived from a framework agreement or a dynamic purchasing system.

has super-classes
Public contract c
has sub-classes
Dynamic purchasing system derivative contract c, Framework derivative contract c
is in range of
Framework agreement derivative contract op
is disjoint with
Conclusion contract c

Documentc back to ToC or Class ToC

IRI: http://xmlns.com/foaf/0.1/Document

is defined by
http://xmlns.com/foaf/0.1/
is in range of
Document reference op, Electronic auction web op, Notice web op, Website with information op

Dynamic purchasing system conclusion contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#DynamicPurchasingSystemConclusionContract

Class describing the contracts consisting in the conclusion of a dynamic purchasing system.

has super-classes
Conclusion contract c

Dynamic purchasing system derivative contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#DynamicPurchasingSystemDerivativeContract

Class describing contracts derived from a dynamic purchasing system.

has super-classes
Derivative contract c

Electronic auctionc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ElectronicAuction

Class that specifies the existence of an electronic auction of one or more of the award criterions.

is in domain of
Electronic auction phase op, Electronic auction web op
is in range of
Electronic auction op

Electronic auction phasec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ElectronicAuctionPhase

Class describing a phase of an electronic auction.

is in domain of
End mode dp
is in range of
Electronic auction phase op

Eventc back to ToC or Class ToC

IRI: http://schema.org/Event

is defined by
http://schema.org/
has sub-classes
Briefing c, Tender meeting c

Excluded tenderc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ExcludedTender

Class that defines the tenders excluded from the procurement procedure.

has super-classes
Tender c
is disjoint with
Accepted tender c

Expert committeec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ExpertCommittee

has super-classes
Tender committee c

Extendable contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ExtendableContract

Class describing contracts whose end date can be extended.

has super-classes
Public contract c

Formalization noticec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#FormalizationNotice

has super-classes
Notice c
is disjoint with
Additional information notice c, Contract award notice c, Contract notice c, Correction notice c, Prior information notice c

Formalized tenderc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#FormalizedTender

Class describing tenders being formalized.

has super-classes
Tender c
Formalized date dp some xsd:date

Framework agreement or dynamic purchasing systemc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#FrameworkAgreement

Class used to describe a contract that is a declaration of a framework agreement or a dynamic purchasing system.

is in domain of
Estimated duration dp, Estimated end date dp, Maximum number of operators dp, Minimum number of operators dp
is in range of
Framework agreement op

Framework conclusion contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#FrameworkConclusionContract

Class describing the contracts consisting in the conclusion of a framework agreement.

has super-classes
Conclusion contract c

Framework derivative contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#FrameworkDerivativeContract

Class describing contracts derived from a framework agreement.

has super-classes
Derivative contract c

Harmonized contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#HarmonizedContract

Class to describe harmonized contracts (i.e. contracts that reachs the threshold to be treated as highlighted in the procurement Directives of the European Commision and European Council).

has super-classes
Public contract c

Information providerc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#InformationProvider

Class defining the provider of information about the contract.

is in domain of
Estimated end date dp, Information kind op, Website with information op
is in range of
Tender information provider op

Lease contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#LeaseContract

Class defining supplies contracts aimed to lease supplies.

has super-classes
Supplies contract c
is disjoint with
Buy contract c, Rent contract c

Legal remedyc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#LegalRemedy

has super-classes
Remedy c

Lotc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Lot

Class describing contracts that are an actual lot of another contract.

has super-classes
Public contract c
is in range of
Lot op
is disjoint with
Contract with lots c, Contract without lots c

Mixed capital company contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#MixedCapitalCompanyContract

Class describing the contracts where the contracting authority participates concurrently with the natural or legal person.

has super-classes
Public services management contract c
is disjoint with
Agreement contract c, Concession contract c, Shared result agreement contract c

Mixed contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#MixedContract

has super-classes
Public contract c
is disjoint with
Private contract c, Public-private partnership contract c, Public services management contract c, Public works concession contract c, Services contract c, Special administrative contract c, Supplies contract c, Works contract c, Precomercial procurement c

Multiannual contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#MultiannualContract

Class describing the multiannual contracts (i.e. contract whose duration extends over more than one financial year).

has super-classes
Public contract c

Noticec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Notice

has sub-classes
Additional information notice c, Contract award notice c, Contract notice c, Correction notice c, Formalization notice c, Prior information notice c
is in domain of
Date of notice publication dp, Notice sent date dp, Notice site dp, Notice web op
is in range of
Notice op

Objective award criterionc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ObjectiveAwardCriterion

Class describing criterioa that depend on a value judgement.

has super-classes
Award criterion c

Offeringc back to ToC or Class ToC

IRI: http://purl.org/goodrelations/v1#Offering

is defined by
http://purl.org/goodrelations/v1#
is in domain of
Estimated duration dp, Estimated end date dp
is in range of
Item op, Provision op

Ordinary administrative remedyc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#OrdinaryAdministrativeRemedy

has super-classes
Remedy c

Organizationc back to ToC or Class ToC

IRI: http://www.w3.org/ns/org#Organization

is defined by
http://www.w3.org/ns/org#
is in range of
Contracting body op, Delegating authority op, Managing department op

Personc back to ToC or Class ToC

IRI: http://xmlns.com/foaf/0.1/Person

is defined by
http://xmlns.com/foaf/0.1/
has sub-classes
Committee member c

Placec back to ToC or Class ToC

IRI: http://schema.org/Place

is defined by
http://schema.org/
is in range of
Place of contract's realization op, Tender submission location op

Postal addressc back to ToC or Class ToC

IRI: http://schema.org/PostalAddress

is defined by
http://schema.org/

Precomercial procurementc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#PrecomercialProcurement

has super-classes
Public contract c
is disjoint with
Mixed contract c, Public-private partnership contract c, Public services management contract c, Public works concession contract c, Services contract c, Special administrative contract c, Supplies contract c, Works contract c, Works contract c

Price specificationc back to ToC or Class ToC

IRI: http://purl.org/goodrelations/v1#PriceSpecification

is defined by
http://purl.org/goodrelations/v1#
has sub-classes
Bundle price c
is in range of
Price op

Prior information noticec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#PriorInformationNotice

has super-classes
Notice c
is disjoint with
Additional information notice c, Contract award notice c, Contract notice c, Correction notice c, Formalization notice c

Private contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#PrivateContract

has super-classes
Public contract c
is disjoint with
Mixed contract c, Public-private partnership contract c, Public services management contract c, Public works concession contract c, Services contract c, Special administrative contract c, Supplies contract c, Works contract c, Precomercial procurement c

Procedure resignationc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ProcedureResignation

has super-classes
Contract or procedure extinction c
is in range of
Procedure resignation op

Procedure voidc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ProcedureVoid

has super-classes
Contract or procedure extinction c
is in range of
Procedure void op

Procedure waivec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ProcedureWaive

has super-classes
Contract or procedure extinction c
is in range of
Procedure waive op

Public services management contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#PublicServicesManagementContract

has super-classes
Public contract c
has sub-classes
Agreement contract c, Concession contract c, Mixed capital company contract c, Shared result agreement contract c
is disjoint with
Mixed contract c, Private contract c, Public-private partnership contract c, Public works concession contract c, Services contract c, Special administrative contract c, Supplies contract c, Works contract c, Precomercial procurement c

Public works concession contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#PublicWorksConcessionContract

has super-classes
Public contract c
is disjoint with
Mixed contract c, Private contract c, Public-private partnership contract c, Public services management contract c, Services contract c, Special administrative contract c, Supplies contract c, Works contract c, Precomercial procurement c

Public-private partnership contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#PublicPrivatePartnershipContract

has super-classes
Public contract c
is disjoint with
Mixed contract c, Private contract c, Public services management contract c, Public works concession contract c, Services contract c, Special administrative contract c, Supplies contract c, Works contract c, Precomercial procurement c

Remedyc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Remedy

Remedy lodged concerning a resolution about the procurement procedure.

has sub-classes
Legal remedy c, Ordinary administrative remedy c, Special administrative remedy c
is in domain of
Lodged remedy date dp, Recurrent remedy dp, Remedy interposed to dp, Remedy reason dp, Remedy resolution dp, Remedy resolution date dp, Remedy result dp
is in range of
Remedy op

Rent contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#RentContract

Class defining supplies contracts aimed to rent supplies.

has super-classes
Supplies contract c
is disjoint with
Buy contract c, Lease contract c

Services contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ServicesContract

has super-classes
Public contract c
is disjoint with
Mixed contract c, Private contract c, Public-private partnership contract c, Public services management contract c, Public works concession contract c, Special administrative contract c, Supplies contract c, Works contract c, Precomercial procurement c

Shared result agreement contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#SharedResultAgreementContract

Class describing contracts whose operation results are shared among the contracting authority and the tenderer.

has super-classes
Public services management contract c
is disjoint with
Agreement contract c, Concession contract c, Mixed capital company contract c

Special administrative contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#SpecialAdministrativeContract

has super-classes
Public contract c
is disjoint with
Mixed contract c, Private contract c, Public-private partnership contract c, Public services management contract c, Public works concession contract c, Services contract c, Supplies contract c, Works contract c, Precomercial procurement c

Special administrative remedyc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#SpecialAdministrativeRemedy

has super-classes
Remedy c

Subjective award criterionc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#SubjectiveAwardCriterion

Class used to describe criteria that depend on a subjetive opinion.

has super-classes
Award criterion c

Supplies contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#SuppliesContract

Class describing contracts whose object is the acquisition of supplies.

has super-classes
Public contract c
has sub-classes
Buy contract c, Lease contract c, Rent contract c
is disjoint with
Mixed contract c, Private contract c, Public-private partnership contract c, Public services management contract c, Public works concession contract c, Services contract c, Special administrative contract c, Works contract c, Precomercial procurement c

Technical committeec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#TechnicalCommittee

has super-classes
Tender committee c

Tenderc back to ToC or Class ToC

IRI: http://purl.org/procurement/public-contracts#Tender

is defined by
http://purl.org/procurement/public-contracts#
has sub-classes
Accepted tender c, Awarded tender c, Excluded tender c, Formalized tender c
is in domain of
Award agreement op, Criterion score op, Date of award dp, Formalized date dp, Item op, Offered duration dp, Offered end date dp, Other award terms dp

Tender committeec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Committee

Abstract class describing a set of persons in committee and its roles.

has sub-classes
Expert committee c, Technical committee c, Tender committee c
is in domain of
Alternate member op, Full member op, Tender committee appointment date dp
is in range of
Committee op

Tender committeec back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#TenderCommittee

has super-classes
Tender committee c
is in domain of
Tender Meeting op

Tender meetingc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#TenderMeeting

Class describing the meetings of tender committee.

has super-classes
Event c
is in domain of
Minutes document reference op, Tender purpose dp
is in range of
Tender admission meeting op, Tender meeting op

Tender requirementsc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#TenderRequirements

Class to define the tender requirements needed to submit a tender (e.g. tender document needs).

is in domain of
Tender document needs dp, Tender manteinance duration dp, Tender submission supported language dp
is in range of
Tender requirements op

Tenderers requirementsc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#TenderersRequirements

Class defining the tenderers requirements (e.g. required classification or financial capability).

is in domain of
Compulsory means for execution dp, Other ability requisites dp, Required classification dp, Required economic and financial standing dp, Required technical and professional ability dp, Reserved contract restrictions dp
is in range of
Tenderers requirements op

Works contractc back to ToC or Class ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#WorksContract

has super-classes
Public contract c
is disjoint with
Mixed contract c, Private contract c, Public-private partnership contract c, Public services management contract c, Public works concession contract c, Services contract c, Special administrative contract c, Supplies contract c, Precomercial procurement c

4.2. Object Properties

Actual priceop back to ToC or Object Property ToC

IRI: http://purl.org/procurement/public-contracts#actualPrice

is defined by
http://purl.org/procurement/public-contracts#
has super-properties
Price op

Additional object of contractop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#additionalObject

Backward compatible with:
http://purl.org/procurement/public-contracts#additionalObject (visualise it with LODE)
has domain
Contract object c
has range
Concept c

Additional document referenceop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#additionalDocumentReference

has super-properties
Document reference op
has domain
Public contract c

Alternate memberop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#alternateMember

Points to an alternate member of a committee.

has super-properties
Member op
has domain
Tender committee c
has range
Committee member c

Award agreementop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#awardAgreement

Points to the body agreement where a tender has been awarded.

has domain
Tender c
has range
Contracting body agreement c

Award criteria combinationop back to ToC or Object Property ToC

IRI: http://purl.org/procurement/public-contracts#awardCriteriaCombination

is defined by
http://purl.org/procurement/public-contracts#

Award criterionop back to ToC or Object Property ToC

IRI: http://purl.org/procurement/public-contracts#awardCriterion

is defined by
http://purl.org/procurement/public-contracts#

Briefingop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#briefing

has domain
Contract procedure c
has range
Briefing c

Broaderop back to ToC or Object Property ToC

IRI: http://www.w3.org/2004/02/skos/core#broader

is defined by
http://www.w3.org/2004/02/skos/core#

Committeeop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#committee

has domain
Contract bodies c
has range
Tender committee c

Complementary contractop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#complementaryContract

Relates a contract with a complementary contract.

has domain
Public contract c
has range
Public contract c

Contract additional obligationsop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractAdditionalObligations

has characteristics: functional

has domain
Contract procedure c
has range
Contract additional obligations c

Contract bodiesop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractBodies

has characteristics: functional

has domain
Contract procedure c
has range
Contract bodies c

Contract budget priceop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#budgetPrice

has characteristics: functional

has super-properties
Price op
has domain
Contract economic conditions c
has range
Bundle price c

Contract economic conditionsop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractEconomicConditions

has characteristics: functional

has domain
Contract object c
has range
Contract economic conditions c

Contract execution conditionsop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractExecutionConditions

has characteristics: functional

has domain
Contract object c
has range
Contract execution conditions c

Contract modificationop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractModification

Points to contract modifications being made.

has domain
Public contract c
has range
Contract modification c

Contract modification conditionsop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractModificationConditions

has characteristics: functional

has domain
Contract object c
has range
Contract modification conditions c

Contract or procedure extinctionop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractOrProcedureExtinction

Abstract property pointing to extinction of contract or procedure. Use any of its subclasses.

Contract procedure specificationsop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractProcedureSpecifications

has characteristics: functional

has domain
Public contract c
has range
Contract procedure c

Contract activitiesop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractActivities

has characteristics: functional

has domain
Contract procedure c
has range
Contract activites c

Contract resolutionop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractResolution

has super-properties
Contract or procedure extinction op
has range
Contract resolution c

Contract temporal conditionsop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractTemporalConditions

has characteristics: functional

has domain
Contract object c
has range
Contract temporal conditions c

Contracting authorityop back to ToC or Object Property ToC

IRI: http://purl.org/procurement/public-contracts#contractingAuthority

is defined by
http://purl.org/procurement/public-contracts#

Contracting bodyop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractingBody

has characteristics: functional

has domain
Public contract c
has range
Organization c

Contracting body agreementop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractingBodyAgreement

Criterionop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#criterion

has characteristics: functional

has domain
Criterion score c
has range
Award criterion c

Criterion scoreop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#criterionScore

Property that points to an unique criterion and its score.

has domain
Tender c
has range
Criterion score c

Delegating authorityop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#delegatingAuthority

Points to the authority that is delegating the contract.

has characteristics: functional

has domain
Public contract c
has range
Organization c

Document referenceop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#documentReference

Links to external documents.

Electronic auctionop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#electronicAuction

has characteristics: functional

has domain
Contract procedure c
has range
Electronic auction c

Electronic auction phaseop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#electronicAuctionPhase

has domain
Electronic auction c
has range
Electronic auction phase c

Electronic auction webop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#electronicAuctionWeb

Property that indicated where the electronic auction is made or where we can look for more information about the auction.

has domain
Electronic auction c
has range
Document c

Estimated value of the contractop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#estimatedValue

Backward compatible with:
http://purl.org/procurement/public-contracts#estimatedValue (visualise it with LODE)

has characteristics: functional

has super-properties
Price op
has domain
Contract economic conditions c
has range
Bundle price c

Feeop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#feePrice

has characteristics: functional

has super-properties
Price op
has domain
Contract economic conditions c
has range
Bundle price c

Framework agreementop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#frameworkAgreement

Property that indicates the framework agreement in which the contract consists.

This property is used when the actual contract consist in the declaration of a framework agreement or a dynamic purchasing system.

has characteristics: functional

has domain
Public contract c
has range
Framework agreement or dynamic purchasing system c

Framework agreement derivative contractop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#frameworkAgreementDerivativeContract

has characteristics: inverse functional

has domain
Conclusion contract c
has range
Derivative contract c

Full memberop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#fullMember

Points to a full member of a committee.

has super-properties
Member op
has domain
Tender committee c
has range
Committee member c

In schemeop back to ToC or Object Property ToC

IRI: http://www.w3.org/2004/02/skos/core#inScheme

is defined by
http://www.w3.org/2004/02/skos/core#

Information kindop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#informationKind

Property pointing to the type of the information is provided.

Itemop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#item

Backward compatible with:
http://purl.org/procurement/public-contracts#item (visualise it with LODE)

Property for attachment of an item to a tender.

has domain
Tender c
has range
Offering c

Legal document referenceop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#legalDocumentReference

has super-properties
Document reference op
has domain
Public contract c

Locationop back to ToC or Object Property ToC

IRI: http://schema.org/location

is defined by
http://schema.org/

Lotop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#lot

has super-properties
Lot op
has domain
Contract with lots c
has range
Lot c

Lotop back to ToC or Object Property ToC

IRI: http://purl.org/procurement/public-contracts#lot

is defined by
http://purl.org/procurement/public-contracts#
has sub-properties
Lot op

Main object of contractop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#mainObject

Backward compatible with:
http://purl.org/procurement/public-contracts#mainObject (visualise it with LODE)

has characteristics: functional

has domain
Contract object c
has range
Concept c

Managing departmentop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#managingDepartment

Property that indicates the managing departament responsible of the contract.

has characteristics: functional

has domain
Public contract c
has range
Organization c

Memberop back to ToC or Object Property ToC

IRI: http://xmlns.com/foaf/0.1/member

is defined by
http://xmlns.com/foaf/0.1/
has sub-properties
Alternate member op, Full member op

Minutes document referenceop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#minutesDocumentReference

has super-properties
Document reference op
has domain
Tender meeting c

Narrowerop back to ToC or Object Property ToC

IRI: http://www.w3.org/2004/02/skos/core#narrower

is defined by
http://www.w3.org/2004/02/skos/core#

Noticeop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#notice

has domain
Contract procedure c or Contract activities c
has range
Notice c

Notice webop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#noticeWeb

has characteristics: functional

has domain
Notice c
has range
Document c

Object of the contractop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#contractObject

has characteristics: functional

has domain
Public contract c
has range
Contract object c

Offered priceop back to ToC or Object Property ToC

IRI: http://purl.org/procurement/public-contracts#offeredPrice

is defined by
http://purl.org/procurement/public-contracts#
has super-properties
Price specification op

On behalf ofop back to ToC or Object Property ToC

IRI: http://purl.org/procurement/public-contracts#onBehalfOf

is defined by
http://purl.org/procurement/public-contracts#

Place of contract's realizationop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#location

Backward compatible with:
http://purl.org/procurement/public-contracts#location (visualise it with LODE)
has domain
Contract object c
has range
Place c

Priceop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#price

Price specificationop back to ToC or Object Property ToC

IRI: http://purl.org/goodrelations/v1#hasPriceSpecification

is defined by
http://purl.org/goodrelations/v1#
has sub-properties
Offered price op

Procedure resignationop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#procedureResignation

has super-properties
Contract or procedure extinction op
has range
Procedure resignation c

Procedure typeop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#procedureType

has characteristics: functional

has domain
Contract procedure c
has range
Concept c
In scheme op value Procedure type scheme

Procedure voidop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#procedureVoid

has super-properties
Contract or procedure extinction op
has range
Procedure void c

Procedure waiveop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#procedureWaive

has super-properties
Contract or procedure extinction op
has range
Procedure waive c

Provisionop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#provision

Backward compatible with:
http://purl.org/procurement/public-contracts#item (visualise it with LODE)
has domain
Contract object c
has range
Offering c

Remedyop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#remedy

has domain
Public contract c
has range
Remedy c

Resolution document referenceop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#resolutionDocumentReference

has super-properties
Document reference op
has domain
Contracting body agreement c

Submitted tenderop back to ToC or Object Property ToC

IRI: http://purl.org/procurement/public-contracts#tender

is defined by
http://purl.org/procurement/public-contracts#

Supplierop back to ToC or Object Property ToC

IRI: http://purl.org/procurement/public-contracts#supplier

is defined by
http://purl.org/procurement/public-contracts#

Technical document referenceop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#technicalDocumentReference

has super-properties
Document reference op
has domain
Public contract c

Tender admission meetingop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderAdmissionMeeting

has domain
Contract procedure c
has range
Tender meeting c

Tender briefingop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderBriefing

has domain
Public contract c
has range
Briefing c

Tender information providerop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderInformationProvider

has domain
Contract procedure c
has range
Information provider c

Tender meetingop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderMeeting

has domain
Tender committee c or Contract activites c
has range
Tender meeting c

Tender requirementsop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderRequirements

has characteristics: functional

has domain
Public contract c
has range
Tender requirements c

Tender submission locationop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderSubmissionLocation

has domain
Contract procedure c
has range
Place c

Tenderers requirementsop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderersRequirements

has characteristics: functional

has domain
Public contract c
has range
Tenderers requirements c

Top concept ofop back to ToC or Object Property ToC

IRI: http://www.w3.org/2004/02/skos/core#topConceptOf

is defined by
http://www.w3.org/2004/02/skos/core#

Urgency typeop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#urgencyType

has characteristics: functional

has domain
Contract procedure c
has range
Concept c
In scheme op value Urgency type scheme

Website with informationop back to ToC or Object Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#websiteWithInformation

has domain
Information provider c
has range
Document c

4.3. Data Properties

Actual durationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#actualDuration

has characteristics: functional

has super-properties
Duration dp
has domain
Public contract c

Addressdp back to ToC or Data Property ToC

IRI: http://schema.org/address

is defined by
http://schema.org/

Address countrydp back to ToC or Data Property ToC

IRI: http://schema.org/addressCountry

is defined by
http://schema.org/

Address localitydp back to ToC or Data Property ToC

IRI: http://schema.org/addressLocality

is defined by
http://schema.org/

Advertisement amountdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#advertisementAmount

has domain
Contract additional obligations c
has range
xsd:string

Assumption protecting the chosen procedure typedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#assumptionProtectingProcedureType

has domain
Contract procedure c
has range
xsd:string

Compulsory means for executiondp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#compulsoryMeansForExecution

has domain
Tenderers requirements c
has range
xsd:string

Construction subsidiesdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#constructionSubsidies

Description of the public subsidies to construction works contracts.

has domain
Contract economic conditions c
has range
xsd:string

Criterion evaluation modedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#criterionEvaluationMode

Property textually describing the criterion evaluarion mode.

has domain
Award criterion c
has range
xsd:string

Criterion namedp back to ToC or Data Property ToC

IRI: http://purl.org/procurement/public-contracts#criteronName

is defined by
http://purl.org/procurement/public-contracts#

Criterion weightdp back to ToC or Data Property ToC

IRI: http://purl.org/procurement/public-contracts#criterionWeight

is defined by
http://purl.org/procurement/public-contracts#

Criterion maximum and minimum scoredp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#criterionMaxAndMinScores

has domain
Award criterion c
has range
xsd:string

Date of awarddp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#awardDate

Backward compatible with:
http://purl.org/procurement/public-contracts#awardDate (visualise it with LODE)

has characteristics: functional

has super-properties
Date dp
has domain
Tender c
has range
xsd:date

Date of notice publicationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#noticeDate

has characteristics: functional

has super-properties
Date dp
has domain
Notice c
has range
xsd:date

Descriptiondp back to ToC or Data Property ToC

IRI: http://purl.org/dc/terms/description

is defined by
http://purl.org/dc/terms/

Durationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#duration

Duration changedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#durationChange

has characteristics: functional

has domain
Contract modification c
has range
xsd:string

Early tramitationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#earlyTramitation

has characteristics: functional

has domain
Contract procedure c
has range
xsd:boolean

Estimated durationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#estimatedDuration

has characteristics: functional

has super-properties
Duration dp
has domain
Contract temporal conditions c or Framework agreement or dynamic purchasing system c or Offering c

Estimated end datedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#estimatedEndDate

has characteristics: functional

has super-properties
Date dp
has domain
Contract temporal conditions c or Framework agreement or dynamic purchasing system c or Information provider c or Offering c
has range
xsd:date

End modedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#endMode

has domain
Electronic auction phase c
has range
xsd:date

Execution requerimentsdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#executionRequeriments

Property to define alternative execution requirements (e.g. legal form to be adopted by tenderers).

has domain
Contract execution conditions c
has range
xsd:string

Expected cause modificationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#expectedCauseModification

has domain
Contract modification conditions c
has range
xsd:string

Extinction causedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#extinctionCause

has domain
Contract or procedure extinction c
has range
xsd:string

Final financial guaranteedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#finalFinancialGuarantee

The range of this property must be a percentage (i.e. float between 0.0 and 100.0)

has characteristics: functional

has domain
Contract additional obligations c
has range
xsd:float

Final financial guarantee durationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#finalFinancialGuaranteeDuration

has characteristics: functional

has super-properties
Duration dp
has domain
Contract additional obligations c

Formalized datedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#formalizedDate

has characteristics: functional

has super-properties
Date dp
has domain
Tender c
has range
xsd:date

Is negotiabledp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#isNegotiable

has characteristics: functional

has domain
Award criterion c
has range
xsd:boolean

Lodged remedy datedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#lodgedRemedyDate

Date where a remedy is lodged.

has characteristics: functional

has super-properties
Date dp
has domain
Remedy c
has range
xsd:date

Number of lotsdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#numberOfLots

has characteristics: functional

has domain
Public contract c
has range
xsd:nonNegativeInteger

Maximum budget changedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#maxBudgetChange

The range of this property must be a percentage (i.e. float between 0.0 and 100.0)

has characteristics: functional

has domain
Contract modification conditions c
has range
xsd:float

Maximum final price changedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#maxFinalPriceChange

The range of this property must be a percentage (i.e. float between 0.0 and 100.0)

has characteristics: functional

has domain
Contract modification conditions c
has range
xsd:float

Maximum number of invitationsdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#maxInvitations

has domain
Contract procedure c
has range
xsd:string

Maximum number of operatorsdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#maxNumberOfOperators

has characteristics: functional

has domain
Framework agreement or dynamic purchasing system c
has range
xsd:nonNegativeInteger

Maximum subcontractingdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#maxSubcontracting

The range of this property must be a percentage (i.e. float between 0.0 and 100.0)

has characteristics: functional

has domain
Contract execution conditions c
has range
xsd:float

Minimum number of invitationsdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#minInvitations

has domain
Contract procedure c
has range
xsd:string

Minimum number of operatorsdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#minNumberOfOperators

has characteristics: functional

has domain
Framework agreement or dynamic purchasing system c
has range
xsd:nonNegativeInteger

Minimum subcontractingdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#minSubcontracting

The range of this property must be a percentage (i.e. float between 0.0 and 100.0)

has characteristics: functional

has domain
Contract execution conditions c
has range
xsd:float

Modification reasondp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#modificationReason

has domain
Contract modification c
has range
xsd:string

Modification scopedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#modificationScope

has domain
Contract modification c
has range
xsd:string

Namedp back to ToC or Data Property ToC

IRI: http://schema.org/name

is defined by
http://schema.org/

Notice sent datedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#noticeSentDate

has characteristics: functional

has super-properties
Date dp
has domain
Notice c
has range
xsd:date

Notice sitedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#noticeSite

Property that indicates the sire where the notice is published. Normally it would be an official source, like the Official Jounral of the European Union, but it can be anywhere else, like press.

has domain
Notice c
has range
xsd:string

Offered durationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#offeredDuration

has characteristics: functional

has super-properties
Duration dp
has domain
Tender c

Offered end datedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#offeredEndDate

has characteristics: functional

has super-properties
Date dp
has domain
Tender c
has range
xsd:date

Other ability requisitesdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#otherAbilityRequisites

has domain
Tenderers requirements c
has range
xsd:string

Other award termsdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#otherAwardTerms

has domain
Tender c
has range
xsd:string

Other guaranteedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#otherGuarantee

has domain
Contract additional obligations c
has range
xsd:string

Postal addressdp back to ToC or Data Property ToC

IRI: http://schema.org/postalAddress

is defined by
http://schema.org/

Price percentage changedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#pricePercentageChange

The range of this property must be a percentage (i.e. float between 0.0 and 100.0)

has characteristics: functional

has domain
Contract modification c
has range
xsd:float

Price review allowabledp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#priceReviewAllowable

has characteristics: functional

has domain
Contract economic conditions c
has range
xsd:boolean

Price Review Indexdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#priceReviewIndex

has domain
Contract economic conditions c
has range
xsd:string

Prorogation number expecteddp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#prorogationsExpected

has characteristics: functional

has domain
Contract temporal conditions c
has range
xsd:nonNegativeInteger

Provisional financial guaranteedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#provisionalFinancialGuarantee

has characteristics: functional

has domain
Contract additional obligations c
has range
xsd:string

Actual end datedp back to ToC or Data Property ToC

IRI: http://purl.org/procurement/public-contracts#actualEndDate

is defined by
http://purl.org/procurement/public-contracts#
has super-properties
Date dp

Recurrent remedydp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#recurrentRemedy

has domain
Remedy c
has range
xsd:string

Remedy interposed todp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#remedyInterposedTo

has domain
Remedy c
has range
xsd:string

Remedy reasondp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#remedyReason

has domain
Remedy c
has range
xsd:string

Remedy resolutiondp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#remedyResolution

has domain
Remedy c
has range
xsd:string

Remedy resolution datedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#remedyResolutionDate

has characteristics: functional

has super-properties
Date dp
has domain
Remedy c
has range
xsd:date

Remedy resultdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#remedyResult

Contains the result of a lodged remedy. Normally it would contains values like "Estimated", "Rejected" or "Partially estimated".

has domain
Remedy c
has range
xsd:string

Required classificationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#requiredClassification

has domain
Tenderers requirements c
has range
xsd:string

Required economic and financial standingdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#requiredEconomicAndFinancialStanding

has domain
Tenderers requirements c
has range
xsd:string

Required technical and professional abilitydp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#requiredTechnicalAndProfessionalAbility

has domain
Tenderers requirements c
has range
xsd:string

Reserved contract restrictionsdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#reservedContractRestrictions

has domain
Tenderers requirements c
has range
xsd:string

Scoredp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#score

Indica la puntuación que ha recibido un criterio.

has characteristics: functional

has domain
Criterion score c
has range
xsd:float

Start datedp back to ToC or Data Property ToC

IRI: http://schema.org/startDate

is defined by
http://schema.org/

Start date of the tender dossierdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderDossierStartDate

has characteristics: functional

has super-properties
Date dp
has domain
Contract procedure c
has range
xsd:date

Street addressdp back to ToC or Data Property ToC

IRI: http://schema.org/streetAddress

is defined by
http://schema.org/

Tender committee appointment datedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderCommitteeAppointmentDate

has characteristics: functional

has super-properties
Date dp
has domain
Tender committee c
has range
xsd:date

Tender committee roledp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderCommitteeRole

Indicated the role of a person inside the committee.

has characteristics: functional

has domain
Committee member c
has range
xsd:string

Tender document needsdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderDocumentNeeds

Defines the necessary documentation a tender must include.

has domain
Tender requirements c
has range
xsd:string

Tender manteinance durationdp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderMaintenanceDuration

has characteristics: functional

has super-properties
Duration dp
has domain
Tender requirements c

Tender purposedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderPurpose

Indicates the purpose of the meeting (e.g. opening of first envelope).

has domain
Tender meeting c
has range
xsd:string

Tender submission modedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderSubmissionMode

has domain
Contract procedure c
has range
xsd:string

Tender submission supported languagedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderSubmissionSupportedLanguage

has domain
Tender requirements c
has range
xsd:string

Time-limit for submission of tenders or requests to participatedp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#tenderDeadline

has characteristics: functional

has super-properties
Date dp
has domain
Contract procedure c
has range
xsd:dateTime

Titledp back to ToC or Data Property ToC

IRI: http://purl.org/dc/terms/title

is defined by
http://purl.org/dc/terms/

Variant admissiondp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#variantAdmission

has characteristics: functional

has domain
Contract object c
has range
xsd:boolean

Variant descriptiondp back to ToC or Data Property ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#variantDescription

Property to describe the allowed variantes when submitting a variant of a contract.

has domain
Contract object c
has range
xsd:string

4.4. Individuals

Administrative informationni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#AdministrativeInformation

is a
Concept c
top concept of
Information kind scheme ni
in scheme
Information kind scheme ni

Competitive dialogueni back to ToC or Individual ToC

IRI: http://purl.org/procurement/public-contracts#CompetitiveDialogue

is a
Concept c
top concept of
Procedure type scheme ni
in scheme
Procedure type scheme ni

Emergencyni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Emergency

is a
Concept c
top concept of
Urgency type scheme ni
in scheme
Urgency type scheme ni

Expressni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Express

is a
Concept c
top concept of
Urgency type scheme ni
in scheme
Urgency type scheme ni

Information kind schemeni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#InformationKindScheme

Scheme that indicates the type of the information that can be provided.

is a
Concept scheme c
has top concept
Administrative information ni, Technical information ni

Minorni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Minor

is a
Concept c
top concept of
Procedure type scheme ni
in scheme
Procedure type scheme ni

Negotiatedni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Negotiated

is a
Concept c
top concept of
Procedure type scheme ni
in scheme
Procedure type scheme ni
narrower
Negotiated without publicity ni, Negotiated with publicity ni

Negotiated with publicityni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#NegotiatedWithPublicity

is a
Concept c
in scheme
Procedure type scheme ni
broader
Negotiated ni

Negotiated without publicityni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#NegotiatedWithoutPublicity

is a
Concept c
in scheme
Procedure type scheme ni
broader
Negotiated ni

Procedure type schemeni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#ProcedureTypeScheme

Scheme defining the procedure to be followed in a tender.

is a
Concept scheme c
has top concept
Competitive dialogue ni, Minor ni, Negotiated ni, Regular open ni, Restricted ni, Simple open ni

Regularni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#Regular

is a
Concept c
top concept of
Urgency type scheme ni
in scheme
Urgency type scheme ni

Regular openni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#RegularOpen

is a
Concept c
top concept of
Procedure type scheme ni
in scheme
Procedure type scheme ni

Restrictedni back to ToC or Individual ToC

IRI: http://purl.org/procurement/public-contracts#Restricted

is a
Concept c
top concept of
Procedure type scheme ni
in scheme
Procedure type scheme ni

Simple openni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#SimpleOpen

is a
Concept c
top concept of
Procedure type scheme ni
in scheme
Procedure type scheme ni

Technical informationni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#TechnicalInformation

is a
Concept c
top concept of
Information kind scheme ni
in scheme
Information kind scheme ni

Urgency type schemeni back to ToC or Individual ToC

IRI: http://contsem.unizar.es/def/sector-publico/pproc#UrgencyTypeScheme

Scheme that defines the kinds of urgency a procedure can follow.

is a
Concept scheme c
has top concept
Emergency ni, Express ni, Regular ni

6. Acknowledgements back to ToC

The develop of the PPROC ontology has been funded by the spanish Ministry of Industry, Commerce and Tourism through the project “Optimización de la contratación pública mediante la utilización de técnicas semánticas (CONTSEM)”. TSI-020606-2012-4.

diagrama ontología contsem

We want to thank to public procurement experts of the public authorities participating in the CONTSEM project: Ana Budría Escudero, Azucena Ayala Andrés (Zaragoza Town Hall), Eva Sanz Ayala, Juan Ramón Cardiel Ibarzo (Government of Aragón) y Montserrat Diez Sánchez (Provincial Council of Huesca); as well as its technical responsibles: María Jesús Fernández Ruiz, Laura Fernando López, Victor Morlan Plo (Zaragoza Town Hall), José Maria Subero Munilla, Ricardo Cantabrana González (Government of Aragón) and Cristina de la Hera Pascual (Provincial Council of Huesca).

Of course, we would also like to thanks Daniel García Latorre and Elena Lafuente Lapena (iASoft-OESIA) for its continuous efforts for the realization of this ontology and its use.


The authors would like to thanks Silvio Peroni for developing LODE, a Live OWL Documentation Environment used for representing the Cross Referencing Section of this document and Daniel Garijo for developing the script used to create the template of this document.

A. Change history back to ToC

Changes from 0.1.4 to 1.0.0: