From 0269d2c4fdc466b47348300c447d0b47a057d7cf Mon Sep 17 00:00:00 2001 From: Dragos0000 Date: Wed, 1 Nov 2023 11:07:38 +0000 Subject: [PATCH 01/21] testing refactored github action --- .../generate_conventions_and_glossary.yml | 224 +++++++++--------- .github/workflows/transform_ontology.yml | 192 +++++++-------- .../workflows/transform_with_model2owl.yml | 197 +++++++++++++++ .../model2owl-config/config-parameters.xsl | 13 +- .../xmi_conceptual_model/demo_ontology_CM.xml | 2 +- model2owl-config/config-parameters.xsl | 14 +- 6 files changed, 418 insertions(+), 224 deletions(-) create mode 100644 .github/workflows/transform_with_model2owl.yml diff --git a/.github/workflows/generate_conventions_and_glossary.yml b/.github/workflows/generate_conventions_and_glossary.yml index bdf3449..395030f 100644 --- a/.github/workflows/generate_conventions_and_glossary.yml +++ b/.github/workflows/generate_conventions_and_glossary.yml @@ -1,112 +1,112 @@ -name: generate conventions and glossary -on: - push: - branches: - - "**" - paths: - - "implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml" - - "implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml" - - -jobs: - report_and_glossary: - runs-on: ubuntu-latest - env: - OUTPUT_GLOSSARY_PATH: glossary/ - steps: - - uses: actions/checkout@master - with: - ref: ${{ github.ref }} - - - name: get model2owl - run: | - git clone https://github.com/OP-TED/model2owl.git - pwd - - - name: get-saxon - run: pwd && cd model2owl && make get-saxon - - - - name: generate convention report and glossary - run: | - AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) - for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" - do - echo "-------------------${implementation}---------------------------------" - sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl - cat model2owl/config-proxy.xsl - - - CM_FILE_NAME=$(echo "${implementation}_CM.xml") - CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}") - - OUTPUT_CONVENTION_REPORT_PATH=$(echo "implementation/$implementation/conventions_report/") - OUTPUT_GLOSSARY_FILE_NAME=$(echo "${implementation}_glossary.html") - ls -la implementation/$implementation/xmi_conceptual_model/ - echo "CM_FILE_PATH is $CM_FILE_PATH" - echo "OUTPUT_REPORT_PATH is $OUTPUT_CONVENTION_REPORT_PATH" - echo "OUTPUT_GLOSSARY_FILE_NAME is $OUTPUT_GLOSSARY_FILE_NAME" - - mkdir -p $OUTPUT_CONVENTION_REPORT_PATH - rm -f $OUTPUT_CONVENTION_REPORT_PATH*.html || true - ls -la - cd model2owl - ls -la - make generate-convention-report XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_CONVENTION_REPORT_PATH=../$OUTPUT_CONVENTION_REPORT_PATH - make generate-glossary XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH - - sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl - cd .. - done - shell: bash - - - name: merge implementations xmi files into one - run: | - AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) - cd model2owl - mkdir -p merge-xmis - for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" - do - cp ../implementation/$implementation/xmi_conceptual_model/*_CM.xml merge-xmis - done - ls merge-xmis - - make merge-xmi FIRST_XMI_TO_BE_MERGED_FILE_PATH=merge-xmis/demo_ontology_CM.xml - - echo "merged XMI file" - ls output/combined-xmi - shell: bash - - - name: generate combined glossary from the merged xmi - run: | - cd model2owl - make generate-glossary XMI_INPUT_FILE_PATH=output/combined-xmi/ontologies-combined.xmi OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH - - - name: remove unnecessary files - run: | - sudo rm -rf model2owl - shell: bash - - - name: commit files - id: commit - run: | - git config --local user.email "action@github.com" - git config --local user.name "github-actions" - git pull - git status - - git add . - if [ -z "$(git status --porcelain)" ]; then - echo "::set-output name=push::false" - else - git commit -m "Adding convention report and glossary files" - echo "::set-output name=push::true" - fi - shell: bash - - - name: Push changes - if: steps.commit.outputs.push == 'true' - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} \ No newline at end of file +#name: generate conventions and glossary +#on: +# push: +# branches: +# - "**" +# paths: +# - "implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml" +# - "implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml" +# +# +#jobs: +# report_and_glossary: +# runs-on: ubuntu-latest +# env: +# OUTPUT_GLOSSARY_PATH: glossary/ +# steps: +# - uses: actions/checkout@master +# with: +# ref: ${{ github.ref }} +# +# - name: get model2owl +# run: | +# git clone https://github.com/OP-TED/model2owl.git +# pwd +# +# - name: get-saxon +# run: pwd && cd model2owl && make get-saxon +# +# +# - name: generate convention report and glossary +# run: | +# AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) +# for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" +# do +# echo "-------------------${implementation}---------------------------------" +# sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl +# cat model2owl/config-proxy.xsl +# +# +# CM_FILE_NAME=$(echo "${implementation}_CM.xml") +# CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}") +# +# OUTPUT_CONVENTION_REPORT_PATH=$(echo "implementation/$implementation/conventions_report/") +# OUTPUT_GLOSSARY_FILE_NAME=$(echo "${implementation}_glossary.html") +# ls -la implementation/$implementation/xmi_conceptual_model/ +# echo "CM_FILE_PATH is $CM_FILE_PATH" +# echo "OUTPUT_REPORT_PATH is $OUTPUT_CONVENTION_REPORT_PATH" +# echo "OUTPUT_GLOSSARY_FILE_NAME is $OUTPUT_GLOSSARY_FILE_NAME" +# +# mkdir -p $OUTPUT_CONVENTION_REPORT_PATH +# rm -f $OUTPUT_CONVENTION_REPORT_PATH*.html || true +# ls -la +# cd model2owl +# ls -la +# make generate-convention-report XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_CONVENTION_REPORT_PATH=../$OUTPUT_CONVENTION_REPORT_PATH +# make generate-glossary XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH +# +# sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl +# cd .. +# done +# shell: bash +# +# - name: merge implementations xmi files into one +# run: | +# AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) +# cd model2owl +# mkdir -p merge-xmis +# for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" +# do +# cp ../implementation/$implementation/xmi_conceptual_model/*_CM.xml merge-xmis +# done +# ls merge-xmis +# +# make merge-xmi FIRST_XMI_TO_BE_MERGED_FILE_PATH=merge-xmis/demo_ontology_CM.xml +# +# echo "merged XMI file" +# ls output/combined-xmi +# shell: bash +# +# - name: generate combined glossary from the merged xmi +# run: | +# cd model2owl +# make generate-glossary XMI_INPUT_FILE_PATH=output/combined-xmi/ontologies-combined.xmi OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH +# +# - name: remove unnecessary files +# run: | +# sudo rm -rf model2owl +# shell: bash +# +# - name: commit files +# id: commit +# run: | +# git config --local user.email "action@github.com" +# git config --local user.name "github-actions" +# git pull +# git status +# +# git add . +# if [ -z "$(git status --porcelain)" ]; then +# echo "::set-output name=push::false" +# else +# git commit -m "Adding convention report and glossary files" +# echo "::set-output name=push::true" +# fi +# shell: bash +# +# - name: Push changes +# if: steps.commit.outputs.push == 'true' +# uses: ad-m/github-push-action@master +# with: +# github_token: ${{ secrets.GITHUB_TOKEN }} +# branch: ${{ github.ref }} \ No newline at end of file diff --git a/.github/workflows/transform_ontology.yml b/.github/workflows/transform_ontology.yml index 8d47cdf..ade1387 100644 --- a/.github/workflows/transform_ontology.yml +++ b/.github/workflows/transform_ontology.yml @@ -1,96 +1,96 @@ -name: transform UML model -on: - push: - branches: - - "**" - paths: - - "implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml" - - "implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml" - -jobs: - transform: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - with: - ref: ${{ github.ref }} - - - name: get model2owl - run: | - git clone https://github.com/OP-TED/model2owl.git - pwd - - - name: get-saxon - run: pwd && cd model2owl && make get-saxon - - - name: get-rdflib - run: cd model2owl && make create-virtual-env && make get-rdflib - - - name: transform step - run: | - AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) - for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" - do - echo "-------------------${implementation} transform---------------------------------" - sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl - cat model2owl/config-proxy.xsl - - - CM_FILE_NAME=$(echo "${implementation}_CM.xml") - CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}") - OUTPUT_PATH_OWL=$(echo "implementation/$implementation/owl_ontology/") - OUTPUT_PATH_SHACL=$(echo "implementation/$implementation/shacl_shapes/") - - ls -la implementation/$implementation/xmi_conceptual_model/ - echo "CM_FILE_PATH is $CM_FILE_PATH" - echo "OUTPUT_PATH_OWL is $OUTPUT_PATH_OWL" - echo "OUTPUT_PATH_SHACL is $OUTPUT_PATH_SHACL" - - - cd model2owl - ls -la - echo "+++++++++++++++++transform to rdf++++++++++++++++++++++++++++" - make owl-core XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL - make owl-restrictions XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL - make shacl XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_SHACL - - echo "+++++++++++++++++transform to turtle++++++++++++++++++++++++++++" - echo $(ls ${OUTPUT_PATH_OWL}/*.rdf) - make convert-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_OWL - echo $(ls ${OUTPUT_PATH_SHACL}/*.rdf) - make convert-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_SHACL - echo "-------------------end transform---------------------------------" - - sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl - cd .. - done - shell: bash - - - name: remove unnecessary files - run: | - sudo rm -rf model2owl - shell: bash - - - name: commit files - id: commit - run: | - git config --local user.email "action@github.com" - git config --local user.name "github-actions" - git pull - git status - - git add . - if [ -z "$(git status --porcelain)" ]; then - echo "::set-output name=push::false" - else - git commit -m "Adding transformation files" - echo "::set-output name=push::true" - fi - shell: bash - - - name: Push changes - if: steps.commit.outputs.push == 'true' - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} \ No newline at end of file +#name: transform UML model +#on: +# push: +# branches: +# - "**" +# paths: +# - "implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml" +# - "implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml" +# +#jobs: +# transform: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@master +# with: +# ref: ${{ github.ref }} +# +# - name: get model2owl +# run: | +# git clone https://github.com/OP-TED/model2owl.git +# pwd +# +# - name: get-saxon +# run: pwd && cd model2owl && make get-saxon +# +# - name: get-rdflib +# run: cd model2owl && make create-virtual-env && make get-rdflib +# +# - name: transform step +# run: | +# AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) +# for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" +# do +# echo "-------------------${implementation} transform---------------------------------" +# sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl +# cat model2owl/config-proxy.xsl +# +# +# CM_FILE_NAME=$(echo "${implementation}_CM.xml") +# CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}") +# OUTPUT_PATH_OWL=$(echo "implementation/$implementation/owl_ontology/") +# OUTPUT_PATH_SHACL=$(echo "implementation/$implementation/shacl_shapes/") +# +# ls -la implementation/$implementation/xmi_conceptual_model/ +# echo "CM_FILE_PATH is $CM_FILE_PATH" +# echo "OUTPUT_PATH_OWL is $OUTPUT_PATH_OWL" +# echo "OUTPUT_PATH_SHACL is $OUTPUT_PATH_SHACL" +# +# +# cd model2owl +# ls -la +# echo "+++++++++++++++++transform to rdf++++++++++++++++++++++++++++" +# make owl-core XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL +# make owl-restrictions XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL +# make shacl XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_SHACL +# +# echo "+++++++++++++++++transform to turtle++++++++++++++++++++++++++++" +# echo $(ls ${OUTPUT_PATH_OWL}/*.rdf) +# make convert-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_OWL +# echo $(ls ${OUTPUT_PATH_SHACL}/*.rdf) +# make convert-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_SHACL +# echo "-------------------end transform---------------------------------" +# +# sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl +# cd .. +# done +# shell: bash +# +# - name: remove unnecessary files +# run: | +# sudo rm -rf model2owl +# shell: bash +# +# - name: commit files +# id: commit +# run: | +# git config --local user.email "action@github.com" +# git config --local user.name "github-actions" +# git pull +# git status +# +# git add . +# if [ -z "$(git status --porcelain)" ]; then +# echo "::set-output name=push::false" +# else +# git commit -m "Adding transformation files" +# echo "::set-output name=push::true" +# fi +# shell: bash +# +# - name: Push changes +# if: steps.commit.outputs.push == 'true' +# uses: ad-m/github-push-action@master +# with: +# github_token: ${{ secrets.GITHUB_TOKEN }} +# branch: ${{ github.ref }} \ No newline at end of file diff --git a/.github/workflows/transform_with_model2owl.yml b/.github/workflows/transform_with_model2owl.yml new file mode 100644 index 0000000..94f50b5 --- /dev/null +++ b/.github/workflows/transform_with_model2owl.yml @@ -0,0 +1,197 @@ +name: transform UML model +on: + push: + branches: + - "**" + paths: + - "implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml" + - "implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml" +jobs: + report_and_glossary: + runs-on: ubuntu-latest + env: + OUTPUT_GLOSSARY_PATH: glossary/ + steps: + - uses: actions/checkout@master + with: + ref: ${{ github.ref }} + + - name: get model2owl + run: | + git clone https://github.com/OP-TED/model2owl.git + pwd + + - name: get-saxon + run: pwd && cd model2owl && make get-saxon + + + - name: generate convention report and glossary + run: | + AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) + for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" + do + echo "-------------------${implementation}---------------------------------" + sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl + cat model2owl/config-proxy.xsl + + + CM_FILE_NAME=$(echo "${implementation}_CM.xml") + CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}") + + OUTPUT_CONVENTION_REPORT_PATH=$(echo "implementation/$implementation/conventions_report/") + OUTPUT_GLOSSARY_FILE_NAME=$(echo "${implementation}_glossary.html") + ls -la implementation/$implementation/xmi_conceptual_model/ + echo "CM_FILE_PATH is $CM_FILE_PATH" + echo "OUTPUT_REPORT_PATH is $OUTPUT_CONVENTION_REPORT_PATH" + echo "OUTPUT_GLOSSARY_FILE_NAME is $OUTPUT_GLOSSARY_FILE_NAME" + + mkdir -p $OUTPUT_CONVENTION_REPORT_PATH + rm -f $OUTPUT_CONVENTION_REPORT_PATH*.html || true + ls -la + cd model2owl + ls -la + make generate-convention-report XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_CONVENTION_REPORT_PATH=../$OUTPUT_CONVENTION_REPORT_PATH + make generate-glossary XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH + + sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl + cd .. + done + shell: bash + + - name: merge implementations xmi files into one + run: | + AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) + cd model2owl + mkdir -p merge-xmis + for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" + do + cp ../implementation/$implementation/xmi_conceptual_model/*_CM.xml merge-xmis + done + ls merge-xmis + + make merge-xmi FIRST_XMI_TO_BE_MERGED_FILE_PATH=merge-xmis/demo_ontology_CM.xml + + echo "merged XMI file" + ls output/combined-xmi + shell: bash + + - name: generate combined glossary from the merged xmi + run: | + cd model2owl + make generate-glossary XMI_INPUT_FILE_PATH=output/combined-xmi/ontologies-combined.xmi OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH + + - name: remove unnecessary files + run: | + sudo rm -rf model2owl + shell: bash + + - name: commit files + id: commit + run: | + git config --local user.email "action@github.com" + git config --local user.name "github-actions" + git pull + git status + + git add . + if [ -z "$(git status --porcelain)" ]; then + echo "::set-output name=push::false" + else + git commit -m "Adding convention report and glossary files" + echo "::set-output name=push::true" + fi + shell: bash + + - name: Push changes + if: steps.commit.outputs.push == 'true' + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ github.ref }} + transform: + needs: report_and_glossary + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + with: + ref: ${{ github.ref }} + + - name: get model2owl + run: | + git clone https://github.com/OP-TED/model2owl.git + pwd + + - name: get-saxon + run: pwd && cd model2owl && make get-saxon + + - name: get-rdflib + run: cd model2owl && make create-virtual-env && make get-rdflib + + - name: transform step + run: | + AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) + for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" + do + echo "-------------------${implementation} transform---------------------------------" + sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl + cat model2owl/config-proxy.xsl + + + CM_FILE_NAME=$(echo "${implementation}_CM.xml") + CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}") + OUTPUT_PATH_OWL=$(echo "implementation/$implementation/owl_ontology/") + OUTPUT_PATH_SHACL=$(echo "implementation/$implementation/shacl_shapes/") + + ls -la implementation/$implementation/xmi_conceptual_model/ + echo "CM_FILE_PATH is $CM_FILE_PATH" + echo "OUTPUT_PATH_OWL is $OUTPUT_PATH_OWL" + echo "OUTPUT_PATH_SHACL is $OUTPUT_PATH_SHACL" + + + cd model2owl + ls -la + echo "+++++++++++++++++transform to rdf++++++++++++++++++++++++++++" + make owl-core XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL + make owl-restrictions XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL + make shacl XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_SHACL + + echo "+++++++++++++++++transform to turtle++++++++++++++++++++++++++++" + echo $(ls ${OUTPUT_PATH_OWL}/*.rdf) + make convert-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_OWL + echo $(ls ${OUTPUT_PATH_SHACL}/*.rdf) + make convert-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_SHACL + echo "-------------------end transform---------------------------------" + + sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl + cd .. + done + shell: bash + + - name: remove unnecessary files + run: | + sudo rm -rf model2owl + shell: bash + + - name: commit files + id: commit + run: | + git config --local user.email "action@github.com" + git config --local user.name "github-actions" + git pull + git status + + git add . + if [ -z "$(git status --porcelain)" ]; then + echo "::set-output name=push::false" + else + git commit -m "Adding transformation files" + echo "::set-output name=push::true" + fi + shell: bash + + - name: Push changes + if: steps.commit.outputs.push == 'true' + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ github.ref }} \ No newline at end of file diff --git a/implementation/demo_ontology/model2owl-config/config-parameters.xsl b/implementation/demo_ontology/model2owl-config/config-parameters.xsl index 74cab31..d110fdf 100644 --- a/implementation/demo_ontology/model2owl-config/config-parameters.xsl +++ b/implementation/demo_ontology/model2owl-config/config-parameters.xsl @@ -138,12 +138,11 @@ - - - - + + + + + + \ No newline at end of file diff --git a/implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml b/implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml index 7bde0cf..55013ac 100644 --- a/implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml +++ b/implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml @@ -1,6 +1,6 @@ - + diff --git a/model2owl-config/config-parameters.xsl b/model2owl-config/config-parameters.xsl index 93db5c9..62bbf0c 100644 --- a/model2owl-config/config-parameters.xsl +++ b/model2owl-config/config-parameters.xsl @@ -138,12 +138,10 @@ - - - - - + + + + + + \ No newline at end of file From 4e07b5f1251122afd4a1d0620612a71cdfa8f758 Mon Sep 17 00:00:00 2001 From: Dragos0000 Date: Wed, 1 Nov 2023 11:10:22 +0000 Subject: [PATCH 02/21] testing refactored github action --- .../demo_ontology/model2owl-config/config-parameters.xsl | 2 -- .../demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml | 2 +- model2owl-config/config-parameters.xsl | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/implementation/demo_ontology/model2owl-config/config-parameters.xsl b/implementation/demo_ontology/model2owl-config/config-parameters.xsl index d110fdf..75ca732 100644 --- a/implementation/demo_ontology/model2owl-config/config-parameters.xsl +++ b/implementation/demo_ontology/model2owl-config/config-parameters.xsl @@ -121,8 +121,6 @@ ('https://github.com/eprocurementontology/eprocurementontology', 'https://joinup.ec.europa.eu/collection/eprocurement/solution/eprocurement-ontology/about', 'https://op.europa.eu/en/web/eu-vocabularies/e-procurement', 'https://docs.ted.europa.eu/EPO/latest/index.html')"/> - - diff --git a/implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml b/implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml index 55013ac..7bde0cf 100644 --- a/implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml +++ b/implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml @@ -1,6 +1,6 @@ - + diff --git a/model2owl-config/config-parameters.xsl b/model2owl-config/config-parameters.xsl index 62bbf0c..0bb0853 100644 --- a/model2owl-config/config-parameters.xsl +++ b/model2owl-config/config-parameters.xsl @@ -121,8 +121,6 @@ ('https://github.com/eprocurementontology/eprocurementontology', 'https://joinup.ec.europa.eu/collection/eprocurement/solution/eprocurement-ontology/about', 'https://op.europa.eu/en/web/eu-vocabularies/e-procurement', 'https://docs.ted.europa.eu/EPO/latest/index.html')"/> - - From afb0b498a2996877dbf58dc9dca551be6b5d56cf Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 1 Nov 2023 11:11:14 +0000 Subject: [PATCH 03/21] Adding convention report and glossary files --- glossary/demo_ontology_CM_glossary.html | 6469 +++++++++++++++++ .../demo_ontology_module_CM_glossary.html | 692 ++ glossary/ontologies-combined_glossary.html | 6393 ++++++++++++++++ ...> demo_ontology_CM_convention_report.html} | 123 +- ...ontology_module_CM_convention_report.html} | 44 +- 5 files changed, 13564 insertions(+), 157 deletions(-) create mode 100644 glossary/demo_ontology_CM_glossary.html create mode 100644 glossary/demo_ontology_module_CM_glossary.html create mode 100644 glossary/ontologies-combined_glossary.html rename implementation/demo_ontology/conventions_report/{demo_ontology_CM-convention-report.html => demo_ontology_CM_convention_report.html} (96%) rename implementation/demo_ontology_module/conventions_report/{demo_ontology_module_CM-convention-report.html => demo_ontology_module_CM_convention_report.html} (98%) diff --git a/glossary/demo_ontology_CM_glossary.html b/glossary/demo_ontology_CM_glossary.html new file mode 100644 index 0000000..c59ea85 --- /dev/null +++ b/glossary/demo_ontology_CM_glossary.html @@ -0,0 +1,6469 @@ + + + + + + + + + + + + + + + + Model glossary + + +
+
+
+

Table of contents

+
+
+
+

Glossary

+

Class names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameDefinition
adms:IdentifierA character string to identify and distinguish uniquely, one instance of an object + in an identification scheme from all other objects in the same scheme together with + relevant supplementary information.
cccev:ConstraintLimitation applied to an Information Concept. + + Additional Information: + Constraints are Requirements in themselves, since they impose prerequisites which + influence the definition, use and/or Fulfilment of the Requirement. They represent + hard conditions such as minimum or maximum expressions which can be used to evaluate + pieces of information, the required age, income, involvement in activities, etc. An + example from the eProcurement domain is a threshold as the minimum turnover required + by the buying Organisation to select the Candidates. Note that CCCEV does not provide + any specific guidance on when which kind of Requirement should be used. Users of this + vocabulary should make decisions on this topic in their specific context.
cccev:CriterionCondition for evaluation or assessment. + + Additional Information: + In general, Criteria are used for comparison, filtering or Selection purposes. Criteria + usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need + to be met in order to pass the Requirements or to fulfil them to a certain degree + or quality. The concept of Criteria is broader than the concept of Constraint since + it covers more usages. The evaluation of the fulfilment is usually supported by the + provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology + defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria + or Award Criteria. A concrete example of a Criterion is 'participation in a criminal + organisation' which could also be considered as an Exclusion Ground Criterion in the + procurement domain or for requiring a public service.
cccev:EvidenceProof that a Requirement is met. + +
cccev:InformationConceptPiece of information that the Evidence provides or the Requirement needs.
cccev:RequirementCondition or prerequisite that is to be proven by Evidence. + + Additional Information: + Requirement is a generic class representing any type of prerequisite that may be desired, + needed or imposed as an obligation. CCCEV recommends to not use the Requirement class + directly, but rather a more semantically-enriched subclass such as Criterion, Information + Requirement or Constraint. Also note that the Requirement class is specified at a + more abstract level and is not to be used as the instantiation of a Requirement for + a specific Agent. + To illustrate the notion: the European Directive on services in the internal market + defines requirement as any obligation, prohibition, condition or limit provided for + in the laws, regulations or administrative provisions of the Member States or in consequence + of case-law, administrative practice, the rules of professional bodies, or the collective + rules of professional associations or other professional Organisations, adopted in + the exercise of their legal autonomy. + To stay consistent to how identification is realised in the eProcurement ontology, + we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification.
cpov:ContactPointInformation (e.g. e-mail address, telephone number) of a Person or department through + which the user can get in touch with. + + Additional information: + This class represents the contact information for a Public Service, Channel, Public + Organisation, etc. + The Contact Point could be a role, email address, telephone number, etc. + + WG approval 5/11/2019
cpov:PublicOrganisationAn Organisation that is defined as being part of the public sector by a legal framework + at any level. + + Additional information: + A body governed by public law: + - (a) established for the specific Purpose of meeting needs in the general interest + - (b) having legal personality; + - (c) financed, for the most part by the State, or regional or local authorities. + + + Examples of Public Organisations are municipality, international public body, ministry, + others. + + WG Approval 28/04/2020
cpv:PersonA individual human being who may be dead or alive, but not imaginary. +
cv:ChannelA medium through which Agents interact. + + Additional Information + Typical examples include online services, email, endpoint on eDelivery infrastructure, + phone, etc. + + Software solutions and electronic devices for communication and exchange of information + between Buyers and economic Operators. + Lots may use ad-hoc electronic means of communication that are not generally available + such as specific solutions for secure and dedicated communication or non-standard + eCatalogues. + + See also Directive recitals 53 to 56. + + WG approval 2023-02-14
dct:LocationAn identifiable geographic place or named place.
epo:AccessTermConditions and stipulations about where and how to access the Procurement Documents. + + WG Approval 09/03/2021 + +
epo:AcquiringCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of + the acquisition of supplies and/or services intended for other Buyers. + Additional Information: + In Public Procurement the Role of Acquiring Central Purchasing Body is carried out + by a Central Purchasing Body for other Contracting Authorities. + + WG approval 05/08/2021 +
epo:AcquiringPartyThe Role of an Agent that acts on the buying side of a Procurement Process. +
epo:AdHocChannelWeb page where tools and devices for electronic communication that are not generally + available can be downloaded free of charge. + + Additional Information: + + This corresponds in eForms to BT-724 Tool Atypical. + + + WG Acceptance 10/01/2023 +
epo:AgentInRoleRelative concept that ties an Agent to a part they play in a given Situational Context. + + Additional information: + The classification of roles is based is based on the degree of involvement into the + Procurement Process: + - Primary (Procurement) Pole is directly involved in the Procurement Process; + - Secondary (Procurement sub-) Role is secondary to the Procurement Process + - Tertiary (Related) Role is not involved in the Procurement Process.
epo:AuxiliaryPartyRole of an Agent who may be mentioned in the information exchanged during the Procurement + Process but who does not play an active part in it.
epo:AwardCriteriaSummary
epo:AwardCriterionCriterion that describes a Requirement that the Tender needs to resolve and on which + the Tender is evaluated and ranked. + + WG approval 05/11/2018
epo:AwardDecisionResolution of the Buyer as to the result of the Procurement Procedure. + + WG approval 14/11/2018
epo:AwarderA Role of an Agent that signs the Award Decision.
epo:AwardEvaluationTermConditions and stipulations defining particularities of the evaluation of Award Criteria.
epo:AwardingCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of + the award of Public Contracts or the conclusion of Framework Agreements for works, + supplies or services intended for other Buyers. + Additional Information: + In Public Procurement the Role of Awarding Central purchasing Body is carried out + by a Central Purchasing Body for other Contracting Authorities. + + WG approval 05/08/2021 +
epo:BudgetProviderA role of an agent whose Budget is used to pay for the Contract.
epo:BusinessA private law company registered in a national registry. + + WG Approval 28/04/2020 + +
epo:BuyerA Role of an Agent that awards a Contract and/or purchases items. + + Additional information: + In Public Procurement the Role of Buyer is carried out by the following types of Organisation: + Contracting Authority, Contracting Entity, a defense Contractor, an international + Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. + In Pre-Award, the Buyer generally awards the Contract, however future purchasers may + be foreseen. + In Post-Award the buyer generally refers to the purchaser of items.
epo:CandidateThe Role of an Agent that has sought an invitation or has been invited to take part + in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated + Procedure without prior publication, in a competitive dialogue or in an innovation + partnership. + + WG approval 30/05/2023
epo:CatalogueProviderA Role of an Agent compiling and supplying a Catalogue. + + Additional Information: + + The Catalogue Provider Role is usually played by the Agent that acts as a Seller, + or by another Agent that acts on behalf of the Seller. + + WG Approval 28/01/2021 +
epo:CatalogueReceiverA Role of an Agent processing a Catalogue. + + Additional Information: + The Catalogue Receiver may not only receive it but also validate it, process it, etc. + + The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or + by another Agent that acts on behalf of the Buyer. + + WG Approval 28/01/2021
epo:CentralPurchasingBodyRole of an Agent that provides centralised purchasing activities and, possibly, ancillary + purchasing activities for other Buyers. + + Additional Information: + In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting + Authority for other Contracting Authorities. + Contracting Authority procuring activities conducted on a permanent basis, in one + of the following forms:[...](b) the award of Public Contracts or the conclusion of + Framework Agreements for works, supplies or services intended for Contracting Authorities; + + WG approval 05/08/2021
epo:ConcessionContractA Contract between one or more Buyers and one or more Economic Operators giving the + right to the Economic Operators to exploit the rights foreseen in the Contract which + may include the receipt of Payments. + + WG Approval 24/05/2022
epo:ConcessionEstimate
epo:ContextSpecificDescriptionA description concerning a Procurement Object or a Notice in a specific Situation + Context. + + Additional Information: + The description has its own identity (+I) but is dependent (+D) on the concerned Entity. + + + We say that ContextSpecificDescription *concerns* an Entity. +
epo:ContextualProjectionProjection of an Entity and all of its properties that hold in a given Situation Context. + + + Additional Information: + The contextual projection does not have its own identity (-I), is dependent (+D) + on the described Entity, and is anti-rigid (~R) + + We say that ContextualProjection *describes* an Entity. + + Adaptation of ContextSlices pattern encoding a 4D view. + http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices
epo:ContractA voluntary, deliberate, and legally binding agreement between two or more competent + parties. + + Additional information: + This includes Concession Contracts. + + (WG approval 01/06/2018)
epo:ContractLotCompletionInformationInformation related to a given Lot at the end of the procurement.
epo:ContractModificationAn Announcement of the Modification Of a Contract/Concession during its Term by a + Buyer.
epo:ContractorThe Role of an Agent that has signed a Contract with a Buyer. + + WG approval 08/11/2022
epo:ContractSpecificTermGathering class for conditions and stipulations related to a contract in the Post-Award + Phase.
epo:ContractTermConditions and stipulations defining particularities of the Post Award Phase. + + (WG approval 23/11/2018) +
epo:DesignContestRegimeTermConditions and stipulations defining particularities of a Design Contest. + + WG approval: 04-02-2021
epo:DirectAwardTermConditions and stipulations defining particularities of the award of a Contract without + prior publication. + + Addtional Information: + + Direct award may refer to a previous Procedure and/or specific Lot(s). + + It may also refer to other justified situations whereby there is no previous Procedure. + + See Directive 2014/24/EU Article 32. + + WG Approval 22/11/2019 + + +
epo:DirectContract
epo:DocumentA set of interrelated Business Information representing the Business facts and associated + metadata. + The information may be conveyed in any language, medium or form, including textual, + numerical, graphic, cartographic, audio-visual forms, etc. + + WG Approval 23/05/2019 +
epo:DurationThe length of time in which a concept occurs.
epo:DynamicPurchaseSystemTechniqueA Technique that allows the selection of Candidates throughout the Procedure via the + Qualification Criteria, followed by individual Mini-Competitions for the Award of + Purchase Contracts. + + WG approval 23/05/2023
epo:DynamicPurchasingSystemAn electronic System that is set up by a Buyer which lists the Economic Operators + that satisfy the Qualification Criteria, which may later be put into competition via + a Mini-Competition in view of awarding a Purchase Contract. + + WG approval 23/05/2023 +
epo:EAuctionTechniqueA repetitive Technique in which new Prices, revised downwards, and/or new values concerning + certain elements of Tenders are bid on-line. + + Additional Information: + This corresponds in eForms to BT-767 Electronic Auction . + + WG approval 20/07/2018
epo:EconomicStandingSummary
epo:ElectronicSignature
epo:ElementChangeDescriptionInformation about a specific field to be changed with regard to a previous Notice.
epo:ElementConfidentialityDescriptionInformation about a specific field not intended for publication. + + Additional Information: + In the model, a field is identified by a combination of a class and a property on + that class. Therefore, these two references should be both provided. +
epo:ElementDescriptionDescription about a specific resource.
epo:ElementModificationDescriptionInformation about a specific field to be changed with regard to the Modification Of + a Contract.
epo:EmploymentInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for employment protection and working conditions.
epo:EnvironmentalProtectionInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for Environmental Protection.
epo:EstimateAn approximate calculation or a judgement of the value, number, Quantity or extent + of something.
epo:EvaluationTermConditions and stipulations defining particularities of the Tender evaluation. + + (WG approval 23/11/2018) + + +
epo:ExclusionGroundCriterion that describes a legal Requirement to be met by the Economic Operator to + be a Candidate in the Procurement. + + Additional Information: + This corresponds in eForms to BG-701 Exclusion Grounds. + + WG approval 31/10/2018
epo:ExclusionGroundsSummary
epo:ExpressionOfInterestDocument presenting an Economic Operator's Request to be considered for Procedures + covering a specific domain. + WG approval 13/04/2021
epo:FrameworkAgreementAn agreement between one or more Contracting Authorities and one or more Economic + Operators. + + Additional Information: + When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which + describes a Lot which specifies the both the Qualification and Award Criteria. + + WG approval 18/05/2021
epo:FrameworkAgreementTechniqueTechnique that establishes the terms governing Contracts to be awarded during a given + Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. + + WG approval 18/05/2021
epo:FrameworkAgreementTermConditions and stipulations defining particularities in a Framework Agreement.
epo:FundA financial resource used to support the Procurement. + + Additional Information: + + In the context of EU, Funds can be divided into programmes, actions and projects. + + Examples of EU funds are: the European Structural and Investment Funds, European Social + Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme + and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which + supports the eProcurement Ontology under sub-action 3). + + Funds may change between the lot and the contract, for example in the case of an emergency + crisis, a contract may be financed by a budget that was not foreseen in the call. + + WG Approved 14/05/2019 + + + + +
epo:GreenProcurementApproach whereby Buyers seek to procure with a reduced Environmental Impact. + + Additional Information: + + The approach may apply to the complete life cycle. The reduced Environmental Impact + is in comparison to goods, services and works with the same primary function that + would otherwise be procured. + + Tightly related are article 68 - Life-cycle costing and article 67 - most economically + advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf + An instance of the class GreenProcurement is represented in eForms with the code "env-imp" + defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf
epo:IndefiniteDuration
epo:InnovativeProcurementAn instance of the class InnovativeProcurement is represented in eForms with the code + "inn-pur" defined in the codelist Strategic-Procurement. + + Research (21/01/2020): + + Purchasing and early adoption of solutions which are not yet available on large scale + commercial basis. + + Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative + Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions + + Additional Information: + ‘innovation’ means the implementation of a new or significantly improved product, + service or process, including but not limited to production, building or construction + processes, a new marketing method, or a new organizational method in business practices, + workplace Organisation or external relations inter alia with the purpose of helping + to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable + and inclusive growth; + See: Directive 2014/24 + Articles: 2, 26 (3), 31, 67 (2.a) + + Question: + Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?
epo:JuryMember
epo:LeadBuyerA Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. + + + WG agreement: 2022-11-22
epo:LotA qualitative, quantitative or strategic subdivision of the goods, services or works + to be procured, allowing the award of one or more Contracts. + + WG approval 12/09/2018
epo:LotAwardDecisionResult concerning the Lot attributed by the Awarder.
epo:LotGroupCombination of several Lots to conduct comparative assessment of the Tenders. + + Additional Information: + + The comparative assessment may refer to the Selection Criteria, Award and Value that + apply to several Lots. + + Pending of discussion with eForms + + + + Member States may provide that, where more than one lot may be awarded to the same + tenderer, contracting authorities may award contracts combining several or all lots + where they have specified in the contract notice or in the invitation to confirm interest + that they reserve the possibility of doing so and indicate the lots or groups of lots + that may be combined.
epo:LotGroupAwardInformationAward information related to a given Group of Lots.
epo:LotSpecificTermGathering class for conditions and stipulations related to a Lot.
epo:MediatorA Role of an Agent that attempts to resolve a dispute between different Agents + and come to an agreement. + WG approval 20/04/2021
epo:MiniCompetitionA process where multiple winners or candidates of previous stages of a procedure bid + for a specific procurement. + + Additional Information: + It is typically used in framework agreements where the suppliers have already been + pre-selected, and the mini competition is used to determine which supplier is best + suited for a particular project or contract. + It is also used in a Dynamic Purchasing System where the suppliers come from a list + of Candidates. + + WG approval 30/05/2023
epo:MiniCompetitionAwardDecisionResult concerning the Mini-Competition attributed by the Awarder. +
epo:MonetaryValueA number of monetary units specified using a given unit of currency. + + Additional information: + In the pre-award phase of the procurement, all monetary values are considered to exclude + VAT based on the Directive 2014/24/EU. + + WG approval 13/04/2021 +
epo:MultipleStageProcedureTermConditions and stipulations defining particularities of Procedures carried out in + several steps + Additional Information: + Generally this refers to Procedures where selection is carried out to qualify Tenderers + who are then requested to submit the rest of their Tender for evaluation is Restricted + Procedure. + WG Approval 15/04/2021
epo:NonDisclosureAgreementTermConditions and stipulations
epo:NoticeDocument published by the Buyer about market opportunities and results. + + WG Approval 23/05/2019 +
epo:NoticeAwardInformationInformation about an Award Notice.
epo:NoticeChangeInformation about a corrigendum in a Notice.
epo:NoticeDescriptionDescriptions about the notice publishing, or providing evolutions of resources.
epo:OfferDocument providing the Monetary Value and the details to fulfill the Requirements + set out in the Procurement Documents or Request for Offer. + + Additional information: + A quotation is considered to be an Offer in the eProcurement Ontology. + + WG approval 09/02/2023
epo:OfferingPartyThe Role of an Agent that acts on the Economic Operator side during a Procurement + Process. + + Additional information: + As per the European Procurement Directives the notion of ‘Economic Operators’ should + be interpreted in a broad manner so as to include any Persons and/or Entities which + offer the execution of works, the supply of products or the provision of services + on the market, irrespective of the legal form under which they have chosen to operate. + Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited + companies, universities, public or private, and other forms of entities than natural + Persons should all fall within the notion of Economic Operator, whether or not they + are ‘Legal Persons’ in all circumstances.
epo:OfferIssuerThe Role of an Agent that distributes an Offer. + + WG approval 09/02/2023
epo:OfflineAccessProviderA Role of an Agent responsible for providing offline access to the Procurement Documents.
epo:OpeningTermConditions and stipulations defining particularities of the opening of Tenders. + Additional Information: + The opening of Tenders is the event when Tenders are made accessible for evaluation, + it is generally the same date and time for all Tenders. + WG Approval 15/04/2021
epo:OrganisationGroupAgreed collaboration of several Organisations. + Additional Information: + This concept has been created to fulfill the need to represent a grouping of Organisations + that is not necessarily registered i.e, consortia. + WG approval 15/04/2021
epo:OriginatorRequestDocument in which the Originator describes his needs. + + WG approval 09/02/2023
epo:OtherEntityEconomic Operator (who is not a Subcontractor) on which the Tenderer relies upon, + to meet Selection Criteria.
epo:ParticipationConditionCriterion that describes a Requirement to take part in a procurement. + + WG approval 30/05/2023
epo:ParticipationConditionsSummary
epo:ParticipationRequestProcessorA Role of an Agent responsible for processing Requests To Participate.
epo:ParticipationRequestReceiverA Role of an Agent responsible for receiving Requests To Participate.
epo:ParticipationRequestTermConditions and stipulations defining particularities of requesting participation in + a Procedure.
epo:PaymentExecutorA Role of an Agent responsible for executing the Payment.
epo:PeriodA time interval or a Duration. + + (WG approval 28/04/2020) +
epo:PlannedProcurementPartA subdivision of a Planned Procurement that may later become one or more Lots or a + self-standing Procedure. A Lot or a Procedure can also cover one or more parts of + the Planned Procurement. + + WG Approval 20/06/2019
epo:PrizeA reward given in a Contest. + WG approval: 15/04/2021
epo:ProcedureA legally defined set of administrative activities conducted to conclude one or more + Contracts. + + Additional Information + The Procedure is categorised in the law according to different rules determining whether + the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see + Procedure Type). + + WG Approval 20/08/2019 +
epo:ProcedureSpecificTermGathering class for conditions and stipulations related to a Procedure.
epo:ProcedureTermConditions and stipulations defining particularities of the Procedure. + + (WG approval 23/11/2018)
epo:ProcessPlanningTermConditions and stipulations defining particularities of the unfolding of the Procurement + Process.
epo:ProcurementCriteriaSummaryWG approval 24/01/2023
epo:ProcurementCriterionA criterion specific to Procurement. + + Additional Information: + + This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award + Criterion. Each of these Criteria can contain subcriteria (Criterion class). + + WG Approval 23/04/2020
epo:ProcurementDocumentDocument produced or referred to by the Buyer to describe or determine elements of + the Procurement. + + Additional information: + + Procurement Documents are to be accessible since the date of publication of the Contract + Notice or the prior information Notice when used as a call for competition. + + Examples of Procurement Documents are Technical Specifications, the Descriptive Document, + proposed conditions of Contract, formats for the presentation of Documents by Candidates + and Tenderers, information on generally applicable obligations. + + Other Documents related to the Procedure such as Notices are not considered to be + Procurement Documents. + + WG Approval 23/05/2019 17:08:30
epo:ProcurementElementGathering class for critical/central elements in the Procurement Process. + + TODO: add definition + Additional information: + Alias: ProcurementComponent
epo:ProcurementObjectThe whole or a division of goods, services or works to be procured. + + Additional Information: + Anything that can specify the procurement content (i.e. goods, services, work) is + a Procurement Object. + In a sense, such an "object" can constitute the "object of a Contract". + To test whether something is a Procedure Object check if it can have a Purpose and/or + CPV classification (<i>The CPV establishes a single classification system for public + procurement aimed at standardising the references used by Contracting Authorities + and entities to describe the subject of Procurement Contracts.</i>). + + Note: + Procedure, seems to be an exception from this rule. Because it is a conflated term: + it carries process properties and "purpose" properties.
epo:ProcurementProcedureInformationProviderA Role of an Agent responsible for providing additional information about the Procurement + Procedure.
epo:ProcurementProcessInformationInformation about the temporal unfolding or succession of Procurement Objects.
epo:ProcurementServiceProviderRole of a public or private body which offers ancillary purchasing activities on the + market. + + Additional information + + "Ancillary Purchasing Activities" means activities consisting in the provision of + support to purchasing activities, in particular in the following forms: + (a) technical infrastructure enabling Contracting Authorities to award Public Contracts + or to conclude Framework Agreements for works, supplies or services; + (b) advice on the conduct or design of public Procurement Procedures; + (c) preparation and management of Procurement Procedures on behalf and for the account + of the Contracting Authority concerned; + + Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. + + This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity + managing the Procurement, which may be different from the Buyer who is paying / using + the items being procured'. + + WG Approval 24/03/2020 +
epo:ProfessionalSuitabilitySummary
epo:ProjectA collaborative enterprise that is carefully planned to achieve a particular aim.
epo:PublicationProvisionInformation about fields not intended for publication. + + + Additional Information: + The non-published information may become available at a later date and may differ + from one element to another within a given Document. + + Examples of fields that may not be immediately published are Winner, Tender and Procedure + Lot Result, etc., e.g. for security reasons. + + WG Approval 16/05/2019 + + + + +
epo:PurchaseContractA Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract.
epo:PurposeThe description of the objectives related to a Procurement. + + Additional information: + + The description of the objectives includes the Subject Matter and Quantities. + + + The quantification of the objectives related to a procurement. + + To be re-reviewed by the WG the soonest. + + (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) + + The old definition read as follows: + + The description of the objectives related to a procurement. + + (WG approval 05/12/2018) +
epo:QualificationCriteriaSummary
epo:QualificationCriterionCriterion used in the first stage of procurement. + + WG approval 30/05/2023
epo:QuantityA counted number of non-monetary units possibly including fractions. +
epo:RequestForClarificationA demand for elucidation of received information. + Additional Information: + Requests for clarification are usually used by Buyers during the process of award + or evaluation to understand specific aspects of the Tender without altering the Tender. + WG approval 20/04/2021
epo:RequestForParticipationApplication of an Economic Operator to be included in a Procurement Procedure. + WG approval: 20/04/2021
epo:ReviewDecisionInformation about Review Decisions.
epo:ReviewerRole of an Agent who investigates the overall correctness of a Procurement Procedure, + producing a related report. + Additional Information: + Any Organisation or Person may request a review of a Procurement Procedure. + WG approval: 20/04/2021
epo:ReviewIrregularitySummaryInformation about the number and type of requests the Buyer received to review any + of its decisions (e.g. the Technical Specifications, Award Decision). + + Additional information: + This class corresponds in eForms to BG-613 Buyer Review Requests. + + +
epo:ReviewObjectInformation about a Review Request or a Review Decision. + + Additional information: + This class corresponds to the BG-714 Review in eForms. + +
epo:ReviewProcedureInformationProviderA Role of an Agent who is providing more information on the time limits for review + Procedures.
epo:ReviewRequestInformation about requests to review procedures.
epo:ReviewRequesterRole of an Agent who requests the review of a (Procurement) Procedure. + + WG Approval 23/10/2021
epo:ReviewRequestSummarySummary information about the requests the Buyer received to review any of its decisions + (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive + 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the + requests. + + Additional information: + This class corresponds in eForms to BG-612 Buyer Review Summary.
epo:SecurityClearanceTermConditions and stipulations about the status requested of individuals allowing them + access to classified information (state or organisational secrets) or to restricted + areas, after completion of a thorough background check. + + Additional information: + This corresponds in eForms to BT-578, BT-78, BT-732 . + + WG approval 20/06/2023 +
epo:SelectedCandidateListRecord of Candidates admitted to take part in award phases of procurements. + + WG approval 30/05/2023
epo:SelectionCriteriaSummary
epo:SelectionCriterionCriterion that describes a capacity Requirement that the Economic Operator needs to + fulfill to participate in the procurement. + + Additional Information: + Selection criteria may relate to: + (a) suitability to pursue the professional activity; + (b) economic and financial standing; + (c) technical and professional ability + + WG approval 31/10/2018
epo:SelectionEvaluationTermConditions and stipulations defining particularities of the evaluation of Selection + Criteria.
epo:SocialProcurementAn instance of the class SocialProcurement is represented in eForms with the code + "soc-obj" defined in the codelist Strategic-Procurement. + + + Research (21/01/2020): + Socially Responsible Public Procurement (SRPP): + + ‘SRPP’ means Procurement Operations that take into account one or more of the following + social considerations: employment opportunities, decent work, compliance with social + and labour rights, social inclusion (including persons with disabilities), equal opportunities, + accessibility design for all, taking account of sustainability criteria, including + ethical trade issues and wider voluntary compliance with corporate social responsibility + (CSR), while observing the principles enshrined in the Treaty for the European Union + (TFEU) and the Procurement Directives. + Source: Buying Social - A Guide to Taking Account of Social Considerations in Public + Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en + See Article 18 and Annex X Directive 2014/24.
epo:SpecificDuration
epo:StatisticalInformationStatistical data on the Procedure and the Lot. + + Additional Information + + At the present time Procurement Procedures are not fully electronic. At a later date, + information on the Tenders received could be inferred by the data in the eProcurement + System. + Therefore this class is temporal and should cease to exist in fully electronic Procurement. + The need for its presence responds also to the alignment with the Regulation (EU) + 2019/1780 (eForms). + + Attention will have to be paid in the future to possible inconsistencies derived from + data placed in other classes and data held in the Statistical Information class; e.g. + the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender + indicator, which in case of being false, may enter in contradiction with the highest + or lowest Tender value for that very same inadmissible Tender. + + WG Approval 12/12/2019 +
epo:StrategicProcurementPublic Procurement that contributes to achieving pressing policy goals. + + Additional Information: + Specific strategic goals could be, for example, Environmental Protection, innovation, + job creation and the development of small and medium enterprises. + + This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given + by the choices in BT-06 Strategic Procurement. + + Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph + on "background information". + + WG Approval 10/03/2020
epo:SubcontractingEstimateInformation on the approximation of the foreseen Subcontracting.
epo:SubcontractorA Role of an Agent that has an agreement to perform part or all of the obligations + of another Agents's Contract. + Additional information + For some Procedures, the Subcontractor signs as well the Contract between the Buyer + and the Contractor. + + At tendering time, entities relied upon by the Economic Operators can be Subcontractors + or not. + + When modelling ESPD we well analyze whether we need or not a Role named "relied upon". + + WG approval 05/08/2021 +
epo:SubcontractTermA concept to describe the main information regarding the share of parts of the Contract + to third parties.
epo:SubmissionStatisticalInformationStatistical information about submissions on a given competition, either at Lot level + or Mini-Competition level. + + WG approval 30/05/2023
epo:SubmissionTermConditions and stipulations defining particularities of submitting Documents to the + Buyer. + + Additional Information: + These Documents can be Tenders, Request To Participate and expressions of interest. + + WG Approval 14/07/2020
epo:SystemSoftware application used for performing Procurement activities. + + WG Approval 28/04/2020 + +
epo:TaxInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for taxes.
epo:TechnicalAbilitySummary
epo:TechniqueMethod used for conducting Procurement Procedures. + + Addtional information: + This corresponds in eForms to BG-706 Techniques. + + Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction + can be carried out in a Framework Agreement or DPS). + + WG Approval 19/09/2019 +
epo:TenderInformation submitted by the Economic Operator to specify its Offer regarding a specific + Lot, in response to the call for Tender. + + (WG approval 03/05/2022) + + +
epo:TenderAwardOutcomeResult concerning the Tender attributed by the Awarder.
epo:TendererA Role of an Agent that has submitted a Tender. + + Additional Information: + A Tenderer is an Economic Operator or group of Economic Operators that has submitted + a Tender. + WG approval 05/08/2021
epo:TenderGroupSpecific Offer in response to a Lot Group. + + Additional Information: + This class is generally used to provide the Monetary Value in response to a Lot Group. +
epo:TenderProcessorA Role of an Agent responsible for processing Tenders.
epo:TenderReceiverA Role of an Agent responsible for receiving Tenders.
epo:TermA governing condition or stipulation.
epo:WinnerA Role of an Agent to whom a Lot is awarded. + WG approval 05/08/2021 (revised 26/10/2021)
foaf:AgentA Person, an Organisation, or a System that acts in Procurement or have the power + to act in Procurement. + + WG Approval 28/04/2020
foaf:PersonThe Person class represents people. Something is a Person if it is a Person. We don't + nitpick about whether they're alive, dead, real, or imaginary. The Person class is + a sub-class of the Agent class, since all people are considered 'Agents' in FOAF.
locn:AddressThe particulars of the place where a Person or an Organisation is located. + + WG Approval 28/04/2020 + + Additional Information: + An "Address Representation" as conceptually defined by the INSPIRE Address Representation + data type: "Representation of an address spatial object for use in external application + schemas that need to include the basic, address information in a readable way.". + + + The representation of Addresses varies widely from one country's postal System to + another. Even within countries, there are almost always examples of Addresses that + do not conform to the stated national standard. At the time of publication, work is + progressing on ISO 19160-1 that defines a method through which different Addresses + can be converted from one conceptual model to another. + + + This specification was heavily based on the INSPIRE Address Representation data type. + It is noteworthy that if an Address is provided using the detailed breakdown suggested + by the properties for this class, then it will be INSPIRE-conformant. To this very + granular set of properties, we add two further properties: + + - full address (the complete address as a formatted string) + - addressID (a unique identifier for the address) + The first of these allows publishers to simply provide the complete Address as one + string, with or without formatting. This is analogous to vCard's label property. + + The addressID is part of the INSPIRE guidelines and provides a hook that can be used + to link the Address to an alternative representation, such as vCard or OASIS xAL.
locn:GeometryThe Geometry class provides the means to identify a Location as a point, line, polygon, + etc. expressed using coordinates in some coordinate reference System. + + Additional Information: + This class defines the notion of "Geometry" at the conceptual level, and it shall + be encoded by using different formats (see usage note of the locn:geometry property). + We also refer to the Examples section of this specification for a number of different + Geometry examples expressed in different formats.
org:OrganizationA collection of people organized together into a community or other social, commercial + or political structure. The group has some common purpose or reason for existence + which goes beyond the set of people belonging to it and can act as an Agent. Organisations + are often decomposable into hierarchical structures. + + (WG approval 23/11/2018). +
owl:ThingAny individual in the domain of discourse is a Thing. + + + Additional Information: + + The most basic concepts in a domain should correspond to classes that are the roots + of various taxonomic trees. Every individual in the OWL world is a member of the class + owl:Thing.
+

Attributes (datatype properties) names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameAttribute nameDefinitionData type / cardinality
adms:Identifieradms:schemaAgencyThe name of the agency that issued the identifier.rdf:PlainLiteral [0..*]
cccev:Criterioncccev:biasParameter used to adjust the evaluation of the Criterion. + + Additional Information: + The bias parameter tries to correct a systematic error. For example in procurement, + a home bias corresponds to the "presence of local preferences distorting international + specialisation and resource allocation". When quantified, this systematic error can + be removed.xsd:decimal [0..1]
cccev:Criterioncccev:weightRelative importance of the Criterion. + + Additional Information: + The weight must be between 0 and 1. Usually, all Criteria can be integrated within + a weighted sum equal to 1.xsd:decimal [0..1]
cccev:Criterioncccev:weightingConsiderationDescriptionExplanation of how the weighting of a Criterion is to be used. + + Additional Information: + This description gives the view of the creator of the Criterion weights on how to + interpret and use them during the evaluation process.rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:emailThe email of the Organisation. + + rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:telephoneA telephone number through which the Contact Point can be contacted. + rdf:PlainLiteral [0..*]
cpv:Personcv:birthDateThe point in time on which the Person was born.xsd:date [0..1]
locn:Geometrycv:coordinatesThe coordinate list.rdf:PlainLiteral [0..*]
locn:Geometrycv:latitudeThe latitude.rdf:PlainLiteral [0..*]
locn:Geometrycv:longitudeThe longitude.rdf:PlainLiteral [0..*]
cpv:Persondct:alternativeAny name by which an individual is known other than their full name. + WG 09/11/2021rdf:langString [0..*]
epo:ProcurementElement
epo:System
epo:AgentInRole
cpov:ContactPoint
cv:Channel
epo:NonDisclosureAgreementTerm
epo:SecurityClearanceTerm
epo:SubcontractTerm
cccev:InformationConcept
cccev:Requirement
epo:Technique
epo:SubcontractingEstimate
epo:ElectronicSignature
epo:Document
epo:Fund
dct:descriptionAn account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 + An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 + An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [1..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:Documentdct:issuedDate of formal issuance of the resource. + + Additional information: + This is generally used for modules other than eNotice. + The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or + xsd:timeStamp or any other variant of time expression. This extension needs to be + encoded/automated in the ontology and in the application profile. + Why is it like this? Because UML cannot handle such expressions of disjunctive property + ranges. + + WG approval 26/01/2023xsd:dateTime [0..1]
epo:ProcurementElement
foaf:Agent
epo:AgentInRole
epo:Document
epo:Fund
dct:titleA name given to the resource. + + WG approval 30/05/2023 A name given to the resource. + + WG approval 30/05/2023 A name given to the resource. + + WG approval 30/05/2023 + A name given to the resource. + + WG approval 30/05/2023 + + A name given to the resource. + + WG approval 30/05/2023 + rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:describesMinimumLevelOfStandardsrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesObjectiveParticipationRulesrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionRelevantLawrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesVerificationMethodrdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasAbnormallyLowTendersTenders received that were found irregular and non-acceptable due to an abnormally + low price or cost. + + Additional Information + The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. + + WG Approval 28/07/2020 + + xsd:integer [0..1]
epo:Procedureepo:hasAcceleratedProcedureJustificationThe reasons why the procedure is accelerated. + + Additional Information: + A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake + relief. + + WG Approval 09/06/2020 + + rdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasAccessibilityDateThe date at which unpublished data shall be published. + + WG Approval 11/06/2020xsd:date [0..1]
epo:Documentepo:hasAccessURLLocation where the resource can be accessed. + + WG approval 07/04/2022xsd:anyURI [0..*]
epo:Buyerepo:hasActivityDescriptionIn the ePO ontology a taxonomy with all activities, based on different classifications + (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively + to complement the definition attached to the MainActivityCode. + + However, in eForms there is the code "other" to cover undefined activities. For mapping + to this eForms feature one could also use this property. + rdf:PlainLiteral [0..*]
epo:ProcurementObject
epo:Notice
epo:ElementChangeDescription
epo:hasAdditionalInformationSupplementary data about the instance of the concept. + + WG Approval 15/10/2019 Supplementary data about the instance of the concept. + + WG Approval 15/10/2019 Supplementary data about the instance of the concept. + + WG Approval 15/10/2019 + rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
epo:AccessTermepo:hasAdditionalInformationDeadlineThe time limit for requesting further information. + + Additional information: + + This is generally used to indicate the deadline for Economic Operators to request + further information of the procedure before the submission deadline. + + This corresponds in eForms to BT-13 Additional Information Deadline. + + WG Approval 09/06/2020 + xsd:dateTime [0..1]
epo:AwardDecisionepo:hasAdditionalNonAwardJustificationFurther justification for the non award . + + Additional information: + This is generally used when the non award reason code is set to "Other". + + WG: 18/01/2022rdf:PlainLiteral [0..1]
cv:Channelepo:hasAddressURLxsd:anyURI [0..1]
foaf:Agentepo:hasAliasAcronym or alternative name of the Agent. + WG Approval 25/03/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasAmountValueThe numeric value of the amount, including decimals.xsd:decimal [1..1]
epo:AwardEvaluationTermepo:hasAwardCriteriaEvaluationFormulaThe mathematical equation or any other description used for complicated weighing of + criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing + cannot be expressed per criterion. + + Additional Information: + This corresponds in eForms to BT-543 Award Criteria Complicated.rdf:PlainLiteral [0..*]
epo:AwardEvaluationTermepo:hasAwardCriteriaOrderJustificationThe justification for only indicating the award criteria's order of importance, not + their weighing. + + Additional Information: + This corresponds in eForms to BT-733 Award Criteria Order Justification.rdf:PlainLiteral [0..1]
epo:AwardCriterionepo:hasAwardCriteriaStatedInProcurementDocumentsxsd:boolean [1..1]
epo:ProcessPlanningTermepo:hasAwardDateScheduledPlanned date for the award decision. + WG Approval 09/11/2021xsd:date [0..1]
epo:AwardDecisionepo:hasAwardDecisionDateThe official date of the award decision. + + Additional Information: + This corresponds in eForms to BT-1451 Winner Decision Date. + + WG Approval 09/01/2020 + xsd:dateTime [0..1]
epo:TenderAwardOutcomeepo:hasAwardRankThe position of the tender (i.e. whether the tender ended up first, second, third, + etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) + or an innovation partnership. + + Additional Information: + This corresponds in eForms to BT-171 Tender Rank. + xsd:integer [0..1]
epo:Periodepo:hasBeginningThe date and time on which this period begins.xsd:dateTime [0..1]
epo:FrameworkAgreementTermepo:hasBuyerCategoryDescriptionA classification of buyers participating in a framework agreement. + + Additional Information: + Buyers that can use the Framework Agreement not mentioned by name. + + For example, the classification "all hospitals in the Tuscany region" is used instead + of naming each individual buyer. + + This corresponds in eForms to BT-111 Framework Buyer Categories. + + WG Approval 2019-05-06rdf:PlainLiteral [0..*]
org:Organizationepo:hasBuyerLegalTypeDescriptionSelf-explanatory text about the Buyer Legal Type. + + Additional information: + This field is used when the Buyer Legal Type is not available in the controlled list + at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard + Forms. It shall be deprecated in the future. + + WG Approval 06/09/2022rdf:PlainLiteral [0..1]
epo:Buyerepo:hasBuyerProfileWebsite address where the buyer publishes information on its procurement procedures + and general information. + + Additional information: + This corresponds in the eForms to BT-508 Buyer Profile URL. + + WG approval 04/05/2018 + xsd:anyURI [0..1]
epo:ConcessionEstimateepo:hasCalculationMethodFormula for obtaining values. + + Additional Information: + The possible values are monetary values, ranking scores, criterion weighting. + + WG Approval 25/05/2018rdf:PlainLiteral [0..1]
epo:ElementChangeDescriptionepo:hasChangeDescriptionExplanatory text about the instance of the concept. + + WG Approval 30/09/2019rdf:PlainLiteral [0..*]
epo:ElementChangeDescriptionepo:hasChangeReasonDescriptionExplanatory text about why the element is altered. + + Additional information: + This corresponds in eForms to BT-762 Change Reason Description.rdf:PlainLiteral [0..*]
epo:GreenProcurementepo:hasCleanVehiclesThe number of all clean vehicles that have either been purchased, leased, rented, + hired-purchased or their use has been contractually committed to for the provision + of a purchased service. + + Additional Information + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:QualificationCriteriaSummaryepo:hasConditionVerificationMethodrdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasConfidentialityJustificationA narrative explanation of why data is not published. + + Additional Information: + This element is generally used when the non-publication-justification code chosen + is "other". + + WG Approval 09/11/2021 + rdf:PlainLiteral [0..1]
cpov:ContactPointepo:hasContactNameA short text by which a contact is known or referred to. + + WG Approval: 27/01/2022rdf:PlainLiteral [0..1]
epo:Contractepo:hasContractConclusionDateThe date the contract was signed by the last signatory party. + + <u>Additional Information:</u> + In exceptional cases contracts may be concluded without signature and therefore another + date may be used. The date of contract conclusion is always later than the end of + any standstill period. + This concept is not to be confused with the date of completion/end of the contract. + + This corresponds in eForms to BT-145 Contract Conclusion Date. + + WG Approval 09/01/2020xsd:date [0..1]
epo:ProcedureTermepo:hasCrossBorderLawThe applicable law when buyers from different countries procure together within one + procurement procedure. + + Additional Information: + This corresponds in eForms to BT-09 Cross Border Law.rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyIDIdentifier of the agency that maintains the currency code list used. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyNameName of the agency that maintains the currency code list used. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListIDConcept scheme URI used for the currency code list. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:SecurityClearanceTermepo:hasDeadlineThe deadline by which the security clearance must be submitted to the buyer. + + WG Approval 12/09/2019 + + xsd:dateTime [0..1]
epo:ReviewDecisionepo:hasDecisionDateThe date of the review decision. + + Additional information: + This attribute corresponds to the BT-787 Review Date in eForms. + xsd:date [0..1]
epo:Documentepo:hasDispatchDateDate of transmission of a record to an organisation. + + WG Approval 12/05/2020xsd:date [0..1]
epo:FrameworkAgreementTermepo:hasDurationExtensionJustificationThe explanation of the reason why the framework agreement has an extended duration. + + Additional Information: + This corresponds in eForms to BT-109 Framework Duration Justification. + The justification for exceptional cases when the duration of the framework agreement + exceeds the legal limits. + + Four years in the case of the general procurement Directive, seven years in the case + of the defence Directive, and eight years in the case of the sectoral Directive. + + WG Approval 26/09/2019rdf:PlainLiteral [0..1]
epo:SubmissionTermepo:hasEAuctionURLThe internet address of the electronic auction. + + Additional Information: + + This corresponds in eForms to BT-123 Electronic Auction URL.xsd:anyURI [0..1]
epo:SubmissionStatisticalInformationepo:hasEEAReceivedTendersThe amount of tenders received from economic operators in other EEA countries other + than the country of the buyer. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:Noticeepo:hasEFormsSubtypexsd:integer [0..1]
epo:ContractTermepo:hasEInvoicingElectronic means will be used for invoicing in the post-award process. + + Additional Information: + This attribute is used for standard form mappings. + + WG Approval 12/09/2019 + xsd:boolean [0..1]
epo:Tenderepo:hasElectronicSubmissionTransmission of tenders is possible by electronic means of communication. xsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasElectronicTendersElectronic Tender Lots received. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:ReviewObject
epo:ElementChangeDescription
epo:ElementModificationDescription
epo:hasElementReferenceReference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. Reference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. Reference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. + xsd:anyURI [0..*]
xsd:anyURI [1..1]
xsd:anyURI [0..1]
epo:Periodepo:hasEndThe date and time at which this period ends.xsd:dateTime [0..1]
epo:Contractepo:hasEntryIntoForceDateThe date on which the contract enters into force. + + Additional information: + + This is generally the date on which the fulfillment of the contract begins. + + This corresponds in eForms to + + WG approval 05/11/2019xsd:date [0..1]
epo:ContractTermepo:hasEOrderingElectronic means will be used for requesting and purchasing in the post-award process. + + WG Approval 12/09/2019 + + xsd:boolean [0..1]
epo:ContractTermepo:hasEPaymentElectronic means must be used for paying. + WG Approval 09/11/2021 + xsd:boolean [0..1]
epo:Noticeepo:hasESenderDispatchDateThe date and time the notice was transmitted electronically by the eSender to the + Publications Office of the European Union. + + Additional Information: + Typically, eSenders include national Official Journals, Buyers sending a large number + of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement + software developers. + + WG approval 20/06/2023xsd:dateTime [0..1]
epo:ProcessPlanningTermepo:hasEstimatedContractNoticePublicationDateForeseen date for publication of Contract Notice. + + Additional information: + This corresponds in eForms BT-127 Future Notice. + + xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToExpressInterestDateThe estimated date of dispatch of the invitations to confirm interest. + + Additional Information: + This corresponds in eForms to BT-631 Dispatch Invitation Interest.xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToTenderDateThe estimated date of dispatch of the invitations to submit tenders in two (or more) + stage procedures. + + Additional Information: + This corresponds in eForms to BT-130 Dispatch Invitation Tender. + + WG Approval 01/10/2019xsd:date [0..1]
epo:SubcontractingEstimateepo:hasEstimatedPercentageThe estimated proportion foreseen to be subcontracted. + + WG Approval 07/01/2020xsd:decimal [0..1]
epo:ProcessPlanningTermepo:hasEstimatedTenderInvitationDateThe planned date for the dispatch of the invitations to submit tenders. + WG Approval 09/11/2021xsd:date [0..1]
epo:SubmissionStatisticalInformationepo:hasEstimatedTotalSubcontractsThe estimated amount of work to be subcontracted in the contract resulting from the + lot. + WG Approval 09/11/2021xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasEUReceivedTendersThe amount of tenders received from economic operators in other EU countries other + than the country of the buyer.xsd:integer [0..1]
cpov:ContactPointepo:hasFaxThe fax number used to reach a person or an organisation.rdf:PlainLiteral [0..*]
epo:AwardCriterionepo:hasFixedValueThis corresponds in the eForms to BT-541 Award Criterion Number in association with + BT-5422 Award Criterion Number Fixed.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractAny subsequent service contract will be awarded to the winner or, in the case of a + design contest, winners. + + WG Approval 29/08/2019 xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractInformationFurther information about follow-up contracts, prizes and payments (for example non-monetary + prizes, payments given for participation). + + WG Approval 03/09/2019rdf:PlainLiteral [0..*]
epo:Noticeepo:hasFormNumberxsd:integer [0..1]
epo:ProcurementCriterionepo:hasFormulaThe mathematical equation or any other description used for complicated weighing of + criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing + cannot be expressed per criterion. + + Additional Information: + This corresponds in eForms to BT-543.rdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasGroupLotEvaluationMethodDescription of how lots and groups of lots are evaluated against one another in the + procedure. + + + + rdf:PlainLiteral [0..*]
epo:OrganisationGroupepo:hasGroupTypeForm of collaboration agreement between organisations. + + Additional Information: + This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also + be used for Organisation Groups. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasGuaranteeDescriptionInformation on the financial commitment required from the economic operator. + + Additional Information: + 1. This information may include the amount and the way of delivering of the guarantee + 2. The financial commitment may be retained by the buyer in the case the tenderer + withdraws the submitted information (i.e. tender, expression of interest and request + for participation, but not request for clarifications) before the award of the contract + or does not sign the contract. + 3. Usual modalities are bonds, cheques, loans, other. + + WG Approval 21/07/20 + rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasInadmissibleTendersTenders received that cannot be awarded due to non-compliance to procurement document + requirements or having an abnormally low price or cost. + + <u>Additional Information: </u> + Non-compliance with a Procurement Document requirements include exclusion grounds, + selection criteria and submission deadline, etc. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:ElementConfidentialityDescriptionepo:hasInstanceReferenceThe URI of a given class that is being referred to.xsd:anyURI [1..1]
org:Organization
cpov:ContactPoint
epo:hasInternetAddressThe main web page used by the instance of the concept. + + WG Approval 01/06/2023 + The main web page used by the instance of the concept. + + WG Approval 01/06/2023 + + xsd:anyURI [0..*]
xsd:anyURI [0..1]
epo:DirectAwardTermepo:hasJustificationAn explanation about the reasons for using the concept. + WG Approval 5/11/2019 + rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasLateSubmissionInformationDescriptionA narrative text explaining the content of the economic operator information that + can be submitted late. + + Additional Information + This does not apply to requests for clarifications. + rdf:PlainLiteral [0..*]
epo:ProcurementObjectepo:hasLegalBasisDescriptionrdf:PlainLiteral [0..*]
epo:ContractTermepo:hasLegalFormRequirementThe legal form to be taken by a Contractor. + + Additional Information: + Generally, this is defined to cover the case where an Organisation Group is involved. + Note that the codelist provided at national level should be used.rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalFormTypeThe classification of an Organisation according to legislation. + + Additional Information: + Generally, this is defined for Tenderers who want to submit as an Organisation Group. + Note that the codelist provided at national level should be used. + rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalNameThe officially registered name of an organisation. + + WG Approval 10/01/2023rdf:PlainLiteral [0..*]
epo:Noticeepo:hasLongTitlerdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasLotAwardCombinationThe contracting authority reserves the right to award contracts combining lots or + groups of lots. + + Additional Information: + This property contains information about the Lots concerned. + This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard + Forms). + + WG approval 23/08/2022 + rdf:PlainLiteral [0..1]
org:Organizationepo:hasMainActivityDescriptionSelf-explanatory text about the Main Activity . + + Additional information: + This field is used when the Main Activity is not available in the controlled list + at-voc:main-activity-type . This is necessary in to cover data provided in the TED + Standard Forms. It shall be deprecated in the future. + + WG Approval 06/09/2022 + rdf:PlainLiteral [0..1]
epo:Procedureepo:hasMainFeatureMain features of the procedure and information about where the full rules for the + procedure can be found. + + Additional Information: + This information should be given when the procedure is not one of those mentioned + in the procurement directives. This can be the case for example for concessions, for + social and other specific services, and in case of voluntary publication of procurement + procedures below the EU procurement thresholds.rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasMaximumLotSubmissionAllowedThe total number of lots for which one Tenderer can submit Tenders. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG approval 12/12/2018 + + xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMaximumNumberOfCandidatesMaximum number of candidates to be invited for the second stage of the procedure. + + WG Approval 22/08/2019xsd:integer [0..1]
epo:ProcedureTermepo:hasMaximumNumberOfLotsToBeAwardedThe maximum number of lots for which contract(s) can be awarded to one tenderer. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG Approval 22/08/2019xsd:integer [0..1]
epo:ContractTermepo:hasMaximumNumberOfRenewalsThe maximum number of times the contract can be renewed. + + Additional Information + + By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract + (i.e. extend its duration) without a new procurement procedure. + For example, a contract may be valid for one year and the buyer may keep a possibility + to renew it (e.g. once, twice) for another three months, if he is content with the + services he received. + + PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken + from eForms. + xsd:integer [0..1]
epo:FrameworkAgreementTermepo:hasMaximumParticipantsNumberThe maximum number of participants in the framework agreement. + + Additional Information: + Maximum number of tenderers who may be awarded a contract within the framework agreement. + + The number is a positive integer. + + This corresponds in eForms to BT-113 Framework Maximum Participants Number. + + WG Approval 2019-02-05xsd:integer [0..1]
epo:SubcontractTermepo:hasMaximumShareThe maximum proportion of something to be distributed. + + Additional Information: + In the case of subcontracting the share may refer to the proportion of works, services + or supplies being subcontracted. + + WG Approval 17/09/2019 + + xsd:decimal [0..1]
epo:SubmissionStatisticalInformationepo:hasMediumTenderPerLotsTenders from medium-sized enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMinimumNumberOfCandidatesMinimum number of candidates to be invited for the second stage of the procedure. + + WG Approval 22/08/2019 xsd:integer [0..1]
epo:SubcontractTermepo:hasMinimumShareThe minimum proportion of something to be distributed. + + Additional Information: + In the case of subcontracting the share may refer to the proportion of works, services + or supplies being subcontracted. + + WG Approval 17/09/2019xsd:decimal [0..1]
epo:SubcontractTermepo:hasMinimumSubcontractorsProposedObligationThe minimum percentage of the contract value that the contractor must subcontract. + + Additional information: + This is used for the competitive procedure described in Title III of Directive 2009/81/EC. + + + WG Approval 09/11/2021xsd:decimal [0..1]
epo:ElementModificationDescriptionepo:hasModificationDescriptionAn explanatory text about this context. + + Additional Information + + This corresponds in Standard forms to Field VII.2.1 in F20 + This corresponds in eForms to BT-202 . + + WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ElementModificationDescriptionepo:hasModificationReasonDescriptionAn explanation about the reasons for using the concept. + + Additional Information + This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. + + This corresponds in eForms to BT-201 . + + WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasNationalProcedureRulesxsd:anyURI [0..*]
epo:StrategicProcurementepo:hasNonAccessibilityCriterionJustificationReason for not applying accessibility criteria. + + Additional information: + This corresponds in eForma to BT-755 Accessibility Justification. + + WG Approval 05/03/2019rdf:PlainLiteral [0..*]
epo:LotAwardDecisionepo:hasNonAwardedContractNumberThe number the contract would have had if it had been awarded. + + Additional information: + + This field is provided to support the data provided in the TED Standard Forms, and + it should be discontinued in the future. + + WG agreement: 06/09/2022 + rdf:PlainLiteral [0..1]
epo:LotAwardDecisionepo:hasNonAwardedContractTitleThe title the contract would have had if it had been awarded. + + Additional information: + + This field is provided to support the data provided in the TED Standard Forms, and + it should be discontinued in the future. + + WG agreement: 06/09/2022rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasNonEEAReceivedTendersThe amount of tenders received from economic operators in non-EEA countries. + + WG Approval 12/12/2019 15:20:36xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasNoNegotiationNecessaryThe buyer reserves the right to award the contract on the basis of the initial tenders + without any further negotiations. + + Additional information: + See Article 29(4) of Directive 2014/24/EU. + xsd:boolean [0..1]
epo:SubmissionTermepo:hasNonElectronicSubmissionDescriptionTextual explanation of how non-electronic information is to be presented. + + WG Approval 21/07/2020 + + rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasNonEUReceivedTendersThe amount of tenders received from economic operators in non-EU countries. + xsd:integer [0..1]
epo:Noticeepo:hasNoticePublicationNumberrdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasNumberOfReviewRequestsThe number of requests the buyer received to review any of its decisions.xsd:integer [1..1]
epo:SubmissionStatisticalInformationepo:hasNumberOfTenderersInvitedNumber of economic operators invited to tender. + + Additional Information + This may be used for single-stage procedures or to indicate the number of candidates + invited to tender in multi-stage procedures. + + WG Approval 01/12/2020 + + xsd:integer [0..1]
epo:Noticeepo:hasOJSIssueNumberxsd:integer [0..1]
epo:Noticeepo:hasOJSTyperdf:PlainLiteral [0..1]
epo:OpeningTermepo:hasOpeningDateTimeDate and time for the opening of tenders. + + WG Approval 12/03/2019 + + xsd:dateTime [1..1]
epo:OpeningTermepo:hasOpeningDescriptionFurther information about the opening of tenders. + + Additional Information + For example, who may participate in the opening and whether any authorization is needed. + + WG Approval 12/03/2019rdf:PlainLiteral [0..*]
epo:OpeningTermepo:hasOpeningURLThe identifier of the address of the Opening of Tenders. + WG Approval 09/11/2021xsd:anyURI [0..1]
epo:ContractTermepo:hasOptionsThe buyer reserves the right (not an obligation) for additional purchases from the + contractor (while the contract is valid).xsd:boolean [0..1]
epo:ContractTermepo:hasOptionsDescriptionThe motivation and details about additional purchases that the buyer may undertake + while the contract is valid. + + WG Approval 09/04/2019 rdf:PlainLiteral [0..*]
org:Organizationepo:hasOrganisationUnitNameThe name of a subpart of an organisation. + + Additional Information: + E.g. the relevant department of a large organisation. + + We added this attribute in case of eProcurement notices where the Buyer is actually + a part of an Organization and the rest of the properties apply to the rest of the + Organisation as well.rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasOtherCountriesReceivedTendersxsd:integer [0..1]
epo:AwardEvaluationTermepo:hasOverallCostAwardCriteriaPonderationThe weighting given to cost. + + Additional Information: + This weighting covers usually all cost criteria against price or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallPriceAwardCriteriaPonderationThe weighting given to price. + + Additional Information: + This weighting covers usually all price criteria against cost or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallQualityAwardCriteriaPonderationThe weighting given to quality. + + Additional Information: + This weighting covers usually all quality criteria against price or cost criteria.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasParticipationPaymentDetails on payments to participants + WG Approval 09/11/2021rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPaymentArrangementInformation about financial clauses that will govern some economic aspects of the + execution of the contract. + + Additional Information: These clauses usually refer to financial and payment provisions. + + This type of information should be structured instead of a free text in order to reuse + it an ideal world. Unfortunately this is an information that in the real life no one + is willing to provide pro-actively. + + WG Pending of discussion with eFormsrdf:PlainLiteral [0..*]
epo:ContractLotCompletionInformationepo:hasPaymentValueDiscrepancyJustificationrdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPerformanceConditionsThe particular conditions and additional information related to the execution of the + contract. + + Additional Information: + + For example, specific information about the place of performance, intermediary deliverables, + compensation for damages, intellectual property rights. + + WG approval 15-01-2019rdf:PlainLiteral [0..*]
epo:ContractTermepo:hasPlaceOfPerformanceAdditionalInformationFurther details on the location of the execution of the contract. + + WG Approval 30/07/2019rdf:PlainLiteral [0..*]
epo:PublicationProvisionepo:hasPreferredPublicationDateThe date the buyer would like to have the record made publicly available. + + Additional Information: + This corresponds in eForms to BT-738 Notice Publication Date Preferred. + + WG Approval 12/05/2020xsd:date [0..1]
epo:ElementChangeDescriptionepo:hasPreviousVersionOfElementReferenceReference to the class instance in the previous version of the notice, which was changed. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. + xsd:anyURI [0..1]
epo:Prizeepo:hasPrizeRankThe position of the prize (e.g. first place, second place) in a design contest list + of prizes. + + WG Approval 29/08/2019 + xsd:integer [0..1]
epo:ElementChangeDescriptionepo:hasProcurementDocumentChangeDateThe date and time of the change. + + Additional information: + This corresponds in eForms to BT-719 Change Procurement Documents Date + + WG Approval 5/11/2019 + xsd:date [0..1]
epo:ElementConfidentialityDescriptionepo:hasPropertyReferenceThe URI of a given attribute (property) that is being referred to.xsd:anyURI [1..1]
epo:AccessTermepo:hasPublicAccessURLWeb page where the procurement documents can be downloaded. + + Additional Information: + This corresponds in the eForms to BT-15 Documents URL. + + WG Approval 09/03/2021 + xsd:anyURI [0..1]
epo:Documentepo:hasPublicationDateDate of formal public issuance of the document. + + WG approval 20/06/2023xsd:date [0..1]
epo:QualificationCriteriaSummaryepo:hasQualificationConditionrdf:PlainLiteral [0..*]
epo:MultipleStageProcedureTermepo:hasQualificationSystemRenewalDescriptionrdf:PlainLiteral [0..1]
epo:Quantityepo:hasQuantityValueThe numeric value of the quantity, including decimals.xsd:decimal [1..1]
epo:SubmissionTermepo:hasReceiptDeadlineThe time limit for receiving submissions. + + Additional Information + This is the deadline by which the buyer must receive submissions (e.g. tenders, requests + to participate, clarifications, etc.) and is not the time at which the information + is submitted by the economic operator. + This attribute should be used for standard forms mappings. + + WG Approval 21/07/2020 + xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptExpressionDeadlineTime limit for receipt of expressions of interest. + + Pending of review by the WG + + xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptParticipationRequestDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptPreliminaryMarketConsultationDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptTenderDeadlinexsd:dateTime [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedMicroTendersThe amount of tenders received from a micro enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC.xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedParticipationRequestsThe amount of applications to participate from economic operators. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedSmallTendersTenders from small enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + + xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedTendersThe total amount of tenders received. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:Documentepo:hasReceptionDateNotes: Date when a record is acknowledged by an organisation. + + WG Approval 12/05/2020xsd:date [0..1]
epo:ProcurementObjectepo:hasRecurrenceDescriptionAny additional information about the recurrence of the Procurement. + + Additional Information: + For example estimated timing of the Procedure. + + This corresponds in eForms to BT-95 Recurrence Description. + + (WG approval 2019-01-16) + rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasRenewalDescriptionAny other information about the renewal(s). + + WG approval 16/04/2019 rdf:PlainLiteral [0..*]
epo:ReviewRequestepo:hasRequestDateThe date when the review request was submitted. + + Additional information: + This attribute corresponds to the BT-787 Review Date in eForms. + xsd:date [0..1]
epo:ContractTermepo:hasReservedExecutionThe execution of the contract is restricted to the framework of sheltered employment + programmes. + + Additional information: + This property corresponds in eForms to BT-736 + + WG Approval 12/09/2019 + + The codelist to be used is at-voc:applicability which is available at http://publications.europa.eu/resource/dataset/applicability + xsd:boolean [0..1]
epo:AccessTermepo:hasRestrictedAccessURLThe internet address with information on accessing the restricted (part of the) procurement + document. + + Additional Information: + This corresponds in eForms to BT-615 Documents Restricted URL. + xsd:anyURI [0..1]
epo:ReviewIrregularitySummaryepo:hasReviewIrregularityCountThe number of requests for a given irregularity. + + Additional information: + This attribute corresponds in eForms to BT-635 Buyer Review Requests Count.xsd:integer [1..1]
epo:ReviewObjectepo:hasReviewURLThe internet address of the documents concerning the review instance. + + Additional information: + This attribute corresponds in eForms to BT-794 Review URL. + xsd:anyURI [0..1]
adms:Identifierepo:hasSchemeThe name of the identification scheme.rdf:PlainLiteral [0..*]
adms:Identifierepo:hasSchemeVersionThe version of the identification scheme.rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:hasSelectionCriteriaStatedInProcurementDocumentsxsd:boolean [0..1]
epo:ProfessionalSuitabilitySummaryepo:hasServiceReservedToParticularProfessionxsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasSMEReceivedTendersThe amount of tenders received from micro, small and medium-sized enterprises. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. + + WG Approval 05/03/2020 + xsd:integer [0..1]
epo:StrategicProcurementepo:hasStrategicProcurementDescriptionSelf-explanatory text about a concept. + rdf:PlainLiteral [0..*]
epo:SubcontractTermepo:hasSubcontractingInvolvedList of Subcontractors and the subject matter they cover are required. + + Additional Information: + The tenderer will ned to supply this information in the tender. + + WG Approval 28/02/2019xsd:boolean [0..1]
epo:SubcontractTermepo:hasSubcontractorsProposedAboveObligationThe maximum percentage of the contract value that the contractor must subcontract. + + Additional information: + This is used for the competitive procedure described in Title III of Directive 2009/81/EC. + + + WG Approval 09/11/2021xsd:decimal [0..1]
epo:SubcontractingEstimateepo:hasSubjectMatterDescription of the share of the contract that is to be subcontracted. + + Additional infromation: + This can be an aggregate of several subcontracts. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasSubmissionURL + Additional Information: + This corresponds to the eForms BT-18 Submission URL. + + This corresponds in eForms to BT-509 Organisation eDelivery Gateway.xsd:anyURI [0..*]
epo:MultipleStageProcedureTermepo:hasSuccessiveReductionThe number of solutions or tenders will be reduced in iterative evaluations for multiple + staged procedures. + + Additional information: + This refers to multiple-stage procedures (included two-stage procedures, at least). + Open Procedures can be seen as one-stage procedures. + WG Approval 22/08/2019 xsd:boolean [0..1]
cccev:Constraintepo:hasThresholdValueThe cut-off level for a given concept. + + Additional Information: + This value is given as e.g. a minimum score, a maximum number of tenders with the + highest score passing (see codelist at-voc:number-threshold).xsd:decimal [1..1]
epo:ReviewRequestSummaryepo:hasTotalNumberOfComplainantsThe number of economic operators that requested the buyer to review any of its decisions + (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive + 89/665/EEC and Directive 92/13/EEC. + + Additional information: + This attribute corresponds in eForms to BT-712 Buyer Review Complainants + + WG Approval 11/04/2019xsd:integer [0..1]
epo:GreenProcurementepo:hasTotalVehiclesThe number of all vehicles (regardless of whether clean or not) that have either been + purchased, leased, rented, hired-purchased or their use has been contractually committed + to for the provision of a purchased service. + + Additional Information + + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:Quantityepo:hasUnitDescriptionA narrative explanation defining the units of items being counted + + Additional information: This could be for example individual items or pack or two. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasUnverifiedTendersOffers received for which it has not been verified if they are admissible or inadmissible + (e.g. because award criteria have been evaluated for all tenders and admissibility + is checked only for the winning tender). + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:Fundepo:hasURLThe identifier of a resource. + + Additional Information + + For example: + + 1. The URL of the system from where to access the procurement documents; + 2. The URL of the system for the submission of tender documents; + 3. The URL of the system from where to download a tool to communicate with the Buyer; + 4. The URL of the system used by a Technique to allow Economic Operators to exchange + information with the Buyer (e.g. eAuction and DPS Systems) + 5. The URL of the system used to exchange information between Buyer and EO for questions + and clarifications; + + WG Approval 30/09/2019xsd:anyURI [0..1]
epo:Documentepo:hasVersionA number that identifies a specific state of a document. + + WG approval: 18/11/2021 + rdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasWithdrawalDateThe date and time when the request for review was withdrawn. + + Additional information: + This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date.xsd:date [0..1]
epo:ReviewRequestepo:hasWithdrawalReasonThe explanation for withdrawing the request for review. + + Additional information: + This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasonsrdf:PlainLiteral [0..1]
epo:GreenProcurementepo:hasZeroEmissionVehiclesThe number of all zero-emission heavy-duty vehicles that have either been purchased, + leased, rented, hired-purchased or their use has been contractually committed to for + the provision of a purchased service. + + Additional Information + + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:ProcurementCriteriaSummaryepo:indicatesPerformingStaffInformationRequirementxsd:boolean [0..1]
epo:Procedureepo:isAcceleratedStatement about the fact that the procedure will be reduced due to a state of urgency. + + Additional Information + + This modifies the time limit for the receipt of requests to participate or the receipt + of tenders. + + WG Approval 20/08/2019 + xsd:boolean [0..1]
epo:SubmissionTermepo:isAdvancedElectronicSignatureRequiredAdvanced or qualified electronic signature or seal (as defined in Regulation (EU) + No 910/2014) is required. + + + + The submitted information is required to be signed electronically. + + Additional Information: + + Signature can be defined as "data in electronic form which is attached to or logically + associated with other data in electronic form and which is used by the signatory to + sign. + For more details on the meaning and uses of electronic signature you may consult different + authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 + on electronic identification and trust services for electronic transactions in the + internal market. + + WG Approval 21/07/2020 + xsd:boolean [0..1]
epo:ProcedureTermepo:isAwardedByCPBProcedure is awarded by a Central Purchasing Body. + + xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isCompetitionTerminatedNo further contracts will be awarded in this procedure. + + Additional Information: + This can be instantiated in the post award phase. + + PIN for Competition needs to be signaled. This field can be used even if no contracts + are awarded in the contract award notice. + + This corresponds in eForms to BT-756 PIN Competition Termination.xsd:boolean [0..1]
epo:Buyerepo:isContractingEntityRole of entities, which: + + (a) are contracting authorities or public undertakings and which pursue one of the + activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. + + (b) when they are not contracting authorities or public undertakings, have as one + of their activities any of the activities referred to in Articles 8 to 14, or any + combination thereof and operate on the basis of special or exclusive rights granted + by a competent authority of a Member State. + + Additional Information + + The indicator is needed in order to discriminate between those contracts where the + Contracting Entity acts as a Contracting Authority undergoing the limits and the rules + of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed + constraints. + For example, the Contracting Entities have different thresholds for the application + of Directive 24 if compared with Contracting Authorities. + + WG Approval 28/04/2020 + xsd:boolean [0..1]
epo:ProcurementObjectepo:isCoveredByGPASpecifies whether the Agreement on Government Procurement (GPA) applies. + + Additional information: + The GPA aims to establish a multilateral framework of balanced rights and obligations + relating to public contracts with a view to achieving the liberalization and expansion + of world trade. + + This corresponds in the e Forms to BT-115 GPA Coverage. + + WG Approval 15/10/2019 + + xsd:boolean [0..1]
epo:Procedureepo:isDesignContestA competition which enables the buyer to acquire a plan or design via a jury. + + Additional information: + Design contests have traditionally mostly been used in the fields of town and country + planning, architecture and engineering or data processing, other purposes, such as + to obtain plans for financial engineering + + The contest may include or not the award of prizes; + + WG approval 04-02-2021 xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isDPSTerminatedEnd of the Dynamic Purchase System (DPS). + + Additional Information: This property can be used in the contract award notice even + if no contracts are awarded. + + WG Approval 22/11/2019 + xsd:boolean [0..1]
epo:Noticeepo:isEUInstitutionxsd:boolean [0..1]
epo:SubmissionTermepo:isGuaranteeRequiredThe submitted information must include a financial commitment to be used in case of + default. + + Additional Information: + See the additional information provided in the definition of the 'Guarantee Description' + element. + + WG Approval 21/07/20 + + xsd:boolean [0..1]
epo:Procedureepo:isJointProcurementMultiple buyers procure together within the same procedure. + + Addition Information: + In case the joint procurement involves buyers from different countries, the national + law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:isJuryDecisionBindingIndicates whether the procuring entity is bound to apply the decision of the jury.xsd:boolean [0..1]
epo:Businessepo:isListedCompanyPublic companies listed on a stock exchange and subject to disclosure requirements + (either by stock exchange + rules or through law or enforceable means), which impose requirements to ensure adequate + transparency of + beneficial ownership. + + <u>Additional Information:</u> + + In eForms this indicator is used when the nationality of beneficial owner is not provided + because the Economic Operator is registered in a regulated market that is subject + to disclosure requirements consistent with Union law or subject to equivalent international + standards which ensure adequate transparency of ownership information. + + WG Approval 21/11/2019xsd:boolean [0..1]
epo:SubmissionTermepo:isMultipleTenderSubmissionAllowedTenderers may submit more than one competing tenders. + + WG Approval 10/10/2019 + + xsd:boolean [0..1]
epo:NonDisclosureAgreementTermepo:isNonDisclosureAgreementRequiredxsd:boolean [0..1]
epo:ProcedureTermepo:isOneLotOnlyAllowedIndicates whether tenders may be submitted for only one Lot. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG approval 23/08/2022 + + xsd:boolean [0..1]
epo:ElementChangeDescriptionepo:isProcurementDocumentChangedOne or more procurement documents have been changed. + + Additional information: + This corresponds in eForms to BT-718 Change Procurement Documents + + WG Approval 05/11/2019xsd:boolean [0..1]
epo:AccessTermepo:isProcurementDocumentRestrictedThe access to certain procurement documents is restricted. + + Additional Information: + This corresponds in eForms to BT-14 Documents Restricted. + + WG Approval 10/10/2019xsd:boolean [0..1]
epo:ProcurementObjectepo:isRecurrentThe Procurement being notified is likely to be included in another procedure in the + foreseeable future. + + Additional Information: + + For example, a regularly re-tendered municipal service. This does not include awarding + multiple contracts within a single qualification system, framework agreement, or a + dynamic purchasing system. + + This corresponds in eForms to BT-94 Recurrence. + + WG Approval 12/05/2020 + xsd:boolean [0..1]
epo:ContractTermepo:isRenewalIndicatorIndicates whether the contract is subject to a renewal clause. + WG Approval 09/11/2021xsd:boolean [0..1]
epo:SecurityClearanceTermepo:isSecurityClearanceRequiredxsd:boolean [0..1]
epo:ProcurementObjectepo:isSMESuitableThe Lot is suitable for small and medium enterprises (SMEs). + + Additional Information + + This allows the buyer to make emphasis on the fact that the procedure has been designed + having SMEs in mind. This indicator is also to be reflected in the selection criteria. + + For example, number of employees and turnover are applicable to the definition of + an SME. + + WG Approval 15/10/2019 + xsd:boolean [0..1]
epo:ProcedureTermepo:isSubmissionForAllLotsAllowedIndicates whether tenders may be submitted for all Lots. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms) + + WG approval 23/08/2022 + xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isToBeRelaunchedIndicator of whether the procurement object is to be relaunched. + + Additional information: + This can be instantiated in the post award phase. + + This corresponds in eForms to BT-634 Procurement Relaunch. + + WG Approval: 18/01/2022 + xsd:boolean [0..1]
epo:SelectionCriterionepo:isUsedForCandidateRestrictionThe criterion will be used to select the candidates to be invited for the second stage + of a multistage procedure. + + Additional Information: + This property is only used if a maximum number of candidates was foreseen in the procedure. + This corresponds in eForms to BT-40 Selection Criteria Second Stage Invitexsd:boolean [0..1]
epo:ProcurementObjectepo:isUsingEUFundsThe procurement foresees funding by the Union. + + Additional Information: + The funding may cover the whole procurement or part of the procurement. + + For example the European Structural and Investment Funds or grants awarded by the + European Union. + + xsd:boolean [0..1]
epo:Tenderepo:isVariantAlternative solution to fulfil the buyer's needs as opposed to solutions indicated + in the procurement documents. + + Additional Information: + + The permission to offer variants is only allowed if specified in a Contract Notice + or a Prior Information Notice that used as a means for calling for a competition. + The buyer lays out minimum requirements in the procurement documents that must be + respected by tenderers submitting variants. + + WG Approval 29/05/2019 + + xsd:boolean [0..1]
epo:ReviewRequestepo:isWithdrawnThe review request was withdrawn. + + Additional information: + This attribute corresponds in eForms to BT-796 Review Request Withdrawn.xsd:boolean [0..1]
cpv:Personfoaf:familyNameThe hereditary surname of a family. + rdf:langString [0..*]
cpv:Personfoaf:givenNameThe name(s) that identify the Person within a family with a common surname. + rdf:langString [0..*]
cpv:Personfoaf:nameThe complete name of the Person as one string.rdf:langString [0..*]
locn:Addresslocn:addressAreaThe name or names of a geographic area or locality that groups a number of addressable + objects for addressing purposes, without being an administrative unit. + + Additional Information: + This would typically be part of a city, a neighbourhood or village, e.g. Montmartre.rdf:langString [0..1]
locn:Addresslocn:adminUnitL1The name or names of a unit of administration related to the exercise of jurisdictional + rights, for local, regional and national governance. Level 1 refers to the uppermost + administrative unit for the address, almost always a country. + + Additional Information: + Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, + country names should be provided in a consistent manner to reduce ambiguity. For example, + either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing + the two. The Country controlled vocabulary from the Publications Office can be reused + for this.rdf:langString [0..1]
locn:Addresslocn:adminUnitL2The name or names of a unit of administration related to the exercise of jurisdictional + rights, for local, regional and national governance. Level 2 refers to the region + of the address, usually a county, state or other such area that typically encompasses + several localities. + + Additional Information: + Some recommended codelists from the EU Publications Office include: Administrative + Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement + of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" + in the ATU controlled vocabulary. + rdf:langString [0..1]
locn:Addresslocn:fullAddressThe complete address written as a formatted string. + + Additional Information: + Use of this property is recommended as it will not suffer any misunderstandings that + might arise through the breaking up of an address into its component parts. This property + is analogous to vCard's label property but with two important differences: (1) formatting + is not assumed so that, unlike vCard label, it may not be suitable to print this on + an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress + property has no such restriction. An example of a full address is "Champ de Mars, + 5 Avenue Anatole France, 75007 Paris, France".rdf:langString [0..1]
dct:Locationlocn:geographicNameA textual description for a Location. + + Additional Information: + The INSPIRE Data Specification on Geographical Names provides a detailed model for + describing a 'named place', including methods for providing multiple names in multiple + scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, + the concept of a geographic name used here is consistent. + + A geographic name is a proper noun applied to a spatial object. Taking the example + used in the INSPIRE document (page 15), the following are all valid geographic names + for the Greek capital: + + - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) + - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) + - "Athens"@en (the English language exonym) + INSPIRE has a detailed (XML-based) method of providing metadata about a geographic + name and in XML-data sets that may be the most appropriate method to follow. When + using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical + data (the use case for INSPIRE), the Code datatype or a simple language identifier + may be used to provide such metadata. + + The country codes defined in ISO 3166 may be used as geographic names and these are + generally preferred over either the long form or short form of a country's name (as + they are less error prone). The Publications Office of the European Union recommends + the use of ISO 3166-1 codes for countries in all cases except two: + + - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; + - use 'EL' in preference to the ISO 3166 code GR for Greece. + Where a country has changed its name or no longer exists (such as Czechoslovakia, + Yugoslavia etc.) use the ISO 3166-3 code.rdf:langString [0..1]
locn:Addresslocn:locatorDesignatorA number or a sequence of characters which allows a user or an application to interpret, + parse and format the locator within the relevant scope. A locator may include more + locator designators. + + Additional Information: + In simpler terms, this is the building number, apartment number, etc. For an address + such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17".rdf:PlainLiteral [0..1]
locn:Addresslocn:locatorNameProper noun(s) applied to the real world entity identified by the locator. + + Additional Information: + The locator name could be the name of the property or complex, of the building or + part of the building, or it could be the name of a room inside a building. + + The key difference between a locator and a locator name is that the latter is a proper + name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting + room within the European Commission headquarters for which locator name is more appropriate + than locator.rdf:langString [0..1]
locn:Addresslocn:postCodeThe post/zip code of an address. (INSPIRE's definition is "A code created and maintained + for postal purposes to identify a subdivision of addresses and postal delivery points.") + + Additional Information: + Post codes are common elements in many countries' postal address systems. One of the + many post codes of Paris is for example "75000".rdf:PlainLiteral [0..*]
locn:Addresslocn:postNameThe key postal division of the address, usually the city. (INSPIRE's definition is + "One or more names created and maintained for postal purposes to identify a subdivision + of addresses and postal delivery points.) For example, "Paris".rdf:langString [0..*]
locn:Addresslocn:thoroughfareAn address component that represents the name or names of a passage or way through + from one location to another. A thoroughfare is not necessarily a road, it might be + a waterway or some other feature. + + Additional Information: + For example, "Avenue des Champs-&#201;lys&#233;es".rdf:langString [0..*]
cpv:Personperson:birthNameFamily name of the Person given upon their birth. + WG Approval 09/11/2021rdf:langString [0..*]
cpv:Personperson:patronymicNameName based on the given name of the Person's father. + WG Approval 09/11/2021rdf:langString [0..*]
adms:Identifierskos:notationThe literal identifying an entity, like a person or an object.rdf:PlainLiteral [1..1]
cccev:InformationConcept
cccev:Requirement
skos:prefLabelThe preferred lexical label for a resource, in a given language. + + WG approval 30/05/2023 + + The preferred lexical label for a resource, in a given language. + + WG approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
epo:SpecificDurationtime:numericDurationValue of a temporal extent expressed as a number.xsd:decimal [1..1]
+

Predicates (object properties) and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Predicate nameDefinitionDomain, Range and Cardinality
adms:identifierA unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 + + A unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 A unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 + Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class.epo:Project -> adms:Identifier [0..1]
epo:LotGroup -> adms:Identifier [0..1]
epo:ProcurementElement -> adms:Identifier [1]
foaf:Agent -> adms:Identifier [0..*]
dct:Location -> adms:Identifier [0..1]
cccev:InformationConcept -> adms:Identifier [0..1]
epo:Document -> adms:Identifier [0..*]
epo:Fund -> adms:Identifier [0..1]
epo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:TransportEquipment (external) -> adms:Identifier [0..1]
epo-ful:ShipmentStage (external) -> adms:Identifier [0..1]
epo-ful:TransportEquipmentSeal (external) -> adms:Identifier [0..1]
epo-ful:ShipmentInformation (external) -> adms:Identifier [0..1]
epo-cat:Line (external) -> adms:Identifier [0..1]
epo-ful:AbstractContainer (external) -> adms:Identifier [0..1]
cccev:confidentialityLevelTypeSecurity classification assigned to an Evidence e.g. classified, sensitive, public. + + Additional Information: + + Classifications should be defined by an organisation/country as an outcome of a security + assessment. + cccev:Evidence -> at-voc:confidentiality-level [0..1]
cccev:constrainsInformation Concept about which a Constraint expresses a limitation. + + Additional Information: + Information Concepts are tools to make Requirements more machine processable: they + allow to provide more detail about a Requirement. This way, Constraints can be made + very precise, namely the limit that must be achieved, is a limit on the value for + the associated Information Concept. For example, the Information Concept would be + the age of a person and the Constraint would be the required age in the context of + a specific evaluation.cccev:Constraint -> cccev:InformationConcept [0..*]
cccev:hasRequirementA more specific Requirement that is part of the Requirement.cccev:Requirement -> cccev:Requirement [0..*]
cccev:supportsConceptInformation Concept providing facts found/inferred from the Evidence. + + Additional Information: + Examples of Information Concepts are values found explictly in the evidence such as + a birth date or information derived from the Evidence such as "I am older that 18 + years" or "this is a FairTrade product".cccev:Evidence -> cccev:InformationConcept [0..*]
cccev:supportsRequirementRequirement for which the Evidence provides proof.cccev:Evidence -> cccev:Requirement [0..*]
cv:addressAssociates any Resource with the corresponding Address. + + Additional Information: + Asserting the address relationship implies that the Resource has an Address. org:Organization -> locn:Address [0..*]
cpov:ContactPoint -> locn:Address [0..1]
cv:registeredAddressThe registered address relationship links a Resource with the legally registered Address. + + Additional Information: + It is the address to which formal communications can be sent, such as the postal address. The registered address relationship links a Resource with the legally registered Address. + + Additional Information: + It is the address to which formal communications can be sent, such as the postal address. + cpv:Person -> locn:Address [0..1]
org:Organization -> locn:Address [0..1]
dct:typeCategory to which the Requirement belongs.cccev:Criterion -> at-voc:criterion [0..1]
epo:actsOnBehalfOfRepresents.epo:ProcurementServiceProvider -> epo:Buyer [1..*]
epo:announcesAwardDecision epo-not:ResultNotice (external) -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice (external) -> epo:AwardDecision [0..*]
epo:announcesCompletionOfContractepo-not:CompletionNotice (external) -> epo:Contract [1]
epo:announcesContract epo-not:DirectAwardPrenotificationNotice (external) -> epo:Contract [0..*]
epo-not:ResultNotice (external) -> epo:Contract [0..*]
epo:announcesExclusionGroundepo:ESPDRequest (external) -> epo:ExclusionGround [1]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice (external) -> epo:Lot [1..*]
epo-not:CompetitionNotice (external) -> epo:Lot [1..*]
epo:announcesLotGroup epo-not:CompetitionNotice (external) -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice (external) -> epo:LotGroup [0..*]
epo:announcesLotGroupAwardInformation epo-not:DirectAwardPrenotificationNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. + + Additional Information: + For example, elements in the Contract Award Notice that should be published at a later + date. epo-not:ResultNotice (external) -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice (external) -> epo:PublicationProvision [0..*]
epo:announcesNoticeAwardInformation epo-not:DirectAwardPrenotificationNotice (external) -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice (external) -> epo:NoticeAwardInformation [0..1]
epo:announcesPlannedProcurementPartepo-not:PlanningNotice (external) -> epo:PlannedProcurementPart [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice (external) -> epo:Procedure [1]
epo-not:CompetitionNotice (external) -> epo:Procedure [1]
epo:announcesReviewObjectepo-not:CompletionNotice (external) -> epo:ReviewObject [1..*]
epo:announcesRole epo-not:DirectAwardPrenotificationNotice (external) -> epo:AgentInRole [1..*]
epo-not:ContractModificationNotice (external) -> epo:AgentInRole [0..*]
epo-not:PlanningNotice (external) -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice (external) -> epo:AgentInRole [1..*]
epo-not:CompletionNotice (external) -> epo:AgentInRole [0..*]
epo:announcesSelectionCriteriaepo:ESPDRequest (external) -> epo:SelectionCriterion [1]
epo:answersAwardCriteria epo:FinancialOffer (external) -> epo:AwardCriterion [1]
epo:TechnicalOffer (external) -> epo:AwardCriterion [1]
epo:answersExclusionGroundepo:ESPDResponse (external) -> epo:ExclusionGround [1]
epo:answersSelectionCriteriaepo:ESPDResponse (external) -> epo:SelectionCriterion [1]
epo:associatedWithThe document to which a document is associated. + + WGM 01/03/2022 + epo:Document -> epo:Document [0..*]
epo:bindsBuyerProvides legal constraint on the Buyer.epo:Contract -> epo:Buyer [0..*]
epo:bindsContractorProvides legal constraint on the Contractor.epo:Contract -> epo:Contractor [0..*]
epo:comprisesLotAwardDecisionIncorporates LotAwardOutcome.epo:AwardDecision -> epo:LotAwardDecision [0..*]
epo:comprisesMiniCompetitionAwardDecisionepo:AwardDecision -> epo:MiniCompetitionAwardDecision [0..*]
epo:comprisesTenderIncorporates Tender.epo:TenderGroup -> epo:Tender [1..*]
epo:comprisesTenderAwardOutcomeIncorporates TenderAwardOutcome.epo:AwardDecision -> epo:TenderAwardOutcome [0..*]
epo:concernsLotRelates to Lot. Relates to Lot.epo:ProcurementProcessInformation -> epo:Lot [0..1]
epo:LotAwardDecision -> epo:Lot [1]
epo:concernsMiniCompetitionepo:MiniCompetitionAwardDecision -> epo:MiniCompetition [0..1]
epo:concernsProcedureRelates to Procedure.epo:ProcurementProcessInformation -> epo:Procedure [0..1]
epo:concernsReviewSummaryForLotRelates to Lot review summary. + + Additional information: + This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier.epo:ReviewRequestSummary -> epo:Lot [1]
epo:concernsTenderepo:TenderAwardOutcome -> epo:Tender [1]
epo:conformsToLegalBasisThe Notice was designed in accordance with the given legal basis. + + Additional Information: + This Notice can be used for Procedures which do not have the same legal basis. + This holds for standard forms.epo:Notice -> at-voc:legal-basis [0..1]
epo:conformsToSpecificLegalBasisepo:Notice -> at-voc:legal-basis [0..1]
epo:containsCandidateepo:SelectedCandidateList -> epo:Candidate [0..*]
epo:containsModificationsOf + + Additional information + This relation shall be used between Instances of the SAME type/class. + + The "modifying-instance" can be minimally instantiated, carrying the fields/information + that override the fields in the "modified-instance". + + This means that the "modifying-instance" (is under-specified) and might violate minimal + cardinality restrictions in case they are checked. But the purpose of such an instance + is not to be used as a full instance. + owl:Thing -> owl:Thing [0..1]
epo:contextualisedByThe place of the AgentInRole in the procurement is expressed by a ProcurementObject.epo:AgentInRole -> epo:ProcurementObject [0..*]
epo:definesBudgetProviderRelation indicating a ProcedureTerm has a BudgetProvider.epo:ProcedureTerm -> epo:BudgetProvider [0..1]
epo:definesCatalogueProviderRelation indicating an AccessTerm has a CatalogueProvider.epo:AccessTerm -> epo:CatalogueProvider [0..*]
epo:definesCatalogueReceiverRelation indicating an AccessTerm has a CatalogueReceiver.epo:AccessTerm -> epo:CatalogueReceiver [0..*]
epo:definesContractDurationRelation indicating a ContractTerm has a Duration.epo:ContractTerm -> epo:Duration [0..1]
epo:definesContractPeriodRelation indicating a ContractTerm has a Period.epo:ContractTerm -> epo:Period [0..1]
epo:definesInformationProviderRelation indicating a ProcedureTerm has an information provider.epo:ProcedureTerm -> epo:AuxiliaryParty [0..*]
epo:definesLotGroupRelation indicating a ProcedureTerm has a LotGroup.epo:ProcedureTerm -> epo:LotGroup [0..*]
epo:definesMediatorRelation indicating a ProcedureTerm has a Mediator.epo:ProcedureTerm -> epo:Mediator [0..1]
epo:definesOfflineAccessProviderRelation indicating an AccessTerm has an OfflineAccessProvider.epo:AccessTerm -> epo:OfflineAccessProvider [0..1]
epo:definesOpeningPlaceThe place where the tenders will be publicly opened. + + WG Approval 10-10-2019epo:OpeningTerm -> locn:Address [0..1]
epo:definesParticipationRequestProcessorRelation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor.epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor [0..1]
epo:definesParticipationRequestReceiverRelation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver.epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver [0..1]
epo:definesPaymentExecutorRelation indicating a ContractTerm has a PaymentExecutor.epo:ContractTerm -> epo:PaymentExecutor [0..1]
epo:definesPlaceOfPerformanceRelation indicating the place of performance of a Contract. + + WG approval 21/03/2023epo:ContractTerm -> dct:Location [0..*]
epo:definesPrizeRelation indicating a DesignContestRegimeTerm has a Prize.epo:DesignContestRegimeTerm -> epo:Prize [0..*]
epo:definesProcurementProcedureInformationProviderRelation indicating an AccessTerm has a ProcurementProcedureInformationProvider.epo:AccessTerm -> epo:ProcurementProcedureInformationProvider [0..1]
epo:definesSubcontractingTermRelation indicating a ContractTerm has a SubcontractingTerm.Relation indicating a + term has a subterm.epo:ContractTerm -> epo:SubcontractTerm [0..1]
epo:definesTenderProcessorRelation indicating a SubmissionTerm has a TenderProcessor.epo:SubmissionTerm -> epo:TenderProcessor [0..1]
epo:definesTenderReceiverRelation indicating a SubmissionTerm has a TenderReceiver.epo:SubmissionTerm -> epo:TenderReceiver [0..1]
epo:delegatesAncillaryActivitiesToEntrusts ancillary purchasing activities to ProcurementServiceProvider. + + Additional Information: + Directive 2014/24/EU describes ancillary purchasing activities as activities consisting + in the provision of support to purchasing activities, in particular in the following + forms: + + (a) technical infrastructure enabling contracting authorities to award public contracts + or to conclude framework agreements for works, supplies or services; + + (b) advice on the conduct or design of public procurement procedures; + + (c) preparation and management of procurement procedures on behalf and for the account + of the contracting authority concerned;epo:Buyer -> epo:ProcurementServiceProvider [0..*]
epo:describesContractModificationepo-not:ContractModificationNotice (external) -> epo:ContractModification [0..*]
epo:describesLotCompletionepo:ContractLotCompletionInformation -> epo:Lot [1]
epo:describesLotGroupepo:LotGroupAwardInformation -> epo:LotGroup [1]
epo:describesNoticeepo:NoticeDescription -> epo:Notice [1]
epo:describesResultNotice epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice (external) [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice (external) [0..1]
epo:distributesOfferepo:OfferIssuer -> epo:Offer [0..*]
epo:exposesChannelepo:AgentInRole -> cv:Channel [0..*]
epo:exposesInvoiceeChannelepo:Buyer -> cv:Channel [0..*]
epo:followsRulesSetByepo:MiniCompetition -> epo:FrameworkAgreement [0..1]
epo:foreseesConcession epo:ProcurementObject -> epo:ConcessionEstimate [0..1]
epo:Tender -> epo:ConcessionEstimate [0..1]
epo:foreseesContractSpecificTermepo:ProcurementObject -> epo:ContractSpecificTerm [0..*]
epo:foreseesProcurementObjectRelation indicating the instance of a Procurement Object that is planned. + + Additional Information: + The properties of the Procurement Object that is foreseen should be read as foreseen + properties. + For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. + For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy.epo:PlannedProcurementPart -> epo:ProcurementObject [0..1]
epo:foreseesSubcontractingepo:Tender -> epo:SubcontractingEstimate [0..*]
epo:foreseesTechniqueepo:PlannedProcurementPart -> epo:Technique [0..*]
epo:fulfillsRequirementThe requirement to which the concept meets. + WG Approval 09/11/2021 + + The requirement to which the concept meets. + WG Approval 09/11/2021 + + The requirement to which the concept meets. + WG Approval 09/11/2021 + + epo:GreenProcurement -> at-voc:environmental-impact [1..*]
epo:InnovativeProcurement -> at-voc:innovative-acquisition [1..*]
epo:SocialProcurement -> at-voc:social-objective [1..*]
epo:fulfillsStrategicProcurementepo:ProcurementObject -> epo:StrategicProcurement [0..*]
epo:hasAdditionalClassificationepo:Purpose -> at-voc:cpv [0..*]
epo:hasAdditionalContractNatureAdditional type of acquisition taken into consideration in the contract. + + WG Approval 11/06/2020 + + epo:ContractTerm -> at-voc:contract-nature [0..*]
epo:hasAllegedIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-791 Review Irregularity Type + epo:ReviewRequest -> at-voc:irregularity-type [1..*]
epo:hasApproximateFrameworkAgreementValue epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasAwardCriterionTypeCategory of award criterion. + + epo:AwardCriterion -> at-voc:award-criterion-type [0..1]
epo:hasAwardedEstimatedValueThe estimated value that can be spent as provided by the Award Decision. + + <u>Additional Information</u>: + This property is used for framework agreements and dynamic purchasing systems. + Different cases of awarded values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + + WG Approval 12/12/2019 + + epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardedValueThe value of the procurement provided by the Award Decision. + + Additional Information: + Different cases of awarded values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + + In the case of framework agreements and dynamic purchasing systems this refers to + the maximum awarded value. + + WG Approval 10/12/2019epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardStatusIndicates whether the lot is awarded, not awarded or still open. + WG Approval 03/12/2019 + + epo:AwardDecision -> at-voc:winner-selection-status [0..1]
epo:hasBargainPriceThe value of procured supplies that have used a particularly advantageous opportunity + available for a very short time at a value considerably lower than normal market prices. + + WG approval 23/05/2023epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasBatchIDThe identifier assigned to a specific batch of the produced Item. + WG Approval 16/05/2023 + epo-cat:Batch (external) -> adms:Identifier [0..1]
epo:hasBeneficialOwnerA role of any natural person(s) who ultimately owns or controls the organisation or + on whose behalf a transaction or activity is being conducted. + Additional Information: + This role is defined in the directive EU 2015/849 and it's beyond the scope for public + eProcurement domain. + WG approval 14/09/2021epo:Business -> cpv:Person [0..*]
epo:hasBroadPlaceOfPerformanceGeopolitical zone where the contract can be executed. + + Additional Information + + Used for setting restrictions that cannot be established with one country code or + a geographical zone identifier (like NUTS), because they have a broader scope (geographical, + economic, political, other). + epo:ContractTerm -> at-voc:other-place-service [0..1]
epo:hasBusinessSizeThe category of the business depending on number of employees and turnover. + + Additional information: + + See Commission Recommendation of 6 May 2003 concerning the definition of micro, small + and medium-sized enterprises. + + WG Approval 28/05/2020 + + epo:Business -> at-voc:economic-operator-size [0..1]
epo:hasBuyerItemIDThis refers to the identifier for the specific instance of the produced concept. + WG Approval 16/05/2023 + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasBuyerLegalTypeA category that indicates the right of an Organisation to play the role of a buyer. + + Additional Information: + The category also effects the rules that the buyer has to abide to within the public + procurement procedure. + WG 07/09/2021 + + org:Organization -> at-voc:buyer-legal-type [0..1]
epo:hasCandidateListepo:DynamicPurchasingSystem -> epo:SelectedCandidateList [0..*]
epo:hasCertificationRelation to the proof of conformance. + + WG approval 30/05/2023 Relation to the proof of conformance. + + WG approval 30/05/2023foaf:Person -> epo-cat:Certificate (external) [0..*]
org:Organization -> epo-cat:Certificate (external) [0..*]
epo:hasChangeJustificationCode explaining the change. + + WG Approval 5/11/2019 + The motives for the change. + + WG 5/11/2019 + + The codelist to be used is at-voc:change-corrig-justification which is available at + + http://publications.europa.eu/resource/dataset/change-corrig-justificationepo:ElementChangeDescription -> at-voc:change-corrig-justification [1]
epo:hasConcessionEstimatedValueepo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasConfirmedIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-791 Review Irregularity Typeepo:ReviewDecision -> at-voc:irregularity-type [0..*]
epo:hasConstraintepo:ProcurementCriterion -> cccev:Constraint [0..*]
epo:hasContactPointInRoleepo:AgentInRole -> cpov:ContactPoint [0..*]
epo:hasContractAmendmentepo:Contract -> epo:AmendedContract (external) [0..*]
epo:hasContractNatureTypeSubject of the acquisition. + + WG Approval 11/06/2020 + + epo:ContractTerm -> at-voc:contract-nature [0..1]
epo:hasContractValueepo:Contract -> epo:MonetaryValue [0..1]
epo:hasCountryCode + dct:Location -> at-voc:country [0..1]
locn:Address -> at-voc:country [0..1]
epo:hasCountryOfBirthThe country in which the Person was born. + cpv:Person -> at-voc:country [0..1]
epo:hasCurrencyThe identifier of the currency as in the standard code list used. + + epo:MonetaryValue -> at-voc:currency [0..1]
epo:hasDirectAwardJustificationList of reasons for using a procedure which allows awarding contracts directly without + publishing a notice. + + WG Approval 28/05/2020 + epo:DirectAwardTerm -> at-voc:direct-award-justification [0..1]
epo:hasDocumentRestrictionJustificationAn explanation about the reasons why some procurement documents are restricted. + + Additional Information: + This corresponds in eForms to BT-707 Documents Restricted Justification. + + WG Approval 09/03/2021 + epo:AccessTerm -> at-voc:communication-justification [0..1]
epo:hasDocumentStatushttps://test-docs.peppol.eu/logistics/transport-execution/codelist/DocumentStatusCode/epo:Document -> at-voc-new:document-status (external) [0..1]
epo:hasDocumentType + + https://docs.peppol.eu/poacc/upgrade-3/2022-Q4/codelist/UNCL1001_T01/epo:Document -> at-voc-new:document-type (external) [0..1]
epo:hasDPSScopeExplanation as to whether a dps is used and by whom. + + Additional Information: + This corresponds in eForms to BT-766 Dynamic Purchasing System. + WG Approval 09/11/2021 + Explanation as to whether a dps is used and by whom. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usageepo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage [0..1]
epo:hasECataloguePermissionThe extent to which electronic catalogues may be used in tenders. + + WG Approval 03/10/2019 + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEInvoicingPermissionepo:ContractTerm -> at-voc:permission [0..1]
epo:hasElectronicDigestepo:Document -> epo:Document [0..*]
epo:hasElectronicSignatureepo:Document -> epo:ElectronicSignature [0..*]
epo:hasElementChangeepo:NoticeChange -> epo:ElementChangeDescription [1..*]
epo:hasElementConfidentialityRelation indication that the publication provision applies to a given field of a document.epo:PublicationProvision -> epo:ElementConfidentialityDescription [1..*]
epo:hasElementDescriptionepo:NoticeDescription -> epo:ElementDescription [0..*]
epo:hasElementModificationepo:ContractModification -> epo:ElementModificationDescription [1..*]
epo:hasEndpointIdentifiercv:Channel -> adms:Identifier [0..*]
epo:hasEstimatedBuyerConcessionRevenueThe expected payments made by the buyer to the economic operator awarded the concession + that are not directly related to the use of the concession. + + <u>Additional Information:</u> + For example the public buyer pays a yearly fee to provide a ticketing solution to + the public. The fee the public pays for every ticket sold through the solution is + not included in this estimation but in the estimation of the user concession revenue. + + This corresponds to BT-160 in eForms. + + WG Approval 07/01/2020epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedDurationRelation indicating a Contract has an estimated Duration. + + Additional Information + + When the Lot uses a Technique the contract estimated duration applies to the Technique. + epo:Contract -> epo:Duration [0..1]
epo:hasEstimatedUserConcessionRevenueThe estimated revenue coming from the use of the concession. + + Additional Information: + Revenues are for example fees and fines. For example, the fees and fines coming from + the cars using a motorway. + + This corresponds to BT-162 in eForms. + epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedValueA forecast of the value of the procurement before competition. + + Additional Information: + Different cases of estimated values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + The forecast is calculated by the buyer and covers all revenues whether coming from + the buyer or third parties. + See for example recital (19), Article 5 of Directive 2014/24/EU and other articles + from the rest of Directives about procurement. + + In the case of framework agreements and dynamic purchasing systems this refers to + the maximum estimated value. + + This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used + for BT-157 (for LotGroup). + <b> + </b><b>WG Approval 05/12/2019</b> + + epo:ProcurementElement -> epo:MonetaryValue [0..1]
epo:hasESubmissionPermissionThe requirements as to what extent electronic submission is allowed. + + WG Approval 03/10/2019 + + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEvaluationMemberAn agent involved in an evaluation board. + WG approval 14/09/2021epo:EvaluationBoard (external) -> epo:JuryMember [1..*]
epo:hasFinancialOfferValueThe value offered by the Tenderer for a Lot. + + Additional Information: + This value is normally the one awarded for a winning Tender Lot. In case of negotiated + procedures the original financial value may be reviewed and the offer updated. + + This corresponds to BT-720 in eForms.epo:Tender -> epo:MonetaryValue [0..1]
epo:hasFixedValueTypeThe method to interpret the fixed value as pertaining to a total or unit. + + WG Approval 17/09/2019 + + epo:AwardCriterion -> at-voc:number-fixed [0..1]
epo:hasFormTypeA categorisation of the steps in which the Notice is used. + + WG Approval 12/05/2020 + + epo:Notice -> at-voc:form-type [0..1]
epo:hasFrameworkAgreementEstimatedValueThis refers to BT-660 in eForms.epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementMaximumValueepo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementTypeThe form of framework agreement used in a procurement procedure. + + Addition information: + + A concept to distinguish the different types of framework agreement, which are: + 1. Framework agreement without reopening of competition, + 2. Framework agreement with reopening of competition, or + 3. Framework agreement partly without reopening of competition. + + WG Approval 19/09/2019 + + epo:FrameworkAgreementTerm -> at-voc:framework-agreement [1]
epo:hasFundProgrammeepo:Fund -> at-voc:EU-programme [0..1]
epo:hasGroupFrameworkAgreementMaximumValueThis corresponds to BT-156 in the eForms.epo:LotGroupAwardInformation -> epo:MonetaryValue [0..1]
epo:hasHighestReceivedTenderValueAmount of the Tender with the highest value. + + Additional Information + The value must correspond to an admissible tender. For example, tenders compliant + with the procurement document requirements, not having an abnormally low price or + cost, etc. + + + WG Approval 12/12/2019 + + + epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasInternalIdentifierepo:ProcurementElement -> adms:Identifier [0..*]
epo:hasIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity + Typeepo:ReviewIrregularitySummary -> at-voc:irregularity-type [1]
epo:hasItemCountryOfOriginThe source country of the product or service. + + Additional Information: + + The country of origin can be provided by the buyer as a requirement or by the tenderer + information of the item to be provided. + + WG Approval 07/01/2020 + + The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/countryepo:Tender -> at-voc:country [0..*]
epo:hasItemStandardIDThe identifier for the instance of the concept based on a standard scheme. + + Additional information: + For example the GTIN scheme (Global Trade Item Number). + + WG Approval 24/02/2022 + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasLanguageLanguage in which the submitted information is to be expressed. + + WG Approval 21/07/2020 + + epo:SubmissionTerm -> at-voc:language [0..*]
epo:hasLateSubmissionPermissionWhether economic operator-related information can be supplemented even after the submission + deadline. + + Additional Information + This is specific to the information on the economic operator and not the actual offer. + This does not apply to the requests for clarification. + + WG Approval 21/07/2020 + epo:SubmissionTerm -> at-voc:missing-info-submission [0..1]
epo:hasLaunchFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLaunchGroupFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLegalBasisThe legal basis under which the procurement procedure takes place. + + Additional Information: + For example European Directives or Regulations, national laws etc. + The recommended code list is the example for the legal basis at the European level. + + WG 04/04/2023 + + The legal basis under which the procurement procedure takes place. + + Additional Information: + For example European Directives or Regulations, national law + + WG 09/11/2021 + + The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis + epo:ProcurementObject -> at-voc:legal-basis [0..*]
epo:hasLegalIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasLegalRegimeepo:ProcurementObject -> epo:legal-regime [0..*]
epo:hasLotReferenceepo:Contract -> epo:Lot [1..*]
epo:hasLowestReceivedTenderValueAmount of the Tender with the lowest value. + + Additional Information + The value must correspond to an admissible tender. For example, tenders compliant + with the procurement document requirements, not having an abnormally low price or + cost, etc. + + WG Approval 12/12/2019 + + epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasMainActivityThe principal sectoral area in which an organisation operates. + + Additional information: + + The activities associated with buyers are derived from the top level of the Classification + of the functions of the government (COFOG) from the United Nations Statistics Division. + + The activities associated with buyer are derived from sectors explicitly falling within + the sectoral directive (2014/25/EU Art. 8 - Art. 14). + + WG Approval 05/05/2020 + + org:Organization -> at-voc:main-activity [0..1]
epo:hasMainClassificationepo:Purpose -> at-voc:cpv [1..*]
epo:hasManufacturerIDThe manufacturer's identifier for the item. + epo-cat:Manufacturer (external) -> adms:Identifier [0..1]
epo:hasManufacturerItemIDThis refers to the general identifier for the concept as defined by the manufacturer. + + + WG Approval 16/05/2023 + + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasMaximumFrameworkAgreementAwardedValueThe maximum value which can be spent through all the framework agreements announced + in this notice, including options and renewals of contracts. + + Additional information: + + The value provided is a threshold value that implicity means that it cannot be exceeded + however it may not be reached during the execution of a contract. + + The Framework Agreements in a CAN are to be traced back and added to provide this + value. + + This corresponds to the BT-118 in eForms. + + WG Approval 03/12/2019epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasMemberepo:OrganisationGroup -> org:Organization [1..*]
epo:hasModificationJustificationExplanation of why a contract was modified. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:modification-justification which is available at + http://publications.europa.eu/resource/dataset/modification-justification + + Additional Information + + This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . + + This corresponds in eForms to BT-200. + + Explanation of why a contract was modified. + + WG Approval 09/11/2021 + + The codelist to be used is at-voc:modification-justification which is available at + http://publications.europa.eu/resource/dataset/modification-justification + + Additional Information + + This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . + + This corresponds in eForms to BT-200. + + + epo:ElementModificationDescription -> at-voc:modification-justification [1]
epo:AmendedContract (external) -> at-voc:modification-justification [1]
epo:hasNationality + cpv:Person -> at-voc:country [0..*]
epo:hasNonAwardJustificationOn hold; Enumeration. + + + epo:AwardDecision -> at-voc:non-award-justification [0..1]
epo:hasNonElectronicSubmissionJustification + Reason for not accepting electronic information. + + WG Approval 21/07/2020 + epo:SubmissionTerm -> at-voc:communication-justification [0..*]
epo:hasNonPublicationJustificationThe reason why data is not published. + WG Approval 11/06/2020 + + epo:ElementConfidentialityDescription -> at-voc:non-publication-justification [1]
epo:hasNoticeTypeepo:Notice -> at-voc:notice-type [1]
epo:hasNotificationContentTypeA categorisation of templates for sets of Procurement information to be conveyed in + Notices. + + WG Approval 12/05/2020epo:Notice -> epo:notification-phases-content-types [0..1]
epo:hasNutsCode dct:Location -> at-voc:nuts [0..1]
locn:Address -> at-voc:nuts [0..1]
epo:hasOfficialLanguageThe language(s) in which the instances of the given concepts are officially available. + These linguistic versions are equally legally valid. + + WG Approval 03/10/2019 + + epo:Document -> at-voc:language [1..*]
epo:hasPerformingStaffQualificationInformation + Additional information: + + This relation corresponds in eForms to BT-79.Explanation as to if and/or when information + of the persons to carry out the contract is to be provided. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage + epo:ProcurementCriterion -> at-voc:requirement-stage [0..*]
epo:hasPlannedDurationepo:PlannedProcurementPart -> epo:Duration [0..1]
epo:hasPlannedPeriodepo:PlannedProcurementPart -> epo:Period [0..1]
epo:hasPrimaryContactPointorg:Organization -> cpov:ContactPoint [0..*]
epo:hasPrizeValueThe monetary value of a prize, if any, for the winner (or runners-up) of the design + contest. + + Additional Information: + This corresponds to BT-644 in eForms. + + WG Approval 29/08/2019 + + epo:Prize -> epo:MonetaryValue [0..1]
epo:hasProcedureTypeIdentification of the Procedure used. + + WG Approval 09/06/2020 + epo:Procedure -> at-voc:procurement-procedure-type [1]
epo:hasProcurementClassificationepo:Contract -> at-voc:cpv [0..1]
epo:hasProcurementHighestReceivedTenderValueThe highest received tender value for the procurement. + + Additional Information: + This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementLowestReceivedTenderValueThe lowest received tender value for the procurement. + + Additional Information: + This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementScopeDividedIntoLotepo:Procedure -> epo:Lot [1..*]
epo:hasPurposeRelation indicating a procurement part has a puropse.epo:ProcurementObject -> epo:Purpose [0..1]
epo:hasQualificationSystemDurationepo:MultipleStageProcedureTerm -> epo:Duration [0..1]
epo:hasReceivedSubmissionTypeepo:SubmissionStatisticalInformation -> at-voc:received-submission-type [0..1]
epo:hasRegistrationCountryorg:Organization -> at-voc:country [0..1]
epo:hasRemedyValueAdditional information: + This relation corresponds in eForms to BT-793 Review Remedy Value.epo:ReviewDecision -> epo:MonetaryValue [0..1]
epo:hasReservedExecutionepo:ContractTerm -> at-voc:applicability [0..1]
epo:hasReservedProcurementExplanation as to whether a procurement may be reserved for the participation of certain + types of organisation. + + Additional information: + This property corresponds in eForms to the BT-71 + WG Approval 09/11/2021 + Explanation as to whether a procurement may be reserved for the participation of certain + types of organisation. + + Additional information: + This property corresponds in eForms to the BT-71 + WG Approval 09/11/2021 + epo:ParticipationCondition -> at-voc:reserved-procurement [0..*]
epo:ParticipationConditionsSummary -> at-voc:reserved-procurement [0..*]
epo:hasReviewBodyTypeepo:Reviewer -> at-voc:review-body-type [0..*]
epo:hasReviewDecisionTypeAdditional information: + This relation corresponds in eForms to BT-790 Review Decision Type.epo:ReviewDecision -> at-voc:review-decision-type [0..*]
epo:hasReviewIrregularitySummaryAdditional information: + This relation corresponds in eForms to BG-613 Buyer Review Requestsepo:ReviewRequestSummary -> epo:ReviewIrregularitySummary [0..*]
epo:hasReviewRequestFeeAdditional information: + This relation corresponds in eForms to BT-795 Review Request Fee.epo:ReviewRequest -> epo:MonetaryValue [0..1]
epo:hasSelectionCriteriaUsage + Additional Information: + This corresponds in eForms to BT-748 Selection Criteria Used.epo:SelectionCriterion -> at-voc:usage [0..1]
epo:hasSelectionCriterionTypeThe classification of the selection criteria. + + + Additional Information: + + This corresponds in eForms to BT-747 Selection Criteria Type. + + WG Approval 09/11/2021 + epo:SelectionCriterion -> at-voc:selection-criterion [0..1]
epo:hasSellerItemID The general identifier for the concept as defined by the seller. + + WG Approval 16/05/2023 + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasSerialIDThe identifier assigned to the specific instance of the produced concept. + WG Approval 16/05/2023 + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasStartDateepo:SelectedCandidateList -> epo:Period [0..1]
epo:hasSubcontractingEstimatedValueThe estimated value of a single subcontract. + + This relates to BT-553 in eForms. + + WG Approval 01/09/2020 + + epo:SubcontractingEstimate -> epo:MonetaryValue [0..1]
epo:hasSubcontractingObligationThe requirement the tender must meet with regard to subcontracting parts of the contract. + WG Approval 09/11/2021 + + epo:SubcontractTerm -> at-voc:subcontracting-obligation [0..*]
epo:hasTaxIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasTenderSubcontractingInformationThe information about subcontracting that must be indicated in the tender. + + WG Approval 10/10/2019 + + epo:SubmissionTerm -> at-voc:subcontracting-indication [0..*]
epo:hasTenderValidityPeriodThe relation indicating until when a tender instance is applicable. + epo:SubmissionTerm -> epo:Period [0..1]
epo:hasThresholdTypeThe method to interpret the threshold value as minimum or a maximum. + + WG Approval 17/09/2019 + cccev:Constraint -> at-voc:number-threshold [0..*]
epo:hasTimePeriod + + epo:Period -> at-voc:timeperiod [1..*]
epo:hasTotalAwardedValueThe awarded value of all lots announced in this notice, including options and renewals. + + + Additional information: + The values of the individual Lots awarded under a framework agreement and mentioned + in this notice are included. + + The values of the individual lots announced in a CAN are to be traced back and added + to provide this value. + + This corresponds to the BT-161 in eForms. + + WG Approval 03/12/2019 + epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasTotalQuantityThe number of units required. + + Additional Information: + The quantity needs to go along with the unit. + + + + epo:Purpose -> epo:Quantity [0..1]
epo:hasTotalValue epo:TenderGroup -> epo:MonetaryValue [1]
epo:Deliverable (external) -> epo:MonetaryValue [0..1]
epo:hasUnitCodeepo:Quantity -> at-voc:measurement-unit [1]
epo:hasUnofficialLanguageThe language translation(s) in which the instances of the given concepts are available. + These linguistic versions are not an official translation, they are provided only + for information. + + WG Approval 03/10/2019 + epo:Document -> at-voc:language [0..*]
epo:hasUsageThe codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage + epo:Technique -> at-voc:usage [0..1]
epo:hasUUIDA universally unique identifier for an instance of this document. + + WG Approval 12/05/2020epo:Document -> adms:Identifier [0..1]
epo:hasValidityPeriodThe relation indicating until when a given instance of a concept is applicable. + + WG approval 30/05/2023 + The relation indicating until when a given instance of a concept is applicable. + + WG approval 30/05/2023epo:Technique -> epo:Period [0..1]
epo-cat:Certificate (external) -> epo:Period [0..1]
epo:hasVariantPermissionThe obligation or possibility for tenderers to submit variants or not. + + Additional Information: + + Variants are alternative ways to fulfil the buyer's needs as opposed to solutions + indicated in the procurement documents. + + eForms: Whether tenderers are required, allowed or forbidden to submit tenders which + fulfil the buyer's needs differently than as proposed in the procurement documents. + + + Additional Information: + + Further conditions for submitting variant tenders are in the procurement documents. + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasWeightValueTypeNo definition. Waiting on CCCEV alignment. + + + epo:ProcurementCriterion -> at-voc:number-weight [0..1]
epo:includesAccessibilityCriterionExplanation as to whether accessibility Criterion are used or not. + WG Approval 09/11/2021 + + epo:StrategicProcurement -> at-voc:accessibility [0..*]
epo:includesTenderAdditional information: + This corresponds in eForms to BT-3202 Contract Tender Identifier. + epo:Contract -> epo:Tender [0..*]
epo:indicatesAwardToWinnerReveals the winner to whom the tender award outcome is attributed.epo:TenderAwardOutcome -> epo:Winner [0..1]
epo:indicatesInvoiceeContactPointepo:Buyer -> cpov:ContactPoint []
epo:involvesBuyerepo:Procedure -> epo:Buyer [0..*]
epo:involvesProcurementDocumentepo:AccessTerm -> epo:ProcurementDocument [1]
epo:isAppointedByepo:EvaluationBoard (external) -> epo:Buyer [1]
epo:isAssignedForEvaluationOfepo:EvaluationBoard (external) -> epo:Lot [0..*]
epo:isBasedOnImplementingRegulationIndicates under which regulation a notice is created. + + WG Acceptance 06/09/2022epo:Notice -> at-voc:legal-basis [0..1]
epo:isBeneficialOwnerOfA role of any natural person(s) who ultimately owns or controls the organisation or + on whose behalf a transaction or activity is being conducted. + Additional Information: + This role is defined in the directive EU 2015/849 and it's beyond the scope for public + eProcurement domain. + WG approval 14/09/2021epo:Business [,0..*] <- cpv:Person
epo:isCalculatedOnThe monetary amount to which the multiplier factor is applied in calculating the amount + of this allowance or charge. + + The monetary amount to which the multiplier factor is applied in calculating the amount + of this allowance or charge.epo-ord:AllowanceChargeInformation (external) -> epo:MonetaryValue [0..1]
epo-ord:TaxInformation (external) -> epo:MonetaryValue [0..1]
epo:isExecutedByProcurementServiceProviderepo:Procedure -> epo:ProcurementServiceProvider [0..1]
epo:isFundedByFunding is provided either completely or partially by a Fund. + + Additional information: + This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 + Contract EU Funds (applied per Contract lot) + Funds may change between the lot and the contract, for example in the case of an emergency + crisis, a contract may be financed by a budget that was not foreseen in the call. + + epo:ProcurementObject -> epo:Fund [0..*]
epo:isOwnedByAgentepo:System -> foaf:Agent [0..1]
epo:isResponsibilityOfBuyerThe buyer in charge of the procedure. + + Additional Information: + In case there are multiple buyers, it may be the case that one or more buyers are + in charge of the procedure. + + epo:Procedure -> epo:Buyer [0..*]
epo:isSubjectToContractSpecificTermepo:Contract -> epo:ContractSpecificTerm [0..*]
epo:isSubjectToGroupingepo:Tender -> epo:LotGroup [0..1]
epo:isSubjectToLotSpecificTermepo:Lot -> epo:LotSpecificTerm [0..*]
epo:isSubjectToProcedureSpecificTermepo:Procedure -> epo:ProcedureSpecificTerm [1..*]
epo:isSubjectToTermepo:ProcurementObject -> epo:Term [0..*]
epo:isSubmitedByRelation indicating the submission of a tender by an economic operator. + WG approval 18/05/2021epo:Tender -> epo:Tenderer [0..1]
epo:isSubmittedForLotepo:Tender -> epo:Lot [1]
epo:isSubmittedForLotGroupepo:TenderGroup -> epo:LotGroup [1]
epo:isSupportedBy epo:Tender -> epo:TechnicalOffer (external) [1]
epo:Tender -> epo:ESPDResponse (external) [1]
epo:Tender -> epo:FinancialOffer (external) [1]
epo:leadByepo:OrganisationGroup -> org:Organization [0..1]
epo:needsToBeATendererThe Winner must be a Tenderer.epo:Winner -> epo:Tenderer [0..1]
epo:needsToBeAWinnerThe Contractor must be a Winner. + epo:Contractor -> epo:Winner [0..1]
epo:ownsSystemepo:System [,0..*] <- foaf:Agent
epo:playedBy epo:AgentInRole -> foaf:Agent [1]
epo-ful:TransportMeansOperator (external) -> foaf:Person [0..1]
epo:JuryMember -> foaf:Person [0..1]
epo:providesContractTotalPaymentValueAdditional Information: + This corresponds to BT-779 in eForms. epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesContractTotalPenaltyValue + Additional Information: + This corresponds to BT-782 in eForms. + epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesRulingOnRemedyStates the measures to be taken after a review procedure.epo:ReviewDecision -> at-voc:remedy-type [0..*]
epo:refersToAwardDecision epo-not:CompletionNotice (external) -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice (external) -> epo:AwardDecision [0..*]
epo:refersToContractepo:ContractLotCompletionInformation -> epo:Contract [1]
epo:refersToContractToBeModifiedepo-not:ContractModificationNotice (external) -> epo:Contract [1]
epo:refersToLot epo:Notice -> epo:Lot [1..*]
epo-not:CompletionNotice (external) -> epo:Lot [1..*]
epo-not:ContractModificationNotice (external) -> epo:Lot [1..*]
epo-not:ResultNotice (external) -> epo:Lot [1..*]
epo:refersToLotGroup epo-not:ContractModificationNotice (external) -> epo:LotGroup [0..*]
epo-not:ResultNotice (external) -> epo:LotGroup [0..*]
epo-not:CompletionNotice (external) -> epo:LotGroup [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo:refersToNonPublishedElementepo-not:CompletionNotice (external) -> epo:PublicationProvision [0..*]
epo:refersToNoticeepo:Notice -> epo:Notice [0..1]
epo:refersToNoticeAwardInformationepo-not:CompletionNotice (external) -> epo:NoticeAwardInformation [0..1]
epo:refersToOriginalNoticeepo:ContractModification -> epo:Notice [0..1]
epo:refersToPlannedPartepo:AccessTerm -> epo:PlannedProcurementPart [0..*]
epo:refersToPreviousepo:Document -> epo:Document [0..*]
epo:refersToPreviousNotice + Additional information: + This corresponds in eForms to BT-758 Change Notice Version Identifier.epo:NoticeChange -> epo:Notice [0..1]
epo:refersToPreviousProcedureReference to a previous procedure. + + Additional Information: + In the case of Direct Award Terms, this property points to a previous Procedure justifying + the use of Direct Award without a prior publication. + + This corresponds in the eForms to BT-1252 Direct Award Justification Previous + Procedure Identifierepo:DirectAwardTerm -> epo:Procedure [0..1]
epo:refersToPreviousProcedureLotReference to one or more Lots in a previous procedure. + + Additional Information: + In the case of Direct Award Terms, this property points to a previous Procedure justifying + the use of Direct Award without a prior publication. + + This corresponds in the eForms to BT-1252 Direct Award Justification Previous + Procedure Identifier + + WG Approval 22/11/2019 14:33:55epo:DirectAwardTerm -> epo:Lot [0..*]
epo:refersToPreviousReviewAdditional information: + This relation corresponds in eForms to BT-785 "Review Previous Identifier".epo:ReviewObject -> epo:ReviewObject [0..1]
epo:refersToProcedure epo-not:ResultNotice (external) -> epo:Procedure [1]
epo-not:ContractModificationNotice (external) -> epo:Procedure [1]
epo-not:CompletionNotice (external) -> epo:Procedure [1]
epo:Notice -> epo:Procedure [1]
epo:refersToProjectepo-ord:Order (external) -> epo:Project [0..1]
epo:refersToRoleepo-not:CompletionNotice (external) -> epo:AgentInRole [0..*]
epo:requestsRemedyTypeAdditional information: + This relation corresponds in eForms to BT-792 Review Remedy Typeepo:ReviewRequest -> at-voc:remedy-type [0..*]
epo:resolvesReviewRequestepo:ReviewDecision -> epo:ReviewRequest [1]
epo:resultsFromLotAwardDecision epo:DirectContract -> epo:LotAwardDecision [0..*]
epo:FrameworkAgreement -> epo:LotAwardDecision [0..*]
epo:resultsFromMiniCompetitionAwardDecisionepo:PurchaseContract -> epo:MiniCompetitionAwardDecision [0..1]
epo:resultsInDynamicPurchasingSystemepo:DynamicPurchaseSystemTechnique -> epo:DynamicPurchasingSystem [1]
epo:setsGroupingContextForLotepo:LotGroup -> epo:Lot [1..*]
epo:signedByBuyerepo:Contract -> epo:Buyer [0..*]
epo:signedByContractorepo:Contract -> epo:Contractor [0..*]
epo:signsAwardDecisionepo:Buyer -> epo:AwardDecision [0..*]
epo:specifiesAwardCriterionepo:MiniCompetition -> epo:AwardCriterion [0..*]
epo:specifiesBuyer epo-cat:Catalogue (external) -> epo:Buyer [0..*]
epo-ord:Order (external) -> epo:Buyer [1]
epo:specifiesCatalogueProviderepo-cat:Catalogue (external) -> epo:CatalogueProvider [0..1]
epo:specifiesCatalogueReceiverepo-cat:Catalogue (external) -> epo:CatalogueReceiver [0..1]
epo:specifiesDeliverableepo:Contract -> epo:Deliverable (external) [0..*]
epo:specifiesProcurementCriteriaSummaryepo:Procedure -> epo:ProcurementCriteriaSummary [0..*]
epo:specifiesProcurementCriterion epo:Lot -> epo:ProcurementCriterion [0..*]
epo:LotGroup -> epo:ProcurementCriterion [0..*]
epo:specifiesSubcontractorsepo:Tender -> epo:Subcontractor [0..*]
epo:substantiatesExclusionGroundepo:Tenderer -> epo:ExclusionGround [0..1]
epo:summarisesInformationForAwardDecisionRelates to submission for the given competition, either at Lot level or Mini-Competition + level. + + WG approval 30/05/2023epo:SubmissionStatisticalInformation -> epo:AwardDecision [1]
epo:usesCandidateListepo:MiniCompetition -> epo:SelectedCandidateList [0..1]
epo:usesChannelepo:ProcurementElement -> cv:Channel [0..*]
epo:usesTechniqueepo:ProcurementObject -> epo:Technique [0..*]
epo-cat:hasAmountThe predetermined monetary value charged in addition to the price. + + WG approval 26/07/2022 The predetermined monetary value charged in addition to the price. + + WG approval 26/07/2022 + + epo-ord:AllowanceChargeInformation (external) -> epo:MonetaryValue [1]
epo-ord:TaxInformation (external) -> epo:MonetaryValue [0..1]
epo-cat:hasBaseQuantityThe quantity at which the net monetary value applies.epo-cat:Price (external) -> epo:Quantity [0..1]
epo-cat:hasCatalogueLineValidityepo-cat:CatalogueLine (external) -> epo:Period [0..1]
epo-cat:hasCountryOfOriginThe source country of the product or service. + + Additional Information: + + The country of origin can be provided by the buyer as a requirement or by the tenderer + information of the item to be provided. + + WG Approval 07/01/2020 + epo-cat:Item (external) -> at-voc:country [0..1]
epo-cat:hasDeliveryLocationLocation delivery area where the Item can be ordered to the given price. + epo-cat:Price (external) -> dct:Location [0..1]
epo-cat:hasExpectedDeliveryTimeThe expected amount of time between the order and delivery of an item. + + WG approval 26/07/2022 + epo-cat:Price (external) -> epo:Duration [0..1]
epo-cat:hasExternalSpecificationURI reference to external item information or specifications, e.g. web address. + epo-cat:Item (external) -> epo:Document []
epo-cat:hasMaximumOrderQuantityThe maximum number of orderable units that can be ordered according to details provided + in the catalogue line, such as price. + epo-cat:CatalogueLine (external) -> epo:Quantity [0..1]
epo-cat:hasMinimumQuantityGuaranteedForDeliveryThe minimum quantity of an item that is guaranteed by the seller to be delivered. + + epo-cat:CatalogueLine (external) -> epo:Quantity [0..1]
epo-cat:hasNetMonetaryValueThe price amount of an Item exclusive of taxes and after substracting price discounts. + epo-cat:Price (external) -> epo:MonetaryValue [1]
epo-cat:hasNetQuantityThe net quantity of the item that is contained in each consumable unit, excluding + any packaging materials. + epo-cat:Item (external) -> epo:Quantity [0..1]
epo-cat:hasOrderabableUnitFactorRateThe factor by which the base unit of the price can be converted to orderable unit. + + Additional information: + This is needed when the base price is provided different than the orderable unit. + For example, when selling paper, the price may be set per page, but the orderable + unit is a package of 500 pieces. Therefore the price needs to be converted to the + orderable unit. + + epo-cat:Price (external) -> epo:Quantity [0..1]
epo-cat:hasPriceValidityThe period of time when the Item can be ordered to the given price. + epo-cat:Price (external) -> epo:Period [1]
epo-cat:hasQualifiedValueQualified value of the property, which is defined in a classification scheme. + + Additional Information: + For example, the (0173-1#02-AAA026#007) drilling diameter of an item has value of + 12 inches. + + WG approval 28/07/2022epo-cat:ItemProperty (external) -> epo:Quantity [0..1]
epo-cat:hasQuantity epo-ord:OrderLine (external) -> epo:Quantity [1]
epo:Deliverable (external) -> epo:Quantity [0..1]
epo-cat:hasQuantityThresholdThe minimum quantity of the item that can be ordered to the given net monetary value.epo-cat:Price (external) -> epo:Quantity [0..1]
epo-cat:isSubordinatedToContractepo-cat:Catalogue (external) -> epo:Contract [0..1]
epo-ful:agreedByBuyerepo-ful:ShipmentAgreement (external) -> epo:Buyer [1..*]
epo-ful:hasAssociatedDocument epo-ful:DespatchAdvice (external) -> epo:Document [0..1]
epo-ful:DespatchLine (external) -> epo:Document [0..1]
epo-ful:hasCarrierConsignmentIDepo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:hasChargeableWeightepo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasConsigneeConsignmentIDepo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:hasConsignmentDeclaredStatisticsValueepo-ful:Consignment (external) -> epo:MonetaryValue [0..1]
epo-ful:hasConsignmentFreeOnBoardValueepo-ful:Consignment (external) -> epo:MonetaryValue [0..1]
epo-ful:hasConsignmentInvoiceValueDeclared amount of the Consignment. + + Additional Information: + + This is a logistics information needed for logistics, security measures, customs check, + etc.epo-ful:Consignment (external) -> epo:MonetaryValue [0..1]
epo-ful:hasDeclaredStatisticalValueepo-ful:GoodsItem (external) -> epo:MonetaryValue [0..*]
epo-ful:hasDespatchedQuantityQuantity despatched for delivered.epo-ful:DespatchLine (external) -> epo:Quantity [1]
epo-ful:hasEstimatedDeliveryPeriodepo-ful:ShipmentInformation (external) -> epo:Period [0..1]
epo-ful:hasFreightForwarderConsignmentIDepo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:hasGrossVolume epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasGrossWeight epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasHeightepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:hasLengthepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:hasLoadingLengthepo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasMaximumTemperatureepo-ful:TemperatureSpecification (external) -> epo:Quantity [0..1]
epo-ful:hasMinimumTemperatureepo-ful:TemperatureSpecification (external) -> epo:Quantity [0..1]
epo-ful:hasNetVolumeepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:hasNetWeight epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasOperatorLicenceIDepo-ful:TransportMeansOperator (external) -> adms:Identifier [0..1]
epo-ful:hasOutstandingQuantityepo-ful:DespatchLine (external) -> epo:Quantity [0..1]
epo-ful:hasTotalGoodsItemQuantity epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasTraceIDepo-ful:GoodsItem (external) -> adms:Identifier [0..1]
epo-ful:hasTrackingIDepo-ord:DeliveryInformation (external) -> adms:Identifier [0..1]
epo-ful:hasTransportHandlingUnitQuantityepo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasVehicleIDepo-ful:TransportMeans (external) -> adms:Identifier [1]
epo-ful:hasVehicleSegmentIDepo-ful:TransportMeans (external) -> adms:Identifier [0..1]
epo-ful:hasWidthepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:specifiesPlaceOfDespatchepo-ful:ShipmentInformation (external) -> dct:Location [0..1]
epo-not:announcesRoleepo-not:ResultNotice (external) -> epo:AgentInRole [0..*]
epo-not:refersToRoleepo-not:ResultNotice (external) -> epo:AgentInRole [1..*]
epo-ord:concernsContractepo-ord:ContractInformation (external) -> epo:Contract [1]
epo-ord:concernsOriginatorRequestepo-ord:OriginatorInformation (external) -> epo:OriginatorRequest [0..1]
epo-ord:hasAmountDueForPaymentepo-ord:Order (external) -> epo:MonetaryValue [1]
epo-ord:hasDeliveryPeriodepo-ord:DeliveryInformation (external) -> epo:Period [0..1]
epo-ord:hasPrepaidAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasRoundingAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTaxInformation epo:Tender -> epo-ord:TaxInformation (external) [0..1]
epo:Contract -> epo-ord:TaxInformation (external) [0..1]
epo-ord:hasTotalAllowanceAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTotalChargeAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTotalLineAmountepo-ord:Order (external) -> epo:MonetaryValue [1]
epo-ord:hasTotalTaxExclusiveAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTotalTaxInclusiveAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:implementsContractepo-ord:OrderResponse (external) -> epo:Contract [0..1]
epo-ord:specifiesBuyerepo-ord:OrderResponse (external) -> epo:Buyer [0..1]
epo-ord:specifiesDeliveryAgreementLocationepo-ord:DeliveryAgreement (external) -> dct:Location [0..1]
epo-ord:specifiesPlaceOfDeliveryepo-ord:DeliveryInformation (external) -> dct:Location [0..1]
locn:addressdct:Location -> locn:Address [0..1]
locn:addressIDA globally unique identifier for each instance of an Address. + + Additional Information: + The concept of adding a globally unique identifier for each instance of an address + is a crucial part of the INSPIRE data spec. A number of EU countries have already + implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. + OASIS xAL also includes an address identifier. It is the address Identifier that allows + an address to be represented in a format other than INSPIRE whilst remaining conformant + to the Core Vocabulary. + + The INSPIRE method of representing addresses is very detailed, designed primarily + for use in databases of addresses. Whilst data that is published in full conformance + with the INSPIRE data structure can be made available using the Location Core Vocabulary + the reverse is not true since the Core Vocabulary allows much greater flexibility. + + Many datasets that include address data as one piece of information about something + else are likely to have that data in simpler formats. These might be tailored to the + specific need of the dataset, follow a national norm, or make use of a standard like + vCard. + + To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable + with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location + Core Vocabulary provides the extra property of full address and makes use of INSPIRE's + addressID.locn:Address -> adms:Identifier [0..1]
locn:geographicIdentifierA URI that identifies the Location. + + Additional Information: + GeoNames.org provides stable, widely recognised identifiers for more than 10 million + geographical names that can be used as links to further information. For example, + http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately + these URIs cannot easily be automatically deduced since the URI scheme uses simple + numeric codes. Finding a GeoNames identifier for a Location is almost always a manual + process. Where such identifiers are known or can be found, however, it is recommended + that they be used. + + Where the Location Class is used to identify a country, if the geonames URI is not + known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX + where XX is the ISO 3166 two character code for the country. + + The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece + and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct + URIs for these countries are: + + - http://dbpedia.org/resource/ISO_3166-1:GR + - http://dbpedia.org/resource/ISO_3166-1:GB + even when the geographic name is given as EL or UK. + + The use of a URIs has added advantages: + + - it can be used by automated systems to look up additional data (linked data); + - a triple store may store only one copy of the URI, whereas if a string is used, + a copy of that string is always stored for each and every person in the database. + Thus, in large data sets, the saving on memory capacity and the improvement in transmission + efficiency can be substantial. + dct:Location -> adms:Identifier [0..1]
locn:geometrydct:Location -> locn:Geometry [0..1]
person:placeOfBirthThe Location where the Person was born.cpv:Person -> dct:Location [0..1]
person:placeOfDeathThe Location where the Person died.cpv:Person -> dct:Location [0..1]
time:unitTypeepo:SpecificDuration -> time:TemporalUnit [1]
+
+
+ + \ No newline at end of file diff --git a/glossary/demo_ontology_module_CM_glossary.html b/glossary/demo_ontology_module_CM_glossary.html new file mode 100644 index 0000000..d1d5fdd --- /dev/null +++ b/glossary/demo_ontology_module_CM_glossary.html @@ -0,0 +1,692 @@ + + + + + + + + + + + + + + + + Model glossary + + +
+
+
+

Table of contents

+
+
+
+

Glossary

+

Class names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameDefinition
epo-not:CANDefence-D81
epo-not:CANSocial-D25
epo-not:CANSocialNotice
epo-not:CANSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:CANStandard-D24
epo-not:CANStandardNotice
epo-not:CNDefence-D81
epo-not:CNSocial-D25
epo-not:CNSocialNotice
epo-not:CNSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:CNStandard-D24
epo-not:CNStandardNotice
epo-not:CompetitionNoticeAn announcement of the launch of a Procurement Procedure by a Procuring Entity. + + WG approval 18/05/2018 +
epo-not:CompletionNoticeAn announcement of the end of a Procurement by a Buyer.
epo-not:ConcessionAwardNotice-D23
epo-not:ConcessionNotice-D23
epo-not:ContractModificationNoticeAn announcement of the Modification Of a Contract/Concession during its term by a + Procuring Entity.
epo-not:DesignContest-D24
epo-not:DesignContest-D25
epo-not:DesignContestNotice
epo-not:DesignContestResult-D24
epo-not:DesignContestResult-D25
epo-not:DesignContestResultNotice
epo-not:DirectAwardPrenotificationNoticeNotice which sets out the Buyer's purchasing intention to award a Contract without + prior notification of Competition.
epo-not:eFormsNotice
epo-not:Modification-D23
epo-not:Modification-D24
epo-not:Modification-D25
epo-not:Notice1
epo-not:Notice10
epo-not:Notice11
epo-not:Notice12
epo-not:Notice13
epo-not:Notice14
epo-not:Notice15
epo-not:Notice16
epo-not:Notice17
epo-not:Notice18
epo-not:Notice19
epo-not:Notice2
epo-not:Notice20
epo-not:Notice21
epo-not:Notice22
epo-not:Notice23
epo-not:Notice24
epo-not:Notice25
epo-not:Notice26
epo-not:Notice27
epo-not:Notice28
epo-not:Notice29
epo-not:Notice3
epo-not:Notice30
epo-not:Notice31
epo-not:Notice32
epo-not:Notice33
epo-not:Notice34
epo-not:Notice35
epo-not:Notice36
epo-not:Notice37
epo-not:Notice38
epo-not:Notice39
epo-not:Notice4
epo-not:Notice40
epo-not:Notice5
epo-not:Notice6
epo-not:Notice7
epo-not:Notice8
epo-not:Notice9
epo-not:PIN-CFCSocial-D25
epo-not:PIN-CFCSocialNotice
epo-not:PIN-CFCSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:PIN-CFCStandard-D24
epo-not:PIN-CFCStandardNotice
epo-not:PINDefence-D81
epo-not:PINOnly-D24
epo-not:PINOnly-D25
epo-not:PINOnlyNoticePriorInformationNotice
epo-not:PINProfile-D24
epo-not:PINProfile-D25
epo-not:PINProfile-D81
epo-not:PINProfileNotice
epo-not:PIN-RTL-D24
epo-not:PIN-RTL-D25
epo-not:PINTimeLimitNotice
epo-not:PlanningNoticeNotice which sets out the Contracting Authority's purchasing intentions. It is used + by Contracting Authorities to provide Suppliers with information about a Procurement + Process. +
epo-not:PMCNotice
epo-not:QS-D25
epo-not:QSNotice
epo-not:QSNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:ResultNoticeAn announcement of the award or non-award of a Contract by a Buyer. + + (WG approval 27/03/2019)
epo-not:SocialAndOtherSpecificServices-D23
epo-not:SocialAndOtherSpecificServices-D24public contracts
epo-not:StandardFormsNotice
epo-not:Subcontract-D81
epo-not:SubcontractNotice
epo-not:VEAT-D23
epo-not:VEAT-D24
epo-not:VEAT-D25
epo-not:VEAT-D81
epo-not:VoluntaryEx-AnteTransparencyNoticeA Notice informing of the intention to award a Contract without prior publication + of a Contract Notice. + + Additional Information: + + For European Notices above the threshold + + "A means of advertising the intention to award the Contract without opening it up + to formal Competition. A Contracting Authority may decide that a Contract does not + require prior publication through a Contract Notice in the O.J.E.U. A reason for this + decision may be that the Contract meets the exceptional conditions described in Article + 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme + urgency brought about by events unforeseeable by the Contracting Entity and in accordance + with the strict conditions stated in the Directive” . + "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems + that a Contract does not require prior publication of a Contract Notice in the European + Journal (OJEU). This may apply, for example, if the Contract meets the exceptional + conditions justifying direct award of contracts. + + <b>This definition is still to be worked on.</b> +
+

Attributes (datatype properties) names and definitions

+ + + + + + + + + + +
Class nameAttribute nameDefinitionData type / cardinality
+

Predicates (object properties) and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Predicate nameDefinitionDomain, Range and Cardinality
epo:announcesAwardDecision epo-not:ResultNotice -> epo:AwardDecision (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision (external) [0..*]
epo:announcesCompletionOfContractepo-not:CompletionNotice -> epo:Contract (external) [1]
epo:announcesContract epo-not:ResultNotice -> epo:Contract (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract (external) [0..*]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice -> epo:Lot (external) [1..*]
epo-not:CompetitionNotice -> epo:Lot (external) [1..*]
epo:announcesLotGroup epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup (external) [0..*]
epo-not:CompetitionNotice -> epo:LotGroup (external) [0..*]
epo:announcesLotGroupAwardInformation epo-not:ResultNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. + + Additional Information: + For example, elements in the Contract Award Notice that should be published at a later + date. epo-not:ResultNotice -> epo:PublicationProvision (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision (external) [0..*]
epo:announcesNoticeAwardInformation epo-not:ResultNotice -> epo:NoticeAwardInformation (external) [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation (external) [0..1]
epo:announcesPlannedProcurementPartepo-not:PlanningNotice -> epo:PlannedProcurementPart (external) [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice -> epo:Procedure (external) [1]
epo-not:CompetitionNotice -> epo:Procedure (external) [1]
epo:announcesReviewObjectepo-not:CompletionNotice -> epo:ReviewObject (external) [1..*]
epo:announcesRole epo-not:CompletionNotice -> epo:AgentInRole (external) [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole (external) [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole (external) [1..*]
epo-not:PlanningNotice -> epo:AgentInRole (external) [1..*]
epo:describesContractModificationepo-not:ContractModificationNotice -> epo:ContractModification (external) [0..*]
epo:describesResultNotice epo:NoticeAwardInformation (external) -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation (external) -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:hasFormType epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
epo:hasImplementingRegulation epo-not:eFormsNotice -> (EU) 2019/1780 [0..1]
epo-not:StandardFormsNotice -> (EU) 2015/1986 [0..1]
epo:hasLegalBasis epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
epo:hasNoticeType epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
epo:refersToAwardDecision epo-not:CompletionNotice -> epo:AwardDecision (external) [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision (external) [0..*]
epo:refersToContractToBeModifiedepo-not:ContractModificationNotice -> epo:Contract (external) [1]
epo:refersToLot epo-not:CompletionNotice -> epo:Lot (external) [1..*]
epo-not:ContractModificationNotice -> epo:Lot (external) [1..*]
epo-not:ResultNotice -> epo:Lot (external) [1..*]
epo:refersToLotGroup epo-not:CompletionNotice -> epo:LotGroup (external) [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup (external) [0..*]
epo-not:ResultNotice -> epo:LotGroup (external) [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo:refersToNonPublishedElementepo-not:CompletionNotice -> epo:PublicationProvision (external) [0..*]
epo:refersToNoticeAwardInformationepo-not:CompletionNotice -> epo:NoticeAwardInformation (external) [0..1]
epo:refersToProcedure epo-not:CompletionNotice -> epo:Procedure (external) [1]
epo-not:ContractModificationNotice -> epo:Procedure (external) [1]
epo-not:ResultNotice -> epo:Procedure (external) [1]
epo:refersToRoleepo-not:CompletionNotice -> epo:AgentInRole (external) [0..*]
epo-not:announcesRoleepo-not:ResultNotice -> epo:AgentInRole (external) [0..*]
epo-not:hasLegalBasisepo-not:Modification-D24 -> Directive 24 [0..1]
epo-not:refersToRoleepo-not:ResultNotice -> epo:AgentInRole (external) [1..*]
+
+
+ + \ No newline at end of file diff --git a/glossary/ontologies-combined_glossary.html b/glossary/ontologies-combined_glossary.html new file mode 100644 index 0000000..4f9aad5 --- /dev/null +++ b/glossary/ontologies-combined_glossary.html @@ -0,0 +1,6393 @@ + + + + + + + + + + + + + + + + Model glossary + + +
+
+
+

Table of contents

+
+
+
+

Glossary

+

Class names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameDefinition
adms:IdentifierA character string to identify and distinguish uniquely, one instance of an object + in an identification scheme from all other objects in the same scheme together with + relevant supplementary information.
cccev:ConstraintLimitation applied to an Information Concept. + + Additional Information: + Constraints are Requirements in themselves, since they impose prerequisites which + influence the definition, use and/or Fulfilment of the Requirement. They represent + hard conditions such as minimum or maximum expressions which can be used to evaluate + pieces of information, the required age, income, involvement in activities, etc. An + example from the eProcurement domain is a threshold as the minimum turnover required + by the buying Organisation to select the Candidates. Note that CCCEV does not provide + any specific guidance on when which kind of Requirement should be used. Users of this + vocabulary should make decisions on this topic in their specific context.
cccev:CriterionCondition for evaluation or assessment. + + Additional Information: + In general, Criteria are used for comparison, filtering or Selection purposes. Criteria + usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need + to be met in order to pass the Requirements or to fulfil them to a certain degree + or quality. The concept of Criteria is broader than the concept of Constraint since + it covers more usages. The evaluation of the fulfilment is usually supported by the + provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology + defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria + or Award Criteria. A concrete example of a Criterion is 'participation in a criminal + organisation' which could also be considered as an Exclusion Ground Criterion in the + procurement domain or for requiring a public service.
cccev:EvidenceProof that a Requirement is met. + +
cccev:InformationConceptPiece of information that the Evidence provides or the Requirement needs.
cccev:RequirementCondition or prerequisite that is to be proven by Evidence. + + Additional Information: + Requirement is a generic class representing any type of prerequisite that may be desired, + needed or imposed as an obligation. CCCEV recommends to not use the Requirement class + directly, but rather a more semantically-enriched subclass such as Criterion, Information + Requirement or Constraint. Also note that the Requirement class is specified at a + more abstract level and is not to be used as the instantiation of a Requirement for + a specific Agent. + To illustrate the notion: the European Directive on services in the internal market + defines requirement as any obligation, prohibition, condition or limit provided for + in the laws, regulations or administrative provisions of the Member States or in consequence + of case-law, administrative practice, the rules of professional bodies, or the collective + rules of professional associations or other professional Organisations, adopted in + the exercise of their legal autonomy. + To stay consistent to how identification is realised in the eProcurement ontology, + we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification.
cpov:ContactPointInformation (e.g. e-mail address, telephone number) of a Person or department through + which the user can get in touch with. + + Additional information: + This class represents the contact information for a Public Service, Channel, Public + Organisation, etc. + The Contact Point could be a role, email address, telephone number, etc. + + WG approval 5/11/2019
cpov:PublicOrganisationAn Organisation that is defined as being part of the public sector by a legal framework + at any level. + + Additional information: + A body governed by public law: + - (a) established for the specific Purpose of meeting needs in the general interest + - (b) having legal personality; + - (c) financed, for the most part by the State, or regional or local authorities. + + + Examples of Public Organisations are municipality, international public body, ministry, + others. + + WG Approval 28/04/2020
cpv:PersonA individual human being who may be dead or alive, but not imaginary. +
cv:ChannelA medium through which Agents interact. + + Additional Information + Typical examples include online services, email, endpoint on eDelivery infrastructure, + phone, etc. + + Software solutions and electronic devices for communication and exchange of information + between Buyers and economic Operators. + Lots may use ad-hoc electronic means of communication that are not generally available + such as specific solutions for secure and dedicated communication or non-standard + eCatalogues. + + See also Directive recitals 53 to 56. + + WG approval 2023-02-14
dct:LocationAn identifiable geographic place or named place.
epo:AccessTermConditions and stipulations about where and how to access the Procurement Documents. + + WG Approval 09/03/2021 + +
epo:AcquiringCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of + the acquisition of supplies and/or services intended for other Buyers. + Additional Information: + In Public Procurement the Role of Acquiring Central Purchasing Body is carried out + by a Central Purchasing Body for other Contracting Authorities. + + WG approval 05/08/2021 +
epo:AcquiringPartyThe Role of an Agent that acts on the buying side of a Procurement Process. +
epo:AdHocChannelWeb page where tools and devices for electronic communication that are not generally + available can be downloaded free of charge. + + Additional Information: + + This corresponds in eForms to BT-724 Tool Atypical. + + + WG Acceptance 10/01/2023 +
epo:AgentInRoleRelative concept that ties an Agent to a part they play in a given Situational Context. + + Additional information: + The classification of roles is based is based on the degree of involvement into the + Procurement Process: + - Primary (Procurement) Pole is directly involved in the Procurement Process; + - Secondary (Procurement sub-) Role is secondary to the Procurement Process + - Tertiary (Related) Role is not involved in the Procurement Process.
epo:AuxiliaryPartyRole of an Agent who may be mentioned in the information exchanged during the Procurement + Process but who does not play an active part in it.
epo:AwardCriteriaSummary
epo:AwardCriterionCriterion that describes a Requirement that the Tender needs to resolve and on which + the Tender is evaluated and ranked. + + WG approval 05/11/2018
epo:AwardDecisionResolution of the Buyer as to the result of the Procurement Procedure. + + WG approval 14/11/2018
epo:AwarderA Role of an Agent that signs the Award Decision.
epo:AwardEvaluationTermConditions and stipulations defining particularities of the evaluation of Award Criteria.
epo:AwardingCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of + the award of Public Contracts or the conclusion of Framework Agreements for works, + supplies or services intended for other Buyers. + Additional Information: + In Public Procurement the Role of Awarding Central purchasing Body is carried out + by a Central Purchasing Body for other Contracting Authorities. + + WG approval 05/08/2021 +
epo:BudgetProviderA role of an agent whose Budget is used to pay for the Contract.
epo:BusinessA private law company registered in a national registry. + + WG Approval 28/04/2020 + +
epo:BuyerA Role of an Agent that awards a Contract and/or purchases items. + + Additional information: + In Public Procurement the Role of Buyer is carried out by the following types of Organisation: + Contracting Authority, Contracting Entity, a defense Contractor, an international + Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. + In Pre-Award, the Buyer generally awards the Contract, however future purchasers may + be foreseen. + In Post-Award the buyer generally refers to the purchaser of items.
epo:CandidateThe Role of an Agent that has sought an invitation or has been invited to take part + in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated + Procedure without prior publication, in a competitive dialogue or in an innovation + partnership. + + WG approval 30/05/2023
epo:CatalogueProviderA Role of an Agent compiling and supplying a Catalogue. + + Additional Information: + + The Catalogue Provider Role is usually played by the Agent that acts as a Seller, + or by another Agent that acts on behalf of the Seller. + + WG Approval 28/01/2021 +
epo:CatalogueReceiverA Role of an Agent processing a Catalogue. + + Additional Information: + The Catalogue Receiver may not only receive it but also validate it, process it, etc. + + The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or + by another Agent that acts on behalf of the Buyer. + + WG Approval 28/01/2021
epo:CentralPurchasingBodyRole of an Agent that provides centralised purchasing activities and, possibly, ancillary + purchasing activities for other Buyers. + + Additional Information: + In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting + Authority for other Contracting Authorities. + Contracting Authority procuring activities conducted on a permanent basis, in one + of the following forms:[...](b) the award of Public Contracts or the conclusion of + Framework Agreements for works, supplies or services intended for Contracting Authorities; + + WG approval 05/08/2021
epo:ConcessionContractA Contract between one or more Buyers and one or more Economic Operators giving the + right to the Economic Operators to exploit the rights foreseen in the Contract which + may include the receipt of Payments. + + WG Approval 24/05/2022
epo:ConcessionEstimate
epo:ContextSpecificDescriptionA description concerning a Procurement Object or a Notice in a specific Situation + Context. + + Additional Information: + The description has its own identity (+I) but is dependent (+D) on the concerned Entity. + + + We say that ContextSpecificDescription *concerns* an Entity. +
epo:ContextualProjectionProjection of an Entity and all of its properties that hold in a given Situation Context. + + + Additional Information: + The contextual projection does not have its own identity (-I), is dependent (+D) + on the described Entity, and is anti-rigid (~R) + + We say that ContextualProjection *describes* an Entity. + + Adaptation of ContextSlices pattern encoding a 4D view. + http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices
epo:ContractA voluntary, deliberate, and legally binding agreement between two or more competent + parties. + + Additional information: + This includes Concession Contracts. + + (WG approval 01/06/2018)
epo:ContractLotCompletionInformationInformation related to a given Lot at the end of the procurement.
epo:ContractModificationAn Announcement of the Modification Of a Contract/Concession during its Term by a + Buyer.
epo:ContractorThe Role of an Agent that has signed a Contract with a Buyer. + + WG approval 08/11/2022
epo:ContractSpecificTermGathering class for conditions and stipulations related to a contract in the Post-Award + Phase.
epo:ContractTermConditions and stipulations defining particularities of the Post Award Phase. + + (WG approval 23/11/2018) +
epo:DesignContestRegimeTermConditions and stipulations defining particularities of a Design Contest. + + WG approval: 04-02-2021
epo:DirectAwardTermConditions and stipulations defining particularities of the award of a Contract without + prior publication. + + Addtional Information: + + Direct award may refer to a previous Procedure and/or specific Lot(s). + + It may also refer to other justified situations whereby there is no previous Procedure. + + See Directive 2014/24/EU Article 32. + + WG Approval 22/11/2019 + + +
epo:DirectContract
epo:DocumentA set of interrelated Business Information representing the Business facts and associated + metadata. + The information may be conveyed in any language, medium or form, including textual, + numerical, graphic, cartographic, audio-visual forms, etc. + + WG Approval 23/05/2019 +
epo:DurationThe length of time in which a concept occurs.
epo:DynamicPurchaseSystemTechniqueA Technique that allows the selection of Candidates throughout the Procedure via the + Qualification Criteria, followed by individual Mini-Competitions for the Award of + Purchase Contracts. + + WG approval 23/05/2023
epo:DynamicPurchasingSystemAn electronic System that is set up by a Buyer which lists the Economic Operators + that satisfy the Qualification Criteria, which may later be put into competition via + a Mini-Competition in view of awarding a Purchase Contract. + + WG approval 23/05/2023 +
epo:EAuctionTechniqueA repetitive Technique in which new Prices, revised downwards, and/or new values concerning + certain elements of Tenders are bid on-line. + + Additional Information: + This corresponds in eForms to BT-767 Electronic Auction . + + WG approval 20/07/2018
epo:EconomicStandingSummary
epo:ElectronicSignature
epo:ElementChangeDescriptionInformation about a specific field to be changed with regard to a previous Notice.
epo:ElementConfidentialityDescriptionInformation about a specific field not intended for publication. + + Additional Information: + In the model, a field is identified by a combination of a class and a property on + that class. Therefore, these two references should be both provided. +
epo:ElementDescriptionDescription about a specific resource.
epo:ElementModificationDescriptionInformation about a specific field to be changed with regard to the Modification Of + a Contract.
epo:EmploymentInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for employment protection and working conditions.
epo:EnvironmentalProtectionInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for Environmental Protection.
epo:EstimateAn approximate calculation or a judgement of the value, number, Quantity or extent + of something.
epo:EvaluationTermConditions and stipulations defining particularities of the Tender evaluation. + + (WG approval 23/11/2018) + + +
epo:ExclusionGroundCriterion that describes a legal Requirement to be met by the Economic Operator to + be a Candidate in the Procurement. + + Additional Information: + This corresponds in eForms to BG-701 Exclusion Grounds. + + WG approval 31/10/2018
epo:ExclusionGroundsSummary
epo:ExpressionOfInterestDocument presenting an Economic Operator's Request to be considered for Procedures + covering a specific domain. + WG approval 13/04/2021
epo:FrameworkAgreementAn agreement between one or more Contracting Authorities and one or more Economic + Operators. + + Additional Information: + When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which + describes a Lot which specifies the both the Qualification and Award Criteria. + + WG approval 18/05/2021
epo:FrameworkAgreementTechniqueTechnique that establishes the terms governing Contracts to be awarded during a given + Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. + + WG approval 18/05/2021
epo:FrameworkAgreementTermConditions and stipulations defining particularities in a Framework Agreement.
epo:FundA financial resource used to support the Procurement. + + Additional Information: + + In the context of EU, Funds can be divided into programmes, actions and projects. + + Examples of EU funds are: the European Structural and Investment Funds, European Social + Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme + and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which + supports the eProcurement Ontology under sub-action 3). + + Funds may change between the lot and the contract, for example in the case of an emergency + crisis, a contract may be financed by a budget that was not foreseen in the call. + + WG Approved 14/05/2019 + + + + +
epo:GreenProcurementApproach whereby Buyers seek to procure with a reduced Environmental Impact. + + Additional Information: + + The approach may apply to the complete life cycle. The reduced Environmental Impact + is in comparison to goods, services and works with the same primary function that + would otherwise be procured. + + Tightly related are article 68 - Life-cycle costing and article 67 - most economically + advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf + An instance of the class GreenProcurement is represented in eForms with the code "env-imp" + defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf
epo:IndefiniteDuration
epo:InnovativeProcurementAn instance of the class InnovativeProcurement is represented in eForms with the code + "inn-pur" defined in the codelist Strategic-Procurement. + + Research (21/01/2020): + + Purchasing and early adoption of solutions which are not yet available on large scale + commercial basis. + + Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative + Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions + + Additional Information: + ‘innovation’ means the implementation of a new or significantly improved product, + service or process, including but not limited to production, building or construction + processes, a new marketing method, or a new organizational method in business practices, + workplace Organisation or external relations inter alia with the purpose of helping + to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable + and inclusive growth; + See: Directive 2014/24 + Articles: 2, 26 (3), 31, 67 (2.a) + + Question: + Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?
epo:JuryMember
epo:LeadBuyerA Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. + + + WG agreement: 2022-11-22
epo:LotA qualitative, quantitative or strategic subdivision of the goods, services or works + to be procured, allowing the award of one or more Contracts. + + WG approval 12/09/2018
epo:LotAwardDecisionResult concerning the Lot attributed by the Awarder.
epo:LotGroupCombination of several Lots to conduct comparative assessment of the Tenders. + + Additional Information: + + The comparative assessment may refer to the Selection Criteria, Award and Value that + apply to several Lots. + + Pending of discussion with eForms + + + + Member States may provide that, where more than one lot may be awarded to the same + tenderer, contracting authorities may award contracts combining several or all lots + where they have specified in the contract notice or in the invitation to confirm interest + that they reserve the possibility of doing so and indicate the lots or groups of lots + that may be combined.
epo:LotGroupAwardInformationAward information related to a given Group of Lots.
epo:LotSpecificTermGathering class for conditions and stipulations related to a Lot.
epo:MediatorA Role of an Agent that attempts to resolve a dispute between different Agents + and come to an agreement. + WG approval 20/04/2021
epo:MiniCompetitionA process where multiple winners or candidates of previous stages of a procedure bid + for a specific procurement. + + Additional Information: + It is typically used in framework agreements where the suppliers have already been + pre-selected, and the mini competition is used to determine which supplier is best + suited for a particular project or contract. + It is also used in a Dynamic Purchasing System where the suppliers come from a list + of Candidates. + + WG approval 30/05/2023
epo:MiniCompetitionAwardDecisionResult concerning the Mini-Competition attributed by the Awarder. +
epo:MonetaryValueA number of monetary units specified using a given unit of currency. + + Additional information: + In the pre-award phase of the procurement, all monetary values are considered to exclude + VAT based on the Directive 2014/24/EU. + + WG approval 13/04/2021 +
epo:MultipleStageProcedureTermConditions and stipulations defining particularities of Procedures carried out in + several steps + Additional Information: + Generally this refers to Procedures where selection is carried out to qualify Tenderers + who are then requested to submit the rest of their Tender for evaluation is Restricted + Procedure. + WG Approval 15/04/2021
epo:NonDisclosureAgreementTermConditions and stipulations
epo:NoticeDocument published by the Buyer about market opportunities and results. + + WG Approval 23/05/2019 +
epo:NoticeAwardInformationInformation about an Award Notice.
epo:NoticeChangeInformation about a corrigendum in a Notice.
epo:NoticeDescriptionDescriptions about the notice publishing, or providing evolutions of resources.
epo:OfferDocument providing the Monetary Value and the details to fulfill the Requirements + set out in the Procurement Documents or Request for Offer. + + Additional information: + A quotation is considered to be an Offer in the eProcurement Ontology. + + WG approval 09/02/2023
epo:OfferingPartyThe Role of an Agent that acts on the Economic Operator side during a Procurement + Process. + + Additional information: + As per the European Procurement Directives the notion of ‘Economic Operators’ should + be interpreted in a broad manner so as to include any Persons and/or Entities which + offer the execution of works, the supply of products or the provision of services + on the market, irrespective of the legal form under which they have chosen to operate. + Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited + companies, universities, public or private, and other forms of entities than natural + Persons should all fall within the notion of Economic Operator, whether or not they + are ‘Legal Persons’ in all circumstances.
epo:OfferIssuerThe Role of an Agent that distributes an Offer. + + WG approval 09/02/2023
epo:OfflineAccessProviderA Role of an Agent responsible for providing offline access to the Procurement Documents.
epo:OpeningTermConditions and stipulations defining particularities of the opening of Tenders. + Additional Information: + The opening of Tenders is the event when Tenders are made accessible for evaluation, + it is generally the same date and time for all Tenders. + WG Approval 15/04/2021
epo:OrganisationGroupAgreed collaboration of several Organisations. + Additional Information: + This concept has been created to fulfill the need to represent a grouping of Organisations + that is not necessarily registered i.e, consortia. + WG approval 15/04/2021
epo:OriginatorRequestDocument in which the Originator describes his needs. + + WG approval 09/02/2023
epo:OtherEntityEconomic Operator (who is not a Subcontractor) on which the Tenderer relies upon, + to meet Selection Criteria.
epo:ParticipationConditionCriterion that describes a Requirement to take part in a procurement. + + WG approval 30/05/2023
epo:ParticipationConditionsSummary
epo:ParticipationRequestProcessorA Role of an Agent responsible for processing Requests To Participate.
epo:ParticipationRequestReceiverA Role of an Agent responsible for receiving Requests To Participate.
epo:ParticipationRequestTermConditions and stipulations defining particularities of requesting participation in + a Procedure.
epo:PaymentExecutorA Role of an Agent responsible for executing the Payment.
epo:PeriodA time interval or a Duration. + + (WG approval 28/04/2020) +
epo:PlannedProcurementPartA subdivision of a Planned Procurement that may later become one or more Lots or a + self-standing Procedure. A Lot or a Procedure can also cover one or more parts of + the Planned Procurement. + + WG Approval 20/06/2019
epo:PrizeA reward given in a Contest. + WG approval: 15/04/2021
epo:ProcedureA legally defined set of administrative activities conducted to conclude one or more + Contracts. + + Additional Information + The Procedure is categorised in the law according to different rules determining whether + the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see + Procedure Type). + + WG Approval 20/08/2019 +
epo:ProcedureSpecificTermGathering class for conditions and stipulations related to a Procedure.
epo:ProcedureTermConditions and stipulations defining particularities of the Procedure. + + (WG approval 23/11/2018)
epo:ProcessPlanningTermConditions and stipulations defining particularities of the unfolding of the Procurement + Process.
epo:ProcurementCriteriaSummaryWG approval 24/01/2023
epo:ProcurementCriterionA criterion specific to Procurement. + + Additional Information: + + This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award + Criterion. Each of these Criteria can contain subcriteria (Criterion class). + + WG Approval 23/04/2020
epo:ProcurementDocumentDocument produced or referred to by the Buyer to describe or determine elements of + the Procurement. + + Additional information: + + Procurement Documents are to be accessible since the date of publication of the Contract + Notice or the prior information Notice when used as a call for competition. + + Examples of Procurement Documents are Technical Specifications, the Descriptive Document, + proposed conditions of Contract, formats for the presentation of Documents by Candidates + and Tenderers, information on generally applicable obligations. + + Other Documents related to the Procedure such as Notices are not considered to be + Procurement Documents. + + WG Approval 23/05/2019 17:08:30
epo:ProcurementElementGathering class for critical/central elements in the Procurement Process. + + TODO: add definition + Additional information: + Alias: ProcurementComponent
epo:ProcurementObjectThe whole or a division of goods, services or works to be procured. + + Additional Information: + Anything that can specify the procurement content (i.e. goods, services, work) is + a Procurement Object. + In a sense, such an "object" can constitute the "object of a Contract". + To test whether something is a Procedure Object check if it can have a Purpose and/or + CPV classification (<i>The CPV establishes a single classification system for public + procurement aimed at standardising the references used by Contracting Authorities + and entities to describe the subject of Procurement Contracts.</i>). + + Note: + Procedure, seems to be an exception from this rule. Because it is a conflated term: + it carries process properties and "purpose" properties.
epo:ProcurementProcedureInformationProviderA Role of an Agent responsible for providing additional information about the Procurement + Procedure.
epo:ProcurementProcessInformationInformation about the temporal unfolding or succession of Procurement Objects.
epo:ProcurementServiceProviderRole of a public or private body which offers ancillary purchasing activities on the + market. + + Additional information + + "Ancillary Purchasing Activities" means activities consisting in the provision of + support to purchasing activities, in particular in the following forms: + (a) technical infrastructure enabling Contracting Authorities to award Public Contracts + or to conclude Framework Agreements for works, supplies or services; + (b) advice on the conduct or design of public Procurement Procedures; + (c) preparation and management of Procurement Procedures on behalf and for the account + of the Contracting Authority concerned; + + Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. + + This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity + managing the Procurement, which may be different from the Buyer who is paying / using + the items being procured'. + + WG Approval 24/03/2020 +
epo:ProfessionalSuitabilitySummary
epo:ProjectA collaborative enterprise that is carefully planned to achieve a particular aim.
epo:PublicationProvisionInformation about fields not intended for publication. + + + Additional Information: + The non-published information may become available at a later date and may differ + from one element to another within a given Document. + + Examples of fields that may not be immediately published are Winner, Tender and Procedure + Lot Result, etc., e.g. for security reasons. + + WG Approval 16/05/2019 + + + + +
epo:PurchaseContractA Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract.
epo:PurposeThe description of the objectives related to a Procurement. + + Additional information: + + The description of the objectives includes the Subject Matter and Quantities. + + + The quantification of the objectives related to a procurement. + + To be re-reviewed by the WG the soonest. + + (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) + + The old definition read as follows: + + The description of the objectives related to a procurement. + + (WG approval 05/12/2018) +
epo:QualificationCriteriaSummary
epo:QualificationCriterionCriterion used in the first stage of procurement. + + WG approval 30/05/2023
epo:QuantityA counted number of non-monetary units possibly including fractions. +
epo:RequestForClarificationA demand for elucidation of received information. + Additional Information: + Requests for clarification are usually used by Buyers during the process of award + or evaluation to understand specific aspects of the Tender without altering the Tender. + WG approval 20/04/2021
epo:RequestForParticipationApplication of an Economic Operator to be included in a Procurement Procedure. + WG approval: 20/04/2021
epo:ReviewDecisionInformation about Review Decisions.
epo:ReviewerRole of an Agent who investigates the overall correctness of a Procurement Procedure, + producing a related report. + Additional Information: + Any Organisation or Person may request a review of a Procurement Procedure. + WG approval: 20/04/2021
epo:ReviewIrregularitySummaryInformation about the number and type of requests the Buyer received to review any + of its decisions (e.g. the Technical Specifications, Award Decision). + + Additional information: + This class corresponds in eForms to BG-613 Buyer Review Requests. + + +
epo:ReviewObjectInformation about a Review Request or a Review Decision. + + Additional information: + This class corresponds to the BG-714 Review in eForms. + +
epo:ReviewProcedureInformationProviderA Role of an Agent who is providing more information on the time limits for review + Procedures.
epo:ReviewRequestInformation about requests to review procedures.
epo:ReviewRequesterRole of an Agent who requests the review of a (Procurement) Procedure. + + WG Approval 23/10/2021
epo:ReviewRequestSummarySummary information about the requests the Buyer received to review any of its decisions + (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive + 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the + requests. + + Additional information: + This class corresponds in eForms to BG-612 Buyer Review Summary.
epo:SecurityClearanceTermConditions and stipulations about the status requested of individuals allowing them + access to classified information (state or organisational secrets) or to restricted + areas, after completion of a thorough background check. + + Additional information: + This corresponds in eForms to BT-578, BT-78, BT-732 . + + WG approval 20/06/2023 +
epo:SelectedCandidateListRecord of Candidates admitted to take part in award phases of procurements. + + WG approval 30/05/2023
epo:SelectionCriteriaSummary
epo:SelectionCriterionCriterion that describes a capacity Requirement that the Economic Operator needs to + fulfill to participate in the procurement. + + Additional Information: + Selection criteria may relate to: + (a) suitability to pursue the professional activity; + (b) economic and financial standing; + (c) technical and professional ability + + WG approval 31/10/2018
epo:SelectionEvaluationTermConditions and stipulations defining particularities of the evaluation of Selection + Criteria.
epo:SocialProcurementAn instance of the class SocialProcurement is represented in eForms with the code + "soc-obj" defined in the codelist Strategic-Procurement. + + + Research (21/01/2020): + Socially Responsible Public Procurement (SRPP): + + ‘SRPP’ means Procurement Operations that take into account one or more of the following + social considerations: employment opportunities, decent work, compliance with social + and labour rights, social inclusion (including persons with disabilities), equal opportunities, + accessibility design for all, taking account of sustainability criteria, including + ethical trade issues and wider voluntary compliance with corporate social responsibility + (CSR), while observing the principles enshrined in the Treaty for the European Union + (TFEU) and the Procurement Directives. + Source: Buying Social - A Guide to Taking Account of Social Considerations in Public + Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en + See Article 18 and Annex X Directive 2014/24.
epo:SpecificDuration
epo:StatisticalInformationStatistical data on the Procedure and the Lot. + + Additional Information + + At the present time Procurement Procedures are not fully electronic. At a later date, + information on the Tenders received could be inferred by the data in the eProcurement + System. + Therefore this class is temporal and should cease to exist in fully electronic Procurement. + The need for its presence responds also to the alignment with the Regulation (EU) + 2019/1780 (eForms). + + Attention will have to be paid in the future to possible inconsistencies derived from + data placed in other classes and data held in the Statistical Information class; e.g. + the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender + indicator, which in case of being false, may enter in contradiction with the highest + or lowest Tender value for that very same inadmissible Tender. + + WG Approval 12/12/2019 +
epo:StrategicProcurementPublic Procurement that contributes to achieving pressing policy goals. + + Additional Information: + Specific strategic goals could be, for example, Environmental Protection, innovation, + job creation and the development of small and medium enterprises. + + This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given + by the choices in BT-06 Strategic Procurement. + + Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph + on "background information". + + WG Approval 10/03/2020
epo:SubcontractingEstimateInformation on the approximation of the foreseen Subcontracting.
epo:SubcontractorA Role of an Agent that has an agreement to perform part or all of the obligations + of another Agents's Contract. + Additional information + For some Procedures, the Subcontractor signs as well the Contract between the Buyer + and the Contractor. + + At tendering time, entities relied upon by the Economic Operators can be Subcontractors + or not. + + When modelling ESPD we well analyze whether we need or not a Role named "relied upon". + + WG approval 05/08/2021 +
epo:SubcontractTermA concept to describe the main information regarding the share of parts of the Contract + to third parties.
epo:SubmissionStatisticalInformationStatistical information about submissions on a given competition, either at Lot level + or Mini-Competition level. + + WG approval 30/05/2023
epo:SubmissionTermConditions and stipulations defining particularities of submitting Documents to the + Buyer. + + Additional Information: + These Documents can be Tenders, Request To Participate and expressions of interest. + + WG Approval 14/07/2020
epo:SystemSoftware application used for performing Procurement activities. + + WG Approval 28/04/2020 + +
epo:TaxInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for taxes.
epo:TechnicalAbilitySummary
epo:TechniqueMethod used for conducting Procurement Procedures. + + Addtional information: + This corresponds in eForms to BG-706 Techniques. + + Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction + can be carried out in a Framework Agreement or DPS). + + WG Approval 19/09/2019 +
epo:TenderInformation submitted by the Economic Operator to specify its Offer regarding a specific + Lot, in response to the call for Tender. + + (WG approval 03/05/2022) + + +
epo:TenderAwardOutcomeResult concerning the Tender attributed by the Awarder.
epo:TendererA Role of an Agent that has submitted a Tender. + + Additional Information: + A Tenderer is an Economic Operator or group of Economic Operators that has submitted + a Tender. + WG approval 05/08/2021
epo:TenderGroupSpecific Offer in response to a Lot Group. + + Additional Information: + This class is generally used to provide the Monetary Value in response to a Lot Group. +
epo:TenderProcessorA Role of an Agent responsible for processing Tenders.
epo:TenderReceiverA Role of an Agent responsible for receiving Tenders.
epo:TermA governing condition or stipulation.
epo:WinnerA Role of an Agent to whom a Lot is awarded. + WG approval 05/08/2021 (revised 26/10/2021)
epo-not:CANDefence-D81
epo-not:CANSocial-D25
epo-not:CANSocialNotice
epo-not:CANSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:CANStandard-D24
epo-not:CANStandardNotice
epo-not:CNDefence-D81
epo-not:CNSocial-D25
epo-not:CNSocialNotice
epo-not:CNSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:CNStandard-D24
epo-not:CNStandardNotice
epo-not:CompetitionNoticeAn announcement of the launch of a Procurement Procedure by a Procuring Entity. + + WG approval 18/05/2018 +
epo-not:CompletionNoticeAn announcement of the end of a Procurement by a Buyer.
epo-not:ConcessionAwardNotice-D23
epo-not:ConcessionNotice-D23
epo-not:ContractModificationNoticeAn announcement of the Modification Of a Contract/Concession during its term by a + Procuring Entity.
epo-not:DesignContest-D24
epo-not:DesignContest-D25
epo-not:DesignContestNotice
epo-not:DesignContestResult-D24
epo-not:DesignContestResult-D25
epo-not:DesignContestResultNotice
epo-not:DirectAwardPrenotificationNoticeNotice which sets out the Buyer's purchasing intention to award a Contract without + prior notification of Competition.
epo-not:eFormsNotice
epo-not:Modification-D23
epo-not:Modification-D24
epo-not:Modification-D25
epo-not:Notice1
epo-not:Notice10
epo-not:Notice11
epo-not:Notice12
epo-not:Notice13
epo-not:Notice14
epo-not:Notice15
epo-not:Notice16
epo-not:Notice17
epo-not:Notice18
epo-not:Notice19
epo-not:Notice2
epo-not:Notice20
epo-not:Notice21
epo-not:Notice22
epo-not:Notice23
epo-not:Notice24
epo-not:Notice25
epo-not:Notice26
epo-not:Notice27
epo-not:Notice28
epo-not:Notice29
epo-not:Notice3
epo-not:Notice30
epo-not:Notice31
epo-not:Notice32
epo-not:Notice33
epo-not:Notice34
epo-not:Notice35
epo-not:Notice36
epo-not:Notice37
epo-not:Notice38
epo-not:Notice39
epo-not:Notice4
epo-not:Notice40
epo-not:Notice5
epo-not:Notice6
epo-not:Notice7
epo-not:Notice8
epo-not:Notice9
epo-not:PIN-CFCSocial-D25
epo-not:PIN-CFCSocialNotice
epo-not:PIN-CFCSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:PIN-CFCStandard-D24
epo-not:PIN-CFCStandardNotice
epo-not:PINDefence-D81
epo-not:PINOnly-D24
epo-not:PINOnly-D25
epo-not:PINOnlyNoticePriorInformationNotice
epo-not:PINProfile-D24
epo-not:PINProfile-D25
epo-not:PINProfile-D81
epo-not:PINProfileNotice
epo-not:PIN-RTL-D24
epo-not:PIN-RTL-D25
epo-not:PINTimeLimitNotice
epo-not:PlanningNoticeNotice which sets out the Contracting Authority's purchasing intentions. It is used + by Contracting Authorities to provide Suppliers with information about a Procurement + Process. +
epo-not:PMCNotice
epo-not:QS-D25
epo-not:QSNotice
epo-not:QSNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:ResultNoticeAn announcement of the award or non-award of a Contract by a Buyer. + + (WG approval 27/03/2019)
epo-not:SocialAndOtherSpecificServices-D23
epo-not:SocialAndOtherSpecificServices-D24public contracts
epo-not:StandardFormsNotice
epo-not:Subcontract-D81
epo-not:SubcontractNotice
epo-not:VEAT-D23
epo-not:VEAT-D24
epo-not:VEAT-D25
epo-not:VEAT-D81
epo-not:VoluntaryEx-AnteTransparencyNoticeA Notice informing of the intention to award a Contract without prior publication + of a Contract Notice. + + Additional Information: + + For European Notices above the threshold + + "A means of advertising the intention to award the Contract without opening it up + to formal Competition. A Contracting Authority may decide that a Contract does not + require prior publication through a Contract Notice in the O.J.E.U. A reason for this + decision may be that the Contract meets the exceptional conditions described in Article + 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme + urgency brought about by events unforeseeable by the Contracting Entity and in accordance + with the strict conditions stated in the Directive” . + "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems + that a Contract does not require prior publication of a Contract Notice in the European + Journal (OJEU). This may apply, for example, if the Contract meets the exceptional + conditions justifying direct award of contracts. + + <b>This definition is still to be worked on.</b> +
foaf:AgentA Person, an Organisation, or a System that acts in Procurement or have the power + to act in Procurement. + + WG Approval 28/04/2020
foaf:PersonThe Person class represents people. Something is a Person if it is a Person. We don't + nitpick about whether they're alive, dead, real, or imaginary. The Person class is + a sub-class of the Agent class, since all people are considered 'Agents' in FOAF.
locn:AddressThe particulars of the place where a Person or an Organisation is located. + + WG Approval 28/04/2020 + + Additional Information: + An "Address Representation" as conceptually defined by the INSPIRE Address Representation + data type: "Representation of an address spatial object for use in external application + schemas that need to include the basic, address information in a readable way.". + + + The representation of Addresses varies widely from one country's postal System to + another. Even within countries, there are almost always examples of Addresses that + do not conform to the stated national standard. At the time of publication, work is + progressing on ISO 19160-1 that defines a method through which different Addresses + can be converted from one conceptual model to another. + + + This specification was heavily based on the INSPIRE Address Representation data type. + It is noteworthy that if an Address is provided using the detailed breakdown suggested + by the properties for this class, then it will be INSPIRE-conformant. To this very + granular set of properties, we add two further properties: + + - full address (the complete address as a formatted string) + - addressID (a unique identifier for the address) + The first of these allows publishers to simply provide the complete Address as one + string, with or without formatting. This is analogous to vCard's label property. + + The addressID is part of the INSPIRE guidelines and provides a hook that can be used + to link the Address to an alternative representation, such as vCard or OASIS xAL.
locn:GeometryThe Geometry class provides the means to identify a Location as a point, line, polygon, + etc. expressed using coordinates in some coordinate reference System. + + Additional Information: + This class defines the notion of "Geometry" at the conceptual level, and it shall + be encoded by using different formats (see usage note of the locn:geometry property). + We also refer to the Examples section of this specification for a number of different + Geometry examples expressed in different formats.
org:OrganizationA collection of people organized together into a community or other social, commercial + or political structure. The group has some common purpose or reason for existence + which goes beyond the set of people belonging to it and can act as an Agent. Organisations + are often decomposable into hierarchical structures. + + (WG approval 23/11/2018). +
owl:ThingAny individual in the domain of discourse is a Thing. + + + Additional Information: + + The most basic concepts in a domain should correspond to classes that are the roots + of various taxonomic trees. Every individual in the OWL world is a member of the class + owl:Thing.
+

Attributes (datatype properties) names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameAttribute nameDefinitionData type / cardinality
adms:Identifieradms:schemaAgencyThe name of the agency that issued the identifier.rdf:PlainLiteral [0..*]
cccev:Criterioncccev:biasParameter used to adjust the evaluation of the Criterion. + + Additional Information: + The bias parameter tries to correct a systematic error. For example in procurement, + a home bias corresponds to the "presence of local preferences distorting international + specialisation and resource allocation". When quantified, this systematic error can + be removed.xsd:decimal [0..1]
cccev:Criterioncccev:weightRelative importance of the Criterion. + + Additional Information: + The weight must be between 0 and 1. Usually, all Criteria can be integrated within + a weighted sum equal to 1.xsd:decimal [0..1]
cccev:Criterioncccev:weightingConsiderationDescriptionExplanation of how the weighting of a Criterion is to be used. + + Additional Information: + This description gives the view of the creator of the Criterion weights on how to + interpret and use them during the evaluation process.rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:emailThe email of the Organisation. + + rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:telephoneA telephone number through which the Contact Point can be contacted. + rdf:PlainLiteral [0..*]
cpv:Personcv:birthDateThe point in time on which the Person was born.xsd:date [0..1]
locn:Geometrycv:coordinatesThe coordinate list.rdf:PlainLiteral [0..*]
locn:Geometrycv:latitudeThe latitude.rdf:PlainLiteral [0..*]
locn:Geometrycv:longitudeThe longitude.rdf:PlainLiteral [0..*]
cpv:Persondct:alternativeAny name by which an individual is known other than their full name. + WG 09/11/2021rdf:langString [0..*]
epo:ProcurementElement
epo:System
epo:AgentInRole
cpov:ContactPoint
cv:Channel
epo:NonDisclosureAgreementTerm
epo:SecurityClearanceTerm
epo:SubcontractTerm
cccev:InformationConcept
cccev:Requirement
epo:Technique
epo:SubcontractingEstimate
epo:ElectronicSignature
epo:Document
epo:Fund
dct:descriptionAn account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 + An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 + An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [1..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:Documentdct:issuedDate of formal issuance of the resource. + + Additional information: + This is generally used for modules other than eNotice. + The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or + xsd:timeStamp or any other variant of time expression. This extension needs to be + encoded/automated in the ontology and in the application profile. + Why is it like this? Because UML cannot handle such expressions of disjunctive property + ranges. + + WG approval 26/01/2023xsd:dateTime [0..1]
epo:ProcurementElement
foaf:Agent
epo:AgentInRole
epo:Document
epo:Fund
dct:titleA name given to the resource. + + WG approval 30/05/2023 A name given to the resource. + + WG approval 30/05/2023 A name given to the resource. + + WG approval 30/05/2023 + A name given to the resource. + + WG approval 30/05/2023 + + A name given to the resource. + + WG approval 30/05/2023 + rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:describesMinimumLevelOfStandardsrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesObjectiveParticipationRulesrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionRelevantLawrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesVerificationMethodrdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasAbnormallyLowTendersTenders received that were found irregular and non-acceptable due to an abnormally + low price or cost. + + Additional Information + The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. + + WG Approval 28/07/2020 + + xsd:integer [0..1]
epo:Procedureepo:hasAcceleratedProcedureJustificationThe reasons why the procedure is accelerated. + + Additional Information: + A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake + relief. + + WG Approval 09/06/2020 + + rdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasAccessibilityDateThe date at which unpublished data shall be published. + + WG Approval 11/06/2020xsd:date [0..1]
epo:Documentepo:hasAccessURLLocation where the resource can be accessed. + + WG approval 07/04/2022xsd:anyURI [0..*]
epo:Buyerepo:hasActivityDescriptionIn the ePO ontology a taxonomy with all activities, based on different classifications + (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively + to complement the definition attached to the MainActivityCode. + + However, in eForms there is the code "other" to cover undefined activities. For mapping + to this eForms feature one could also use this property. + rdf:PlainLiteral [0..*]
epo:ProcurementObject
epo:Notice
epo:ElementChangeDescription
epo:hasAdditionalInformationSupplementary data about the instance of the concept. + + WG Approval 15/10/2019 Supplementary data about the instance of the concept. + + WG Approval 15/10/2019 Supplementary data about the instance of the concept. + + WG Approval 15/10/2019 + rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
epo:AccessTermepo:hasAdditionalInformationDeadlineThe time limit for requesting further information. + + Additional information: + + This is generally used to indicate the deadline for Economic Operators to request + further information of the procedure before the submission deadline. + + This corresponds in eForms to BT-13 Additional Information Deadline. + + WG Approval 09/06/2020 + xsd:dateTime [0..1]
epo:AwardDecisionepo:hasAdditionalNonAwardJustificationFurther justification for the non award . + + Additional information: + This is generally used when the non award reason code is set to "Other". + + WG: 18/01/2022rdf:PlainLiteral [0..1]
cv:Channelepo:hasAddressURLxsd:anyURI [0..1]
foaf:Agentepo:hasAliasAcronym or alternative name of the Agent. + WG Approval 25/03/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasAmountValueThe numeric value of the amount, including decimals.xsd:decimal [1..1]
epo:AwardEvaluationTermepo:hasAwardCriteriaEvaluationFormulaThe mathematical equation or any other description used for complicated weighing of + criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing + cannot be expressed per criterion. + + Additional Information: + This corresponds in eForms to BT-543 Award Criteria Complicated.rdf:PlainLiteral [0..*]
epo:AwardEvaluationTermepo:hasAwardCriteriaOrderJustificationThe justification for only indicating the award criteria's order of importance, not + their weighing. + + Additional Information: + This corresponds in eForms to BT-733 Award Criteria Order Justification.rdf:PlainLiteral [0..1]
epo:AwardCriterionepo:hasAwardCriteriaStatedInProcurementDocumentsxsd:boolean [1..1]
epo:ProcessPlanningTermepo:hasAwardDateScheduledPlanned date for the award decision. + WG Approval 09/11/2021xsd:date [0..1]
epo:AwardDecisionepo:hasAwardDecisionDateThe official date of the award decision. + + Additional Information: + This corresponds in eForms to BT-1451 Winner Decision Date. + + WG Approval 09/01/2020 + xsd:dateTime [0..1]
epo:TenderAwardOutcomeepo:hasAwardRankThe position of the tender (i.e. whether the tender ended up first, second, third, + etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) + or an innovation partnership. + + Additional Information: + This corresponds in eForms to BT-171 Tender Rank. + xsd:integer [0..1]
epo:Periodepo:hasBeginningThe date and time on which this period begins.xsd:dateTime [0..1]
epo:FrameworkAgreementTermepo:hasBuyerCategoryDescriptionA classification of buyers participating in a framework agreement. + + Additional Information: + Buyers that can use the Framework Agreement not mentioned by name. + + For example, the classification "all hospitals in the Tuscany region" is used instead + of naming each individual buyer. + + This corresponds in eForms to BT-111 Framework Buyer Categories. + + WG Approval 2019-05-06rdf:PlainLiteral [0..*]
org:Organizationepo:hasBuyerLegalTypeDescriptionSelf-explanatory text about the Buyer Legal Type. + + Additional information: + This field is used when the Buyer Legal Type is not available in the controlled list + at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard + Forms. It shall be deprecated in the future. + + WG Approval 06/09/2022rdf:PlainLiteral [0..1]
epo:Buyerepo:hasBuyerProfileWebsite address where the buyer publishes information on its procurement procedures + and general information. + + Additional information: + This corresponds in the eForms to BT-508 Buyer Profile URL. + + WG approval 04/05/2018 + xsd:anyURI [0..1]
epo:ConcessionEstimateepo:hasCalculationMethodFormula for obtaining values. + + Additional Information: + The possible values are monetary values, ranking scores, criterion weighting. + + WG Approval 25/05/2018rdf:PlainLiteral [0..1]
epo:ElementChangeDescriptionepo:hasChangeDescriptionExplanatory text about the instance of the concept. + + WG Approval 30/09/2019rdf:PlainLiteral [0..*]
epo:ElementChangeDescriptionepo:hasChangeReasonDescriptionExplanatory text about why the element is altered. + + Additional information: + This corresponds in eForms to BT-762 Change Reason Description.rdf:PlainLiteral [0..*]
epo:GreenProcurementepo:hasCleanVehiclesThe number of all clean vehicles that have either been purchased, leased, rented, + hired-purchased or their use has been contractually committed to for the provision + of a purchased service. + + Additional Information + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:QualificationCriteriaSummaryepo:hasConditionVerificationMethodrdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasConfidentialityJustificationA narrative explanation of why data is not published. + + Additional Information: + This element is generally used when the non-publication-justification code chosen + is "other". + + WG Approval 09/11/2021 + rdf:PlainLiteral [0..1]
cpov:ContactPointepo:hasContactNameA short text by which a contact is known or referred to. + + WG Approval: 27/01/2022rdf:PlainLiteral [0..1]
epo:Contractepo:hasContractConclusionDateThe date the contract was signed by the last signatory party. + + <u>Additional Information:</u> + In exceptional cases contracts may be concluded without signature and therefore another + date may be used. The date of contract conclusion is always later than the end of + any standstill period. + This concept is not to be confused with the date of completion/end of the contract. + + This corresponds in eForms to BT-145 Contract Conclusion Date. + + WG Approval 09/01/2020xsd:date [0..1]
epo:ProcedureTermepo:hasCrossBorderLawThe applicable law when buyers from different countries procure together within one + procurement procedure. + + Additional Information: + This corresponds in eForms to BT-09 Cross Border Law.rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyIDIdentifier of the agency that maintains the currency code list used. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyNameName of the agency that maintains the currency code list used. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListIDConcept scheme URI used for the currency code list. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:SecurityClearanceTermepo:hasDeadlineThe deadline by which the security clearance must be submitted to the buyer. + + WG Approval 12/09/2019 + + xsd:dateTime [0..1]
epo:ReviewDecisionepo:hasDecisionDateThe date of the review decision. + + Additional information: + This attribute corresponds to the BT-787 Review Date in eForms. + xsd:date [0..1]
epo:Documentepo:hasDispatchDateDate of transmission of a record to an organisation. + + WG Approval 12/05/2020xsd:date [0..1]
epo:FrameworkAgreementTermepo:hasDurationExtensionJustificationThe explanation of the reason why the framework agreement has an extended duration. + + Additional Information: + This corresponds in eForms to BT-109 Framework Duration Justification. + The justification for exceptional cases when the duration of the framework agreement + exceeds the legal limits. + + Four years in the case of the general procurement Directive, seven years in the case + of the defence Directive, and eight years in the case of the sectoral Directive. + + WG Approval 26/09/2019rdf:PlainLiteral [0..1]
epo:SubmissionTermepo:hasEAuctionURLThe internet address of the electronic auction. + + Additional Information: + + This corresponds in eForms to BT-123 Electronic Auction URL.xsd:anyURI [0..1]
epo:SubmissionStatisticalInformationepo:hasEEAReceivedTendersThe amount of tenders received from economic operators in other EEA countries other + than the country of the buyer. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:Noticeepo:hasEFormsSubtypexsd:integer [0..1]
epo:ContractTermepo:hasEInvoicingElectronic means will be used for invoicing in the post-award process. + + Additional Information: + This attribute is used for standard form mappings. + + WG Approval 12/09/2019 + xsd:boolean [0..1]
epo:Tenderepo:hasElectronicSubmissionTransmission of tenders is possible by electronic means of communication. xsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasElectronicTendersElectronic Tender Lots received. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:ReviewObject
epo:ElementChangeDescription
epo:ElementModificationDescription
epo:hasElementReferenceReference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. Reference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. Reference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. + xsd:anyURI [0..*]
xsd:anyURI [1..1]
xsd:anyURI [0..1]
epo:Periodepo:hasEndThe date and time at which this period ends.xsd:dateTime [0..1]
epo:Contractepo:hasEntryIntoForceDateThe date on which the contract enters into force. + + Additional information: + + This is generally the date on which the fulfillment of the contract begins. + + This corresponds in eForms to + + WG approval 05/11/2019xsd:date [0..1]
epo:ContractTermepo:hasEOrderingElectronic means will be used for requesting and purchasing in the post-award process. + + WG Approval 12/09/2019 + + xsd:boolean [0..1]
epo:ContractTermepo:hasEPaymentElectronic means must be used for paying. + WG Approval 09/11/2021 + xsd:boolean [0..1]
epo:Noticeepo:hasESenderDispatchDateThe date and time the notice was transmitted electronically by the eSender to the + Publications Office of the European Union. + + Additional Information: + Typically, eSenders include national Official Journals, Buyers sending a large number + of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement + software developers. + + WG approval 20/06/2023xsd:dateTime [0..1]
epo:ProcessPlanningTermepo:hasEstimatedContractNoticePublicationDateForeseen date for publication of Contract Notice. + + Additional information: + This corresponds in eForms BT-127 Future Notice. + + xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToExpressInterestDateThe estimated date of dispatch of the invitations to confirm interest. + + Additional Information: + This corresponds in eForms to BT-631 Dispatch Invitation Interest.xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToTenderDateThe estimated date of dispatch of the invitations to submit tenders in two (or more) + stage procedures. + + Additional Information: + This corresponds in eForms to BT-130 Dispatch Invitation Tender. + + WG Approval 01/10/2019xsd:date [0..1]
epo:SubcontractingEstimateepo:hasEstimatedPercentageThe estimated proportion foreseen to be subcontracted. + + WG Approval 07/01/2020xsd:decimal [0..1]
epo:ProcessPlanningTermepo:hasEstimatedTenderInvitationDateThe planned date for the dispatch of the invitations to submit tenders. + WG Approval 09/11/2021xsd:date [0..1]
epo:SubmissionStatisticalInformationepo:hasEstimatedTotalSubcontractsThe estimated amount of work to be subcontracted in the contract resulting from the + lot. + WG Approval 09/11/2021xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasEUReceivedTendersThe amount of tenders received from economic operators in other EU countries other + than the country of the buyer.xsd:integer [0..1]
cpov:ContactPointepo:hasFaxThe fax number used to reach a person or an organisation.rdf:PlainLiteral [0..*]
epo:AwardCriterionepo:hasFixedValueThis corresponds in the eForms to BT-541 Award Criterion Number in association with + BT-5422 Award Criterion Number Fixed.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractAny subsequent service contract will be awarded to the winner or, in the case of a + design contest, winners. + + WG Approval 29/08/2019 xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractInformationFurther information about follow-up contracts, prizes and payments (for example non-monetary + prizes, payments given for participation). + + WG Approval 03/09/2019rdf:PlainLiteral [0..*]
epo:Noticeepo:hasFormNumberxsd:integer [0..1]
epo:ProcurementCriterionepo:hasFormulaThe mathematical equation or any other description used for complicated weighing of + criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing + cannot be expressed per criterion. + + Additional Information: + This corresponds in eForms to BT-543.rdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasGroupLotEvaluationMethodDescription of how lots and groups of lots are evaluated against one another in the + procedure. + + + + rdf:PlainLiteral [0..*]
epo:OrganisationGroupepo:hasGroupTypeForm of collaboration agreement between organisations. + + Additional Information: + This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also + be used for Organisation Groups. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasGuaranteeDescriptionInformation on the financial commitment required from the economic operator. + + Additional Information: + 1. This information may include the amount and the way of delivering of the guarantee + 2. The financial commitment may be retained by the buyer in the case the tenderer + withdraws the submitted information (i.e. tender, expression of interest and request + for participation, but not request for clarifications) before the award of the contract + or does not sign the contract. + 3. Usual modalities are bonds, cheques, loans, other. + + WG Approval 21/07/20 + rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasInadmissibleTendersTenders received that cannot be awarded due to non-compliance to procurement document + requirements or having an abnormally low price or cost. + + <u>Additional Information: </u> + Non-compliance with a Procurement Document requirements include exclusion grounds, + selection criteria and submission deadline, etc. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:ElementConfidentialityDescriptionepo:hasInstanceReferenceThe URI of a given class that is being referred to.xsd:anyURI [1..1]
org:Organization
cpov:ContactPoint
epo:hasInternetAddressThe main web page used by the instance of the concept. + + WG Approval 01/06/2023 + The main web page used by the instance of the concept. + + WG Approval 01/06/2023 + + xsd:anyURI [0..*]
xsd:anyURI [0..1]
epo:DirectAwardTermepo:hasJustificationAn explanation about the reasons for using the concept. + WG Approval 5/11/2019 + rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasLateSubmissionInformationDescriptionA narrative text explaining the content of the economic operator information that + can be submitted late. + + Additional Information + This does not apply to requests for clarifications. + rdf:PlainLiteral [0..*]
epo:ProcurementObjectepo:hasLegalBasisDescriptionrdf:PlainLiteral [0..*]
epo:ContractTermepo:hasLegalFormRequirementThe legal form to be taken by a Contractor. + + Additional Information: + Generally, this is defined to cover the case where an Organisation Group is involved. + Note that the codelist provided at national level should be used.rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalFormTypeThe classification of an Organisation according to legislation. + + Additional Information: + Generally, this is defined for Tenderers who want to submit as an Organisation Group. + Note that the codelist provided at national level should be used. + rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalNameThe officially registered name of an organisation. + + WG Approval 10/01/2023rdf:PlainLiteral [0..*]
epo:Noticeepo:hasLongTitlerdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasLotAwardCombinationThe contracting authority reserves the right to award contracts combining lots or + groups of lots. + + Additional Information: + This property contains information about the Lots concerned. + This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard + Forms). + + WG approval 23/08/2022 + rdf:PlainLiteral [0..1]
org:Organizationepo:hasMainActivityDescriptionSelf-explanatory text about the Main Activity . + + Additional information: + This field is used when the Main Activity is not available in the controlled list + at-voc:main-activity-type . This is necessary in to cover data provided in the TED + Standard Forms. It shall be deprecated in the future. + + WG Approval 06/09/2022 + rdf:PlainLiteral [0..1]
epo:Procedureepo:hasMainFeatureMain features of the procedure and information about where the full rules for the + procedure can be found. + + Additional Information: + This information should be given when the procedure is not one of those mentioned + in the procurement directives. This can be the case for example for concessions, for + social and other specific services, and in case of voluntary publication of procurement + procedures below the EU procurement thresholds.rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasMaximumLotSubmissionAllowedThe total number of lots for which one Tenderer can submit Tenders. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG approval 12/12/2018 + + xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMaximumNumberOfCandidatesMaximum number of candidates to be invited for the second stage of the procedure. + + WG Approval 22/08/2019xsd:integer [0..1]
epo:ProcedureTermepo:hasMaximumNumberOfLotsToBeAwardedThe maximum number of lots for which contract(s) can be awarded to one tenderer. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG Approval 22/08/2019xsd:integer [0..1]
epo:ContractTermepo:hasMaximumNumberOfRenewalsThe maximum number of times the contract can be renewed. + + Additional Information + + By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract + (i.e. extend its duration) without a new procurement procedure. + For example, a contract may be valid for one year and the buyer may keep a possibility + to renew it (e.g. once, twice) for another three months, if he is content with the + services he received. + + PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken + from eForms. + xsd:integer [0..1]
epo:FrameworkAgreementTermepo:hasMaximumParticipantsNumberThe maximum number of participants in the framework agreement. + + Additional Information: + Maximum number of tenderers who may be awarded a contract within the framework agreement. + + The number is a positive integer. + + This corresponds in eForms to BT-113 Framework Maximum Participants Number. + + WG Approval 2019-02-05xsd:integer [0..1]
epo:SubcontractTermepo:hasMaximumShareThe maximum proportion of something to be distributed. + + Additional Information: + In the case of subcontracting the share may refer to the proportion of works, services + or supplies being subcontracted. + + WG Approval 17/09/2019 + + xsd:decimal [0..1]
epo:SubmissionStatisticalInformationepo:hasMediumTenderPerLotsTenders from medium-sized enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMinimumNumberOfCandidatesMinimum number of candidates to be invited for the second stage of the procedure. + + WG Approval 22/08/2019 xsd:integer [0..1]
epo:SubcontractTermepo:hasMinimumShareThe minimum proportion of something to be distributed. + + Additional Information: + In the case of subcontracting the share may refer to the proportion of works, services + or supplies being subcontracted. + + WG Approval 17/09/2019xsd:decimal [0..1]
epo:SubcontractTermepo:hasMinimumSubcontractorsProposedObligationThe minimum percentage of the contract value that the contractor must subcontract. + + Additional information: + This is used for the competitive procedure described in Title III of Directive 2009/81/EC. + + + WG Approval 09/11/2021xsd:decimal [0..1]
epo:ElementModificationDescriptionepo:hasModificationDescriptionAn explanatory text about this context. + + Additional Information + + This corresponds in Standard forms to Field VII.2.1 in F20 + This corresponds in eForms to BT-202 . + + WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ElementModificationDescriptionepo:hasModificationReasonDescriptionAn explanation about the reasons for using the concept. + + Additional Information + This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. + + This corresponds in eForms to BT-201 . + + WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasNationalProcedureRulesxsd:anyURI [0..*]
epo:StrategicProcurementepo:hasNonAccessibilityCriterionJustificationReason for not applying accessibility criteria. + + Additional information: + This corresponds in eForma to BT-755 Accessibility Justification. + + WG Approval 05/03/2019rdf:PlainLiteral [0..*]
epo:LotAwardDecisionepo:hasNonAwardedContractNumberThe number the contract would have had if it had been awarded. + + Additional information: + + This field is provided to support the data provided in the TED Standard Forms, and + it should be discontinued in the future. + + WG agreement: 06/09/2022 + rdf:PlainLiteral [0..1]
epo:LotAwardDecisionepo:hasNonAwardedContractTitleThe title the contract would have had if it had been awarded. + + Additional information: + + This field is provided to support the data provided in the TED Standard Forms, and + it should be discontinued in the future. + + WG agreement: 06/09/2022rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasNonEEAReceivedTendersThe amount of tenders received from economic operators in non-EEA countries. + + WG Approval 12/12/2019 15:20:36xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasNoNegotiationNecessaryThe buyer reserves the right to award the contract on the basis of the initial tenders + without any further negotiations. + + Additional information: + See Article 29(4) of Directive 2014/24/EU. + xsd:boolean [0..1]
epo:SubmissionTermepo:hasNonElectronicSubmissionDescriptionTextual explanation of how non-electronic information is to be presented. + + WG Approval 21/07/2020 + + rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasNonEUReceivedTendersThe amount of tenders received from economic operators in non-EU countries. + xsd:integer [0..1]
epo:Noticeepo:hasNoticePublicationNumberrdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasNumberOfReviewRequestsThe number of requests the buyer received to review any of its decisions.xsd:integer [1..1]
epo:SubmissionStatisticalInformationepo:hasNumberOfTenderersInvitedNumber of economic operators invited to tender. + + Additional Information + This may be used for single-stage procedures or to indicate the number of candidates + invited to tender in multi-stage procedures. + + WG Approval 01/12/2020 + + xsd:integer [0..1]
epo:Noticeepo:hasOJSIssueNumberxsd:integer [0..1]
epo:Noticeepo:hasOJSTyperdf:PlainLiteral [0..1]
epo:OpeningTermepo:hasOpeningDateTimeDate and time for the opening of tenders. + + WG Approval 12/03/2019 + + xsd:dateTime [1..1]
epo:OpeningTermepo:hasOpeningDescriptionFurther information about the opening of tenders. + + Additional Information + For example, who may participate in the opening and whether any authorization is needed. + + WG Approval 12/03/2019rdf:PlainLiteral [0..*]
epo:OpeningTermepo:hasOpeningURLThe identifier of the address of the Opening of Tenders. + WG Approval 09/11/2021xsd:anyURI [0..1]
epo:ContractTermepo:hasOptionsThe buyer reserves the right (not an obligation) for additional purchases from the + contractor (while the contract is valid).xsd:boolean [0..1]
epo:ContractTermepo:hasOptionsDescriptionThe motivation and details about additional purchases that the buyer may undertake + while the contract is valid. + + WG Approval 09/04/2019 rdf:PlainLiteral [0..*]
org:Organizationepo:hasOrganisationUnitNameThe name of a subpart of an organisation. + + Additional Information: + E.g. the relevant department of a large organisation. + + We added this attribute in case of eProcurement notices where the Buyer is actually + a part of an Organization and the rest of the properties apply to the rest of the + Organisation as well.rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasOtherCountriesReceivedTendersxsd:integer [0..1]
epo:AwardEvaluationTermepo:hasOverallCostAwardCriteriaPonderationThe weighting given to cost. + + Additional Information: + This weighting covers usually all cost criteria against price or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallPriceAwardCriteriaPonderationThe weighting given to price. + + Additional Information: + This weighting covers usually all price criteria against cost or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallQualityAwardCriteriaPonderationThe weighting given to quality. + + Additional Information: + This weighting covers usually all quality criteria against price or cost criteria.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasParticipationPaymentDetails on payments to participants + WG Approval 09/11/2021rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPaymentArrangementInformation about financial clauses that will govern some economic aspects of the + execution of the contract. + + Additional Information: These clauses usually refer to financial and payment provisions. + + This type of information should be structured instead of a free text in order to reuse + it an ideal world. Unfortunately this is an information that in the real life no one + is willing to provide pro-actively. + + WG Pending of discussion with eFormsrdf:PlainLiteral [0..*]
epo:ContractLotCompletionInformationepo:hasPaymentValueDiscrepancyJustificationrdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPerformanceConditionsThe particular conditions and additional information related to the execution of the + contract. + + Additional Information: + + For example, specific information about the place of performance, intermediary deliverables, + compensation for damages, intellectual property rights. + + WG approval 15-01-2019rdf:PlainLiteral [0..*]
epo:ContractTermepo:hasPlaceOfPerformanceAdditionalInformationFurther details on the location of the execution of the contract. + + WG Approval 30/07/2019rdf:PlainLiteral [0..*]
epo:PublicationProvisionepo:hasPreferredPublicationDateThe date the buyer would like to have the record made publicly available. + + Additional Information: + This corresponds in eForms to BT-738 Notice Publication Date Preferred. + + WG Approval 12/05/2020xsd:date [0..1]
epo:ElementChangeDescriptionepo:hasPreviousVersionOfElementReferenceReference to the class instance in the previous version of the notice, which was changed. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. + xsd:anyURI [0..1]
epo:Prizeepo:hasPrizeRankThe position of the prize (e.g. first place, second place) in a design contest list + of prizes. + + WG Approval 29/08/2019 + xsd:integer [0..1]
epo:ElementChangeDescriptionepo:hasProcurementDocumentChangeDateThe date and time of the change. + + Additional information: + This corresponds in eForms to BT-719 Change Procurement Documents Date + + WG Approval 5/11/2019 + xsd:date [0..1]
epo:ElementConfidentialityDescriptionepo:hasPropertyReferenceThe URI of a given attribute (property) that is being referred to.xsd:anyURI [1..1]
epo:AccessTermepo:hasPublicAccessURLWeb page where the procurement documents can be downloaded. + + Additional Information: + This corresponds in the eForms to BT-15 Documents URL. + + WG Approval 09/03/2021 + xsd:anyURI [0..1]
epo:Documentepo:hasPublicationDateDate of formal public issuance of the document. + + WG approval 20/06/2023xsd:date [0..1]
epo:QualificationCriteriaSummaryepo:hasQualificationConditionrdf:PlainLiteral [0..*]
epo:MultipleStageProcedureTermepo:hasQualificationSystemRenewalDescriptionrdf:PlainLiteral [0..1]
epo:Quantityepo:hasQuantityValueThe numeric value of the quantity, including decimals.xsd:decimal [1..1]
epo:SubmissionTermepo:hasReceiptDeadlineThe time limit for receiving submissions. + + Additional Information + This is the deadline by which the buyer must receive submissions (e.g. tenders, requests + to participate, clarifications, etc.) and is not the time at which the information + is submitted by the economic operator. + This attribute should be used for standard forms mappings. + + WG Approval 21/07/2020 + xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptExpressionDeadlineTime limit for receipt of expressions of interest. + + Pending of review by the WG + + xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptParticipationRequestDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptPreliminaryMarketConsultationDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptTenderDeadlinexsd:dateTime [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedMicroTendersThe amount of tenders received from a micro enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC.xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedParticipationRequestsThe amount of applications to participate from economic operators. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedSmallTendersTenders from small enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + + xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedTendersThe total amount of tenders received. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:Documentepo:hasReceptionDateNotes: Date when a record is acknowledged by an organisation. + + WG Approval 12/05/2020xsd:date [0..1]
epo:ProcurementObjectepo:hasRecurrenceDescriptionAny additional information about the recurrence of the Procurement. + + Additional Information: + For example estimated timing of the Procedure. + + This corresponds in eForms to BT-95 Recurrence Description. + + (WG approval 2019-01-16) + rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasRenewalDescriptionAny other information about the renewal(s). + + WG approval 16/04/2019 rdf:PlainLiteral [0..*]
epo:ReviewRequestepo:hasRequestDateThe date when the review request was submitted. + + Additional information: + This attribute corresponds to the BT-787 Review Date in eForms. + xsd:date [0..1]
epo:ContractTermepo:hasReservedExecutionThe execution of the contract is restricted to the framework of sheltered employment + programmes. + + Additional information: + This property corresponds in eForms to BT-736 + + WG Approval 12/09/2019 + + The codelist to be used is at-voc:applicability which is available at http://publications.europa.eu/resource/dataset/applicability + xsd:boolean [0..1]
epo:AccessTermepo:hasRestrictedAccessURLThe internet address with information on accessing the restricted (part of the) procurement + document. + + Additional Information: + This corresponds in eForms to BT-615 Documents Restricted URL. + xsd:anyURI [0..1]
epo:ReviewIrregularitySummaryepo:hasReviewIrregularityCountThe number of requests for a given irregularity. + + Additional information: + This attribute corresponds in eForms to BT-635 Buyer Review Requests Count.xsd:integer [1..1]
epo:ReviewObjectepo:hasReviewURLThe internet address of the documents concerning the review instance. + + Additional information: + This attribute corresponds in eForms to BT-794 Review URL. + xsd:anyURI [0..1]
adms:Identifierepo:hasSchemeThe name of the identification scheme.rdf:PlainLiteral [0..*]
adms:Identifierepo:hasSchemeVersionThe version of the identification scheme.rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:hasSelectionCriteriaStatedInProcurementDocumentsxsd:boolean [0..1]
epo:ProfessionalSuitabilitySummaryepo:hasServiceReservedToParticularProfessionxsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasSMEReceivedTendersThe amount of tenders received from micro, small and medium-sized enterprises. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. + + WG Approval 05/03/2020 + xsd:integer [0..1]
epo:StrategicProcurementepo:hasStrategicProcurementDescriptionSelf-explanatory text about a concept. + rdf:PlainLiteral [0..*]
epo:SubcontractTermepo:hasSubcontractingInvolvedList of Subcontractors and the subject matter they cover are required. + + Additional Information: + The tenderer will ned to supply this information in the tender. + + WG Approval 28/02/2019xsd:boolean [0..1]
epo:SubcontractTermepo:hasSubcontractorsProposedAboveObligationThe maximum percentage of the contract value that the contractor must subcontract. + + Additional information: + This is used for the competitive procedure described in Title III of Directive 2009/81/EC. + + + WG Approval 09/11/2021xsd:decimal [0..1]
epo:SubcontractingEstimateepo:hasSubjectMatterDescription of the share of the contract that is to be subcontracted. + + Additional infromation: + This can be an aggregate of several subcontracts. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasSubmissionURL + Additional Information: + This corresponds to the eForms BT-18 Submission URL. + + This corresponds in eForms to BT-509 Organisation eDelivery Gateway.xsd:anyURI [0..*]
epo:MultipleStageProcedureTermepo:hasSuccessiveReductionThe number of solutions or tenders will be reduced in iterative evaluations for multiple + staged procedures. + + Additional information: + This refers to multiple-stage procedures (included two-stage procedures, at least). + Open Procedures can be seen as one-stage procedures. + WG Approval 22/08/2019 xsd:boolean [0..1]
cccev:Constraintepo:hasThresholdValueThe cut-off level for a given concept. + + Additional Information: + This value is given as e.g. a minimum score, a maximum number of tenders with the + highest score passing (see codelist at-voc:number-threshold).xsd:decimal [1..1]
epo:ReviewRequestSummaryepo:hasTotalNumberOfComplainantsThe number of economic operators that requested the buyer to review any of its decisions + (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive + 89/665/EEC and Directive 92/13/EEC. + + Additional information: + This attribute corresponds in eForms to BT-712 Buyer Review Complainants + + WG Approval 11/04/2019xsd:integer [0..1]
epo:GreenProcurementepo:hasTotalVehiclesThe number of all vehicles (regardless of whether clean or not) that have either been + purchased, leased, rented, hired-purchased or their use has been contractually committed + to for the provision of a purchased service. + + Additional Information + + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:Quantityepo:hasUnitDescriptionA narrative explanation defining the units of items being counted + + Additional information: This could be for example individual items or pack or two. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasUnverifiedTendersOffers received for which it has not been verified if they are admissible or inadmissible + (e.g. because award criteria have been evaluated for all tenders and admissibility + is checked only for the winning tender). + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:Fundepo:hasURLThe identifier of a resource. + + Additional Information + + For example: + + 1. The URL of the system from where to access the procurement documents; + 2. The URL of the system for the submission of tender documents; + 3. The URL of the system from where to download a tool to communicate with the Buyer; + 4. The URL of the system used by a Technique to allow Economic Operators to exchange + information with the Buyer (e.g. eAuction and DPS Systems) + 5. The URL of the system used to exchange information between Buyer and EO for questions + and clarifications; + + WG Approval 30/09/2019xsd:anyURI [0..1]
epo:Documentepo:hasVersionA number that identifies a specific state of a document. + + WG approval: 18/11/2021 + rdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasWithdrawalDateThe date and time when the request for review was withdrawn. + + Additional information: + This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date.xsd:date [0..1]
epo:ReviewRequestepo:hasWithdrawalReasonThe explanation for withdrawing the request for review. + + Additional information: + This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasonsrdf:PlainLiteral [0..1]
epo:GreenProcurementepo:hasZeroEmissionVehiclesThe number of all zero-emission heavy-duty vehicles that have either been purchased, + leased, rented, hired-purchased or their use has been contractually committed to for + the provision of a purchased service. + + Additional Information + + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:ProcurementCriteriaSummaryepo:indicatesPerformingStaffInformationRequirementxsd:boolean [0..1]
epo:Procedureepo:isAcceleratedStatement about the fact that the procedure will be reduced due to a state of urgency. + + Additional Information + + This modifies the time limit for the receipt of requests to participate or the receipt + of tenders. + + WG Approval 20/08/2019 + xsd:boolean [0..1]
epo:SubmissionTermepo:isAdvancedElectronicSignatureRequiredAdvanced or qualified electronic signature or seal (as defined in Regulation (EU) + No 910/2014) is required. + + + + The submitted information is required to be signed electronically. + + Additional Information: + + Signature can be defined as "data in electronic form which is attached to or logically + associated with other data in electronic form and which is used by the signatory to + sign. + For more details on the meaning and uses of electronic signature you may consult different + authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 + on electronic identification and trust services for electronic transactions in the + internal market. + + WG Approval 21/07/2020 + xsd:boolean [0..1]
epo:ProcedureTermepo:isAwardedByCPBProcedure is awarded by a Central Purchasing Body. + + xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isCompetitionTerminatedNo further contracts will be awarded in this procedure. + + Additional Information: + This can be instantiated in the post award phase. + + PIN for Competition needs to be signaled. This field can be used even if no contracts + are awarded in the contract award notice. + + This corresponds in eForms to BT-756 PIN Competition Termination.xsd:boolean [0..1]
epo:Buyerepo:isContractingEntityRole of entities, which: + + (a) are contracting authorities or public undertakings and which pursue one of the + activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. + + (b) when they are not contracting authorities or public undertakings, have as one + of their activities any of the activities referred to in Articles 8 to 14, or any + combination thereof and operate on the basis of special or exclusive rights granted + by a competent authority of a Member State. + + Additional Information + + The indicator is needed in order to discriminate between those contracts where the + Contracting Entity acts as a Contracting Authority undergoing the limits and the rules + of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed + constraints. + For example, the Contracting Entities have different thresholds for the application + of Directive 24 if compared with Contracting Authorities. + + WG Approval 28/04/2020 + xsd:boolean [0..1]
epo:ProcurementObjectepo:isCoveredByGPASpecifies whether the Agreement on Government Procurement (GPA) applies. + + Additional information: + The GPA aims to establish a multilateral framework of balanced rights and obligations + relating to public contracts with a view to achieving the liberalization and expansion + of world trade. + + This corresponds in the e Forms to BT-115 GPA Coverage. + + WG Approval 15/10/2019 + + xsd:boolean [0..1]
epo:Procedureepo:isDesignContestA competition which enables the buyer to acquire a plan or design via a jury. + + Additional information: + Design contests have traditionally mostly been used in the fields of town and country + planning, architecture and engineering or data processing, other purposes, such as + to obtain plans for financial engineering + + The contest may include or not the award of prizes; + + WG approval 04-02-2021 xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isDPSTerminatedEnd of the Dynamic Purchase System (DPS). + + Additional Information: This property can be used in the contract award notice even + if no contracts are awarded. + + WG Approval 22/11/2019 + xsd:boolean [0..1]
epo:Noticeepo:isEUInstitutionxsd:boolean [0..1]
epo:SubmissionTermepo:isGuaranteeRequiredThe submitted information must include a financial commitment to be used in case of + default. + + Additional Information: + See the additional information provided in the definition of the 'Guarantee Description' + element. + + WG Approval 21/07/20 + + xsd:boolean [0..1]
epo:Procedureepo:isJointProcurementMultiple buyers procure together within the same procedure. + + Addition Information: + In case the joint procurement involves buyers from different countries, the national + law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:isJuryDecisionBindingIndicates whether the procuring entity is bound to apply the decision of the jury.xsd:boolean [0..1]
epo:Businessepo:isListedCompanyPublic companies listed on a stock exchange and subject to disclosure requirements + (either by stock exchange + rules or through law or enforceable means), which impose requirements to ensure adequate + transparency of + beneficial ownership. + + <u>Additional Information:</u> + + In eForms this indicator is used when the nationality of beneficial owner is not provided + because the Economic Operator is registered in a regulated market that is subject + to disclosure requirements consistent with Union law or subject to equivalent international + standards which ensure adequate transparency of ownership information. + + WG Approval 21/11/2019xsd:boolean [0..1]
epo:SubmissionTermepo:isMultipleTenderSubmissionAllowedTenderers may submit more than one competing tenders. + + WG Approval 10/10/2019 + + xsd:boolean [0..1]
epo:NonDisclosureAgreementTermepo:isNonDisclosureAgreementRequiredxsd:boolean [0..1]
epo:ProcedureTermepo:isOneLotOnlyAllowedIndicates whether tenders may be submitted for only one Lot. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG approval 23/08/2022 + + xsd:boolean [0..1]
epo:ElementChangeDescriptionepo:isProcurementDocumentChangedOne or more procurement documents have been changed. + + Additional information: + This corresponds in eForms to BT-718 Change Procurement Documents + + WG Approval 05/11/2019xsd:boolean [0..1]
epo:AccessTermepo:isProcurementDocumentRestrictedThe access to certain procurement documents is restricted. + + Additional Information: + This corresponds in eForms to BT-14 Documents Restricted. + + WG Approval 10/10/2019xsd:boolean [0..1]
epo:ProcurementObjectepo:isRecurrentThe Procurement being notified is likely to be included in another procedure in the + foreseeable future. + + Additional Information: + + For example, a regularly re-tendered municipal service. This does not include awarding + multiple contracts within a single qualification system, framework agreement, or a + dynamic purchasing system. + + This corresponds in eForms to BT-94 Recurrence. + + WG Approval 12/05/2020 + xsd:boolean [0..1]
epo:ContractTermepo:isRenewalIndicatorIndicates whether the contract is subject to a renewal clause. + WG Approval 09/11/2021xsd:boolean [0..1]
epo:SecurityClearanceTermepo:isSecurityClearanceRequiredxsd:boolean [0..1]
epo:ProcurementObjectepo:isSMESuitableThe Lot is suitable for small and medium enterprises (SMEs). + + Additional Information + + This allows the buyer to make emphasis on the fact that the procedure has been designed + having SMEs in mind. This indicator is also to be reflected in the selection criteria. + + For example, number of employees and turnover are applicable to the definition of + an SME. + + WG Approval 15/10/2019 + xsd:boolean [0..1]
epo:ProcedureTermepo:isSubmissionForAllLotsAllowedIndicates whether tenders may be submitted for all Lots. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms) + + WG approval 23/08/2022 + xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isToBeRelaunchedIndicator of whether the procurement object is to be relaunched. + + Additional information: + This can be instantiated in the post award phase. + + This corresponds in eForms to BT-634 Procurement Relaunch. + + WG Approval: 18/01/2022 + xsd:boolean [0..1]
epo:SelectionCriterionepo:isUsedForCandidateRestrictionThe criterion will be used to select the candidates to be invited for the second stage + of a multistage procedure. + + Additional Information: + This property is only used if a maximum number of candidates was foreseen in the procedure. + This corresponds in eForms to BT-40 Selection Criteria Second Stage Invitexsd:boolean [0..1]
epo:ProcurementObjectepo:isUsingEUFundsThe procurement foresees funding by the Union. + + Additional Information: + The funding may cover the whole procurement or part of the procurement. + + For example the European Structural and Investment Funds or grants awarded by the + European Union. + + xsd:boolean [0..1]
epo:Tenderepo:isVariantAlternative solution to fulfil the buyer's needs as opposed to solutions indicated + in the procurement documents. + + Additional Information: + + The permission to offer variants is only allowed if specified in a Contract Notice + or a Prior Information Notice that used as a means for calling for a competition. + The buyer lays out minimum requirements in the procurement documents that must be + respected by tenderers submitting variants. + + WG Approval 29/05/2019 + + xsd:boolean [0..1]
epo:ReviewRequestepo:isWithdrawnThe review request was withdrawn. + + Additional information: + This attribute corresponds in eForms to BT-796 Review Request Withdrawn.xsd:boolean [0..1]
cpv:Personfoaf:familyNameThe hereditary surname of a family. + rdf:langString [0..*]
cpv:Personfoaf:givenNameThe name(s) that identify the Person within a family with a common surname. + rdf:langString [0..*]
cpv:Personfoaf:nameThe complete name of the Person as one string.rdf:langString [0..*]
locn:Addresslocn:addressAreaThe name or names of a geographic area or locality that groups a number of addressable + objects for addressing purposes, without being an administrative unit. + + Additional Information: + This would typically be part of a city, a neighbourhood or village, e.g. Montmartre.rdf:langString [0..1]
locn:Addresslocn:adminUnitL1The name or names of a unit of administration related to the exercise of jurisdictional + rights, for local, regional and national governance. Level 1 refers to the uppermost + administrative unit for the address, almost always a country. + + Additional Information: + Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, + country names should be provided in a consistent manner to reduce ambiguity. For example, + either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing + the two. The Country controlled vocabulary from the Publications Office can be reused + for this.rdf:langString [0..1]
locn:Addresslocn:adminUnitL2The name or names of a unit of administration related to the exercise of jurisdictional + rights, for local, regional and national governance. Level 2 refers to the region + of the address, usually a county, state or other such area that typically encompasses + several localities. + + Additional Information: + Some recommended codelists from the EU Publications Office include: Administrative + Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement + of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" + in the ATU controlled vocabulary. + rdf:langString [0..1]
locn:Addresslocn:fullAddressThe complete address written as a formatted string. + + Additional Information: + Use of this property is recommended as it will not suffer any misunderstandings that + might arise through the breaking up of an address into its component parts. This property + is analogous to vCard's label property but with two important differences: (1) formatting + is not assumed so that, unlike vCard label, it may not be suitable to print this on + an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress + property has no such restriction. An example of a full address is "Champ de Mars, + 5 Avenue Anatole France, 75007 Paris, France".rdf:langString [0..1]
dct:Locationlocn:geographicNameA textual description for a Location. + + Additional Information: + The INSPIRE Data Specification on Geographical Names provides a detailed model for + describing a 'named place', including methods for providing multiple names in multiple + scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, + the concept of a geographic name used here is consistent. + + A geographic name is a proper noun applied to a spatial object. Taking the example + used in the INSPIRE document (page 15), the following are all valid geographic names + for the Greek capital: + + - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) + - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) + - "Athens"@en (the English language exonym) + INSPIRE has a detailed (XML-based) method of providing metadata about a geographic + name and in XML-data sets that may be the most appropriate method to follow. When + using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical + data (the use case for INSPIRE), the Code datatype or a simple language identifier + may be used to provide such metadata. + + The country codes defined in ISO 3166 may be used as geographic names and these are + generally preferred over either the long form or short form of a country's name (as + they are less error prone). The Publications Office of the European Union recommends + the use of ISO 3166-1 codes for countries in all cases except two: + + - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; + - use 'EL' in preference to the ISO 3166 code GR for Greece. + Where a country has changed its name or no longer exists (such as Czechoslovakia, + Yugoslavia etc.) use the ISO 3166-3 code.rdf:langString [0..1]
locn:Addresslocn:locatorDesignatorA number or a sequence of characters which allows a user or an application to interpret, + parse and format the locator within the relevant scope. A locator may include more + locator designators. + + Additional Information: + In simpler terms, this is the building number, apartment number, etc. For an address + such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17".rdf:PlainLiteral [0..1]
locn:Addresslocn:locatorNameProper noun(s) applied to the real world entity identified by the locator. + + Additional Information: + The locator name could be the name of the property or complex, of the building or + part of the building, or it could be the name of a room inside a building. + + The key difference between a locator and a locator name is that the latter is a proper + name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting + room within the European Commission headquarters for which locator name is more appropriate + than locator.rdf:langString [0..1]
locn:Addresslocn:postCodeThe post/zip code of an address. (INSPIRE's definition is "A code created and maintained + for postal purposes to identify a subdivision of addresses and postal delivery points.") + + Additional Information: + Post codes are common elements in many countries' postal address systems. One of the + many post codes of Paris is for example "75000".rdf:PlainLiteral [0..*]
locn:Addresslocn:postNameThe key postal division of the address, usually the city. (INSPIRE's definition is + "One or more names created and maintained for postal purposes to identify a subdivision + of addresses and postal delivery points.) For example, "Paris".rdf:langString [0..*]
locn:Addresslocn:thoroughfareAn address component that represents the name or names of a passage or way through + from one location to another. A thoroughfare is not necessarily a road, it might be + a waterway or some other feature. + + Additional Information: + For example, "Avenue des Champs-&#201;lys&#233;es".rdf:langString [0..*]
cpv:Personperson:birthNameFamily name of the Person given upon their birth. + WG Approval 09/11/2021rdf:langString [0..*]
cpv:Personperson:patronymicNameName based on the given name of the Person's father. + WG Approval 09/11/2021rdf:langString [0..*]
adms:Identifierskos:notationThe literal identifying an entity, like a person or an object.rdf:PlainLiteral [1..1]
cccev:InformationConcept
cccev:Requirement
skos:prefLabelThe preferred lexical label for a resource, in a given language. + + WG approval 30/05/2023 + + The preferred lexical label for a resource, in a given language. + + WG approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
epo:SpecificDurationtime:numericDurationValue of a temporal extent expressed as a number.xsd:decimal [1..1]
+

Predicates (object properties) and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Predicate nameDefinitionDomain, Range and Cardinality
adms:identifierA unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 + + A unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 A unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 + Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class.epo:Project -> adms:Identifier [0..1]
epo:LotGroup -> adms:Identifier [0..1]
epo:ProcurementElement -> adms:Identifier [1]
foaf:Agent -> adms:Identifier [0..*]
dct:Location -> adms:Identifier [0..1]
cccev:InformationConcept -> adms:Identifier [0..1]
epo:Document -> adms:Identifier [0..*]
epo:Fund -> adms:Identifier [0..1]







cccev:confidentialityLevelTypeSecurity classification assigned to an Evidence e.g. classified, sensitive, public. + + Additional Information: + + Classifications should be defined by an organisation/country as an outcome of a security + assessment. + cccev:Evidence -> at-voc:confidentiality-level [0..1]
cccev:constrainsInformation Concept about which a Constraint expresses a limitation. + + Additional Information: + Information Concepts are tools to make Requirements more machine processable: they + allow to provide more detail about a Requirement. This way, Constraints can be made + very precise, namely the limit that must be achieved, is a limit on the value for + the associated Information Concept. For example, the Information Concept would be + the age of a person and the Constraint would be the required age in the context of + a specific evaluation.cccev:Constraint -> cccev:InformationConcept [0..*]
cccev:hasRequirementA more specific Requirement that is part of the Requirement.cccev:Requirement -> cccev:Requirement [0..*]
cccev:supportsConceptInformation Concept providing facts found/inferred from the Evidence. + + Additional Information: + Examples of Information Concepts are values found explictly in the evidence such as + a birth date or information derived from the Evidence such as "I am older that 18 + years" or "this is a FairTrade product".cccev:Evidence -> cccev:InformationConcept [0..*]
cccev:supportsRequirementRequirement for which the Evidence provides proof.cccev:Evidence -> cccev:Requirement [0..*]
cv:addressAssociates any Resource with the corresponding Address. + + Additional Information: + Asserting the address relationship implies that the Resource has an Address. org:Organization -> locn:Address [0..*]
cpov:ContactPoint -> locn:Address [0..1]
cv:registeredAddressThe registered address relationship links a Resource with the legally registered Address. + + Additional Information: + It is the address to which formal communications can be sent, such as the postal address. The registered address relationship links a Resource with the legally registered Address. + + Additional Information: + It is the address to which formal communications can be sent, such as the postal address. + cpv:Person -> locn:Address [0..1]
org:Organization -> locn:Address [0..1]
dct:typeCategory to which the Requirement belongs.cccev:Criterion -> at-voc:criterion [0..1]
epo:actsOnBehalfOfRepresents.epo:ProcurementServiceProvider -> epo:Buyer [1..*]
epo:announcesAwardDecision epo-not:ResultNotice -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision [0..*]
epo-not:ResultNotice -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision [0..*]
epo:announcesCompletionOfContract epo-not:CompletionNotice -> epo:Contract [1]
epo-not:CompletionNotice -> epo:Contract [1]
epo:announcesContract epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice -> epo:Lot [1..*]
epo-not:CompetitionNotice -> epo:Lot [1..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Lot [1..*]
epo-not:CompetitionNotice -> epo:Lot [1..*]
epo:announcesLotGroup epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo:announcesLotGroupAwardInformation epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. + + Additional Information: + For example, elements in the Contract Award Notice that should be published at a later + date. Relation indicating which parts of a document are not published. + + Additional Information: + For example, elements in the Contract Award Notice that should be published at a later + date. epo-not:ResultNotice -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision [0..*]
epo-not:ResultNotice -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision [0..*]
epo:announcesNoticeAwardInformation epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo:announcesPlannedProcurementPart epo-not:PlanningNotice -> epo:PlannedProcurementPart [0..*]
epo-not:PlanningNotice -> epo:PlannedProcurementPart [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice -> epo:Procedure [1]
epo-not:CompetitionNotice -> epo:Procedure [1]
epo-not:DirectAwardPrenotificationNotice -> epo:Procedure [1]
epo-not:CompetitionNotice -> epo:Procedure [1]
epo:announcesReviewObject epo-not:CompletionNotice -> epo:ReviewObject [1..*]
epo-not:CompletionNotice -> epo:ReviewObject [1..*]
epo:announcesRole epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo:associatedWithThe document to which a document is associated. + + WGM 01/03/2022 + epo:Document -> epo:Document [0..*]
epo:bindsBuyerProvides legal constraint on the Buyer.epo:Contract -> epo:Buyer [0..*]
epo:bindsContractorProvides legal constraint on the Contractor.epo:Contract -> epo:Contractor [0..*]
epo:comprisesLotAwardDecisionIncorporates LotAwardOutcome.epo:AwardDecision -> epo:LotAwardDecision [0..*]
epo:comprisesMiniCompetitionAwardDecisionepo:AwardDecision -> epo:MiniCompetitionAwardDecision [0..*]
epo:comprisesTenderIncorporates Tender.epo:TenderGroup -> epo:Tender [1..*]
epo:comprisesTenderAwardOutcomeIncorporates TenderAwardOutcome.epo:AwardDecision -> epo:TenderAwardOutcome [0..*]
epo:concernsLotRelates to Lot. Relates to Lot.epo:ProcurementProcessInformation -> epo:Lot [0..1]
epo:LotAwardDecision -> epo:Lot [1]
epo:concernsMiniCompetitionepo:MiniCompetitionAwardDecision -> epo:MiniCompetition [0..1]
epo:concernsProcedureRelates to Procedure.epo:ProcurementProcessInformation -> epo:Procedure [0..1]
epo:concernsReviewSummaryForLotRelates to Lot review summary. + + Additional information: + This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier.epo:ReviewRequestSummary -> epo:Lot [1]
epo:concernsTenderepo:TenderAwardOutcome -> epo:Tender [1]
epo:conformsToLegalBasisThe Notice was designed in accordance with the given legal basis. + + Additional Information: + This Notice can be used for Procedures which do not have the same legal basis. + This holds for standard forms.epo:Notice -> at-voc:legal-basis [0..1]
epo:conformsToSpecificLegalBasisepo:Notice -> at-voc:legal-basis [0..1]
epo:containsCandidateepo:SelectedCandidateList -> epo:Candidate [0..*]
epo:containsModificationsOf + + Additional information + This relation shall be used between Instances of the SAME type/class. + + The "modifying-instance" can be minimally instantiated, carrying the fields/information + that override the fields in the "modified-instance". + + This means that the "modifying-instance" (is under-specified) and might violate minimal + cardinality restrictions in case they are checked. But the purpose of such an instance + is not to be used as a full instance. + owl:Thing -> owl:Thing [0..1]
epo:contextualisedByThe place of the AgentInRole in the procurement is expressed by a ProcurementObject.epo:AgentInRole -> epo:ProcurementObject [0..*]
epo:definesBudgetProviderRelation indicating a ProcedureTerm has a BudgetProvider.epo:ProcedureTerm -> epo:BudgetProvider [0..1]
epo:definesCatalogueProviderRelation indicating an AccessTerm has a CatalogueProvider.epo:AccessTerm -> epo:CatalogueProvider [0..*]
epo:definesCatalogueReceiverRelation indicating an AccessTerm has a CatalogueReceiver.epo:AccessTerm -> epo:CatalogueReceiver [0..*]
epo:definesContractDurationRelation indicating a ContractTerm has a Duration.epo:ContractTerm -> epo:Duration [0..1]
epo:definesContractPeriodRelation indicating a ContractTerm has a Period.epo:ContractTerm -> epo:Period [0..1]
epo:definesInformationProviderRelation indicating a ProcedureTerm has an information provider.epo:ProcedureTerm -> epo:AuxiliaryParty [0..*]
epo:definesLotGroupRelation indicating a ProcedureTerm has a LotGroup.epo:ProcedureTerm -> epo:LotGroup [0..*]
epo:definesMediatorRelation indicating a ProcedureTerm has a Mediator.epo:ProcedureTerm -> epo:Mediator [0..1]
epo:definesOfflineAccessProviderRelation indicating an AccessTerm has an OfflineAccessProvider.epo:AccessTerm -> epo:OfflineAccessProvider [0..1]
epo:definesOpeningPlaceThe place where the tenders will be publicly opened. + + WG Approval 10-10-2019epo:OpeningTerm -> locn:Address [0..1]
epo:definesParticipationRequestProcessorRelation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor.epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor [0..1]
epo:definesParticipationRequestReceiverRelation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver.epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver [0..1]
epo:definesPaymentExecutorRelation indicating a ContractTerm has a PaymentExecutor.epo:ContractTerm -> epo:PaymentExecutor [0..1]
epo:definesPlaceOfPerformanceRelation indicating the place of performance of a Contract. + + WG approval 21/03/2023epo:ContractTerm -> dct:Location [0..*]
epo:definesPrizeRelation indicating a DesignContestRegimeTerm has a Prize.epo:DesignContestRegimeTerm -> epo:Prize [0..*]
epo:definesProcurementProcedureInformationProviderRelation indicating an AccessTerm has a ProcurementProcedureInformationProvider.epo:AccessTerm -> epo:ProcurementProcedureInformationProvider [0..1]
epo:definesSubcontractingTermRelation indicating a ContractTerm has a SubcontractingTerm.Relation indicating a + term has a subterm.epo:ContractTerm -> epo:SubcontractTerm [0..1]
epo:definesTenderProcessorRelation indicating a SubmissionTerm has a TenderProcessor.epo:SubmissionTerm -> epo:TenderProcessor [0..1]
epo:definesTenderReceiverRelation indicating a SubmissionTerm has a TenderReceiver.epo:SubmissionTerm -> epo:TenderReceiver [0..1]
epo:delegatesAncillaryActivitiesToEntrusts ancillary purchasing activities to ProcurementServiceProvider. + + Additional Information: + Directive 2014/24/EU describes ancillary purchasing activities as activities consisting + in the provision of support to purchasing activities, in particular in the following + forms: + + (a) technical infrastructure enabling contracting authorities to award public contracts + or to conclude framework agreements for works, supplies or services; + + (b) advice on the conduct or design of public procurement procedures; + + (c) preparation and management of procurement procedures on behalf and for the account + of the contracting authority concerned;epo:Buyer -> epo:ProcurementServiceProvider [0..*]
epo:describesContractModification epo-not:ContractModificationNotice -> epo:ContractModification [0..*]
epo-not:ContractModificationNotice -> epo:ContractModification [0..*]
epo:describesLotCompletionepo:ContractLotCompletionInformation -> epo:Lot [1]
epo:describesLotGroupepo:LotGroupAwardInformation -> epo:LotGroup [1]
epo:describesNoticeepo:NoticeDescription -> epo:Notice [1]
epo:describesResultNotice epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:distributesOfferepo:OfferIssuer -> epo:Offer [0..*]
epo:exposesChannelepo:AgentInRole -> cv:Channel [0..*]
epo:exposesInvoiceeChannelepo:Buyer -> cv:Channel [0..*]
epo:followsRulesSetByepo:MiniCompetition -> epo:FrameworkAgreement [0..1]
epo:foreseesConcession epo:ProcurementObject -> epo:ConcessionEstimate [0..1]
epo:Tender -> epo:ConcessionEstimate [0..1]
epo:foreseesContractSpecificTermepo:ProcurementObject -> epo:ContractSpecificTerm [0..*]
epo:foreseesProcurementObjectRelation indicating the instance of a Procurement Object that is planned. + + Additional Information: + The properties of the Procurement Object that is foreseen should be read as foreseen + properties. + For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. + For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy.epo:PlannedProcurementPart -> epo:ProcurementObject [0..1]
epo:foreseesSubcontractingepo:Tender -> epo:SubcontractingEstimate [0..*]
epo:foreseesTechniqueepo:PlannedProcurementPart -> epo:Technique [0..*]
epo:fulfillsRequirementThe requirement to which the concept meets. + WG Approval 09/11/2021 + + The requirement to which the concept meets. + WG Approval 09/11/2021 + + The requirement to which the concept meets. + WG Approval 09/11/2021 + + epo:GreenProcurement -> at-voc:environmental-impact [1..*]
epo:InnovativeProcurement -> at-voc:innovative-acquisition [1..*]
epo:SocialProcurement -> at-voc:social-objective [1..*]
epo:fulfillsStrategicProcurementepo:ProcurementObject -> epo:StrategicProcurement [0..*]
epo:hasAdditionalClassificationepo:Purpose -> at-voc:cpv [0..*]
epo:hasAdditionalContractNatureAdditional type of acquisition taken into consideration in the contract. + + WG Approval 11/06/2020 + + epo:ContractTerm -> at-voc:contract-nature [0..*]
epo:hasAllegedIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-791 Review Irregularity Type + epo:ReviewRequest -> at-voc:irregularity-type [1..*]
epo:hasApproximateFrameworkAgreementValue epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasAwardCriterionTypeCategory of award criterion. + + epo:AwardCriterion -> at-voc:award-criterion-type [0..1]
epo:hasAwardedEstimatedValueThe estimated value that can be spent as provided by the Award Decision. + + <u>Additional Information</u>: + This property is used for framework agreements and dynamic purchasing systems. + Different cases of awarded values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + + WG Approval 12/12/2019 + + epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardedValueThe value of the procurement provided by the Award Decision. + + Additional Information: + Different cases of awarded values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + + In the case of framework agreements and dynamic purchasing systems this refers to + the maximum awarded value. + + WG Approval 10/12/2019epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardStatusIndicates whether the lot is awarded, not awarded or still open. + WG Approval 03/12/2019 + + epo:AwardDecision -> at-voc:winner-selection-status [0..1]
epo:hasBargainPriceThe value of procured supplies that have used a particularly advantageous opportunity + available for a very short time at a value considerably lower than normal market prices. + + WG approval 23/05/2023epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasBeneficialOwnerA role of any natural person(s) who ultimately owns or controls the organisation or + on whose behalf a transaction or activity is being conducted. + Additional Information: + This role is defined in the directive EU 2015/849 and it's beyond the scope for public + eProcurement domain. + WG approval 14/09/2021epo:Business -> cpv:Person [0..*]
epo:hasBroadPlaceOfPerformanceGeopolitical zone where the contract can be executed. + + Additional Information + + Used for setting restrictions that cannot be established with one country code or + a geographical zone identifier (like NUTS), because they have a broader scope (geographical, + economic, political, other). + epo:ContractTerm -> at-voc:other-place-service [0..1]
epo:hasBusinessSizeThe category of the business depending on number of employees and turnover. + + Additional information: + + See Commission Recommendation of 6 May 2003 concerning the definition of micro, small + and medium-sized enterprises. + + WG Approval 28/05/2020 + + epo:Business -> at-voc:economic-operator-size [0..1]
epo:hasBuyerLegalTypeA category that indicates the right of an Organisation to play the role of a buyer. + + Additional Information: + The category also effects the rules that the buyer has to abide to within the public + procurement procedure. + WG 07/09/2021 + + org:Organization -> at-voc:buyer-legal-type [0..1]
epo:hasCandidateListepo:DynamicPurchasingSystem -> epo:SelectedCandidateList [0..*]
epo:hasChangeJustificationCode explaining the change. + + WG Approval 5/11/2019 + The motives for the change. + + WG 5/11/2019 + + The codelist to be used is at-voc:change-corrig-justification which is available at + + http://publications.europa.eu/resource/dataset/change-corrig-justificationepo:ElementChangeDescription -> at-voc:change-corrig-justification [1]
epo:hasConcessionEstimatedValueepo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasConfirmedIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-791 Review Irregularity Typeepo:ReviewDecision -> at-voc:irregularity-type [0..*]
epo:hasConstraintepo:ProcurementCriterion -> cccev:Constraint [0..*]
epo:hasContactPointInRoleepo:AgentInRole -> cpov:ContactPoint [0..*]
epo:hasContractNatureTypeSubject of the acquisition. + + WG Approval 11/06/2020 + + epo:ContractTerm -> at-voc:contract-nature [0..1]
epo:hasContractValueepo:Contract -> epo:MonetaryValue [0..1]
epo:hasCountryCode + dct:Location -> at-voc:country [0..1]
locn:Address -> at-voc:country [0..1]
epo:hasCountryOfBirthThe country in which the Person was born. + cpv:Person -> at-voc:country [0..1]
epo:hasCurrencyThe identifier of the currency as in the standard code list used. + + epo:MonetaryValue -> at-voc:currency [0..1]
epo:hasDirectAwardJustificationList of reasons for using a procedure which allows awarding contracts directly without + publishing a notice. + + WG Approval 28/05/2020 + epo:DirectAwardTerm -> at-voc:direct-award-justification [0..1]
epo:hasDocumentRestrictionJustificationAn explanation about the reasons why some procurement documents are restricted. + + Additional Information: + This corresponds in eForms to BT-707 Documents Restricted Justification. + + WG Approval 09/03/2021 + epo:AccessTerm -> at-voc:communication-justification [0..1]
epo:hasDPSScopeExplanation as to whether a dps is used and by whom. + + Additional Information: + This corresponds in eForms to BT-766 Dynamic Purchasing System. + WG Approval 09/11/2021 + Explanation as to whether a dps is used and by whom. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usageepo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage [0..1]
epo:hasECataloguePermissionThe extent to which electronic catalogues may be used in tenders. + + WG Approval 03/10/2019 + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEInvoicingPermissionepo:ContractTerm -> at-voc:permission [0..1]
epo:hasElectronicDigestepo:Document -> epo:Document [0..*]
epo:hasElectronicSignatureepo:Document -> epo:ElectronicSignature [0..*]
epo:hasElementChangeepo:NoticeChange -> epo:ElementChangeDescription [1..*]
epo:hasElementConfidentialityRelation indication that the publication provision applies to a given field of a document.epo:PublicationProvision -> epo:ElementConfidentialityDescription [1..*]
epo:hasElementDescriptionepo:NoticeDescription -> epo:ElementDescription [0..*]
epo:hasElementModificationepo:ContractModification -> epo:ElementModificationDescription [1..*]
epo:hasEndpointIdentifiercv:Channel -> adms:Identifier [0..*]
epo:hasEstimatedBuyerConcessionRevenueThe expected payments made by the buyer to the economic operator awarded the concession + that are not directly related to the use of the concession. + + <u>Additional Information:</u> + For example the public buyer pays a yearly fee to provide a ticketing solution to + the public. The fee the public pays for every ticket sold through the solution is + not included in this estimation but in the estimation of the user concession revenue. + + This corresponds to BT-160 in eForms. + + WG Approval 07/01/2020epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedDurationRelation indicating a Contract has an estimated Duration. + + Additional Information + + When the Lot uses a Technique the contract estimated duration applies to the Technique. + epo:Contract -> epo:Duration [0..1]
epo:hasEstimatedUserConcessionRevenueThe estimated revenue coming from the use of the concession. + + Additional Information: + Revenues are for example fees and fines. For example, the fees and fines coming from + the cars using a motorway. + + This corresponds to BT-162 in eForms. + epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedValueA forecast of the value of the procurement before competition. + + Additional Information: + Different cases of estimated values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + The forecast is calculated by the buyer and covers all revenues whether coming from + the buyer or third parties. + See for example recital (19), Article 5 of Directive 2014/24/EU and other articles + from the rest of Directives about procurement. + + In the case of framework agreements and dynamic purchasing systems this refers to + the maximum estimated value. + + This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used + for BT-157 (for LotGroup). + <b> + </b><b>WG Approval 05/12/2019</b> + + epo:ProcurementElement -> epo:MonetaryValue [0..1]
epo:hasESubmissionPermissionThe requirements as to what extent electronic submission is allowed. + + WG Approval 03/10/2019 + + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasFinancialOfferValueThe value offered by the Tenderer for a Lot. + + Additional Information: + This value is normally the one awarded for a winning Tender Lot. In case of negotiated + procedures the original financial value may be reviewed and the offer updated. + + This corresponds to BT-720 in eForms.epo:Tender -> epo:MonetaryValue [0..1]
epo:hasFixedValueTypeThe method to interpret the fixed value as pertaining to a total or unit. + + WG Approval 17/09/2019 + + epo:AwardCriterion -> at-voc:number-fixed [0..1]
epo:hasFormTypeA categorisation of the steps in which the Notice is used. + + WG Approval 12/05/2020 + + epo:Notice -> at-voc:form-type [0..1]
epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
epo:hasFrameworkAgreementEstimatedValueThis refers to BT-660 in eForms.epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementMaximumValueepo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementTypeThe form of framework agreement used in a procurement procedure. + + Addition information: + + A concept to distinguish the different types of framework agreement, which are: + 1. Framework agreement without reopening of competition, + 2. Framework agreement with reopening of competition, or + 3. Framework agreement partly without reopening of competition. + + WG Approval 19/09/2019 + + epo:FrameworkAgreementTerm -> at-voc:framework-agreement [1]
epo:hasFundProgrammeepo:Fund -> at-voc:EU-programme [0..1]
epo:hasGroupFrameworkAgreementMaximumValueThis corresponds to BT-156 in the eForms.epo:LotGroupAwardInformation -> epo:MonetaryValue [0..1]
epo:hasHighestReceivedTenderValueAmount of the Tender with the highest value. + + Additional Information + The value must correspond to an admissible tender. For example, tenders compliant + with the procurement document requirements, not having an abnormally low price or + cost, etc. + + + WG Approval 12/12/2019 + + + epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasImplementingRegulation epo-not:eFormsNotice -> (EU) 2019/1780 [0..1]
epo-not:StandardFormsNotice -> (EU) 2015/1986 [0..1]
epo:hasInternalIdentifierepo:ProcurementElement -> adms:Identifier [0..*]
epo:hasIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity + Typeepo:ReviewIrregularitySummary -> at-voc:irregularity-type [1]
epo:hasItemCountryOfOriginThe source country of the product or service. + + Additional Information: + + The country of origin can be provided by the buyer as a requirement or by the tenderer + information of the item to be provided. + + WG Approval 07/01/2020 + + The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/countryepo:Tender -> at-voc:country [0..*]
epo:hasLanguageLanguage in which the submitted information is to be expressed. + + WG Approval 21/07/2020 + + epo:SubmissionTerm -> at-voc:language [0..*]
epo:hasLateSubmissionPermissionWhether economic operator-related information can be supplemented even after the submission + deadline. + + Additional Information + This is specific to the information on the economic operator and not the actual offer. + This does not apply to the requests for clarification. + + WG Approval 21/07/2020 + epo:SubmissionTerm -> at-voc:missing-info-submission [0..1]
epo:hasLaunchFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLaunchGroupFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLegalBasisThe legal basis under which the procurement procedure takes place. + + Additional Information: + For example European Directives or Regulations, national laws etc. + The recommended code list is the example for the legal basis at the European level. + + WG 04/04/2023 + + The legal basis under which the procurement procedure takes place. + + Additional Information: + For example European Directives or Regulations, national law + + WG 09/11/2021 + + The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis + epo:ProcurementObject -> at-voc:legal-basis [0..*]
epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
epo:hasLegalIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasLegalRegimeepo:ProcurementObject -> epo:legal-regime [0..*]
epo:hasLotReferenceepo:Contract -> epo:Lot [1..*]
epo:hasLowestReceivedTenderValueAmount of the Tender with the lowest value. + + Additional Information + The value must correspond to an admissible tender. For example, tenders compliant + with the procurement document requirements, not having an abnormally low price or + cost, etc. + + WG Approval 12/12/2019 + + epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasMainActivityThe principal sectoral area in which an organisation operates. + + Additional information: + + The activities associated with buyers are derived from the top level of the Classification + of the functions of the government (COFOG) from the United Nations Statistics Division. + + The activities associated with buyer are derived from sectors explicitly falling within + the sectoral directive (2014/25/EU Art. 8 - Art. 14). + + WG Approval 05/05/2020 + + org:Organization -> at-voc:main-activity [0..1]
epo:hasMainClassificationepo:Purpose -> at-voc:cpv [1..*]
epo:hasMaximumFrameworkAgreementAwardedValueThe maximum value which can be spent through all the framework agreements announced + in this notice, including options and renewals of contracts. + + Additional information: + + The value provided is a threshold value that implicity means that it cannot be exceeded + however it may not be reached during the execution of a contract. + + The Framework Agreements in a CAN are to be traced back and added to provide this + value. + + This corresponds to the BT-118 in eForms. + + WG Approval 03/12/2019epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasMemberepo:OrganisationGroup -> org:Organization [1..*]
epo:hasModificationJustificationExplanation of why a contract was modified. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:modification-justification which is available at + http://publications.europa.eu/resource/dataset/modification-justification + + Additional Information + + This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . + + This corresponds in eForms to BT-200. + + Explanation of why a contract was modified. + + WG Approval 09/11/2021 + + The codelist to be used is at-voc:modification-justification which is available at + http://publications.europa.eu/resource/dataset/modification-justification + + Additional Information + + This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . + + This corresponds in eForms to BT-200. + + + epo:ElementModificationDescription -> at-voc:modification-justification [1]

epo:hasNationality + cpv:Person -> at-voc:country [0..*]
epo:hasNonAwardJustificationOn hold; Enumeration. + + + epo:AwardDecision -> at-voc:non-award-justification [0..1]
epo:hasNonElectronicSubmissionJustification + Reason for not accepting electronic information. + + WG Approval 21/07/2020 + epo:SubmissionTerm -> at-voc:communication-justification [0..*]
epo:hasNonPublicationJustificationThe reason why data is not published. + WG Approval 11/06/2020 + + epo:ElementConfidentialityDescription -> at-voc:non-publication-justification [1]
epo:hasNoticeType epo:Notice -> at-voc:notice-type [1]
epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
epo:hasNotificationContentTypeA categorisation of templates for sets of Procurement information to be conveyed in + Notices. + + WG Approval 12/05/2020epo:Notice -> epo:notification-phases-content-types [0..1]
epo:hasNutsCode dct:Location -> at-voc:nuts [0..1]
locn:Address -> at-voc:nuts [0..1]
epo:hasOfficialLanguageThe language(s) in which the instances of the given concepts are officially available. + These linguistic versions are equally legally valid. + + WG Approval 03/10/2019 + + epo:Document -> at-voc:language [1..*]
epo:hasPerformingStaffQualificationInformation + Additional information: + + This relation corresponds in eForms to BT-79.Explanation as to if and/or when information + of the persons to carry out the contract is to be provided. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage + epo:ProcurementCriterion -> at-voc:requirement-stage [0..*]
epo:hasPlannedDurationepo:PlannedProcurementPart -> epo:Duration [0..1]
epo:hasPlannedPeriodepo:PlannedProcurementPart -> epo:Period [0..1]
epo:hasPrimaryContactPointorg:Organization -> cpov:ContactPoint [0..*]
epo:hasPrizeValueThe monetary value of a prize, if any, for the winner (or runners-up) of the design + contest. + + Additional Information: + This corresponds to BT-644 in eForms. + + WG Approval 29/08/2019 + + epo:Prize -> epo:MonetaryValue [0..1]
epo:hasProcedureTypeIdentification of the Procedure used. + + WG Approval 09/06/2020 + epo:Procedure -> at-voc:procurement-procedure-type [1]
epo:hasProcurementClassificationepo:Contract -> at-voc:cpv [0..1]
epo:hasProcurementHighestReceivedTenderValueThe highest received tender value for the procurement. + + Additional Information: + This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementLowestReceivedTenderValueThe lowest received tender value for the procurement. + + Additional Information: + This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementScopeDividedIntoLotepo:Procedure -> epo:Lot [1..*]
epo:hasPurposeRelation indicating a procurement part has a puropse.epo:ProcurementObject -> epo:Purpose [0..1]
epo:hasQualificationSystemDurationepo:MultipleStageProcedureTerm -> epo:Duration [0..1]
epo:hasReceivedSubmissionTypeepo:SubmissionStatisticalInformation -> at-voc:received-submission-type [0..1]
epo:hasRegistrationCountryorg:Organization -> at-voc:country [0..1]
epo:hasRemedyValueAdditional information: + This relation corresponds in eForms to BT-793 Review Remedy Value.epo:ReviewDecision -> epo:MonetaryValue [0..1]
epo:hasReservedExecutionepo:ContractTerm -> at-voc:applicability [0..1]
epo:hasReservedProcurementExplanation as to whether a procurement may be reserved for the participation of certain + types of organisation. + + Additional information: + This property corresponds in eForms to the BT-71 + WG Approval 09/11/2021 + Explanation as to whether a procurement may be reserved for the participation of certain + types of organisation. + + Additional information: + This property corresponds in eForms to the BT-71 + WG Approval 09/11/2021 + epo:ParticipationCondition -> at-voc:reserved-procurement [0..*]
epo:ParticipationConditionsSummary -> at-voc:reserved-procurement [0..*]
epo:hasReviewBodyTypeepo:Reviewer -> at-voc:review-body-type [0..*]
epo:hasReviewDecisionTypeAdditional information: + This relation corresponds in eForms to BT-790 Review Decision Type.epo:ReviewDecision -> at-voc:review-decision-type [0..*]
epo:hasReviewIrregularitySummaryAdditional information: + This relation corresponds in eForms to BG-613 Buyer Review Requestsepo:ReviewRequestSummary -> epo:ReviewIrregularitySummary [0..*]
epo:hasReviewRequestFeeAdditional information: + This relation corresponds in eForms to BT-795 Review Request Fee.epo:ReviewRequest -> epo:MonetaryValue [0..1]
epo:hasSelectionCriteriaUsage + Additional Information: + This corresponds in eForms to BT-748 Selection Criteria Used.epo:SelectionCriterion -> at-voc:usage [0..1]
epo:hasSelectionCriterionTypeThe classification of the selection criteria. + + + Additional Information: + + This corresponds in eForms to BT-747 Selection Criteria Type. + + WG Approval 09/11/2021 + epo:SelectionCriterion -> at-voc:selection-criterion [0..1]
epo:hasStartDateepo:SelectedCandidateList -> epo:Period [0..1]
epo:hasSubcontractingEstimatedValueThe estimated value of a single subcontract. + + This relates to BT-553 in eForms. + + WG Approval 01/09/2020 + + epo:SubcontractingEstimate -> epo:MonetaryValue [0..1]
epo:hasSubcontractingObligationThe requirement the tender must meet with regard to subcontracting parts of the contract. + WG Approval 09/11/2021 + + epo:SubcontractTerm -> at-voc:subcontracting-obligation [0..*]
epo:hasTaxIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasTenderSubcontractingInformationThe information about subcontracting that must be indicated in the tender. + + WG Approval 10/10/2019 + + epo:SubmissionTerm -> at-voc:subcontracting-indication [0..*]
epo:hasTenderValidityPeriodThe relation indicating until when a tender instance is applicable. + epo:SubmissionTerm -> epo:Period [0..1]
epo:hasThresholdTypeThe method to interpret the threshold value as minimum or a maximum. + + WG Approval 17/09/2019 + cccev:Constraint -> at-voc:number-threshold [0..*]
epo:hasTimePeriod + + epo:Period -> at-voc:timeperiod [1..*]
epo:hasTotalAwardedValueThe awarded value of all lots announced in this notice, including options and renewals. + + + Additional information: + The values of the individual Lots awarded under a framework agreement and mentioned + in this notice are included. + + The values of the individual lots announced in a CAN are to be traced back and added + to provide this value. + + This corresponds to the BT-161 in eForms. + + WG Approval 03/12/2019 + epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasTotalQuantityThe number of units required. + + Additional Information: + The quantity needs to go along with the unit. + + + + epo:Purpose -> epo:Quantity [0..1]
epo:hasTotalValue epo:TenderGroup -> epo:MonetaryValue [1]

epo:hasUnitCodeepo:Quantity -> at-voc:measurement-unit [1]
epo:hasUnofficialLanguageThe language translation(s) in which the instances of the given concepts are available. + These linguistic versions are not an official translation, they are provided only + for information. + + WG Approval 03/10/2019 + epo:Document -> at-voc:language [0..*]
epo:hasUsageThe codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage + epo:Technique -> at-voc:usage [0..1]
epo:hasUUIDA universally unique identifier for an instance of this document. + + WG Approval 12/05/2020epo:Document -> adms:Identifier [0..1]
epo:hasValidityPeriodThe relation indicating until when a given instance of a concept is applicable. + + WG approval 30/05/2023 + The relation indicating until when a given instance of a concept is applicable. + + WG approval 30/05/2023epo:Technique -> epo:Period [0..1]

epo:hasVariantPermissionThe obligation or possibility for tenderers to submit variants or not. + + Additional Information: + + Variants are alternative ways to fulfil the buyer's needs as opposed to solutions + indicated in the procurement documents. + + eForms: Whether tenderers are required, allowed or forbidden to submit tenders which + fulfil the buyer's needs differently than as proposed in the procurement documents. + + + Additional Information: + + Further conditions for submitting variant tenders are in the procurement documents. + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasWeightValueTypeNo definition. Waiting on CCCEV alignment. + + + epo:ProcurementCriterion -> at-voc:number-weight [0..1]
epo:includesAccessibilityCriterionExplanation as to whether accessibility Criterion are used or not. + WG Approval 09/11/2021 + + epo:StrategicProcurement -> at-voc:accessibility [0..*]
epo:includesTenderAdditional information: + This corresponds in eForms to BT-3202 Contract Tender Identifier. + epo:Contract -> epo:Tender [0..*]
epo:indicatesAwardToWinnerReveals the winner to whom the tender award outcome is attributed.epo:TenderAwardOutcome -> epo:Winner [0..1]
epo:indicatesInvoiceeContactPointepo:Buyer -> cpov:ContactPoint []
epo:involvesBuyerepo:Procedure -> epo:Buyer [0..*]
epo:involvesProcurementDocumentepo:AccessTerm -> epo:ProcurementDocument [1]
epo:isBasedOnImplementingRegulationIndicates under which regulation a notice is created. + + WG Acceptance 06/09/2022epo:Notice -> at-voc:legal-basis [0..1]
epo:isBeneficialOwnerOfA role of any natural person(s) who ultimately owns or controls the organisation or + on whose behalf a transaction or activity is being conducted. + Additional Information: + This role is defined in the directive EU 2015/849 and it's beyond the scope for public + eProcurement domain. + WG approval 14/09/2021epo:Business [,0..*] <- cpv:Person
epo:isExecutedByProcurementServiceProviderepo:Procedure -> epo:ProcurementServiceProvider [0..1]
epo:isFundedByFunding is provided either completely or partially by a Fund. + + Additional information: + This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 + Contract EU Funds (applied per Contract lot) + Funds may change between the lot and the contract, for example in the case of an emergency + crisis, a contract may be financed by a budget that was not foreseen in the call. + + epo:ProcurementObject -> epo:Fund [0..*]
epo:isOwnedByAgentepo:System -> foaf:Agent [0..1]
epo:isResponsibilityOfBuyerThe buyer in charge of the procedure. + + Additional Information: + In case there are multiple buyers, it may be the case that one or more buyers are + in charge of the procedure. + + epo:Procedure -> epo:Buyer [0..*]
epo:isSubjectToContractSpecificTermepo:Contract -> epo:ContractSpecificTerm [0..*]
epo:isSubjectToGroupingepo:Tender -> epo:LotGroup [0..1]
epo:isSubjectToLotSpecificTermepo:Lot -> epo:LotSpecificTerm [0..*]
epo:isSubjectToProcedureSpecificTermepo:Procedure -> epo:ProcedureSpecificTerm [1..*]
epo:isSubjectToTermepo:ProcurementObject -> epo:Term [0..*]
epo:isSubmitedByRelation indicating the submission of a tender by an economic operator. + WG approval 18/05/2021epo:Tender -> epo:Tenderer [0..1]
epo:isSubmittedForLotepo:Tender -> epo:Lot [1]
epo:isSubmittedForLotGroupepo:TenderGroup -> epo:LotGroup [1]
epo:leadByepo:OrganisationGroup -> org:Organization [0..1]
epo:needsToBeATendererThe Winner must be a Tenderer.epo:Winner -> epo:Tenderer [0..1]
epo:needsToBeAWinnerThe Contractor must be a Winner. + epo:Contractor -> epo:Winner [0..1]
epo:ownsSystemepo:System [,0..*] <- foaf:Agent
epo:playedBy epo:AgentInRole -> foaf:Agent [1]

epo:JuryMember -> foaf:Person [0..1]
epo:providesContractTotalPaymentValueAdditional Information: + This corresponds to BT-779 in eForms. epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesContractTotalPenaltyValue + Additional Information: + This corresponds to BT-782 in eForms. + epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesRulingOnRemedyStates the measures to be taken after a review procedure.epo:ReviewDecision -> at-voc:remedy-type [0..*]
epo:refersToAwardDecision epo-not:CompletionNotice -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision [0..*]
epo-not:CompletionNotice -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision [0..*]
epo:refersToContractepo:ContractLotCompletionInformation -> epo:Contract [1]
epo:refersToContractToBeModified epo-not:ContractModificationNotice -> epo:Contract [1]
epo-not:ContractModificationNotice -> epo:Contract [1]
epo:refersToLot epo:Notice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo:refersToLotGroup epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:CompletionNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation [0..*]
epo:refersToNonPublishedElement epo-not:CompletionNotice -> epo:PublicationProvision [0..*]
epo-not:CompletionNotice -> epo:PublicationProvision [0..*]
epo:refersToNoticeepo:Notice -> epo:Notice [0..1]
epo:refersToNoticeAwardInformation epo-not:CompletionNotice -> epo:NoticeAwardInformation [0..1]
epo-not:CompletionNotice -> epo:NoticeAwardInformation [0..1]
epo:refersToOriginalNoticeepo:ContractModification -> epo:Notice [0..1]
epo:refersToPlannedPartepo:AccessTerm -> epo:PlannedProcurementPart [0..*]
epo:refersToPreviousepo:Document -> epo:Document [0..*]
epo:refersToPreviousNotice + Additional information: + This corresponds in eForms to BT-758 Change Notice Version Identifier.epo:NoticeChange -> epo:Notice [0..1]
epo:refersToPreviousProcedureReference to a previous procedure. + + Additional Information: + In the case of Direct Award Terms, this property points to a previous Procedure justifying + the use of Direct Award without a prior publication. + + This corresponds in the eForms to BT-1252 Direct Award Justification Previous + Procedure Identifierepo:DirectAwardTerm -> epo:Procedure [0..1]
epo:refersToPreviousProcedureLotReference to one or more Lots in a previous procedure. + + Additional Information: + In the case of Direct Award Terms, this property points to a previous Procedure justifying + the use of Direct Award without a prior publication. + + This corresponds in the eForms to BT-1252 Direct Award Justification Previous + Procedure Identifier + + WG Approval 22/11/2019 14:33:55epo:DirectAwardTerm -> epo:Lot [0..*]
epo:refersToPreviousReviewAdditional information: + This relation corresponds in eForms to BT-785 "Review Previous Identifier".epo:ReviewObject -> epo:ReviewObject [0..1]
epo:refersToProcedure epo-not:ResultNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo:Notice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:ResultNotice -> epo:Procedure [1]
epo:refersToRole epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo:requestsRemedyTypeAdditional information: + This relation corresponds in eForms to BT-792 Review Remedy Typeepo:ReviewRequest -> at-voc:remedy-type [0..*]
epo:resolvesReviewRequestepo:ReviewDecision -> epo:ReviewRequest [1]
epo:resultsFromLotAwardDecision epo:DirectContract -> epo:LotAwardDecision [0..*]
epo:FrameworkAgreement -> epo:LotAwardDecision [0..*]
epo:resultsFromMiniCompetitionAwardDecisionepo:PurchaseContract -> epo:MiniCompetitionAwardDecision [0..1]
epo:resultsInDynamicPurchasingSystemepo:DynamicPurchaseSystemTechnique -> epo:DynamicPurchasingSystem [1]
epo:setsGroupingContextForLotepo:LotGroup -> epo:Lot [1..*]
epo:signedByBuyerepo:Contract -> epo:Buyer [0..*]
epo:signedByContractorepo:Contract -> epo:Contractor [0..*]
epo:signsAwardDecisionepo:Buyer -> epo:AwardDecision [0..*]
epo:specifiesAwardCriterionepo:MiniCompetition -> epo:AwardCriterion [0..*]
epo:specifiesProcurementCriteriaSummaryepo:Procedure -> epo:ProcurementCriteriaSummary [0..*]
epo:specifiesProcurementCriterion epo:Lot -> epo:ProcurementCriterion [0..*]
epo:LotGroup -> epo:ProcurementCriterion [0..*]
epo:specifiesSubcontractorsepo:Tender -> epo:Subcontractor [0..*]
epo:substantiatesExclusionGroundepo:Tenderer -> epo:ExclusionGround [0..1]
epo:summarisesInformationForAwardDecisionRelates to submission for the given competition, either at Lot level or Mini-Competition + level. + + WG approval 30/05/2023epo:SubmissionStatisticalInformation -> epo:AwardDecision [1]
epo:usesCandidateListepo:MiniCompetition -> epo:SelectedCandidateList [0..1]
epo:usesChannelepo:ProcurementElement -> cv:Channel [0..*]
epo:usesTechniqueepo:ProcurementObject -> epo:Technique [0..*]
epo-not:announcesRole epo-not:ResultNotice -> epo:AgentInRole [0..*]
epo-not:ResultNotice -> epo:AgentInRole [0..*]
epo-not:hasLegalBasisepo-not:Modification-D24 -> Directive 24 [0..1]
epo-not:refersToRole epo-not:ResultNotice -> epo:AgentInRole [1..*]
epo-not:ResultNotice -> epo:AgentInRole [1..*]
locn:addressdct:Location -> locn:Address [0..1]
locn:addressIDA globally unique identifier for each instance of an Address. + + Additional Information: + The concept of adding a globally unique identifier for each instance of an address + is a crucial part of the INSPIRE data spec. A number of EU countries have already + implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. + OASIS xAL also includes an address identifier. It is the address Identifier that allows + an address to be represented in a format other than INSPIRE whilst remaining conformant + to the Core Vocabulary. + + The INSPIRE method of representing addresses is very detailed, designed primarily + for use in databases of addresses. Whilst data that is published in full conformance + with the INSPIRE data structure can be made available using the Location Core Vocabulary + the reverse is not true since the Core Vocabulary allows much greater flexibility. + + Many datasets that include address data as one piece of information about something + else are likely to have that data in simpler formats. These might be tailored to the + specific need of the dataset, follow a national norm, or make use of a standard like + vCard. + + To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable + with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location + Core Vocabulary provides the extra property of full address and makes use of INSPIRE's + addressID.locn:Address -> adms:Identifier [0..1]
locn:geographicIdentifierA URI that identifies the Location. + + Additional Information: + GeoNames.org provides stable, widely recognised identifiers for more than 10 million + geographical names that can be used as links to further information. For example, + http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately + these URIs cannot easily be automatically deduced since the URI scheme uses simple + numeric codes. Finding a GeoNames identifier for a Location is almost always a manual + process. Where such identifiers are known or can be found, however, it is recommended + that they be used. + + Where the Location Class is used to identify a country, if the geonames URI is not + known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX + where XX is the ISO 3166 two character code for the country. + + The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece + and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct + URIs for these countries are: + + - http://dbpedia.org/resource/ISO_3166-1:GR + - http://dbpedia.org/resource/ISO_3166-1:GB + even when the geographic name is given as EL or UK. + + The use of a URIs has added advantages: + + - it can be used by automated systems to look up additional data (linked data); + - a triple store may store only one copy of the URI, whereas if a string is used, + a copy of that string is always stored for each and every person in the database. + Thus, in large data sets, the saving on memory capacity and the improvement in transmission + efficiency can be substantial. + dct:Location -> adms:Identifier [0..1]
locn:geometrydct:Location -> locn:Geometry [0..1]
person:placeOfBirthThe Location where the Person was born.cpv:Person -> dct:Location [0..1]
person:placeOfDeathThe Location where the Person died.cpv:Person -> dct:Location [0..1]
time:unitTypeepo:SpecificDuration -> time:TemporalUnit [1]
+
+
+ + \ No newline at end of file diff --git a/implementation/demo_ontology/conventions_report/demo_ontology_CM-convention-report.html b/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html similarity index 96% rename from implementation/demo_ontology/conventions_report/demo_ontology_CM-convention-report.html rename to implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html index 63480d7..d6ddf7e 100644 --- a/implementation/demo_ontology/conventions_report/demo_ontology_CM-convention-report.html +++ b/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html @@ -19,7 +19,7 @@

UML Conventions Comformance Report

-

[ 11/07/2023 ]

+

[ 01/11/2023 ]

Publications Office of the European Union
@@ -51,11 +51,12 @@

Abstract

The organisation of this document is based on major types of UML elements and connectors that are employed in the eProcurement conceptual model. They are as follows: - Classes, Enumerations, Datatypes, Packages, Associations, Dependencies and + Classes, Enumerations, Datatypes, Packages, Objects, Associations, Dependencies, Realisations + and Generalisations. Each major section lists model items that need correction of errors or consideration of warnings.

The UML model in file demo_ontology_CM.xml - was tested at 07:15 on July 11, 2023.

+ was tested at 11:10 on November 1, 2023.

Nomenclature

Class names

@@ -2565,9 +2566,6 @@

epo:AccessTerm ->
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:AccessTerm -> epo:ProcurementDocument (+epo:involvesProcurementDocument) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].

epo:AgentInRole -> foaf:Agent (+epo:playedBy)

@@ -2576,8 +2574,6 @@

epo:AgentInRole ->
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:AgentInRole -> foaf:Agent (+epo:playedBy) has target multiplicity - invalidly stated. Multiplicity must be specified in the form [min..max].

epo:AgentInRole -> cv:Channel (+epo:exposesChannel)

@@ -2684,9 +2680,6 @@

epo:ContractLotCompl
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:ContractLotCompletionInformation -> epo:Lot (+epo:describesLotCompletion) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].

epo:ContractLotCompletionInformation -> epo:Contract (+epo:refersToContract)

@@ -2695,9 +2688,6 @@

epo:ContractLotCompl
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:ContractLotCompletionInformation -> epo:Contract (+epo:refersToContract) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].

epo:ContractModification -> epo:Notice (+epo:refersToOriginalNotice)

@@ -2754,9 +2744,6 @@

epo:DynamicPurchaseS
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:DynamicPurchaseSystemTechnique -> epo:DynamicPurchasingSystem (+epo:resultsInDynamicPurchasingSystem) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].

epo:DynamicPurchasingSystem -> epo:SelectedCandidateList (+epo:hasCandidateList)

@@ -2814,14 +2801,6 @@

epo:Lot -> epo:Lo
The connector is missing a description. It is recommended to define and describe all the relations.

-

epo:LotAwardDecision -> epo:Lot (+epo:concernsLot)

-
-
- Unmet association conventions -
-
The connector epo:LotAwardDecision -> epo:Lot (+epo:concernsLot) has target multiplicity - invalidly stated. Multiplicity must be specified in the form [min..max].
-

epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasFrameworkAgreementMaximumValue)

@@ -2861,9 +2840,6 @@

epo:LotGroupAwardInf

The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:LotGroupAwardInformation -> epo:LotGroup (+epo:describesLotGroup) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].

epo:MiniCompetition -> epo:SelectedCandidateList (+epo:usesCandidateList)

@@ -2920,8 +2896,6 @@

epo:Notice -> epo
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:Notice -> epo:Procedure (+epo:refersToProcedure) has target multiplicity - invalidly stated. Multiplicity must be specified in the form [min..max].

epo:Notice -> epo:Notice (+epo:refersToNotice)

@@ -2954,8 +2928,6 @@

epo:NoticeDescriptio
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:NoticeDescription -> epo:Notice (+epo:describesNotice) has target - multiplicity invalidly stated. Multiplicity must be specified in the form [min..max].

epo:NoticeDescription -> epo:ElementDescription (+epo:hasElementDescription)

@@ -3077,14 +3049,6 @@

epo:ProcurementEleme
The connector is missing a description. It is recommended to define and describe all the relations.

-

epo:ProcurementElement -> adms:Identifier (+adms:identifier)

-
-
- Unmet association conventions -
-
The connector epo:ProcurementElement -> adms:Identifier (+adms:identifier) has target - multiplicity invalidly stated. Multiplicity must be specified in the form [min..max].
-

epo:ProcurementObject -> epo:Term (+epo:isSubjectToTerm)

@@ -3140,18 +3104,6 @@

epo:ReviewDecision -

The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:ReviewDecision -> epo:ReviewRequest (+epo:resolvesReviewRequest) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].
-
-

epo:ReviewRequestSummary -> epo:Lot (+epo:concernsReviewSummaryForLot)

-
-
- Unmet association conventions -
-
The connector epo:ReviewRequestSummary -> epo:Lot (+epo:concernsReviewSummaryForLot) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].

epo:SelectedCandidateList -> epo:Candidate (+epo:containsCandidate)

@@ -3169,15 +3121,6 @@

epo:SelectedCandidat
The connector is missing a description. It is recommended to define and describe all the relations.

-

epo:SubmissionStatisticalInformation -> epo:AwardDecision (+epo:summarisesInformationForAwardDecision)

-
-
- Unmet association conventions -
-
The connector epo:SubmissionStatisticalInformation -> epo:AwardDecision (+epo:summarisesInformationForAwardDecision) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].
-

epo:System <-> foaf:Agent (+epo:isOwnedByAgent +epo:ownsSystem)

@@ -3193,8 +3136,6 @@

epo:Tender -> epo

The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:Tender -> epo:Lot (+epo:isSubmittedForLot) has target multiplicity - invalidly stated. Multiplicity must be specified in the form [min..max].

epo:Tender -> epo:LotGroup (+epo:isSubjectToGrouping)

@@ -3235,8 +3176,6 @@

epo:TenderAwardOutco
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:TenderAwardOutcome -> epo:Tender (+epo:concernsTender) has target - multiplicity invalidly stated. Multiplicity must be specified in the form [min..max].

epo:Tenderer -> epo:ExclusionGround (+epo:substantiatesExclusionGround)

@@ -3253,8 +3192,6 @@

epo:TenderGroup ->
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:TenderGroup -> epo:LotGroup (+epo:isSubmittedForLotGroup) has target - multiplicity invalidly stated. Multiplicity must be specified in the form [min..max].

epo:TenderGroup -> epo:MonetaryValue (+epo:hasTotalValue)

@@ -3263,8 +3200,6 @@

epo:TenderGroup ->
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:TenderGroup -> epo:MonetaryValue (+epo:hasTotalValue) has target - multiplicity invalidly stated. Multiplicity must be specified in the form [min..max].

org:Organization -> adms:Identifier (+epo:hasLegalIdentifier)

@@ -3326,34 +3261,6 @@

epo:ContractTerm -&g should not be reused as the name of elements (Class, Datatype, Enumeration, Object) or attributes.

-

epo:ElementChangeDescription -> at-voc:change-corrig-justification (+epo:hasChangeJustification)

-
-
Unmet dependency conventions
-
The connector epo:ElementChangeDescription -> at-voc:change-corrig-justification (+epo:hasChangeJustification) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].
-
-

epo:ElementConfidentialityDescription -> at-voc:non-publication-justification (+epo:hasNonPublicationJustification)

-
-
Unmet dependency conventions
-
The connector epo:ElementConfidentialityDescription -> at-voc:non-publication-justification - (+epo:hasNonPublicationJustification) has target multiplicity invalidly stated. Multiplicity - must be specified in the form [min..max].
-
-

epo:ElementModificationDescription -> at-voc:modification-justification (+epo:hasModificationJustification)

-
-
Unmet dependency conventions
-
The connector epo:ElementModificationDescription -> at-voc:modification-justification - (+epo:hasModificationJustification) has target multiplicity invalidly stated. Multiplicity - must be specified in the form [min..max].
-
-

epo:FrameworkAgreementTerm -> at-voc:framework-agreement (+epo:hasFrameworkAgreementType)

-
-
Unmet dependency conventions
-
The connector epo:FrameworkAgreementTerm -> at-voc:framework-agreement (+epo:hasFrameworkAgreementType) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].
-

epo:Fund -> at-voc:EU-programme (+epo:hasFundProgramme)

Unmet dependency conventions
@@ -3365,8 +3272,6 @@

epo:Notice -> at-
Unmet dependency conventions
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:Notice -> at-voc:notice-type (+epo:hasNoticeType) has target multiplicity - invalidly stated. Multiplicity must be specified in the form [min..max].

epo:Notice -> at-voc:legal-basis (+epo:conformsToSpecificLegalBasis)

@@ -3374,13 +3279,6 @@

epo:Notice -> at-
The connector is missing a description. It is recommended to define and describe all the relations.

-

epo:Procedure -> at-voc:procurement-procedure-type (+epo:hasProcedureType)

-
-
Unmet dependency conventions
-
The connector epo:Procedure -> at-voc:procurement-procedure-type (+epo:hasProcedureType) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].
-

epo:ProcurementObject -> epo:legal-regime (+epo:hasLegalRegime)

Unmet dependency conventions
@@ -3404,8 +3302,6 @@

epo:Quantity -> a
Unmet dependency conventions
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:Quantity -> at-voc:measurement-unit (+epo:hasUnitCode) has target - multiplicity invalidly stated. Multiplicity must be specified in the form [min..max].

epo:Reviewer -> at-voc:review-body-type (+epo:hasReviewBodyType)

@@ -3413,20 +3309,11 @@

epo:Reviewer -> a
The connector is missing a description. It is recommended to define and describe all the relations.

-

epo:ReviewIrregularitySummary -> at-voc:irregularity-type (+epo:hasIrregularityType)

-
-
Unmet dependency conventions
-
The connector epo:ReviewIrregularitySummary -> at-voc:irregularity-type (+epo:hasIrregularityType) - has target multiplicity invalidly stated. Multiplicity must be specified in the form - [min..max].
-

epo:SpecificDuration -> time:TemporalUnit (+time:unitType)

Unmet dependency conventions
The connector is missing a description. It is recommended to define and describe all the relations.
-
The connector epo:SpecificDuration -> time:TemporalUnit (+time:unitType) has target - multiplicity invalidly stated. Multiplicity must be specified in the form [min..max].

epo:SubmissionStatisticalInformation -> at-voc:received-submission-type (+epo:hasReceivedSubmissionType)

@@ -4070,7 +3957,7 @@

the eProcurement Ontology initiative.

The template of this report is based on the PubCSS library.

-

© Publications Office of the European Union, 2020

+

© Publications Office of the European Union, 2023

- \ No newline at end of file diff --git a/glossary/demo_ontology_CM_glossary.html b/glossary/demo_ontology_CM_glossary.html deleted file mode 100644 index c59ea85..0000000 --- a/glossary/demo_ontology_CM_glossary.html +++ /dev/null @@ -1,6469 +0,0 @@ - - - - - - - - - - - - - - - - Model glossary - - -
-
-
-

Table of contents

-
-
-
-

Glossary

-

Class names and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Class nameDefinition
adms:IdentifierA character string to identify and distinguish uniquely, one instance of an object - in an identification scheme from all other objects in the same scheme together with - relevant supplementary information.
cccev:ConstraintLimitation applied to an Information Concept. - - Additional Information: - Constraints are Requirements in themselves, since they impose prerequisites which - influence the definition, use and/or Fulfilment of the Requirement. They represent - hard conditions such as minimum or maximum expressions which can be used to evaluate - pieces of information, the required age, income, involvement in activities, etc. An - example from the eProcurement domain is a threshold as the minimum turnover required - by the buying Organisation to select the Candidates. Note that CCCEV does not provide - any specific guidance on when which kind of Requirement should be used. Users of this - vocabulary should make decisions on this topic in their specific context.
cccev:CriterionCondition for evaluation or assessment. - - Additional Information: - In general, Criteria are used for comparison, filtering or Selection purposes. Criteria - usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need - to be met in order to pass the Requirements or to fulfil them to a certain degree - or quality. The concept of Criteria is broader than the concept of Constraint since - it covers more usages. The evaluation of the fulfilment is usually supported by the - provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology - defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria - or Award Criteria. A concrete example of a Criterion is 'participation in a criminal - organisation' which could also be considered as an Exclusion Ground Criterion in the - procurement domain or for requiring a public service.
cccev:EvidenceProof that a Requirement is met. - -
cccev:InformationConceptPiece of information that the Evidence provides or the Requirement needs.
cccev:RequirementCondition or prerequisite that is to be proven by Evidence. - - Additional Information: - Requirement is a generic class representing any type of prerequisite that may be desired, - needed or imposed as an obligation. CCCEV recommends to not use the Requirement class - directly, but rather a more semantically-enriched subclass such as Criterion, Information - Requirement or Constraint. Also note that the Requirement class is specified at a - more abstract level and is not to be used as the instantiation of a Requirement for - a specific Agent. - To illustrate the notion: the European Directive on services in the internal market - defines requirement as any obligation, prohibition, condition or limit provided for - in the laws, regulations or administrative provisions of the Member States or in consequence - of case-law, administrative practice, the rules of professional bodies, or the collective - rules of professional associations or other professional Organisations, adopted in - the exercise of their legal autonomy. - To stay consistent to how identification is realised in the eProcurement ontology, - we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification.
cpov:ContactPointInformation (e.g. e-mail address, telephone number) of a Person or department through - which the user can get in touch with. - - Additional information: - This class represents the contact information for a Public Service, Channel, Public - Organisation, etc. - The Contact Point could be a role, email address, telephone number, etc. - - WG approval 5/11/2019
cpov:PublicOrganisationAn Organisation that is defined as being part of the public sector by a legal framework - at any level. - - Additional information: - A body governed by public law: - - (a) established for the specific Purpose of meeting needs in the general interest - - (b) having legal personality; - - (c) financed, for the most part by the State, or regional or local authorities. - - - Examples of Public Organisations are municipality, international public body, ministry, - others. - - WG Approval 28/04/2020
cpv:PersonA individual human being who may be dead or alive, but not imaginary. -
cv:ChannelA medium through which Agents interact. - - Additional Information - Typical examples include online services, email, endpoint on eDelivery infrastructure, - phone, etc. - - Software solutions and electronic devices for communication and exchange of information - between Buyers and economic Operators. - Lots may use ad-hoc electronic means of communication that are not generally available - such as specific solutions for secure and dedicated communication or non-standard - eCatalogues. - - See also Directive recitals 53 to 56. - - WG approval 2023-02-14
dct:LocationAn identifiable geographic place or named place.
epo:AccessTermConditions and stipulations about where and how to access the Procurement Documents. - - WG Approval 09/03/2021 - -
epo:AcquiringCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of - the acquisition of supplies and/or services intended for other Buyers. - Additional Information: - In Public Procurement the Role of Acquiring Central Purchasing Body is carried out - by a Central Purchasing Body for other Contracting Authorities. - - WG approval 05/08/2021 -
epo:AcquiringPartyThe Role of an Agent that acts on the buying side of a Procurement Process. -
epo:AdHocChannelWeb page where tools and devices for electronic communication that are not generally - available can be downloaded free of charge. - - Additional Information: - - This corresponds in eForms to BT-724 Tool Atypical. - - - WG Acceptance 10/01/2023 -
epo:AgentInRoleRelative concept that ties an Agent to a part they play in a given Situational Context. - - Additional information: - The classification of roles is based is based on the degree of involvement into the - Procurement Process: - - Primary (Procurement) Pole is directly involved in the Procurement Process; - - Secondary (Procurement sub-) Role is secondary to the Procurement Process - - Tertiary (Related) Role is not involved in the Procurement Process.
epo:AuxiliaryPartyRole of an Agent who may be mentioned in the information exchanged during the Procurement - Process but who does not play an active part in it.
epo:AwardCriteriaSummary
epo:AwardCriterionCriterion that describes a Requirement that the Tender needs to resolve and on which - the Tender is evaluated and ranked. - - WG approval 05/11/2018
epo:AwardDecisionResolution of the Buyer as to the result of the Procurement Procedure. - - WG approval 14/11/2018
epo:AwarderA Role of an Agent that signs the Award Decision.
epo:AwardEvaluationTermConditions and stipulations defining particularities of the evaluation of Award Criteria.
epo:AwardingCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of - the award of Public Contracts or the conclusion of Framework Agreements for works, - supplies or services intended for other Buyers. - Additional Information: - In Public Procurement the Role of Awarding Central purchasing Body is carried out - by a Central Purchasing Body for other Contracting Authorities. - - WG approval 05/08/2021 -
epo:BudgetProviderA role of an agent whose Budget is used to pay for the Contract.
epo:BusinessA private law company registered in a national registry. - - WG Approval 28/04/2020 - -
epo:BuyerA Role of an Agent that awards a Contract and/or purchases items. - - Additional information: - In Public Procurement the Role of Buyer is carried out by the following types of Organisation: - Contracting Authority, Contracting Entity, a defense Contractor, an international - Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. - In Pre-Award, the Buyer generally awards the Contract, however future purchasers may - be foreseen. - In Post-Award the buyer generally refers to the purchaser of items.
epo:CandidateThe Role of an Agent that has sought an invitation or has been invited to take part - in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated - Procedure without prior publication, in a competitive dialogue or in an innovation - partnership. - - WG approval 30/05/2023
epo:CatalogueProviderA Role of an Agent compiling and supplying a Catalogue. - - Additional Information: - - The Catalogue Provider Role is usually played by the Agent that acts as a Seller, - or by another Agent that acts on behalf of the Seller. - - WG Approval 28/01/2021 -
epo:CatalogueReceiverA Role of an Agent processing a Catalogue. - - Additional Information: - The Catalogue Receiver may not only receive it but also validate it, process it, etc. - - The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or - by another Agent that acts on behalf of the Buyer. - - WG Approval 28/01/2021
epo:CentralPurchasingBodyRole of an Agent that provides centralised purchasing activities and, possibly, ancillary - purchasing activities for other Buyers. - - Additional Information: - In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting - Authority for other Contracting Authorities. - Contracting Authority procuring activities conducted on a permanent basis, in one - of the following forms:[...](b) the award of Public Contracts or the conclusion of - Framework Agreements for works, supplies or services intended for Contracting Authorities; - - WG approval 05/08/2021
epo:ConcessionContractA Contract between one or more Buyers and one or more Economic Operators giving the - right to the Economic Operators to exploit the rights foreseen in the Contract which - may include the receipt of Payments. - - WG Approval 24/05/2022
epo:ConcessionEstimate
epo:ContextSpecificDescriptionA description concerning a Procurement Object or a Notice in a specific Situation - Context. - - Additional Information: - The description has its own identity (+I) but is dependent (+D) on the concerned Entity. - - - We say that ContextSpecificDescription *concerns* an Entity. -
epo:ContextualProjectionProjection of an Entity and all of its properties that hold in a given Situation Context. - - - Additional Information: - The contextual projection does not have its own identity (-I), is dependent (+D) - on the described Entity, and is anti-rigid (~R) - - We say that ContextualProjection *describes* an Entity. - - Adaptation of ContextSlices pattern encoding a 4D view. - http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices
epo:ContractA voluntary, deliberate, and legally binding agreement between two or more competent - parties. - - Additional information: - This includes Concession Contracts. - - (WG approval 01/06/2018)
epo:ContractLotCompletionInformationInformation related to a given Lot at the end of the procurement.
epo:ContractModificationAn Announcement of the Modification Of a Contract/Concession during its Term by a - Buyer.
epo:ContractorThe Role of an Agent that has signed a Contract with a Buyer. - - WG approval 08/11/2022
epo:ContractSpecificTermGathering class for conditions and stipulations related to a contract in the Post-Award - Phase.
epo:ContractTermConditions and stipulations defining particularities of the Post Award Phase. - - (WG approval 23/11/2018) -
epo:DesignContestRegimeTermConditions and stipulations defining particularities of a Design Contest. - - WG approval: 04-02-2021
epo:DirectAwardTermConditions and stipulations defining particularities of the award of a Contract without - prior publication. - - Addtional Information: - - Direct award may refer to a previous Procedure and/or specific Lot(s). - - It may also refer to other justified situations whereby there is no previous Procedure. - - See Directive 2014/24/EU Article 32. - - WG Approval 22/11/2019 - - -
epo:DirectContract
epo:DocumentA set of interrelated Business Information representing the Business facts and associated - metadata. - The information may be conveyed in any language, medium or form, including textual, - numerical, graphic, cartographic, audio-visual forms, etc. - - WG Approval 23/05/2019 -
epo:DurationThe length of time in which a concept occurs.
epo:DynamicPurchaseSystemTechniqueA Technique that allows the selection of Candidates throughout the Procedure via the - Qualification Criteria, followed by individual Mini-Competitions for the Award of - Purchase Contracts. - - WG approval 23/05/2023
epo:DynamicPurchasingSystemAn electronic System that is set up by a Buyer which lists the Economic Operators - that satisfy the Qualification Criteria, which may later be put into competition via - a Mini-Competition in view of awarding a Purchase Contract. - - WG approval 23/05/2023 -
epo:EAuctionTechniqueA repetitive Technique in which new Prices, revised downwards, and/or new values concerning - certain elements of Tenders are bid on-line. - - Additional Information: - This corresponds in eForms to BT-767 Electronic Auction . - - WG approval 20/07/2018
epo:EconomicStandingSummary
epo:ElectronicSignature
epo:ElementChangeDescriptionInformation about a specific field to be changed with regard to a previous Notice.
epo:ElementConfidentialityDescriptionInformation about a specific field not intended for publication. - - Additional Information: - In the model, a field is identified by a combination of a class and a property on - that class. Therefore, these two references should be both provided. -
epo:ElementDescriptionDescription about a specific resource.
epo:ElementModificationDescriptionInformation about a specific field to be changed with regard to the Modification Of - a Contract.
epo:EmploymentInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory - framework for employment protection and working conditions.
epo:EnvironmentalProtectionInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory - framework for Environmental Protection.
epo:EstimateAn approximate calculation or a judgement of the value, number, Quantity or extent - of something.
epo:EvaluationTermConditions and stipulations defining particularities of the Tender evaluation. - - (WG approval 23/11/2018) - - -
epo:ExclusionGroundCriterion that describes a legal Requirement to be met by the Economic Operator to - be a Candidate in the Procurement. - - Additional Information: - This corresponds in eForms to BG-701 Exclusion Grounds. - - WG approval 31/10/2018
epo:ExclusionGroundsSummary
epo:ExpressionOfInterestDocument presenting an Economic Operator's Request to be considered for Procedures - covering a specific domain. - WG approval 13/04/2021
epo:FrameworkAgreementAn agreement between one or more Contracting Authorities and one or more Economic - Operators. - - Additional Information: - When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which - describes a Lot which specifies the both the Qualification and Award Criteria. - - WG approval 18/05/2021
epo:FrameworkAgreementTechniqueTechnique that establishes the terms governing Contracts to be awarded during a given - Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. - - WG approval 18/05/2021
epo:FrameworkAgreementTermConditions and stipulations defining particularities in a Framework Agreement.
epo:FundA financial resource used to support the Procurement. - - Additional Information: - - In the context of EU, Funds can be divided into programmes, actions and projects. - - Examples of EU funds are: the European Structural and Investment Funds, European Social - Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme - and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which - supports the eProcurement Ontology under sub-action 3). - - Funds may change between the lot and the contract, for example in the case of an emergency - crisis, a contract may be financed by a budget that was not foreseen in the call. - - WG Approved 14/05/2019 - - - - -
epo:GreenProcurementApproach whereby Buyers seek to procure with a reduced Environmental Impact. - - Additional Information: - - The approach may apply to the complete life cycle. The reduced Environmental Impact - is in comparison to goods, services and works with the same primary function that - would otherwise be procured. - - Tightly related are article 68 - Life-cycle costing and article 67 - most economically - advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf - An instance of the class GreenProcurement is represented in eForms with the code "env-imp" - defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf
epo:IndefiniteDuration
epo:InnovativeProcurementAn instance of the class InnovativeProcurement is represented in eForms with the code - "inn-pur" defined in the codelist Strategic-Procurement. - - Research (21/01/2020): - - Purchasing and early adoption of solutions which are not yet available on large scale - commercial basis. - - Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative - Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions - - Additional Information: - ‘innovation’ means the implementation of a new or significantly improved product, - service or process, including but not limited to production, building or construction - processes, a new marketing method, or a new organizational method in business practices, - workplace Organisation or external relations inter alia with the purpose of helping - to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable - and inclusive growth; - See: Directive 2014/24 - Articles: 2, 26 (3), 31, 67 (2.a) - - Question: - Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?
epo:JuryMember
epo:LeadBuyerA Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. - - - WG agreement: 2022-11-22
epo:LotA qualitative, quantitative or strategic subdivision of the goods, services or works - to be procured, allowing the award of one or more Contracts. - - WG approval 12/09/2018
epo:LotAwardDecisionResult concerning the Lot attributed by the Awarder.
epo:LotGroupCombination of several Lots to conduct comparative assessment of the Tenders. - - Additional Information: - - The comparative assessment may refer to the Selection Criteria, Award and Value that - apply to several Lots. - - Pending of discussion with eForms - - - - Member States may provide that, where more than one lot may be awarded to the same - tenderer, contracting authorities may award contracts combining several or all lots - where they have specified in the contract notice or in the invitation to confirm interest - that they reserve the possibility of doing so and indicate the lots or groups of lots - that may be combined.
epo:LotGroupAwardInformationAward information related to a given Group of Lots.
epo:LotSpecificTermGathering class for conditions and stipulations related to a Lot.
epo:MediatorA Role of an Agent that attempts to resolve a dispute between different Agents - and come to an agreement. - WG approval 20/04/2021
epo:MiniCompetitionA process where multiple winners or candidates of previous stages of a procedure bid - for a specific procurement. - - Additional Information: - It is typically used in framework agreements where the suppliers have already been - pre-selected, and the mini competition is used to determine which supplier is best - suited for a particular project or contract. - It is also used in a Dynamic Purchasing System where the suppliers come from a list - of Candidates. - - WG approval 30/05/2023
epo:MiniCompetitionAwardDecisionResult concerning the Mini-Competition attributed by the Awarder. -
epo:MonetaryValueA number of monetary units specified using a given unit of currency. - - Additional information: - In the pre-award phase of the procurement, all monetary values are considered to exclude - VAT based on the Directive 2014/24/EU. - - WG approval 13/04/2021 -
epo:MultipleStageProcedureTermConditions and stipulations defining particularities of Procedures carried out in - several steps - Additional Information: - Generally this refers to Procedures where selection is carried out to qualify Tenderers - who are then requested to submit the rest of their Tender for evaluation is Restricted - Procedure. - WG Approval 15/04/2021
epo:NonDisclosureAgreementTermConditions and stipulations
epo:NoticeDocument published by the Buyer about market opportunities and results. - - WG Approval 23/05/2019 -
epo:NoticeAwardInformationInformation about an Award Notice.
epo:NoticeChangeInformation about a corrigendum in a Notice.
epo:NoticeDescriptionDescriptions about the notice publishing, or providing evolutions of resources.
epo:OfferDocument providing the Monetary Value and the details to fulfill the Requirements - set out in the Procurement Documents or Request for Offer. - - Additional information: - A quotation is considered to be an Offer in the eProcurement Ontology. - - WG approval 09/02/2023
epo:OfferingPartyThe Role of an Agent that acts on the Economic Operator side during a Procurement - Process. - - Additional information: - As per the European Procurement Directives the notion of ‘Economic Operators’ should - be interpreted in a broad manner so as to include any Persons and/or Entities which - offer the execution of works, the supply of products or the provision of services - on the market, irrespective of the legal form under which they have chosen to operate. - Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited - companies, universities, public or private, and other forms of entities than natural - Persons should all fall within the notion of Economic Operator, whether or not they - are ‘Legal Persons’ in all circumstances.
epo:OfferIssuerThe Role of an Agent that distributes an Offer. - - WG approval 09/02/2023
epo:OfflineAccessProviderA Role of an Agent responsible for providing offline access to the Procurement Documents.
epo:OpeningTermConditions and stipulations defining particularities of the opening of Tenders. - Additional Information: - The opening of Tenders is the event when Tenders are made accessible for evaluation, - it is generally the same date and time for all Tenders. - WG Approval 15/04/2021
epo:OrganisationGroupAgreed collaboration of several Organisations. - Additional Information: - This concept has been created to fulfill the need to represent a grouping of Organisations - that is not necessarily registered i.e, consortia. - WG approval 15/04/2021
epo:OriginatorRequestDocument in which the Originator describes his needs. - - WG approval 09/02/2023
epo:OtherEntityEconomic Operator (who is not a Subcontractor) on which the Tenderer relies upon, - to meet Selection Criteria.
epo:ParticipationConditionCriterion that describes a Requirement to take part in a procurement. - - WG approval 30/05/2023
epo:ParticipationConditionsSummary
epo:ParticipationRequestProcessorA Role of an Agent responsible for processing Requests To Participate.
epo:ParticipationRequestReceiverA Role of an Agent responsible for receiving Requests To Participate.
epo:ParticipationRequestTermConditions and stipulations defining particularities of requesting participation in - a Procedure.
epo:PaymentExecutorA Role of an Agent responsible for executing the Payment.
epo:PeriodA time interval or a Duration. - - (WG approval 28/04/2020) -
epo:PlannedProcurementPartA subdivision of a Planned Procurement that may later become one or more Lots or a - self-standing Procedure. A Lot or a Procedure can also cover one or more parts of - the Planned Procurement. - - WG Approval 20/06/2019
epo:PrizeA reward given in a Contest. - WG approval: 15/04/2021
epo:ProcedureA legally defined set of administrative activities conducted to conclude one or more - Contracts. - - Additional Information - The Procedure is categorised in the law according to different rules determining whether - the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see - Procedure Type). - - WG Approval 20/08/2019 -
epo:ProcedureSpecificTermGathering class for conditions and stipulations related to a Procedure.
epo:ProcedureTermConditions and stipulations defining particularities of the Procedure. - - (WG approval 23/11/2018)
epo:ProcessPlanningTermConditions and stipulations defining particularities of the unfolding of the Procurement - Process.
epo:ProcurementCriteriaSummaryWG approval 24/01/2023
epo:ProcurementCriterionA criterion specific to Procurement. - - Additional Information: - - This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award - Criterion. Each of these Criteria can contain subcriteria (Criterion class). - - WG Approval 23/04/2020
epo:ProcurementDocumentDocument produced or referred to by the Buyer to describe or determine elements of - the Procurement. - - Additional information: - - Procurement Documents are to be accessible since the date of publication of the Contract - Notice or the prior information Notice when used as a call for competition. - - Examples of Procurement Documents are Technical Specifications, the Descriptive Document, - proposed conditions of Contract, formats for the presentation of Documents by Candidates - and Tenderers, information on generally applicable obligations. - - Other Documents related to the Procedure such as Notices are not considered to be - Procurement Documents. - - WG Approval 23/05/2019 17:08:30
epo:ProcurementElementGathering class for critical/central elements in the Procurement Process. - - TODO: add definition - Additional information: - Alias: ProcurementComponent
epo:ProcurementObjectThe whole or a division of goods, services or works to be procured. - - Additional Information: - Anything that can specify the procurement content (i.e. goods, services, work) is - a Procurement Object. - In a sense, such an "object" can constitute the "object of a Contract". - To test whether something is a Procedure Object check if it can have a Purpose and/or - CPV classification (<i>The CPV establishes a single classification system for public - procurement aimed at standardising the references used by Contracting Authorities - and entities to describe the subject of Procurement Contracts.</i>). - - Note: - Procedure, seems to be an exception from this rule. Because it is a conflated term: - it carries process properties and "purpose" properties.
epo:ProcurementProcedureInformationProviderA Role of an Agent responsible for providing additional information about the Procurement - Procedure.
epo:ProcurementProcessInformationInformation about the temporal unfolding or succession of Procurement Objects.
epo:ProcurementServiceProviderRole of a public or private body which offers ancillary purchasing activities on the - market. - - Additional information - - "Ancillary Purchasing Activities" means activities consisting in the provision of - support to purchasing activities, in particular in the following forms: - (a) technical infrastructure enabling Contracting Authorities to award Public Contracts - or to conclude Framework Agreements for works, supplies or services; - (b) advice on the conduct or design of public Procurement Procedures; - (c) preparation and management of Procurement Procedures on behalf and for the account - of the Contracting Authority concerned; - - Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. - - This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity - managing the Procurement, which may be different from the Buyer who is paying / using - the items being procured'. - - WG Approval 24/03/2020 -
epo:ProfessionalSuitabilitySummary
epo:ProjectA collaborative enterprise that is carefully planned to achieve a particular aim.
epo:PublicationProvisionInformation about fields not intended for publication. - - - Additional Information: - The non-published information may become available at a later date and may differ - from one element to another within a given Document. - - Examples of fields that may not be immediately published are Winner, Tender and Procedure - Lot Result, etc., e.g. for security reasons. - - WG Approval 16/05/2019 - - - - -
epo:PurchaseContractA Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract.
epo:PurposeThe description of the objectives related to a Procurement. - - Additional information: - - The description of the objectives includes the Subject Matter and Quantities. - - - The quantification of the objectives related to a procurement. - - To be re-reviewed by the WG the soonest. - - (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) - - The old definition read as follows: - - The description of the objectives related to a procurement. - - (WG approval 05/12/2018) -
epo:QualificationCriteriaSummary
epo:QualificationCriterionCriterion used in the first stage of procurement. - - WG approval 30/05/2023
epo:QuantityA counted number of non-monetary units possibly including fractions. -
epo:RequestForClarificationA demand for elucidation of received information. - Additional Information: - Requests for clarification are usually used by Buyers during the process of award - or evaluation to understand specific aspects of the Tender without altering the Tender. - WG approval 20/04/2021
epo:RequestForParticipationApplication of an Economic Operator to be included in a Procurement Procedure. - WG approval: 20/04/2021
epo:ReviewDecisionInformation about Review Decisions.
epo:ReviewerRole of an Agent who investigates the overall correctness of a Procurement Procedure, - producing a related report. - Additional Information: - Any Organisation or Person may request a review of a Procurement Procedure. - WG approval: 20/04/2021
epo:ReviewIrregularitySummaryInformation about the number and type of requests the Buyer received to review any - of its decisions (e.g. the Technical Specifications, Award Decision). - - Additional information: - This class corresponds in eForms to BG-613 Buyer Review Requests. - - -
epo:ReviewObjectInformation about a Review Request or a Review Decision. - - Additional information: - This class corresponds to the BG-714 Review in eForms. - -
epo:ReviewProcedureInformationProviderA Role of an Agent who is providing more information on the time limits for review - Procedures.
epo:ReviewRequestInformation about requests to review procedures.
epo:ReviewRequesterRole of an Agent who requests the review of a (Procurement) Procedure. - - WG Approval 23/10/2021
epo:ReviewRequestSummarySummary information about the requests the Buyer received to review any of its decisions - (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive - 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the - requests. - - Additional information: - This class corresponds in eForms to BG-612 Buyer Review Summary.
epo:SecurityClearanceTermConditions and stipulations about the status requested of individuals allowing them - access to classified information (state or organisational secrets) or to restricted - areas, after completion of a thorough background check. - - Additional information: - This corresponds in eForms to BT-578, BT-78, BT-732 . - - WG approval 20/06/2023 -
epo:SelectedCandidateListRecord of Candidates admitted to take part in award phases of procurements. - - WG approval 30/05/2023
epo:SelectionCriteriaSummary
epo:SelectionCriterionCriterion that describes a capacity Requirement that the Economic Operator needs to - fulfill to participate in the procurement. - - Additional Information: - Selection criteria may relate to: - (a) suitability to pursue the professional activity; - (b) economic and financial standing; - (c) technical and professional ability - - WG approval 31/10/2018
epo:SelectionEvaluationTermConditions and stipulations defining particularities of the evaluation of Selection - Criteria.
epo:SocialProcurementAn instance of the class SocialProcurement is represented in eForms with the code - "soc-obj" defined in the codelist Strategic-Procurement. - - - Research (21/01/2020): - Socially Responsible Public Procurement (SRPP): - - ‘SRPP’ means Procurement Operations that take into account one or more of the following - social considerations: employment opportunities, decent work, compliance with social - and labour rights, social inclusion (including persons with disabilities), equal opportunities, - accessibility design for all, taking account of sustainability criteria, including - ethical trade issues and wider voluntary compliance with corporate social responsibility - (CSR), while observing the principles enshrined in the Treaty for the European Union - (TFEU) and the Procurement Directives. - Source: Buying Social - A Guide to Taking Account of Social Considerations in Public - Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en - See Article 18 and Annex X Directive 2014/24.
epo:SpecificDuration
epo:StatisticalInformationStatistical data on the Procedure and the Lot. - - Additional Information - - At the present time Procurement Procedures are not fully electronic. At a later date, - information on the Tenders received could be inferred by the data in the eProcurement - System. - Therefore this class is temporal and should cease to exist in fully electronic Procurement. - The need for its presence responds also to the alignment with the Regulation (EU) - 2019/1780 (eForms). - - Attention will have to be paid in the future to possible inconsistencies derived from - data placed in other classes and data held in the Statistical Information class; e.g. - the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender - indicator, which in case of being false, may enter in contradiction with the highest - or lowest Tender value for that very same inadmissible Tender. - - WG Approval 12/12/2019 -
epo:StrategicProcurementPublic Procurement that contributes to achieving pressing policy goals. - - Additional Information: - Specific strategic goals could be, for example, Environmental Protection, innovation, - job creation and the development of small and medium enterprises. - - This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given - by the choices in BT-06 Strategic Procurement. - - Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph - on "background information". - - WG Approval 10/03/2020
epo:SubcontractingEstimateInformation on the approximation of the foreseen Subcontracting.
epo:SubcontractorA Role of an Agent that has an agreement to perform part or all of the obligations - of another Agents's Contract. - Additional information - For some Procedures, the Subcontractor signs as well the Contract between the Buyer - and the Contractor. - - At tendering time, entities relied upon by the Economic Operators can be Subcontractors - or not. - - When modelling ESPD we well analyze whether we need or not a Role named "relied upon". - - WG approval 05/08/2021 -
epo:SubcontractTermA concept to describe the main information regarding the share of parts of the Contract - to third parties.
epo:SubmissionStatisticalInformationStatistical information about submissions on a given competition, either at Lot level - or Mini-Competition level. - - WG approval 30/05/2023
epo:SubmissionTermConditions and stipulations defining particularities of submitting Documents to the - Buyer. - - Additional Information: - These Documents can be Tenders, Request To Participate and expressions of interest. - - WG Approval 14/07/2020
epo:SystemSoftware application used for performing Procurement activities. - - WG Approval 28/04/2020 - -
epo:TaxInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory - framework for taxes.
epo:TechnicalAbilitySummary
epo:TechniqueMethod used for conducting Procurement Procedures. - - Addtional information: - This corresponds in eForms to BG-706 Techniques. - - Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction - can be carried out in a Framework Agreement or DPS). - - WG Approval 19/09/2019 -
epo:TenderInformation submitted by the Economic Operator to specify its Offer regarding a specific - Lot, in response to the call for Tender. - - (WG approval 03/05/2022) - - -
epo:TenderAwardOutcomeResult concerning the Tender attributed by the Awarder.
epo:TendererA Role of an Agent that has submitted a Tender. - - Additional Information: - A Tenderer is an Economic Operator or group of Economic Operators that has submitted - a Tender. - WG approval 05/08/2021
epo:TenderGroupSpecific Offer in response to a Lot Group. - - Additional Information: - This class is generally used to provide the Monetary Value in response to a Lot Group. -
epo:TenderProcessorA Role of an Agent responsible for processing Tenders.
epo:TenderReceiverA Role of an Agent responsible for receiving Tenders.
epo:TermA governing condition or stipulation.
epo:WinnerA Role of an Agent to whom a Lot is awarded. - WG approval 05/08/2021 (revised 26/10/2021)
foaf:AgentA Person, an Organisation, or a System that acts in Procurement or have the power - to act in Procurement. - - WG Approval 28/04/2020
foaf:PersonThe Person class represents people. Something is a Person if it is a Person. We don't - nitpick about whether they're alive, dead, real, or imaginary. The Person class is - a sub-class of the Agent class, since all people are considered 'Agents' in FOAF.
locn:AddressThe particulars of the place where a Person or an Organisation is located. - - WG Approval 28/04/2020 - - Additional Information: - An "Address Representation" as conceptually defined by the INSPIRE Address Representation - data type: "Representation of an address spatial object for use in external application - schemas that need to include the basic, address information in a readable way.". - - - The representation of Addresses varies widely from one country's postal System to - another. Even within countries, there are almost always examples of Addresses that - do not conform to the stated national standard. At the time of publication, work is - progressing on ISO 19160-1 that defines a method through which different Addresses - can be converted from one conceptual model to another. - - - This specification was heavily based on the INSPIRE Address Representation data type. - It is noteworthy that if an Address is provided using the detailed breakdown suggested - by the properties for this class, then it will be INSPIRE-conformant. To this very - granular set of properties, we add two further properties: - - - full address (the complete address as a formatted string) - - addressID (a unique identifier for the address) - The first of these allows publishers to simply provide the complete Address as one - string, with or without formatting. This is analogous to vCard's label property. - - The addressID is part of the INSPIRE guidelines and provides a hook that can be used - to link the Address to an alternative representation, such as vCard or OASIS xAL.
locn:GeometryThe Geometry class provides the means to identify a Location as a point, line, polygon, - etc. expressed using coordinates in some coordinate reference System. - - Additional Information: - This class defines the notion of "Geometry" at the conceptual level, and it shall - be encoded by using different formats (see usage note of the locn:geometry property). - We also refer to the Examples section of this specification for a number of different - Geometry examples expressed in different formats.
org:OrganizationA collection of people organized together into a community or other social, commercial - or political structure. The group has some common purpose or reason for existence - which goes beyond the set of people belonging to it and can act as an Agent. Organisations - are often decomposable into hierarchical structures. - - (WG approval 23/11/2018). -
owl:ThingAny individual in the domain of discourse is a Thing. - - - Additional Information: - - The most basic concepts in a domain should correspond to classes that are the roots - of various taxonomic trees. Every individual in the OWL world is a member of the class - owl:Thing.
-

Attributes (datatype properties) names and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Class nameAttribute nameDefinitionData type / cardinality
adms:Identifieradms:schemaAgencyThe name of the agency that issued the identifier.rdf:PlainLiteral [0..*]
cccev:Criterioncccev:biasParameter used to adjust the evaluation of the Criterion. - - Additional Information: - The bias parameter tries to correct a systematic error. For example in procurement, - a home bias corresponds to the "presence of local preferences distorting international - specialisation and resource allocation". When quantified, this systematic error can - be removed.xsd:decimal [0..1]
cccev:Criterioncccev:weightRelative importance of the Criterion. - - Additional Information: - The weight must be between 0 and 1. Usually, all Criteria can be integrated within - a weighted sum equal to 1.xsd:decimal [0..1]
cccev:Criterioncccev:weightingConsiderationDescriptionExplanation of how the weighting of a Criterion is to be used. - - Additional Information: - This description gives the view of the creator of the Criterion weights on how to - interpret and use them during the evaluation process.rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:emailThe email of the Organisation. - - rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:telephoneA telephone number through which the Contact Point can be contacted. - rdf:PlainLiteral [0..*]
cpv:Personcv:birthDateThe point in time on which the Person was born.xsd:date [0..1]
locn:Geometrycv:coordinatesThe coordinate list.rdf:PlainLiteral [0..*]
locn:Geometrycv:latitudeThe latitude.rdf:PlainLiteral [0..*]
locn:Geometrycv:longitudeThe longitude.rdf:PlainLiteral [0..*]
cpv:Persondct:alternativeAny name by which an individual is known other than their full name. - WG 09/11/2021rdf:langString [0..*]
epo:ProcurementElement
epo:System
epo:AgentInRole
cpov:ContactPoint
cv:Channel
epo:NonDisclosureAgreementTerm
epo:SecurityClearanceTerm
epo:SubcontractTerm
cccev:InformationConcept
cccev:Requirement
epo:Technique
epo:SubcontractingEstimate
epo:ElectronicSignature
epo:Document
epo:Fund
dct:descriptionAn account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 - An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 - An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [1..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:Documentdct:issuedDate of formal issuance of the resource. - - Additional information: - This is generally used for modules other than eNotice. - The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or - xsd:timeStamp or any other variant of time expression. This extension needs to be - encoded/automated in the ontology and in the application profile. - Why is it like this? Because UML cannot handle such expressions of disjunctive property - ranges. - - WG approval 26/01/2023xsd:dateTime [0..1]
epo:ProcurementElement
foaf:Agent
epo:AgentInRole
epo:Document
epo:Fund
dct:titleA name given to the resource. - - WG approval 30/05/2023 A name given to the resource. - - WG approval 30/05/2023 A name given to the resource. - - WG approval 30/05/2023 - A name given to the resource. - - WG approval 30/05/2023 - - A name given to the resource. - - WG approval 30/05/2023 - rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:describesMinimumLevelOfStandardsrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesObjectiveParticipationRulesrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionRelevantLawrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesVerificationMethodrdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasAbnormallyLowTendersTenders received that were found irregular and non-acceptable due to an abnormally - low price or cost. - - Additional Information - The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. - - WG Approval 28/07/2020 - - xsd:integer [0..1]
epo:Procedureepo:hasAcceleratedProcedureJustificationThe reasons why the procedure is accelerated. - - Additional Information: - A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake - relief. - - WG Approval 09/06/2020 - - rdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasAccessibilityDateThe date at which unpublished data shall be published. - - WG Approval 11/06/2020xsd:date [0..1]
epo:Documentepo:hasAccessURLLocation where the resource can be accessed. - - WG approval 07/04/2022xsd:anyURI [0..*]
epo:Buyerepo:hasActivityDescriptionIn the ePO ontology a taxonomy with all activities, based on different classifications - (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively - to complement the definition attached to the MainActivityCode. - - However, in eForms there is the code "other" to cover undefined activities. For mapping - to this eForms feature one could also use this property. - rdf:PlainLiteral [0..*]
epo:ProcurementObject
epo:Notice
epo:ElementChangeDescription
epo:hasAdditionalInformationSupplementary data about the instance of the concept. - - WG Approval 15/10/2019 Supplementary data about the instance of the concept. - - WG Approval 15/10/2019 Supplementary data about the instance of the concept. - - WG Approval 15/10/2019 - rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
epo:AccessTermepo:hasAdditionalInformationDeadlineThe time limit for requesting further information. - - Additional information: - - This is generally used to indicate the deadline for Economic Operators to request - further information of the procedure before the submission deadline. - - This corresponds in eForms to BT-13 Additional Information Deadline. - - WG Approval 09/06/2020 - xsd:dateTime [0..1]
epo:AwardDecisionepo:hasAdditionalNonAwardJustificationFurther justification for the non award . - - Additional information: - This is generally used when the non award reason code is set to "Other". - - WG: 18/01/2022rdf:PlainLiteral [0..1]
cv:Channelepo:hasAddressURLxsd:anyURI [0..1]
foaf:Agentepo:hasAliasAcronym or alternative name of the Agent. - WG Approval 25/03/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasAmountValueThe numeric value of the amount, including decimals.xsd:decimal [1..1]
epo:AwardEvaluationTermepo:hasAwardCriteriaEvaluationFormulaThe mathematical equation or any other description used for complicated weighing of - criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing - cannot be expressed per criterion. - - Additional Information: - This corresponds in eForms to BT-543 Award Criteria Complicated.rdf:PlainLiteral [0..*]
epo:AwardEvaluationTermepo:hasAwardCriteriaOrderJustificationThe justification for only indicating the award criteria's order of importance, not - their weighing. - - Additional Information: - This corresponds in eForms to BT-733 Award Criteria Order Justification.rdf:PlainLiteral [0..1]
epo:AwardCriterionepo:hasAwardCriteriaStatedInProcurementDocumentsxsd:boolean [1..1]
epo:ProcessPlanningTermepo:hasAwardDateScheduledPlanned date for the award decision. - WG Approval 09/11/2021xsd:date [0..1]
epo:AwardDecisionepo:hasAwardDecisionDateThe official date of the award decision. - - Additional Information: - This corresponds in eForms to BT-1451 Winner Decision Date. - - WG Approval 09/01/2020 - xsd:dateTime [0..1]
epo:TenderAwardOutcomeepo:hasAwardRankThe position of the tender (i.e. whether the tender ended up first, second, third, - etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) - or an innovation partnership. - - Additional Information: - This corresponds in eForms to BT-171 Tender Rank. - xsd:integer [0..1]
epo:Periodepo:hasBeginningThe date and time on which this period begins.xsd:dateTime [0..1]
epo:FrameworkAgreementTermepo:hasBuyerCategoryDescriptionA classification of buyers participating in a framework agreement. - - Additional Information: - Buyers that can use the Framework Agreement not mentioned by name. - - For example, the classification "all hospitals in the Tuscany region" is used instead - of naming each individual buyer. - - This corresponds in eForms to BT-111 Framework Buyer Categories. - - WG Approval 2019-05-06rdf:PlainLiteral [0..*]
org:Organizationepo:hasBuyerLegalTypeDescriptionSelf-explanatory text about the Buyer Legal Type. - - Additional information: - This field is used when the Buyer Legal Type is not available in the controlled list - at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard - Forms. It shall be deprecated in the future. - - WG Approval 06/09/2022rdf:PlainLiteral [0..1]
epo:Buyerepo:hasBuyerProfileWebsite address where the buyer publishes information on its procurement procedures - and general information. - - Additional information: - This corresponds in the eForms to BT-508 Buyer Profile URL. - - WG approval 04/05/2018 - xsd:anyURI [0..1]
epo:ConcessionEstimateepo:hasCalculationMethodFormula for obtaining values. - - Additional Information: - The possible values are monetary values, ranking scores, criterion weighting. - - WG Approval 25/05/2018rdf:PlainLiteral [0..1]
epo:ElementChangeDescriptionepo:hasChangeDescriptionExplanatory text about the instance of the concept. - - WG Approval 30/09/2019rdf:PlainLiteral [0..*]
epo:ElementChangeDescriptionepo:hasChangeReasonDescriptionExplanatory text about why the element is altered. - - Additional information: - This corresponds in eForms to BT-762 Change Reason Description.rdf:PlainLiteral [0..*]
epo:GreenProcurementepo:hasCleanVehiclesThe number of all clean vehicles that have either been purchased, leased, rented, - hired-purchased or their use has been contractually committed to for the provision - of a purchased service. - - Additional Information - In the European Union, the legal requirements and scope for the provision of these - vehicles or services are covered by Directive 2009/33/EC. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:QualificationCriteriaSummaryepo:hasConditionVerificationMethodrdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasConfidentialityJustificationA narrative explanation of why data is not published. - - Additional Information: - This element is generally used when the non-publication-justification code chosen - is "other". - - WG Approval 09/11/2021 - rdf:PlainLiteral [0..1]
cpov:ContactPointepo:hasContactNameA short text by which a contact is known or referred to. - - WG Approval: 27/01/2022rdf:PlainLiteral [0..1]
epo:Contractepo:hasContractConclusionDateThe date the contract was signed by the last signatory party. - - <u>Additional Information:</u> - In exceptional cases contracts may be concluded without signature and therefore another - date may be used. The date of contract conclusion is always later than the end of - any standstill period. - This concept is not to be confused with the date of completion/end of the contract. - - This corresponds in eForms to BT-145 Contract Conclusion Date. - - WG Approval 09/01/2020xsd:date [0..1]
epo:ProcedureTermepo:hasCrossBorderLawThe applicable law when buyers from different countries procure together within one - procurement procedure. - - Additional Information: - This corresponds in eForms to BT-09 Cross Border Law.rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyIDIdentifier of the agency that maintains the currency code list used. - WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyNameName of the agency that maintains the currency code list used. - WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListIDConcept scheme URI used for the currency code list. - WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:SecurityClearanceTermepo:hasDeadlineThe deadline by which the security clearance must be submitted to the buyer. - - WG Approval 12/09/2019 - - xsd:dateTime [0..1]
epo:ReviewDecisionepo:hasDecisionDateThe date of the review decision. - - Additional information: - This attribute corresponds to the BT-787 Review Date in eForms. - xsd:date [0..1]
epo:Documentepo:hasDispatchDateDate of transmission of a record to an organisation. - - WG Approval 12/05/2020xsd:date [0..1]
epo:FrameworkAgreementTermepo:hasDurationExtensionJustificationThe explanation of the reason why the framework agreement has an extended duration. - - Additional Information: - This corresponds in eForms to BT-109 Framework Duration Justification. - The justification for exceptional cases when the duration of the framework agreement - exceeds the legal limits. - - Four years in the case of the general procurement Directive, seven years in the case - of the defence Directive, and eight years in the case of the sectoral Directive. - - WG Approval 26/09/2019rdf:PlainLiteral [0..1]
epo:SubmissionTermepo:hasEAuctionURLThe internet address of the electronic auction. - - Additional Information: - - This corresponds in eForms to BT-123 Electronic Auction URL.xsd:anyURI [0..1]
epo:SubmissionStatisticalInformationepo:hasEEAReceivedTendersThe amount of tenders received from economic operators in other EEA countries other - than the country of the buyer. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:Noticeepo:hasEFormsSubtypexsd:integer [0..1]
epo:ContractTermepo:hasEInvoicingElectronic means will be used for invoicing in the post-award process. - - Additional Information: - This attribute is used for standard form mappings. - - WG Approval 12/09/2019 - xsd:boolean [0..1]
epo:Tenderepo:hasElectronicSubmissionTransmission of tenders is possible by electronic means of communication. xsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasElectronicTendersElectronic Tender Lots received. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:ReviewObject
epo:ElementChangeDescription
epo:ElementModificationDescription
epo:hasElementReferenceReference to the class instance in the current notice. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, - BT-786 Review Notice Section Identifier and BT-1501 Modification Previous - Notice Section Identifier. Reference to the class instance in the current notice. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, - BT-786 Review Notice Section Identifier and BT-1501 Modification Previous - Notice Section Identifier. Reference to the class instance in the current notice. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, - BT-786 Review Notice Section Identifier and BT-1501 Modification Previous - Notice Section Identifier. - xsd:anyURI [0..*]
xsd:anyURI [1..1]
xsd:anyURI [0..1]
epo:Periodepo:hasEndThe date and time at which this period ends.xsd:dateTime [0..1]
epo:Contractepo:hasEntryIntoForceDateThe date on which the contract enters into force. - - Additional information: - - This is generally the date on which the fulfillment of the contract begins. - - This corresponds in eForms to - - WG approval 05/11/2019xsd:date [0..1]
epo:ContractTermepo:hasEOrderingElectronic means will be used for requesting and purchasing in the post-award process. - - WG Approval 12/09/2019 - - xsd:boolean [0..1]
epo:ContractTermepo:hasEPaymentElectronic means must be used for paying. - WG Approval 09/11/2021 - xsd:boolean [0..1]
epo:Noticeepo:hasESenderDispatchDateThe date and time the notice was transmitted electronically by the eSender to the - Publications Office of the European Union. - - Additional Information: - Typically, eSenders include national Official Journals, Buyers sending a large number - of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement - software developers. - - WG approval 20/06/2023xsd:dateTime [0..1]
epo:ProcessPlanningTermepo:hasEstimatedContractNoticePublicationDateForeseen date for publication of Contract Notice. - - Additional information: - This corresponds in eForms BT-127 Future Notice. - - xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToExpressInterestDateThe estimated date of dispatch of the invitations to confirm interest. - - Additional Information: - This corresponds in eForms to BT-631 Dispatch Invitation Interest.xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToTenderDateThe estimated date of dispatch of the invitations to submit tenders in two (or more) - stage procedures. - - Additional Information: - This corresponds in eForms to BT-130 Dispatch Invitation Tender. - - WG Approval 01/10/2019xsd:date [0..1]
epo:SubcontractingEstimateepo:hasEstimatedPercentageThe estimated proportion foreseen to be subcontracted. - - WG Approval 07/01/2020xsd:decimal [0..1]
epo:ProcessPlanningTermepo:hasEstimatedTenderInvitationDateThe planned date for the dispatch of the invitations to submit tenders. - WG Approval 09/11/2021xsd:date [0..1]
epo:SubmissionStatisticalInformationepo:hasEstimatedTotalSubcontractsThe estimated amount of work to be subcontracted in the contract resulting from the - lot. - WG Approval 09/11/2021xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasEUReceivedTendersThe amount of tenders received from economic operators in other EU countries other - than the country of the buyer.xsd:integer [0..1]
cpov:ContactPointepo:hasFaxThe fax number used to reach a person or an organisation.rdf:PlainLiteral [0..*]
epo:AwardCriterionepo:hasFixedValueThis corresponds in the eForms to BT-541 Award Criterion Number in association with - BT-5422 Award Criterion Number Fixed.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractAny subsequent service contract will be awarded to the winner or, in the case of a - design contest, winners. - - WG Approval 29/08/2019 xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractInformationFurther information about follow-up contracts, prizes and payments (for example non-monetary - prizes, payments given for participation). - - WG Approval 03/09/2019rdf:PlainLiteral [0..*]
epo:Noticeepo:hasFormNumberxsd:integer [0..1]
epo:ProcurementCriterionepo:hasFormulaThe mathematical equation or any other description used for complicated weighing of - criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing - cannot be expressed per criterion. - - Additional Information: - This corresponds in eForms to BT-543.rdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasGroupLotEvaluationMethodDescription of how lots and groups of lots are evaluated against one another in the - procedure. - - - - rdf:PlainLiteral [0..*]
epo:OrganisationGroupepo:hasGroupTypeForm of collaboration agreement between organisations. - - Additional Information: - This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also - be used for Organisation Groups. - - WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasGuaranteeDescriptionInformation on the financial commitment required from the economic operator. - - Additional Information: - 1. This information may include the amount and the way of delivering of the guarantee - 2. The financial commitment may be retained by the buyer in the case the tenderer - withdraws the submitted information (i.e. tender, expression of interest and request - for participation, but not request for clarifications) before the award of the contract - or does not sign the contract. - 3. Usual modalities are bonds, cheques, loans, other. - - WG Approval 21/07/20 - rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasInadmissibleTendersTenders received that cannot be awarded due to non-compliance to procurement document - requirements or having an abnormally low price or cost. - - <u>Additional Information: </u> - Non-compliance with a Procurement Document requirements include exclusion grounds, - selection criteria and submission deadline, etc. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:ElementConfidentialityDescriptionepo:hasInstanceReferenceThe URI of a given class that is being referred to.xsd:anyURI [1..1]
org:Organization
cpov:ContactPoint
epo:hasInternetAddressThe main web page used by the instance of the concept. - - WG Approval 01/06/2023 - The main web page used by the instance of the concept. - - WG Approval 01/06/2023 - - xsd:anyURI [0..*]
xsd:anyURI [0..1]
epo:DirectAwardTermepo:hasJustificationAn explanation about the reasons for using the concept. - WG Approval 5/11/2019 - rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasLateSubmissionInformationDescriptionA narrative text explaining the content of the economic operator information that - can be submitted late. - - Additional Information - This does not apply to requests for clarifications. - rdf:PlainLiteral [0..*]
epo:ProcurementObjectepo:hasLegalBasisDescriptionrdf:PlainLiteral [0..*]
epo:ContractTermepo:hasLegalFormRequirementThe legal form to be taken by a Contractor. - - Additional Information: - Generally, this is defined to cover the case where an Organisation Group is involved. - Note that the codelist provided at national level should be used.rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalFormTypeThe classification of an Organisation according to legislation. - - Additional Information: - Generally, this is defined for Tenderers who want to submit as an Organisation Group. - Note that the codelist provided at national level should be used. - rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalNameThe officially registered name of an organisation. - - WG Approval 10/01/2023rdf:PlainLiteral [0..*]
epo:Noticeepo:hasLongTitlerdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasLotAwardCombinationThe contracting authority reserves the right to award contracts combining lots or - groups of lots. - - Additional Information: - This property contains information about the Lots concerned. - This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard - Forms). - - WG approval 23/08/2022 - rdf:PlainLiteral [0..1]
org:Organizationepo:hasMainActivityDescriptionSelf-explanatory text about the Main Activity . - - Additional information: - This field is used when the Main Activity is not available in the controlled list - at-voc:main-activity-type . This is necessary in to cover data provided in the TED - Standard Forms. It shall be deprecated in the future. - - WG Approval 06/09/2022 - rdf:PlainLiteral [0..1]
epo:Procedureepo:hasMainFeatureMain features of the procedure and information about where the full rules for the - procedure can be found. - - Additional Information: - This information should be given when the procedure is not one of those mentioned - in the procurement directives. This can be the case for example for concessions, for - social and other specific services, and in case of voluntary publication of procurement - procedures below the EU procurement thresholds.rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasMaximumLotSubmissionAllowedThe total number of lots for which one Tenderer can submit Tenders. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms). - - WG approval 12/12/2018 - - xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMaximumNumberOfCandidatesMaximum number of candidates to be invited for the second stage of the procedure. - - WG Approval 22/08/2019xsd:integer [0..1]
epo:ProcedureTermepo:hasMaximumNumberOfLotsToBeAwardedThe maximum number of lots for which contract(s) can be awarded to one tenderer. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms). - - WG Approval 22/08/2019xsd:integer [0..1]
epo:ContractTermepo:hasMaximumNumberOfRenewalsThe maximum number of times the contract can be renewed. - - Additional Information - - By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract - (i.e. extend its duration) without a new procurement procedure. - For example, a contract may be valid for one year and the buyer may keep a possibility - to renew it (e.g. once, twice) for another three months, if he is content with the - services he received. - - PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken - from eForms. - xsd:integer [0..1]
epo:FrameworkAgreementTermepo:hasMaximumParticipantsNumberThe maximum number of participants in the framework agreement. - - Additional Information: - Maximum number of tenderers who may be awarded a contract within the framework agreement. - - The number is a positive integer. - - This corresponds in eForms to BT-113 Framework Maximum Participants Number. - - WG Approval 2019-02-05xsd:integer [0..1]
epo:SubcontractTermepo:hasMaximumShareThe maximum proportion of something to be distributed. - - Additional Information: - In the case of subcontracting the share may refer to the proportion of works, services - or supplies being subcontracted. - - WG Approval 17/09/2019 - - xsd:decimal [0..1]
epo:SubmissionStatisticalInformationepo:hasMediumTenderPerLotsTenders from medium-sized enterprise. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC. - xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMinimumNumberOfCandidatesMinimum number of candidates to be invited for the second stage of the procedure. - - WG Approval 22/08/2019 xsd:integer [0..1]
epo:SubcontractTermepo:hasMinimumShareThe minimum proportion of something to be distributed. - - Additional Information: - In the case of subcontracting the share may refer to the proportion of works, services - or supplies being subcontracted. - - WG Approval 17/09/2019xsd:decimal [0..1]
epo:SubcontractTermepo:hasMinimumSubcontractorsProposedObligationThe minimum percentage of the contract value that the contractor must subcontract. - - Additional information: - This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - - - WG Approval 09/11/2021xsd:decimal [0..1]
epo:ElementModificationDescriptionepo:hasModificationDescriptionAn explanatory text about this context. - - Additional Information - - This corresponds in Standard forms to Field VII.2.1 in F20 - This corresponds in eForms to BT-202 . - - WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ElementModificationDescriptionepo:hasModificationReasonDescriptionAn explanation about the reasons for using the concept. - - Additional Information - This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. - - This corresponds in eForms to BT-201 . - - WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasNationalProcedureRulesxsd:anyURI [0..*]
epo:StrategicProcurementepo:hasNonAccessibilityCriterionJustificationReason for not applying accessibility criteria. - - Additional information: - This corresponds in eForma to BT-755 Accessibility Justification. - - WG Approval 05/03/2019rdf:PlainLiteral [0..*]
epo:LotAwardDecisionepo:hasNonAwardedContractNumberThe number the contract would have had if it had been awarded. - - Additional information: - - This field is provided to support the data provided in the TED Standard Forms, and - it should be discontinued in the future. - - WG agreement: 06/09/2022 - rdf:PlainLiteral [0..1]
epo:LotAwardDecisionepo:hasNonAwardedContractTitleThe title the contract would have had if it had been awarded. - - Additional information: - - This field is provided to support the data provided in the TED Standard Forms, and - it should be discontinued in the future. - - WG agreement: 06/09/2022rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasNonEEAReceivedTendersThe amount of tenders received from economic operators in non-EEA countries. - - WG Approval 12/12/2019 15:20:36xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasNoNegotiationNecessaryThe buyer reserves the right to award the contract on the basis of the initial tenders - without any further negotiations. - - Additional information: - See Article 29(4) of Directive 2014/24/EU. - xsd:boolean [0..1]
epo:SubmissionTermepo:hasNonElectronicSubmissionDescriptionTextual explanation of how non-electronic information is to be presented. - - WG Approval 21/07/2020 - - rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasNonEUReceivedTendersThe amount of tenders received from economic operators in non-EU countries. - xsd:integer [0..1]
epo:Noticeepo:hasNoticePublicationNumberrdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasNumberOfReviewRequestsThe number of requests the buyer received to review any of its decisions.xsd:integer [1..1]
epo:SubmissionStatisticalInformationepo:hasNumberOfTenderersInvitedNumber of economic operators invited to tender. - - Additional Information - This may be used for single-stage procedures or to indicate the number of candidates - invited to tender in multi-stage procedures. - - WG Approval 01/12/2020 - - xsd:integer [0..1]
epo:Noticeepo:hasOJSIssueNumberxsd:integer [0..1]
epo:Noticeepo:hasOJSTyperdf:PlainLiteral [0..1]
epo:OpeningTermepo:hasOpeningDateTimeDate and time for the opening of tenders. - - WG Approval 12/03/2019 - - xsd:dateTime [1..1]
epo:OpeningTermepo:hasOpeningDescriptionFurther information about the opening of tenders. - - Additional Information - For example, who may participate in the opening and whether any authorization is needed. - - WG Approval 12/03/2019rdf:PlainLiteral [0..*]
epo:OpeningTermepo:hasOpeningURLThe identifier of the address of the Opening of Tenders. - WG Approval 09/11/2021xsd:anyURI [0..1]
epo:ContractTermepo:hasOptionsThe buyer reserves the right (not an obligation) for additional purchases from the - contractor (while the contract is valid).xsd:boolean [0..1]
epo:ContractTermepo:hasOptionsDescriptionThe motivation and details about additional purchases that the buyer may undertake - while the contract is valid. - - WG Approval 09/04/2019 rdf:PlainLiteral [0..*]
org:Organizationepo:hasOrganisationUnitNameThe name of a subpart of an organisation. - - Additional Information: - E.g. the relevant department of a large organisation. - - We added this attribute in case of eProcurement notices where the Buyer is actually - a part of an Organization and the rest of the properties apply to the rest of the - Organisation as well.rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasOtherCountriesReceivedTendersxsd:integer [0..1]
epo:AwardEvaluationTermepo:hasOverallCostAwardCriteriaPonderationThe weighting given to cost. - - Additional Information: - This weighting covers usually all cost criteria against price or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallPriceAwardCriteriaPonderationThe weighting given to price. - - Additional Information: - This weighting covers usually all price criteria against cost or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallQualityAwardCriteriaPonderationThe weighting given to quality. - - Additional Information: - This weighting covers usually all quality criteria against price or cost criteria.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasParticipationPaymentDetails on payments to participants - WG Approval 09/11/2021rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPaymentArrangementInformation about financial clauses that will govern some economic aspects of the - execution of the contract. - - Additional Information: These clauses usually refer to financial and payment provisions. - - This type of information should be structured instead of a free text in order to reuse - it an ideal world. Unfortunately this is an information that in the real life no one - is willing to provide pro-actively. - - WG Pending of discussion with eFormsrdf:PlainLiteral [0..*]
epo:ContractLotCompletionInformationepo:hasPaymentValueDiscrepancyJustificationrdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPerformanceConditionsThe particular conditions and additional information related to the execution of the - contract. - - Additional Information: - - For example, specific information about the place of performance, intermediary deliverables, - compensation for damages, intellectual property rights. - - WG approval 15-01-2019rdf:PlainLiteral [0..*]
epo:ContractTermepo:hasPlaceOfPerformanceAdditionalInformationFurther details on the location of the execution of the contract. - - WG Approval 30/07/2019rdf:PlainLiteral [0..*]
epo:PublicationProvisionepo:hasPreferredPublicationDateThe date the buyer would like to have the record made publicly available. - - Additional Information: - This corresponds in eForms to BT-738 Notice Publication Date Preferred. - - WG Approval 12/05/2020xsd:date [0..1]
epo:ElementChangeDescriptionepo:hasPreviousVersionOfElementReferenceReference to the class instance in the previous version of the notice, which was changed. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. - xsd:anyURI [0..1]
epo:Prizeepo:hasPrizeRankThe position of the prize (e.g. first place, second place) in a design contest list - of prizes. - - WG Approval 29/08/2019 - xsd:integer [0..1]
epo:ElementChangeDescriptionepo:hasProcurementDocumentChangeDateThe date and time of the change. - - Additional information: - This corresponds in eForms to BT-719 Change Procurement Documents Date - - WG Approval 5/11/2019 - xsd:date [0..1]
epo:ElementConfidentialityDescriptionepo:hasPropertyReferenceThe URI of a given attribute (property) that is being referred to.xsd:anyURI [1..1]
epo:AccessTermepo:hasPublicAccessURLWeb page where the procurement documents can be downloaded. - - Additional Information: - This corresponds in the eForms to BT-15 Documents URL. - - WG Approval 09/03/2021 - xsd:anyURI [0..1]
epo:Documentepo:hasPublicationDateDate of formal public issuance of the document. - - WG approval 20/06/2023xsd:date [0..1]
epo:QualificationCriteriaSummaryepo:hasQualificationConditionrdf:PlainLiteral [0..*]
epo:MultipleStageProcedureTermepo:hasQualificationSystemRenewalDescriptionrdf:PlainLiteral [0..1]
epo:Quantityepo:hasQuantityValueThe numeric value of the quantity, including decimals.xsd:decimal [1..1]
epo:SubmissionTermepo:hasReceiptDeadlineThe time limit for receiving submissions. - - Additional Information - This is the deadline by which the buyer must receive submissions (e.g. tenders, requests - to participate, clarifications, etc.) and is not the time at which the information - is submitted by the economic operator. - This attribute should be used for standard forms mappings. - - WG Approval 21/07/2020 - xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptExpressionDeadlineTime limit for receipt of expressions of interest. - - Pending of review by the WG - - xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptParticipationRequestDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptPreliminaryMarketConsultationDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptTenderDeadlinexsd:dateTime [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedMicroTendersThe amount of tenders received from a micro enterprise. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC.xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedParticipationRequestsThe amount of applications to participate from economic operators. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedSmallTendersTenders from small enterprise. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC. - - xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedTendersThe total amount of tenders received. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:Documentepo:hasReceptionDateNotes: Date when a record is acknowledged by an organisation. - - WG Approval 12/05/2020xsd:date [0..1]
epo:ProcurementObjectepo:hasRecurrenceDescriptionAny additional information about the recurrence of the Procurement. - - Additional Information: - For example estimated timing of the Procedure. - - This corresponds in eForms to BT-95 Recurrence Description. - - (WG approval 2019-01-16) - rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasRenewalDescriptionAny other information about the renewal(s). - - WG approval 16/04/2019 rdf:PlainLiteral [0..*]
epo:ReviewRequestepo:hasRequestDateThe date when the review request was submitted. - - Additional information: - This attribute corresponds to the BT-787 Review Date in eForms. - xsd:date [0..1]
epo:ContractTermepo:hasReservedExecutionThe execution of the contract is restricted to the framework of sheltered employment - programmes. - - Additional information: - This property corresponds in eForms to BT-736 - - WG Approval 12/09/2019 - - The codelist to be used is at-voc:applicability which is available at http://publications.europa.eu/resource/dataset/applicability - xsd:boolean [0..1]
epo:AccessTermepo:hasRestrictedAccessURLThe internet address with information on accessing the restricted (part of the) procurement - document. - - Additional Information: - This corresponds in eForms to BT-615 Documents Restricted URL. - xsd:anyURI [0..1]
epo:ReviewIrregularitySummaryepo:hasReviewIrregularityCountThe number of requests for a given irregularity. - - Additional information: - This attribute corresponds in eForms to BT-635 Buyer Review Requests Count.xsd:integer [1..1]
epo:ReviewObjectepo:hasReviewURLThe internet address of the documents concerning the review instance. - - Additional information: - This attribute corresponds in eForms to BT-794 Review URL. - xsd:anyURI [0..1]
adms:Identifierepo:hasSchemeThe name of the identification scheme.rdf:PlainLiteral [0..*]
adms:Identifierepo:hasSchemeVersionThe version of the identification scheme.rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:hasSelectionCriteriaStatedInProcurementDocumentsxsd:boolean [0..1]
epo:ProfessionalSuitabilitySummaryepo:hasServiceReservedToParticularProfessionxsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasSMEReceivedTendersThe amount of tenders received from micro, small and medium-sized enterprises. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC. - The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. - - WG Approval 05/03/2020 - xsd:integer [0..1]
epo:StrategicProcurementepo:hasStrategicProcurementDescriptionSelf-explanatory text about a concept. - rdf:PlainLiteral [0..*]
epo:SubcontractTermepo:hasSubcontractingInvolvedList of Subcontractors and the subject matter they cover are required. - - Additional Information: - The tenderer will ned to supply this information in the tender. - - WG Approval 28/02/2019xsd:boolean [0..1]
epo:SubcontractTermepo:hasSubcontractorsProposedAboveObligationThe maximum percentage of the contract value that the contractor must subcontract. - - Additional information: - This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - - - WG Approval 09/11/2021xsd:decimal [0..1]
epo:SubcontractingEstimateepo:hasSubjectMatterDescription of the share of the contract that is to be subcontracted. - - Additional infromation: - This can be an aggregate of several subcontracts. - - WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasSubmissionURL - Additional Information: - This corresponds to the eForms BT-18 Submission URL. - - This corresponds in eForms to BT-509 Organisation eDelivery Gateway.xsd:anyURI [0..*]
epo:MultipleStageProcedureTermepo:hasSuccessiveReductionThe number of solutions or tenders will be reduced in iterative evaluations for multiple - staged procedures. - - Additional information: - This refers to multiple-stage procedures (included two-stage procedures, at least). - Open Procedures can be seen as one-stage procedures. - WG Approval 22/08/2019 xsd:boolean [0..1]
cccev:Constraintepo:hasThresholdValueThe cut-off level for a given concept. - - Additional Information: - This value is given as e.g. a minimum score, a maximum number of tenders with the - highest score passing (see codelist at-voc:number-threshold).xsd:decimal [1..1]
epo:ReviewRequestSummaryepo:hasTotalNumberOfComplainantsThe number of economic operators that requested the buyer to review any of its decisions - (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive - 89/665/EEC and Directive 92/13/EEC. - - Additional information: - This attribute corresponds in eForms to BT-712 Buyer Review Complainants - - WG Approval 11/04/2019xsd:integer [0..1]
epo:GreenProcurementepo:hasTotalVehiclesThe number of all vehicles (regardless of whether clean or not) that have either been - purchased, leased, rented, hired-purchased or their use has been contractually committed - to for the provision of a purchased service. - - Additional Information - - In the European Union, the legal requirements and scope for the provision of these - vehicles or services are covered by Directive 2009/33/EC. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:Quantityepo:hasUnitDescriptionA narrative explanation defining the units of items being counted - - Additional information: This could be for example individual items or pack or two. - - WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasUnverifiedTendersOffers received for which it has not been verified if they are admissible or inadmissible - (e.g. because award criteria have been evaluated for all tenders and admissibility - is checked only for the winning tender). - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:Fundepo:hasURLThe identifier of a resource. - - Additional Information - - For example: - - 1. The URL of the system from where to access the procurement documents; - 2. The URL of the system for the submission of tender documents; - 3. The URL of the system from where to download a tool to communicate with the Buyer; - 4. The URL of the system used by a Technique to allow Economic Operators to exchange - information with the Buyer (e.g. eAuction and DPS Systems) - 5. The URL of the system used to exchange information between Buyer and EO for questions - and clarifications; - - WG Approval 30/09/2019xsd:anyURI [0..1]
epo:Documentepo:hasVersionA number that identifies a specific state of a document. - - WG approval: 18/11/2021 - rdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasWithdrawalDateThe date and time when the request for review was withdrawn. - - Additional information: - This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date.xsd:date [0..1]
epo:ReviewRequestepo:hasWithdrawalReasonThe explanation for withdrawing the request for review. - - Additional information: - This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasonsrdf:PlainLiteral [0..1]
epo:GreenProcurementepo:hasZeroEmissionVehiclesThe number of all zero-emission heavy-duty vehicles that have either been purchased, - leased, rented, hired-purchased or their use has been contractually committed to for - the provision of a purchased service. - - Additional Information - - In the European Union, the legal requirements and scope for the provision of these - vehicles or services are covered by Directive 2009/33/EC. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:ProcurementCriteriaSummaryepo:indicatesPerformingStaffInformationRequirementxsd:boolean [0..1]
epo:Procedureepo:isAcceleratedStatement about the fact that the procedure will be reduced due to a state of urgency. - - Additional Information - - This modifies the time limit for the receipt of requests to participate or the receipt - of tenders. - - WG Approval 20/08/2019 - xsd:boolean [0..1]
epo:SubmissionTermepo:isAdvancedElectronicSignatureRequiredAdvanced or qualified electronic signature or seal (as defined in Regulation (EU) - No 910/2014) is required. - - - - The submitted information is required to be signed electronically. - - Additional Information: - - Signature can be defined as "data in electronic form which is attached to or logically - associated with other data in electronic form and which is used by the signatory to - sign. - For more details on the meaning and uses of electronic signature you may consult different - authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 - on electronic identification and trust services for electronic transactions in the - internal market. - - WG Approval 21/07/2020 - xsd:boolean [0..1]
epo:ProcedureTermepo:isAwardedByCPBProcedure is awarded by a Central Purchasing Body. - - xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isCompetitionTerminatedNo further contracts will be awarded in this procedure. - - Additional Information: - This can be instantiated in the post award phase. - - PIN for Competition needs to be signaled. This field can be used even if no contracts - are awarded in the contract award notice. - - This corresponds in eForms to BT-756 PIN Competition Termination.xsd:boolean [0..1]
epo:Buyerepo:isContractingEntityRole of entities, which: - - (a) are contracting authorities or public undertakings and which pursue one of the - activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. - - (b) when they are not contracting authorities or public undertakings, have as one - of their activities any of the activities referred to in Articles 8 to 14, or any - combination thereof and operate on the basis of special or exclusive rights granted - by a competent authority of a Member State. - - Additional Information - - The indicator is needed in order to discriminate between those contracts where the - Contracting Entity acts as a Contracting Authority undergoing the limits and the rules - of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed - constraints. - For example, the Contracting Entities have different thresholds for the application - of Directive 24 if compared with Contracting Authorities. - - WG Approval 28/04/2020 - xsd:boolean [0..1]
epo:ProcurementObjectepo:isCoveredByGPASpecifies whether the Agreement on Government Procurement (GPA) applies. - - Additional information: - The GPA aims to establish a multilateral framework of balanced rights and obligations - relating to public contracts with a view to achieving the liberalization and expansion - of world trade. - - This corresponds in the e Forms to BT-115 GPA Coverage. - - WG Approval 15/10/2019 - - xsd:boolean [0..1]
epo:Procedureepo:isDesignContestA competition which enables the buyer to acquire a plan or design via a jury. - - Additional information: - Design contests have traditionally mostly been used in the fields of town and country - planning, architecture and engineering or data processing, other purposes, such as - to obtain plans for financial engineering - - The contest may include or not the award of prizes; - - WG approval 04-02-2021 xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isDPSTerminatedEnd of the Dynamic Purchase System (DPS). - - Additional Information: This property can be used in the contract award notice even - if no contracts are awarded. - - WG Approval 22/11/2019 - xsd:boolean [0..1]
epo:Noticeepo:isEUInstitutionxsd:boolean [0..1]
epo:SubmissionTermepo:isGuaranteeRequiredThe submitted information must include a financial commitment to be used in case of - default. - - Additional Information: - See the additional information provided in the definition of the 'Guarantee Description' - element. - - WG Approval 21/07/20 - - xsd:boolean [0..1]
epo:Procedureepo:isJointProcurementMultiple buyers procure together within the same procedure. - - Addition Information: - In case the joint procurement involves buyers from different countries, the national - law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:isJuryDecisionBindingIndicates whether the procuring entity is bound to apply the decision of the jury.xsd:boolean [0..1]
epo:Businessepo:isListedCompanyPublic companies listed on a stock exchange and subject to disclosure requirements - (either by stock exchange - rules or through law or enforceable means), which impose requirements to ensure adequate - transparency of - beneficial ownership. - - <u>Additional Information:</u> - - In eForms this indicator is used when the nationality of beneficial owner is not provided - because the Economic Operator is registered in a regulated market that is subject - to disclosure requirements consistent with Union law or subject to equivalent international - standards which ensure adequate transparency of ownership information. - - WG Approval 21/11/2019xsd:boolean [0..1]
epo:SubmissionTermepo:isMultipleTenderSubmissionAllowedTenderers may submit more than one competing tenders. - - WG Approval 10/10/2019 - - xsd:boolean [0..1]
epo:NonDisclosureAgreementTermepo:isNonDisclosureAgreementRequiredxsd:boolean [0..1]
epo:ProcedureTermepo:isOneLotOnlyAllowedIndicates whether tenders may be submitted for only one Lot. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms). - - WG approval 23/08/2022 - - xsd:boolean [0..1]
epo:ElementChangeDescriptionepo:isProcurementDocumentChangedOne or more procurement documents have been changed. - - Additional information: - This corresponds in eForms to BT-718 Change Procurement Documents - - WG Approval 05/11/2019xsd:boolean [0..1]
epo:AccessTermepo:isProcurementDocumentRestrictedThe access to certain procurement documents is restricted. - - Additional Information: - This corresponds in eForms to BT-14 Documents Restricted. - - WG Approval 10/10/2019xsd:boolean [0..1]
epo:ProcurementObjectepo:isRecurrentThe Procurement being notified is likely to be included in another procedure in the - foreseeable future. - - Additional Information: - - For example, a regularly re-tendered municipal service. This does not include awarding - multiple contracts within a single qualification system, framework agreement, or a - dynamic purchasing system. - - This corresponds in eForms to BT-94 Recurrence. - - WG Approval 12/05/2020 - xsd:boolean [0..1]
epo:ContractTermepo:isRenewalIndicatorIndicates whether the contract is subject to a renewal clause. - WG Approval 09/11/2021xsd:boolean [0..1]
epo:SecurityClearanceTermepo:isSecurityClearanceRequiredxsd:boolean [0..1]
epo:ProcurementObjectepo:isSMESuitableThe Lot is suitable for small and medium enterprises (SMEs). - - Additional Information - - This allows the buyer to make emphasis on the fact that the procedure has been designed - having SMEs in mind. This indicator is also to be reflected in the selection criteria. - - For example, number of employees and turnover are applicable to the definition of - an SME. - - WG Approval 15/10/2019 - xsd:boolean [0..1]
epo:ProcedureTermepo:isSubmissionForAllLotsAllowedIndicates whether tenders may be submitted for all Lots. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms) - - WG approval 23/08/2022 - xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isToBeRelaunchedIndicator of whether the procurement object is to be relaunched. - - Additional information: - This can be instantiated in the post award phase. - - This corresponds in eForms to BT-634 Procurement Relaunch. - - WG Approval: 18/01/2022 - xsd:boolean [0..1]
epo:SelectionCriterionepo:isUsedForCandidateRestrictionThe criterion will be used to select the candidates to be invited for the second stage - of a multistage procedure. - - Additional Information: - This property is only used if a maximum number of candidates was foreseen in the procedure. - This corresponds in eForms to BT-40 Selection Criteria Second Stage Invitexsd:boolean [0..1]
epo:ProcurementObjectepo:isUsingEUFundsThe procurement foresees funding by the Union. - - Additional Information: - The funding may cover the whole procurement or part of the procurement. - - For example the European Structural and Investment Funds or grants awarded by the - European Union. - - xsd:boolean [0..1]
epo:Tenderepo:isVariantAlternative solution to fulfil the buyer's needs as opposed to solutions indicated - in the procurement documents. - - Additional Information: - - The permission to offer variants is only allowed if specified in a Contract Notice - or a Prior Information Notice that used as a means for calling for a competition. - The buyer lays out minimum requirements in the procurement documents that must be - respected by tenderers submitting variants. - - WG Approval 29/05/2019 - - xsd:boolean [0..1]
epo:ReviewRequestepo:isWithdrawnThe review request was withdrawn. - - Additional information: - This attribute corresponds in eForms to BT-796 Review Request Withdrawn.xsd:boolean [0..1]
cpv:Personfoaf:familyNameThe hereditary surname of a family. - rdf:langString [0..*]
cpv:Personfoaf:givenNameThe name(s) that identify the Person within a family with a common surname. - rdf:langString [0..*]
cpv:Personfoaf:nameThe complete name of the Person as one string.rdf:langString [0..*]
locn:Addresslocn:addressAreaThe name or names of a geographic area or locality that groups a number of addressable - objects for addressing purposes, without being an administrative unit. - - Additional Information: - This would typically be part of a city, a neighbourhood or village, e.g. Montmartre.rdf:langString [0..1]
locn:Addresslocn:adminUnitL1The name or names of a unit of administration related to the exercise of jurisdictional - rights, for local, regional and national governance. Level 1 refers to the uppermost - administrative unit for the address, almost always a country. - - Additional Information: - Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, - country names should be provided in a consistent manner to reduce ambiguity. For example, - either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing - the two. The Country controlled vocabulary from the Publications Office can be reused - for this.rdf:langString [0..1]
locn:Addresslocn:adminUnitL2The name or names of a unit of administration related to the exercise of jurisdictional - rights, for local, regional and national governance. Level 2 refers to the region - of the address, usually a county, state or other such area that typically encompasses - several localities. - - Additional Information: - Some recommended codelists from the EU Publications Office include: Administrative - Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement - of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" - in the ATU controlled vocabulary. - rdf:langString [0..1]
locn:Addresslocn:fullAddressThe complete address written as a formatted string. - - Additional Information: - Use of this property is recommended as it will not suffer any misunderstandings that - might arise through the breaking up of an address into its component parts. This property - is analogous to vCard's label property but with two important differences: (1) formatting - is not assumed so that, unlike vCard label, it may not be suitable to print this on - an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress - property has no such restriction. An example of a full address is "Champ de Mars, - 5 Avenue Anatole France, 75007 Paris, France".rdf:langString [0..1]
dct:Locationlocn:geographicNameA textual description for a Location. - - Additional Information: - The INSPIRE Data Specification on Geographical Names provides a detailed model for - describing a 'named place', including methods for providing multiple names in multiple - scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, - the concept of a geographic name used here is consistent. - - A geographic name is a proper noun applied to a spatial object. Taking the example - used in the INSPIRE document (page 15), the following are all valid geographic names - for the Greek capital: - - - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) - - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) - - "Athens"@en (the English language exonym) - INSPIRE has a detailed (XML-based) method of providing metadata about a geographic - name and in XML-data sets that may be the most appropriate method to follow. When - using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical - data (the use case for INSPIRE), the Code datatype or a simple language identifier - may be used to provide such metadata. - - The country codes defined in ISO 3166 may be used as geographic names and these are - generally preferred over either the long form or short form of a country's name (as - they are less error prone). The Publications Office of the European Union recommends - the use of ISO 3166-1 codes for countries in all cases except two: - - - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - - use 'EL' in preference to the ISO 3166 code GR for Greece. - Where a country has changed its name or no longer exists (such as Czechoslovakia, - Yugoslavia etc.) use the ISO 3166-3 code.rdf:langString [0..1]
locn:Addresslocn:locatorDesignatorA number or a sequence of characters which allows a user or an application to interpret, - parse and format the locator within the relevant scope. A locator may include more - locator designators. - - Additional Information: - In simpler terms, this is the building number, apartment number, etc. For an address - such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17".rdf:PlainLiteral [0..1]
locn:Addresslocn:locatorNameProper noun(s) applied to the real world entity identified by the locator. - - Additional Information: - The locator name could be the name of the property or complex, of the building or - part of the building, or it could be the name of a room inside a building. - - The key difference between a locator and a locator name is that the latter is a proper - name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting - room within the European Commission headquarters for which locator name is more appropriate - than locator.rdf:langString [0..1]
locn:Addresslocn:postCodeThe post/zip code of an address. (INSPIRE's definition is "A code created and maintained - for postal purposes to identify a subdivision of addresses and postal delivery points.") - - Additional Information: - Post codes are common elements in many countries' postal address systems. One of the - many post codes of Paris is for example "75000".rdf:PlainLiteral [0..*]
locn:Addresslocn:postNameThe key postal division of the address, usually the city. (INSPIRE's definition is - "One or more names created and maintained for postal purposes to identify a subdivision - of addresses and postal delivery points.) For example, "Paris".rdf:langString [0..*]
locn:Addresslocn:thoroughfareAn address component that represents the name or names of a passage or way through - from one location to another. A thoroughfare is not necessarily a road, it might be - a waterway or some other feature. - - Additional Information: - For example, "Avenue des Champs-&#201;lys&#233;es".rdf:langString [0..*]
cpv:Personperson:birthNameFamily name of the Person given upon their birth. - WG Approval 09/11/2021rdf:langString [0..*]
cpv:Personperson:patronymicNameName based on the given name of the Person's father. - WG Approval 09/11/2021rdf:langString [0..*]
adms:Identifierskos:notationThe literal identifying an entity, like a person or an object.rdf:PlainLiteral [1..1]
cccev:InformationConcept
cccev:Requirement
skos:prefLabelThe preferred lexical label for a resource, in a given language. - - WG approval 30/05/2023 - - The preferred lexical label for a resource, in a given language. - - WG approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
epo:SpecificDurationtime:numericDurationValue of a temporal extent expressed as a number.xsd:decimal [1..1]
-

Predicates (object properties) and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Predicate nameDefinitionDomain, Range and Cardinality
adms:identifierA unique identifier of the instance of the concept. - - Additional Information - - For example, in the case of the Procurement Identifier, this could be the European - Public Procurement Identifier, and/or any other identifier provided by the buyer, - the service provider or any other stakeholder. - - WG Approval 12/11/2019 - - A unique identifier of the instance of the concept. - - Additional Information - - For example, in the case of the Procurement Identifier, this could be the European - Public Procurement Identifier, and/or any other identifier provided by the buyer, - the service provider or any other stakeholder. - - WG Approval 12/11/2019 A unique identifier of the instance of the concept. - - Additional Information - - For example, in the case of the Procurement Identifier, this could be the European - Public Procurement Identifier, and/or any other identifier provided by the buyer, - the service provider or any other stakeholder. - - WG Approval 12/11/2019 - Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class.epo:Project -> adms:Identifier [0..1]
epo:LotGroup -> adms:Identifier [0..1]
epo:ProcurementElement -> adms:Identifier [1]
foaf:Agent -> adms:Identifier [0..*]
dct:Location -> adms:Identifier [0..1]
cccev:InformationConcept -> adms:Identifier [0..1]
epo:Document -> adms:Identifier [0..*]
epo:Fund -> adms:Identifier [0..1]
epo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:TransportEquipment (external) -> adms:Identifier [0..1]
epo-ful:ShipmentStage (external) -> adms:Identifier [0..1]
epo-ful:TransportEquipmentSeal (external) -> adms:Identifier [0..1]
epo-ful:ShipmentInformation (external) -> adms:Identifier [0..1]
epo-cat:Line (external) -> adms:Identifier [0..1]
epo-ful:AbstractContainer (external) -> adms:Identifier [0..1]
cccev:confidentialityLevelTypeSecurity classification assigned to an Evidence e.g. classified, sensitive, public. - - Additional Information: - - Classifications should be defined by an organisation/country as an outcome of a security - assessment. - cccev:Evidence -> at-voc:confidentiality-level [0..1]
cccev:constrainsInformation Concept about which a Constraint expresses a limitation. - - Additional Information: - Information Concepts are tools to make Requirements more machine processable: they - allow to provide more detail about a Requirement. This way, Constraints can be made - very precise, namely the limit that must be achieved, is a limit on the value for - the associated Information Concept. For example, the Information Concept would be - the age of a person and the Constraint would be the required age in the context of - a specific evaluation.cccev:Constraint -> cccev:InformationConcept [0..*]
cccev:hasRequirementA more specific Requirement that is part of the Requirement.cccev:Requirement -> cccev:Requirement [0..*]
cccev:supportsConceptInformation Concept providing facts found/inferred from the Evidence. - - Additional Information: - Examples of Information Concepts are values found explictly in the evidence such as - a birth date or information derived from the Evidence such as "I am older that 18 - years" or "this is a FairTrade product".cccev:Evidence -> cccev:InformationConcept [0..*]
cccev:supportsRequirementRequirement for which the Evidence provides proof.cccev:Evidence -> cccev:Requirement [0..*]
cv:addressAssociates any Resource with the corresponding Address. - - Additional Information: - Asserting the address relationship implies that the Resource has an Address. org:Organization -> locn:Address [0..*]
cpov:ContactPoint -> locn:Address [0..1]
cv:registeredAddressThe registered address relationship links a Resource with the legally registered Address. - - Additional Information: - It is the address to which formal communications can be sent, such as the postal address. The registered address relationship links a Resource with the legally registered Address. - - Additional Information: - It is the address to which formal communications can be sent, such as the postal address. - cpv:Person -> locn:Address [0..1]
org:Organization -> locn:Address [0..1]
dct:typeCategory to which the Requirement belongs.cccev:Criterion -> at-voc:criterion [0..1]
epo:actsOnBehalfOfRepresents.epo:ProcurementServiceProvider -> epo:Buyer [1..*]
epo:announcesAwardDecision epo-not:ResultNotice (external) -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice (external) -> epo:AwardDecision [0..*]
epo:announcesCompletionOfContractepo-not:CompletionNotice (external) -> epo:Contract [1]
epo:announcesContract epo-not:DirectAwardPrenotificationNotice (external) -> epo:Contract [0..*]
epo-not:ResultNotice (external) -> epo:Contract [0..*]
epo:announcesExclusionGroundepo:ESPDRequest (external) -> epo:ExclusionGround [1]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice (external) -> epo:Lot [1..*]
epo-not:CompetitionNotice (external) -> epo:Lot [1..*]
epo:announcesLotGroup epo-not:CompetitionNotice (external) -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice (external) -> epo:LotGroup [0..*]
epo:announcesLotGroupAwardInformation epo-not:DirectAwardPrenotificationNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. - - Additional Information: - For example, elements in the Contract Award Notice that should be published at a later - date. epo-not:ResultNotice (external) -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice (external) -> epo:PublicationProvision [0..*]
epo:announcesNoticeAwardInformation epo-not:DirectAwardPrenotificationNotice (external) -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice (external) -> epo:NoticeAwardInformation [0..1]
epo:announcesPlannedProcurementPartepo-not:PlanningNotice (external) -> epo:PlannedProcurementPart [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice (external) -> epo:Procedure [1]
epo-not:CompetitionNotice (external) -> epo:Procedure [1]
epo:announcesReviewObjectepo-not:CompletionNotice (external) -> epo:ReviewObject [1..*]
epo:announcesRole epo-not:DirectAwardPrenotificationNotice (external) -> epo:AgentInRole [1..*]
epo-not:ContractModificationNotice (external) -> epo:AgentInRole [0..*]
epo-not:PlanningNotice (external) -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice (external) -> epo:AgentInRole [1..*]
epo-not:CompletionNotice (external) -> epo:AgentInRole [0..*]
epo:announcesSelectionCriteriaepo:ESPDRequest (external) -> epo:SelectionCriterion [1]
epo:answersAwardCriteria epo:FinancialOffer (external) -> epo:AwardCriterion [1]
epo:TechnicalOffer (external) -> epo:AwardCriterion [1]
epo:answersExclusionGroundepo:ESPDResponse (external) -> epo:ExclusionGround [1]
epo:answersSelectionCriteriaepo:ESPDResponse (external) -> epo:SelectionCriterion [1]
epo:associatedWithThe document to which a document is associated. - - WGM 01/03/2022 - epo:Document -> epo:Document [0..*]
epo:bindsBuyerProvides legal constraint on the Buyer.epo:Contract -> epo:Buyer [0..*]
epo:bindsContractorProvides legal constraint on the Contractor.epo:Contract -> epo:Contractor [0..*]
epo:comprisesLotAwardDecisionIncorporates LotAwardOutcome.epo:AwardDecision -> epo:LotAwardDecision [0..*]
epo:comprisesMiniCompetitionAwardDecisionepo:AwardDecision -> epo:MiniCompetitionAwardDecision [0..*]
epo:comprisesTenderIncorporates Tender.epo:TenderGroup -> epo:Tender [1..*]
epo:comprisesTenderAwardOutcomeIncorporates TenderAwardOutcome.epo:AwardDecision -> epo:TenderAwardOutcome [0..*]
epo:concernsLotRelates to Lot. Relates to Lot.epo:ProcurementProcessInformation -> epo:Lot [0..1]
epo:LotAwardDecision -> epo:Lot [1]
epo:concernsMiniCompetitionepo:MiniCompetitionAwardDecision -> epo:MiniCompetition [0..1]
epo:concernsProcedureRelates to Procedure.epo:ProcurementProcessInformation -> epo:Procedure [0..1]
epo:concernsReviewSummaryForLotRelates to Lot review summary. - - Additional information: - This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier.epo:ReviewRequestSummary -> epo:Lot [1]
epo:concernsTenderepo:TenderAwardOutcome -> epo:Tender [1]
epo:conformsToLegalBasisThe Notice was designed in accordance with the given legal basis. - - Additional Information: - This Notice can be used for Procedures which do not have the same legal basis. - This holds for standard forms.epo:Notice -> at-voc:legal-basis [0..1]
epo:conformsToSpecificLegalBasisepo:Notice -> at-voc:legal-basis [0..1]
epo:containsCandidateepo:SelectedCandidateList -> epo:Candidate [0..*]
epo:containsModificationsOf - - Additional information - This relation shall be used between Instances of the SAME type/class. - - The "modifying-instance" can be minimally instantiated, carrying the fields/information - that override the fields in the "modified-instance". - - This means that the "modifying-instance" (is under-specified) and might violate minimal - cardinality restrictions in case they are checked. But the purpose of such an instance - is not to be used as a full instance. - owl:Thing -> owl:Thing [0..1]
epo:contextualisedByThe place of the AgentInRole in the procurement is expressed by a ProcurementObject.epo:AgentInRole -> epo:ProcurementObject [0..*]
epo:definesBudgetProviderRelation indicating a ProcedureTerm has a BudgetProvider.epo:ProcedureTerm -> epo:BudgetProvider [0..1]
epo:definesCatalogueProviderRelation indicating an AccessTerm has a CatalogueProvider.epo:AccessTerm -> epo:CatalogueProvider [0..*]
epo:definesCatalogueReceiverRelation indicating an AccessTerm has a CatalogueReceiver.epo:AccessTerm -> epo:CatalogueReceiver [0..*]
epo:definesContractDurationRelation indicating a ContractTerm has a Duration.epo:ContractTerm -> epo:Duration [0..1]
epo:definesContractPeriodRelation indicating a ContractTerm has a Period.epo:ContractTerm -> epo:Period [0..1]
epo:definesInformationProviderRelation indicating a ProcedureTerm has an information provider.epo:ProcedureTerm -> epo:AuxiliaryParty [0..*]
epo:definesLotGroupRelation indicating a ProcedureTerm has a LotGroup.epo:ProcedureTerm -> epo:LotGroup [0..*]
epo:definesMediatorRelation indicating a ProcedureTerm has a Mediator.epo:ProcedureTerm -> epo:Mediator [0..1]
epo:definesOfflineAccessProviderRelation indicating an AccessTerm has an OfflineAccessProvider.epo:AccessTerm -> epo:OfflineAccessProvider [0..1]
epo:definesOpeningPlaceThe place where the tenders will be publicly opened. - - WG Approval 10-10-2019epo:OpeningTerm -> locn:Address [0..1]
epo:definesParticipationRequestProcessorRelation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor.epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor [0..1]
epo:definesParticipationRequestReceiverRelation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver.epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver [0..1]
epo:definesPaymentExecutorRelation indicating a ContractTerm has a PaymentExecutor.epo:ContractTerm -> epo:PaymentExecutor [0..1]
epo:definesPlaceOfPerformanceRelation indicating the place of performance of a Contract. - - WG approval 21/03/2023epo:ContractTerm -> dct:Location [0..*]
epo:definesPrizeRelation indicating a DesignContestRegimeTerm has a Prize.epo:DesignContestRegimeTerm -> epo:Prize [0..*]
epo:definesProcurementProcedureInformationProviderRelation indicating an AccessTerm has a ProcurementProcedureInformationProvider.epo:AccessTerm -> epo:ProcurementProcedureInformationProvider [0..1]
epo:definesSubcontractingTermRelation indicating a ContractTerm has a SubcontractingTerm.Relation indicating a - term has a subterm.epo:ContractTerm -> epo:SubcontractTerm [0..1]
epo:definesTenderProcessorRelation indicating a SubmissionTerm has a TenderProcessor.epo:SubmissionTerm -> epo:TenderProcessor [0..1]
epo:definesTenderReceiverRelation indicating a SubmissionTerm has a TenderReceiver.epo:SubmissionTerm -> epo:TenderReceiver [0..1]
epo:delegatesAncillaryActivitiesToEntrusts ancillary purchasing activities to ProcurementServiceProvider. - - Additional Information: - Directive 2014/24/EU describes ancillary purchasing activities as activities consisting - in the provision of support to purchasing activities, in particular in the following - forms: - - (a) technical infrastructure enabling contracting authorities to award public contracts - or to conclude framework agreements for works, supplies or services; - - (b) advice on the conduct or design of public procurement procedures; - - (c) preparation and management of procurement procedures on behalf and for the account - of the contracting authority concerned;epo:Buyer -> epo:ProcurementServiceProvider [0..*]
epo:describesContractModificationepo-not:ContractModificationNotice (external) -> epo:ContractModification [0..*]
epo:describesLotCompletionepo:ContractLotCompletionInformation -> epo:Lot [1]
epo:describesLotGroupepo:LotGroupAwardInformation -> epo:LotGroup [1]
epo:describesNoticeepo:NoticeDescription -> epo:Notice [1]
epo:describesResultNotice epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice (external) [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice (external) [0..1]
epo:distributesOfferepo:OfferIssuer -> epo:Offer [0..*]
epo:exposesChannelepo:AgentInRole -> cv:Channel [0..*]
epo:exposesInvoiceeChannelepo:Buyer -> cv:Channel [0..*]
epo:followsRulesSetByepo:MiniCompetition -> epo:FrameworkAgreement [0..1]
epo:foreseesConcession epo:ProcurementObject -> epo:ConcessionEstimate [0..1]
epo:Tender -> epo:ConcessionEstimate [0..1]
epo:foreseesContractSpecificTermepo:ProcurementObject -> epo:ContractSpecificTerm [0..*]
epo:foreseesProcurementObjectRelation indicating the instance of a Procurement Object that is planned. - - Additional Information: - The properties of the Procurement Object that is foreseen should be read as foreseen - properties. - For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. - For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy.epo:PlannedProcurementPart -> epo:ProcurementObject [0..1]
epo:foreseesSubcontractingepo:Tender -> epo:SubcontractingEstimate [0..*]
epo:foreseesTechniqueepo:PlannedProcurementPart -> epo:Technique [0..*]
epo:fulfillsRequirementThe requirement to which the concept meets. - WG Approval 09/11/2021 - - The requirement to which the concept meets. - WG Approval 09/11/2021 - - The requirement to which the concept meets. - WG Approval 09/11/2021 - - epo:GreenProcurement -> at-voc:environmental-impact [1..*]
epo:InnovativeProcurement -> at-voc:innovative-acquisition [1..*]
epo:SocialProcurement -> at-voc:social-objective [1..*]
epo:fulfillsStrategicProcurementepo:ProcurementObject -> epo:StrategicProcurement [0..*]
epo:hasAdditionalClassificationepo:Purpose -> at-voc:cpv [0..*]
epo:hasAdditionalContractNatureAdditional type of acquisition taken into consideration in the contract. - - WG Approval 11/06/2020 - - epo:ContractTerm -> at-voc:contract-nature [0..*]
epo:hasAllegedIrregularityTypeAdditional information: - This relation corresponds in eForms to BT-791 Review Irregularity Type - epo:ReviewRequest -> at-voc:irregularity-type [1..*]
epo:hasApproximateFrameworkAgreementValue epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasAwardCriterionTypeCategory of award criterion. - - epo:AwardCriterion -> at-voc:award-criterion-type [0..1]
epo:hasAwardedEstimatedValueThe estimated value that can be spent as provided by the Award Decision. - - <u>Additional Information</u>: - This property is used for framework agreements and dynamic purchasing systems. - Different cases of awarded values may refer to a lot, the global value of the procedure, - or of a combinatorial value of a group of lots. - - WG Approval 12/12/2019 - - epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardedValueThe value of the procurement provided by the Award Decision. - - Additional Information: - Different cases of awarded values may refer to a lot, the global value of the procedure, - or of a combinatorial value of a group of lots. - - In the case of framework agreements and dynamic purchasing systems this refers to - the maximum awarded value. - - WG Approval 10/12/2019epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardStatusIndicates whether the lot is awarded, not awarded or still open. - WG Approval 03/12/2019 - - epo:AwardDecision -> at-voc:winner-selection-status [0..1]
epo:hasBargainPriceThe value of procured supplies that have used a particularly advantageous opportunity - available for a very short time at a value considerably lower than normal market prices. - - WG approval 23/05/2023epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasBatchIDThe identifier assigned to a specific batch of the produced Item. - WG Approval 16/05/2023 - epo-cat:Batch (external) -> adms:Identifier [0..1]
epo:hasBeneficialOwnerA role of any natural person(s) who ultimately owns or controls the organisation or - on whose behalf a transaction or activity is being conducted. - Additional Information: - This role is defined in the directive EU 2015/849 and it's beyond the scope for public - eProcurement domain. - WG approval 14/09/2021epo:Business -> cpv:Person [0..*]
epo:hasBroadPlaceOfPerformanceGeopolitical zone where the contract can be executed. - - Additional Information - - Used for setting restrictions that cannot be established with one country code or - a geographical zone identifier (like NUTS), because they have a broader scope (geographical, - economic, political, other). - epo:ContractTerm -> at-voc:other-place-service [0..1]
epo:hasBusinessSizeThe category of the business depending on number of employees and turnover. - - Additional information: - - See Commission Recommendation of 6 May 2003 concerning the definition of micro, small - and medium-sized enterprises. - - WG Approval 28/05/2020 - - epo:Business -> at-voc:economic-operator-size [0..1]
epo:hasBuyerItemIDThis refers to the identifier for the specific instance of the produced concept. - WG Approval 16/05/2023 - epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasBuyerLegalTypeA category that indicates the right of an Organisation to play the role of a buyer. - - Additional Information: - The category also effects the rules that the buyer has to abide to within the public - procurement procedure. - WG 07/09/2021 - - org:Organization -> at-voc:buyer-legal-type [0..1]
epo:hasCandidateListepo:DynamicPurchasingSystem -> epo:SelectedCandidateList [0..*]
epo:hasCertificationRelation to the proof of conformance. - - WG approval 30/05/2023 Relation to the proof of conformance. - - WG approval 30/05/2023foaf:Person -> epo-cat:Certificate (external) [0..*]
org:Organization -> epo-cat:Certificate (external) [0..*]
epo:hasChangeJustificationCode explaining the change. - - WG Approval 5/11/2019 - The motives for the change. - - WG 5/11/2019 - - The codelist to be used is at-voc:change-corrig-justification which is available at - - http://publications.europa.eu/resource/dataset/change-corrig-justificationepo:ElementChangeDescription -> at-voc:change-corrig-justification [1]
epo:hasConcessionEstimatedValueepo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasConfirmedIrregularityTypeAdditional information: - This relation corresponds in eForms to BT-791 Review Irregularity Typeepo:ReviewDecision -> at-voc:irregularity-type [0..*]
epo:hasConstraintepo:ProcurementCriterion -> cccev:Constraint [0..*]
epo:hasContactPointInRoleepo:AgentInRole -> cpov:ContactPoint [0..*]
epo:hasContractAmendmentepo:Contract -> epo:AmendedContract (external) [0..*]
epo:hasContractNatureTypeSubject of the acquisition. - - WG Approval 11/06/2020 - - epo:ContractTerm -> at-voc:contract-nature [0..1]
epo:hasContractValueepo:Contract -> epo:MonetaryValue [0..1]
epo:hasCountryCode - dct:Location -> at-voc:country [0..1]
locn:Address -> at-voc:country [0..1]
epo:hasCountryOfBirthThe country in which the Person was born. - cpv:Person -> at-voc:country [0..1]
epo:hasCurrencyThe identifier of the currency as in the standard code list used. - - epo:MonetaryValue -> at-voc:currency [0..1]
epo:hasDirectAwardJustificationList of reasons for using a procedure which allows awarding contracts directly without - publishing a notice. - - WG Approval 28/05/2020 - epo:DirectAwardTerm -> at-voc:direct-award-justification [0..1]
epo:hasDocumentRestrictionJustificationAn explanation about the reasons why some procurement documents are restricted. - - Additional Information: - This corresponds in eForms to BT-707 Documents Restricted Justification. - - WG Approval 09/03/2021 - epo:AccessTerm -> at-voc:communication-justification [0..1]
epo:hasDocumentStatushttps://test-docs.peppol.eu/logistics/transport-execution/codelist/DocumentStatusCode/epo:Document -> at-voc-new:document-status (external) [0..1]
epo:hasDocumentType - - https://docs.peppol.eu/poacc/upgrade-3/2022-Q4/codelist/UNCL1001_T01/epo:Document -> at-voc-new:document-type (external) [0..1]
epo:hasDPSScopeExplanation as to whether a dps is used and by whom. - - Additional Information: - This corresponds in eForms to BT-766 Dynamic Purchasing System. - WG Approval 09/11/2021 - Explanation as to whether a dps is used and by whom. - WG Approval 09/11/2021 - - The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usageepo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage [0..1]
epo:hasECataloguePermissionThe extent to which electronic catalogues may be used in tenders. - - WG Approval 03/10/2019 - epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEInvoicingPermissionepo:ContractTerm -> at-voc:permission [0..1]
epo:hasElectronicDigestepo:Document -> epo:Document [0..*]
epo:hasElectronicSignatureepo:Document -> epo:ElectronicSignature [0..*]
epo:hasElementChangeepo:NoticeChange -> epo:ElementChangeDescription [1..*]
epo:hasElementConfidentialityRelation indication that the publication provision applies to a given field of a document.epo:PublicationProvision -> epo:ElementConfidentialityDescription [1..*]
epo:hasElementDescriptionepo:NoticeDescription -> epo:ElementDescription [0..*]
epo:hasElementModificationepo:ContractModification -> epo:ElementModificationDescription [1..*]
epo:hasEndpointIdentifiercv:Channel -> adms:Identifier [0..*]
epo:hasEstimatedBuyerConcessionRevenueThe expected payments made by the buyer to the economic operator awarded the concession - that are not directly related to the use of the concession. - - <u>Additional Information:</u> - For example the public buyer pays a yearly fee to provide a ticketing solution to - the public. The fee the public pays for every ticket sold through the solution is - not included in this estimation but in the estimation of the user concession revenue. - - This corresponds to BT-160 in eForms. - - WG Approval 07/01/2020epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedDurationRelation indicating a Contract has an estimated Duration. - - Additional Information - - When the Lot uses a Technique the contract estimated duration applies to the Technique. - epo:Contract -> epo:Duration [0..1]
epo:hasEstimatedUserConcessionRevenueThe estimated revenue coming from the use of the concession. - - Additional Information: - Revenues are for example fees and fines. For example, the fees and fines coming from - the cars using a motorway. - - This corresponds to BT-162 in eForms. - epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedValueA forecast of the value of the procurement before competition. - - Additional Information: - Different cases of estimated values may refer to a lot, the global value of the procedure, - or of a combinatorial value of a group of lots. - The forecast is calculated by the buyer and covers all revenues whether coming from - the buyer or third parties. - See for example recital (19), Article 5 of Directive 2014/24/EU and other articles - from the rest of Directives about procurement. - - In the case of framework agreements and dynamic purchasing systems this refers to - the maximum estimated value. - - This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used - for BT-157 (for LotGroup). - <b> - </b><b>WG Approval 05/12/2019</b> - - epo:ProcurementElement -> epo:MonetaryValue [0..1]
epo:hasESubmissionPermissionThe requirements as to what extent electronic submission is allowed. - - WG Approval 03/10/2019 - - epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEvaluationMemberAn agent involved in an evaluation board. - WG approval 14/09/2021epo:EvaluationBoard (external) -> epo:JuryMember [1..*]
epo:hasFinancialOfferValueThe value offered by the Tenderer for a Lot. - - Additional Information: - This value is normally the one awarded for a winning Tender Lot. In case of negotiated - procedures the original financial value may be reviewed and the offer updated. - - This corresponds to BT-720 in eForms.epo:Tender -> epo:MonetaryValue [0..1]
epo:hasFixedValueTypeThe method to interpret the fixed value as pertaining to a total or unit. - - WG Approval 17/09/2019 - - epo:AwardCriterion -> at-voc:number-fixed [0..1]
epo:hasFormTypeA categorisation of the steps in which the Notice is used. - - WG Approval 12/05/2020 - - epo:Notice -> at-voc:form-type [0..1]
epo:hasFrameworkAgreementEstimatedValueThis refers to BT-660 in eForms.epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementMaximumValueepo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementTypeThe form of framework agreement used in a procurement procedure. - - Addition information: - - A concept to distinguish the different types of framework agreement, which are: - 1. Framework agreement without reopening of competition, - 2. Framework agreement with reopening of competition, or - 3. Framework agreement partly without reopening of competition. - - WG Approval 19/09/2019 - - epo:FrameworkAgreementTerm -> at-voc:framework-agreement [1]
epo:hasFundProgrammeepo:Fund -> at-voc:EU-programme [0..1]
epo:hasGroupFrameworkAgreementMaximumValueThis corresponds to BT-156 in the eForms.epo:LotGroupAwardInformation -> epo:MonetaryValue [0..1]
epo:hasHighestReceivedTenderValueAmount of the Tender with the highest value. - - Additional Information - The value must correspond to an admissible tender. For example, tenders compliant - with the procurement document requirements, not having an abnormally low price or - cost, etc. - - - WG Approval 12/12/2019 - - - epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasInternalIdentifierepo:ProcurementElement -> adms:Identifier [0..*]
epo:hasIrregularityTypeAdditional information: - This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity - Typeepo:ReviewIrregularitySummary -> at-voc:irregularity-type [1]
epo:hasItemCountryOfOriginThe source country of the product or service. - - Additional Information: - - The country of origin can be provided by the buyer as a requirement or by the tenderer - information of the item to be provided. - - WG Approval 07/01/2020 - - The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/countryepo:Tender -> at-voc:country [0..*]
epo:hasItemStandardIDThe identifier for the instance of the concept based on a standard scheme. - - Additional information: - For example the GTIN scheme (Global Trade Item Number). - - WG Approval 24/02/2022 - epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasLanguageLanguage in which the submitted information is to be expressed. - - WG Approval 21/07/2020 - - epo:SubmissionTerm -> at-voc:language [0..*]
epo:hasLateSubmissionPermissionWhether economic operator-related information can be supplemented even after the submission - deadline. - - Additional Information - This is specific to the information on the economic operator and not the actual offer. - This does not apply to the requests for clarification. - - WG Approval 21/07/2020 - epo:SubmissionTerm -> at-voc:missing-info-submission [0..1]
epo:hasLaunchFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLaunchGroupFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLegalBasisThe legal basis under which the procurement procedure takes place. - - Additional Information: - For example European Directives or Regulations, national laws etc. - The recommended code list is the example for the legal basis at the European level. - - WG 04/04/2023 - - The legal basis under which the procurement procedure takes place. - - Additional Information: - For example European Directives or Regulations, national law - - WG 09/11/2021 - - The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis - epo:ProcurementObject -> at-voc:legal-basis [0..*]
epo:hasLegalIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasLegalRegimeepo:ProcurementObject -> epo:legal-regime [0..*]
epo:hasLotReferenceepo:Contract -> epo:Lot [1..*]
epo:hasLowestReceivedTenderValueAmount of the Tender with the lowest value. - - Additional Information - The value must correspond to an admissible tender. For example, tenders compliant - with the procurement document requirements, not having an abnormally low price or - cost, etc. - - WG Approval 12/12/2019 - - epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasMainActivityThe principal sectoral area in which an organisation operates. - - Additional information: - - The activities associated with buyers are derived from the top level of the Classification - of the functions of the government (COFOG) from the United Nations Statistics Division. - - The activities associated with buyer are derived from sectors explicitly falling within - the sectoral directive (2014/25/EU Art. 8 - Art. 14). - - WG Approval 05/05/2020 - - org:Organization -> at-voc:main-activity [0..1]
epo:hasMainClassificationepo:Purpose -> at-voc:cpv [1..*]
epo:hasManufacturerIDThe manufacturer's identifier for the item. - epo-cat:Manufacturer (external) -> adms:Identifier [0..1]
epo:hasManufacturerItemIDThis refers to the general identifier for the concept as defined by the manufacturer. - - - WG Approval 16/05/2023 - - epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasMaximumFrameworkAgreementAwardedValueThe maximum value which can be spent through all the framework agreements announced - in this notice, including options and renewals of contracts. - - Additional information: - - The value provided is a threshold value that implicity means that it cannot be exceeded - however it may not be reached during the execution of a contract. - - The Framework Agreements in a CAN are to be traced back and added to provide this - value. - - This corresponds to the BT-118 in eForms. - - WG Approval 03/12/2019epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasMemberepo:OrganisationGroup -> org:Organization [1..*]
epo:hasModificationJustificationExplanation of why a contract was modified. - WG Approval 09/11/2021 - - The codelist to be used is at-voc:modification-justification which is available at - http://publications.europa.eu/resource/dataset/modification-justification - - Additional Information - - This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - - This corresponds in eForms to BT-200. - - Explanation of why a contract was modified. - - WG Approval 09/11/2021 - - The codelist to be used is at-voc:modification-justification which is available at - http://publications.europa.eu/resource/dataset/modification-justification - - Additional Information - - This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - - This corresponds in eForms to BT-200. - - - epo:ElementModificationDescription -> at-voc:modification-justification [1]
epo:AmendedContract (external) -> at-voc:modification-justification [1]
epo:hasNationality - cpv:Person -> at-voc:country [0..*]
epo:hasNonAwardJustificationOn hold; Enumeration. - - - epo:AwardDecision -> at-voc:non-award-justification [0..1]
epo:hasNonElectronicSubmissionJustification - Reason for not accepting electronic information. - - WG Approval 21/07/2020 - epo:SubmissionTerm -> at-voc:communication-justification [0..*]
epo:hasNonPublicationJustificationThe reason why data is not published. - WG Approval 11/06/2020 - - epo:ElementConfidentialityDescription -> at-voc:non-publication-justification [1]
epo:hasNoticeTypeepo:Notice -> at-voc:notice-type [1]
epo:hasNotificationContentTypeA categorisation of templates for sets of Procurement information to be conveyed in - Notices. - - WG Approval 12/05/2020epo:Notice -> epo:notification-phases-content-types [0..1]
epo:hasNutsCode dct:Location -> at-voc:nuts [0..1]
locn:Address -> at-voc:nuts [0..1]
epo:hasOfficialLanguageThe language(s) in which the instances of the given concepts are officially available. - These linguistic versions are equally legally valid. - - WG Approval 03/10/2019 - - epo:Document -> at-voc:language [1..*]
epo:hasPerformingStaffQualificationInformation - Additional information: - - This relation corresponds in eForms to BT-79.Explanation as to if and/or when information - of the persons to carry out the contract is to be provided. - WG Approval 09/11/2021 - - The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage - epo:ProcurementCriterion -> at-voc:requirement-stage [0..*]
epo:hasPlannedDurationepo:PlannedProcurementPart -> epo:Duration [0..1]
epo:hasPlannedPeriodepo:PlannedProcurementPart -> epo:Period [0..1]
epo:hasPrimaryContactPointorg:Organization -> cpov:ContactPoint [0..*]
epo:hasPrizeValueThe monetary value of a prize, if any, for the winner (or runners-up) of the design - contest. - - Additional Information: - This corresponds to BT-644 in eForms. - - WG Approval 29/08/2019 - - epo:Prize -> epo:MonetaryValue [0..1]
epo:hasProcedureTypeIdentification of the Procedure used. - - WG Approval 09/06/2020 - epo:Procedure -> at-voc:procurement-procedure-type [1]
epo:hasProcurementClassificationepo:Contract -> at-voc:cpv [0..1]
epo:hasProcurementHighestReceivedTenderValueThe highest received tender value for the procurement. - - Additional Information: - This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementLowestReceivedTenderValueThe lowest received tender value for the procurement. - - Additional Information: - This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementScopeDividedIntoLotepo:Procedure -> epo:Lot [1..*]
epo:hasPurposeRelation indicating a procurement part has a puropse.epo:ProcurementObject -> epo:Purpose [0..1]
epo:hasQualificationSystemDurationepo:MultipleStageProcedureTerm -> epo:Duration [0..1]
epo:hasReceivedSubmissionTypeepo:SubmissionStatisticalInformation -> at-voc:received-submission-type [0..1]
epo:hasRegistrationCountryorg:Organization -> at-voc:country [0..1]
epo:hasRemedyValueAdditional information: - This relation corresponds in eForms to BT-793 Review Remedy Value.epo:ReviewDecision -> epo:MonetaryValue [0..1]
epo:hasReservedExecutionepo:ContractTerm -> at-voc:applicability [0..1]
epo:hasReservedProcurementExplanation as to whether a procurement may be reserved for the participation of certain - types of organisation. - - Additional information: - This property corresponds in eForms to the BT-71 - WG Approval 09/11/2021 - Explanation as to whether a procurement may be reserved for the participation of certain - types of organisation. - - Additional information: - This property corresponds in eForms to the BT-71 - WG Approval 09/11/2021 - epo:ParticipationCondition -> at-voc:reserved-procurement [0..*]
epo:ParticipationConditionsSummary -> at-voc:reserved-procurement [0..*]
epo:hasReviewBodyTypeepo:Reviewer -> at-voc:review-body-type [0..*]
epo:hasReviewDecisionTypeAdditional information: - This relation corresponds in eForms to BT-790 Review Decision Type.epo:ReviewDecision -> at-voc:review-decision-type [0..*]
epo:hasReviewIrregularitySummaryAdditional information: - This relation corresponds in eForms to BG-613 Buyer Review Requestsepo:ReviewRequestSummary -> epo:ReviewIrregularitySummary [0..*]
epo:hasReviewRequestFeeAdditional information: - This relation corresponds in eForms to BT-795 Review Request Fee.epo:ReviewRequest -> epo:MonetaryValue [0..1]
epo:hasSelectionCriteriaUsage - Additional Information: - This corresponds in eForms to BT-748 Selection Criteria Used.epo:SelectionCriterion -> at-voc:usage [0..1]
epo:hasSelectionCriterionTypeThe classification of the selection criteria. - - - Additional Information: - - This corresponds in eForms to BT-747 Selection Criteria Type. - - WG Approval 09/11/2021 - epo:SelectionCriterion -> at-voc:selection-criterion [0..1]
epo:hasSellerItemID The general identifier for the concept as defined by the seller. - - WG Approval 16/05/2023 - epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasSerialIDThe identifier assigned to the specific instance of the produced concept. - WG Approval 16/05/2023 - epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasStartDateepo:SelectedCandidateList -> epo:Period [0..1]
epo:hasSubcontractingEstimatedValueThe estimated value of a single subcontract. - - This relates to BT-553 in eForms. - - WG Approval 01/09/2020 - - epo:SubcontractingEstimate -> epo:MonetaryValue [0..1]
epo:hasSubcontractingObligationThe requirement the tender must meet with regard to subcontracting parts of the contract. - WG Approval 09/11/2021 - - epo:SubcontractTerm -> at-voc:subcontracting-obligation [0..*]
epo:hasTaxIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasTenderSubcontractingInformationThe information about subcontracting that must be indicated in the tender. - - WG Approval 10/10/2019 - - epo:SubmissionTerm -> at-voc:subcontracting-indication [0..*]
epo:hasTenderValidityPeriodThe relation indicating until when a tender instance is applicable. - epo:SubmissionTerm -> epo:Period [0..1]
epo:hasThresholdTypeThe method to interpret the threshold value as minimum or a maximum. - - WG Approval 17/09/2019 - cccev:Constraint -> at-voc:number-threshold [0..*]
epo:hasTimePeriod - - epo:Period -> at-voc:timeperiod [1..*]
epo:hasTotalAwardedValueThe awarded value of all lots announced in this notice, including options and renewals. - - - Additional information: - The values of the individual Lots awarded under a framework agreement and mentioned - in this notice are included. - - The values of the individual lots announced in a CAN are to be traced back and added - to provide this value. - - This corresponds to the BT-161 in eForms. - - WG Approval 03/12/2019 - epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasTotalQuantityThe number of units required. - - Additional Information: - The quantity needs to go along with the unit. - - - - epo:Purpose -> epo:Quantity [0..1]
epo:hasTotalValue epo:TenderGroup -> epo:MonetaryValue [1]
epo:Deliverable (external) -> epo:MonetaryValue [0..1]
epo:hasUnitCodeepo:Quantity -> at-voc:measurement-unit [1]
epo:hasUnofficialLanguageThe language translation(s) in which the instances of the given concepts are available. - These linguistic versions are not an official translation, they are provided only - for information. - - WG Approval 03/10/2019 - epo:Document -> at-voc:language [0..*]
epo:hasUsageThe codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage - epo:Technique -> at-voc:usage [0..1]
epo:hasUUIDA universally unique identifier for an instance of this document. - - WG Approval 12/05/2020epo:Document -> adms:Identifier [0..1]
epo:hasValidityPeriodThe relation indicating until when a given instance of a concept is applicable. - - WG approval 30/05/2023 - The relation indicating until when a given instance of a concept is applicable. - - WG approval 30/05/2023epo:Technique -> epo:Period [0..1]
epo-cat:Certificate (external) -> epo:Period [0..1]
epo:hasVariantPermissionThe obligation or possibility for tenderers to submit variants or not. - - Additional Information: - - Variants are alternative ways to fulfil the buyer's needs as opposed to solutions - indicated in the procurement documents. - - eForms: Whether tenderers are required, allowed or forbidden to submit tenders which - fulfil the buyer's needs differently than as proposed in the procurement documents. - - - Additional Information: - - Further conditions for submitting variant tenders are in the procurement documents. - epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasWeightValueTypeNo definition. Waiting on CCCEV alignment. - - - epo:ProcurementCriterion -> at-voc:number-weight [0..1]
epo:includesAccessibilityCriterionExplanation as to whether accessibility Criterion are used or not. - WG Approval 09/11/2021 - - epo:StrategicProcurement -> at-voc:accessibility [0..*]
epo:includesTenderAdditional information: - This corresponds in eForms to BT-3202 Contract Tender Identifier. - epo:Contract -> epo:Tender [0..*]
epo:indicatesAwardToWinnerReveals the winner to whom the tender award outcome is attributed.epo:TenderAwardOutcome -> epo:Winner [0..1]
epo:indicatesInvoiceeContactPointepo:Buyer -> cpov:ContactPoint []
epo:involvesBuyerepo:Procedure -> epo:Buyer [0..*]
epo:involvesProcurementDocumentepo:AccessTerm -> epo:ProcurementDocument [1]
epo:isAppointedByepo:EvaluationBoard (external) -> epo:Buyer [1]
epo:isAssignedForEvaluationOfepo:EvaluationBoard (external) -> epo:Lot [0..*]
epo:isBasedOnImplementingRegulationIndicates under which regulation a notice is created. - - WG Acceptance 06/09/2022epo:Notice -> at-voc:legal-basis [0..1]
epo:isBeneficialOwnerOfA role of any natural person(s) who ultimately owns or controls the organisation or - on whose behalf a transaction or activity is being conducted. - Additional Information: - This role is defined in the directive EU 2015/849 and it's beyond the scope for public - eProcurement domain. - WG approval 14/09/2021epo:Business [,0..*] <- cpv:Person
epo:isCalculatedOnThe monetary amount to which the multiplier factor is applied in calculating the amount - of this allowance or charge. - - The monetary amount to which the multiplier factor is applied in calculating the amount - of this allowance or charge.epo-ord:AllowanceChargeInformation (external) -> epo:MonetaryValue [0..1]
epo-ord:TaxInformation (external) -> epo:MonetaryValue [0..1]
epo:isExecutedByProcurementServiceProviderepo:Procedure -> epo:ProcurementServiceProvider [0..1]
epo:isFundedByFunding is provided either completely or partially by a Fund. - - Additional information: - This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 - Contract EU Funds (applied per Contract lot) - Funds may change between the lot and the contract, for example in the case of an emergency - crisis, a contract may be financed by a budget that was not foreseen in the call. - - epo:ProcurementObject -> epo:Fund [0..*]
epo:isOwnedByAgentepo:System -> foaf:Agent [0..1]
epo:isResponsibilityOfBuyerThe buyer in charge of the procedure. - - Additional Information: - In case there are multiple buyers, it may be the case that one or more buyers are - in charge of the procedure. - - epo:Procedure -> epo:Buyer [0..*]
epo:isSubjectToContractSpecificTermepo:Contract -> epo:ContractSpecificTerm [0..*]
epo:isSubjectToGroupingepo:Tender -> epo:LotGroup [0..1]
epo:isSubjectToLotSpecificTermepo:Lot -> epo:LotSpecificTerm [0..*]
epo:isSubjectToProcedureSpecificTermepo:Procedure -> epo:ProcedureSpecificTerm [1..*]
epo:isSubjectToTermepo:ProcurementObject -> epo:Term [0..*]
epo:isSubmitedByRelation indicating the submission of a tender by an economic operator. - WG approval 18/05/2021epo:Tender -> epo:Tenderer [0..1]
epo:isSubmittedForLotepo:Tender -> epo:Lot [1]
epo:isSubmittedForLotGroupepo:TenderGroup -> epo:LotGroup [1]
epo:isSupportedBy epo:Tender -> epo:TechnicalOffer (external) [1]
epo:Tender -> epo:ESPDResponse (external) [1]
epo:Tender -> epo:FinancialOffer (external) [1]
epo:leadByepo:OrganisationGroup -> org:Organization [0..1]
epo:needsToBeATendererThe Winner must be a Tenderer.epo:Winner -> epo:Tenderer [0..1]
epo:needsToBeAWinnerThe Contractor must be a Winner. - epo:Contractor -> epo:Winner [0..1]
epo:ownsSystemepo:System [,0..*] <- foaf:Agent
epo:playedBy epo:AgentInRole -> foaf:Agent [1]
epo-ful:TransportMeansOperator (external) -> foaf:Person [0..1]
epo:JuryMember -> foaf:Person [0..1]
epo:providesContractTotalPaymentValueAdditional Information: - This corresponds to BT-779 in eForms. epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesContractTotalPenaltyValue - Additional Information: - This corresponds to BT-782 in eForms. - epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesRulingOnRemedyStates the measures to be taken after a review procedure.epo:ReviewDecision -> at-voc:remedy-type [0..*]
epo:refersToAwardDecision epo-not:CompletionNotice (external) -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice (external) -> epo:AwardDecision [0..*]
epo:refersToContractepo:ContractLotCompletionInformation -> epo:Contract [1]
epo:refersToContractToBeModifiedepo-not:ContractModificationNotice (external) -> epo:Contract [1]
epo:refersToLot epo:Notice -> epo:Lot [1..*]
epo-not:CompletionNotice (external) -> epo:Lot [1..*]
epo-not:ContractModificationNotice (external) -> epo:Lot [1..*]
epo-not:ResultNotice (external) -> epo:Lot [1..*]
epo:refersToLotGroup epo-not:ContractModificationNotice (external) -> epo:LotGroup [0..*]
epo-not:ResultNotice (external) -> epo:LotGroup [0..*]
epo-not:CompletionNotice (external) -> epo:LotGroup [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo:refersToNonPublishedElementepo-not:CompletionNotice (external) -> epo:PublicationProvision [0..*]
epo:refersToNoticeepo:Notice -> epo:Notice [0..1]
epo:refersToNoticeAwardInformationepo-not:CompletionNotice (external) -> epo:NoticeAwardInformation [0..1]
epo:refersToOriginalNoticeepo:ContractModification -> epo:Notice [0..1]
epo:refersToPlannedPartepo:AccessTerm -> epo:PlannedProcurementPart [0..*]
epo:refersToPreviousepo:Document -> epo:Document [0..*]
epo:refersToPreviousNotice - Additional information: - This corresponds in eForms to BT-758 Change Notice Version Identifier.epo:NoticeChange -> epo:Notice [0..1]
epo:refersToPreviousProcedureReference to a previous procedure. - - Additional Information: - In the case of Direct Award Terms, this property points to a previous Procedure justifying - the use of Direct Award without a prior publication. - - This corresponds in the eForms to BT-1252 Direct Award Justification Previous - Procedure Identifierepo:DirectAwardTerm -> epo:Procedure [0..1]
epo:refersToPreviousProcedureLotReference to one or more Lots in a previous procedure. - - Additional Information: - In the case of Direct Award Terms, this property points to a previous Procedure justifying - the use of Direct Award without a prior publication. - - This corresponds in the eForms to BT-1252 Direct Award Justification Previous - Procedure Identifier - - WG Approval 22/11/2019 14:33:55epo:DirectAwardTerm -> epo:Lot [0..*]
epo:refersToPreviousReviewAdditional information: - This relation corresponds in eForms to BT-785 "Review Previous Identifier".epo:ReviewObject -> epo:ReviewObject [0..1]
epo:refersToProcedure epo-not:ResultNotice (external) -> epo:Procedure [1]
epo-not:ContractModificationNotice (external) -> epo:Procedure [1]
epo-not:CompletionNotice (external) -> epo:Procedure [1]
epo:Notice -> epo:Procedure [1]
epo:refersToProjectepo-ord:Order (external) -> epo:Project [0..1]
epo:refersToRoleepo-not:CompletionNotice (external) -> epo:AgentInRole [0..*]
epo:requestsRemedyTypeAdditional information: - This relation corresponds in eForms to BT-792 Review Remedy Typeepo:ReviewRequest -> at-voc:remedy-type [0..*]
epo:resolvesReviewRequestepo:ReviewDecision -> epo:ReviewRequest [1]
epo:resultsFromLotAwardDecision epo:DirectContract -> epo:LotAwardDecision [0..*]
epo:FrameworkAgreement -> epo:LotAwardDecision [0..*]
epo:resultsFromMiniCompetitionAwardDecisionepo:PurchaseContract -> epo:MiniCompetitionAwardDecision [0..1]
epo:resultsInDynamicPurchasingSystemepo:DynamicPurchaseSystemTechnique -> epo:DynamicPurchasingSystem [1]
epo:setsGroupingContextForLotepo:LotGroup -> epo:Lot [1..*]
epo:signedByBuyerepo:Contract -> epo:Buyer [0..*]
epo:signedByContractorepo:Contract -> epo:Contractor [0..*]
epo:signsAwardDecisionepo:Buyer -> epo:AwardDecision [0..*]
epo:specifiesAwardCriterionepo:MiniCompetition -> epo:AwardCriterion [0..*]
epo:specifiesBuyer epo-cat:Catalogue (external) -> epo:Buyer [0..*]
epo-ord:Order (external) -> epo:Buyer [1]
epo:specifiesCatalogueProviderepo-cat:Catalogue (external) -> epo:CatalogueProvider [0..1]
epo:specifiesCatalogueReceiverepo-cat:Catalogue (external) -> epo:CatalogueReceiver [0..1]
epo:specifiesDeliverableepo:Contract -> epo:Deliverable (external) [0..*]
epo:specifiesProcurementCriteriaSummaryepo:Procedure -> epo:ProcurementCriteriaSummary [0..*]
epo:specifiesProcurementCriterion epo:Lot -> epo:ProcurementCriterion [0..*]
epo:LotGroup -> epo:ProcurementCriterion [0..*]
epo:specifiesSubcontractorsepo:Tender -> epo:Subcontractor [0..*]
epo:substantiatesExclusionGroundepo:Tenderer -> epo:ExclusionGround [0..1]
epo:summarisesInformationForAwardDecisionRelates to submission for the given competition, either at Lot level or Mini-Competition - level. - - WG approval 30/05/2023epo:SubmissionStatisticalInformation -> epo:AwardDecision [1]
epo:usesCandidateListepo:MiniCompetition -> epo:SelectedCandidateList [0..1]
epo:usesChannelepo:ProcurementElement -> cv:Channel [0..*]
epo:usesTechniqueepo:ProcurementObject -> epo:Technique [0..*]
epo-cat:hasAmountThe predetermined monetary value charged in addition to the price. - - WG approval 26/07/2022 The predetermined monetary value charged in addition to the price. - - WG approval 26/07/2022 - - epo-ord:AllowanceChargeInformation (external) -> epo:MonetaryValue [1]
epo-ord:TaxInformation (external) -> epo:MonetaryValue [0..1]
epo-cat:hasBaseQuantityThe quantity at which the net monetary value applies.epo-cat:Price (external) -> epo:Quantity [0..1]
epo-cat:hasCatalogueLineValidityepo-cat:CatalogueLine (external) -> epo:Period [0..1]
epo-cat:hasCountryOfOriginThe source country of the product or service. - - Additional Information: - - The country of origin can be provided by the buyer as a requirement or by the tenderer - information of the item to be provided. - - WG Approval 07/01/2020 - epo-cat:Item (external) -> at-voc:country [0..1]
epo-cat:hasDeliveryLocationLocation delivery area where the Item can be ordered to the given price. - epo-cat:Price (external) -> dct:Location [0..1]
epo-cat:hasExpectedDeliveryTimeThe expected amount of time between the order and delivery of an item. - - WG approval 26/07/2022 - epo-cat:Price (external) -> epo:Duration [0..1]
epo-cat:hasExternalSpecificationURI reference to external item information or specifications, e.g. web address. - epo-cat:Item (external) -> epo:Document []
epo-cat:hasMaximumOrderQuantityThe maximum number of orderable units that can be ordered according to details provided - in the catalogue line, such as price. - epo-cat:CatalogueLine (external) -> epo:Quantity [0..1]
epo-cat:hasMinimumQuantityGuaranteedForDeliveryThe minimum quantity of an item that is guaranteed by the seller to be delivered. - - epo-cat:CatalogueLine (external) -> epo:Quantity [0..1]
epo-cat:hasNetMonetaryValueThe price amount of an Item exclusive of taxes and after substracting price discounts. - epo-cat:Price (external) -> epo:MonetaryValue [1]
epo-cat:hasNetQuantityThe net quantity of the item that is contained in each consumable unit, excluding - any packaging materials. - epo-cat:Item (external) -> epo:Quantity [0..1]
epo-cat:hasOrderabableUnitFactorRateThe factor by which the base unit of the price can be converted to orderable unit. - - Additional information: - This is needed when the base price is provided different than the orderable unit. - For example, when selling paper, the price may be set per page, but the orderable - unit is a package of 500 pieces. Therefore the price needs to be converted to the - orderable unit. - - epo-cat:Price (external) -> epo:Quantity [0..1]
epo-cat:hasPriceValidityThe period of time when the Item can be ordered to the given price. - epo-cat:Price (external) -> epo:Period [1]
epo-cat:hasQualifiedValueQualified value of the property, which is defined in a classification scheme. - - Additional Information: - For example, the (0173-1#02-AAA026#007) drilling diameter of an item has value of - 12 inches. - - WG approval 28/07/2022epo-cat:ItemProperty (external) -> epo:Quantity [0..1]
epo-cat:hasQuantity epo-ord:OrderLine (external) -> epo:Quantity [1]
epo:Deliverable (external) -> epo:Quantity [0..1]
epo-cat:hasQuantityThresholdThe minimum quantity of the item that can be ordered to the given net monetary value.epo-cat:Price (external) -> epo:Quantity [0..1]
epo-cat:isSubordinatedToContractepo-cat:Catalogue (external) -> epo:Contract [0..1]
epo-ful:agreedByBuyerepo-ful:ShipmentAgreement (external) -> epo:Buyer [1..*]
epo-ful:hasAssociatedDocument epo-ful:DespatchAdvice (external) -> epo:Document [0..1]
epo-ful:DespatchLine (external) -> epo:Document [0..1]
epo-ful:hasCarrierConsignmentIDepo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:hasChargeableWeightepo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasConsigneeConsignmentIDepo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:hasConsignmentDeclaredStatisticsValueepo-ful:Consignment (external) -> epo:MonetaryValue [0..1]
epo-ful:hasConsignmentFreeOnBoardValueepo-ful:Consignment (external) -> epo:MonetaryValue [0..1]
epo-ful:hasConsignmentInvoiceValueDeclared amount of the Consignment. - - Additional Information: - - This is a logistics information needed for logistics, security measures, customs check, - etc.epo-ful:Consignment (external) -> epo:MonetaryValue [0..1]
epo-ful:hasDeclaredStatisticalValueepo-ful:GoodsItem (external) -> epo:MonetaryValue [0..*]
epo-ful:hasDespatchedQuantityQuantity despatched for delivered.epo-ful:DespatchLine (external) -> epo:Quantity [1]
epo-ful:hasEstimatedDeliveryPeriodepo-ful:ShipmentInformation (external) -> epo:Period [0..1]
epo-ful:hasFreightForwarderConsignmentIDepo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:hasGrossVolume epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasGrossWeight epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasHeightepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:hasLengthepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:hasLoadingLengthepo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasMaximumTemperatureepo-ful:TemperatureSpecification (external) -> epo:Quantity [0..1]
epo-ful:hasMinimumTemperatureepo-ful:TemperatureSpecification (external) -> epo:Quantity [0..1]
epo-ful:hasNetVolumeepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:hasNetWeight epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasOperatorLicenceIDepo-ful:TransportMeansOperator (external) -> adms:Identifier [0..1]
epo-ful:hasOutstandingQuantityepo-ful:DespatchLine (external) -> epo:Quantity [0..1]
epo-ful:hasTotalGoodsItemQuantity epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasTraceIDepo-ful:GoodsItem (external) -> adms:Identifier [0..1]
epo-ful:hasTrackingIDepo-ord:DeliveryInformation (external) -> adms:Identifier [0..1]
epo-ful:hasTransportHandlingUnitQuantityepo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasVehicleIDepo-ful:TransportMeans (external) -> adms:Identifier [1]
epo-ful:hasVehicleSegmentIDepo-ful:TransportMeans (external) -> adms:Identifier [0..1]
epo-ful:hasWidthepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:specifiesPlaceOfDespatchepo-ful:ShipmentInformation (external) -> dct:Location [0..1]
epo-not:announcesRoleepo-not:ResultNotice (external) -> epo:AgentInRole [0..*]
epo-not:refersToRoleepo-not:ResultNotice (external) -> epo:AgentInRole [1..*]
epo-ord:concernsContractepo-ord:ContractInformation (external) -> epo:Contract [1]
epo-ord:concernsOriginatorRequestepo-ord:OriginatorInformation (external) -> epo:OriginatorRequest [0..1]
epo-ord:hasAmountDueForPaymentepo-ord:Order (external) -> epo:MonetaryValue [1]
epo-ord:hasDeliveryPeriodepo-ord:DeliveryInformation (external) -> epo:Period [0..1]
epo-ord:hasPrepaidAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasRoundingAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTaxInformation epo:Tender -> epo-ord:TaxInformation (external) [0..1]
epo:Contract -> epo-ord:TaxInformation (external) [0..1]
epo-ord:hasTotalAllowanceAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTotalChargeAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTotalLineAmountepo-ord:Order (external) -> epo:MonetaryValue [1]
epo-ord:hasTotalTaxExclusiveAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTotalTaxInclusiveAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:implementsContractepo-ord:OrderResponse (external) -> epo:Contract [0..1]
epo-ord:specifiesBuyerepo-ord:OrderResponse (external) -> epo:Buyer [0..1]
epo-ord:specifiesDeliveryAgreementLocationepo-ord:DeliveryAgreement (external) -> dct:Location [0..1]
epo-ord:specifiesPlaceOfDeliveryepo-ord:DeliveryInformation (external) -> dct:Location [0..1]
locn:addressdct:Location -> locn:Address [0..1]
locn:addressIDA globally unique identifier for each instance of an Address. - - Additional Information: - The concept of adding a globally unique identifier for each instance of an address - is a crucial part of the INSPIRE data spec. A number of EU countries have already - implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. - OASIS xAL also includes an address identifier. It is the address Identifier that allows - an address to be represented in a format other than INSPIRE whilst remaining conformant - to the Core Vocabulary. - - The INSPIRE method of representing addresses is very detailed, designed primarily - for use in databases of addresses. Whilst data that is published in full conformance - with the INSPIRE data structure can be made available using the Location Core Vocabulary - the reverse is not true since the Core Vocabulary allows much greater flexibility. - - Many datasets that include address data as one piece of information about something - else are likely to have that data in simpler formats. These might be tailored to the - specific need of the dataset, follow a national norm, or make use of a standard like - vCard. - - To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable - with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location - Core Vocabulary provides the extra property of full address and makes use of INSPIRE's - addressID.locn:Address -> adms:Identifier [0..1]
locn:geographicIdentifierA URI that identifies the Location. - - Additional Information: - GeoNames.org provides stable, widely recognised identifiers for more than 10 million - geographical names that can be used as links to further information. For example, - http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately - these URIs cannot easily be automatically deduced since the URI scheme uses simple - numeric codes. Finding a GeoNames identifier for a Location is almost always a manual - process. Where such identifiers are known or can be found, however, it is recommended - that they be used. - - Where the Location Class is used to identify a country, if the geonames URI is not - known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX - where XX is the ISO 3166 two character code for the country. - - The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece - and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct - URIs for these countries are: - - - http://dbpedia.org/resource/ISO_3166-1:GR - - http://dbpedia.org/resource/ISO_3166-1:GB - even when the geographic name is given as EL or UK. - - The use of a URIs has added advantages: - - - it can be used by automated systems to look up additional data (linked data); - - a triple store may store only one copy of the URI, whereas if a string is used, - a copy of that string is always stored for each and every person in the database. - Thus, in large data sets, the saving on memory capacity and the improvement in transmission - efficiency can be substantial. - dct:Location -> adms:Identifier [0..1]
locn:geometrydct:Location -> locn:Geometry [0..1]
person:placeOfBirthThe Location where the Person was born.cpv:Person -> dct:Location [0..1]
person:placeOfDeathThe Location where the Person died.cpv:Person -> dct:Location [0..1]
time:unitTypeepo:SpecificDuration -> time:TemporalUnit [1]
-
-
- - \ No newline at end of file diff --git a/glossary/demo_ontology_module_CM-glossary.html b/glossary/demo_ontology_module_CM-glossary.html deleted file mode 100644 index e011c8f..0000000 --- a/glossary/demo_ontology_module_CM-glossary.html +++ /dev/null @@ -1,692 +0,0 @@ - - - - - - - - - - - - - - - - Model glossary - - -
-
-
-

Table of contents

-
-
-
-

Glossary

-

Class names and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Class nameDefinition
epo-not:CANDefence-D81
epo-not:CANSocial-D25
epo-not:CANSocialNotice
epo-not:CANSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:CANStandard-D24
epo-not:CANStandardNotice
epo-not:CNDefence-D81
epo-not:CNSocial-D25
epo-not:CNSocialNotice
epo-not:CNSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:CNStandard-D24
epo-not:CNStandardNotice
epo-not:CompetitionNoticeAn announcement of the launch of a Procurement Procedure by a Procuring Entity. - - WG approval 18/05/2018 -
epo-not:CompletionNoticeAn announcement of the end of a Procurement by a Buyer.
epo-not:ConcessionAwardNotice-D23
epo-not:ConcessionNotice-D23
epo-not:ContractModificationNoticeAn announcement of the Modification Of a Contract/Concession during its term by a - Procuring Entity.
epo-not:DesignContest-D24
epo-not:DesignContest-D25
epo-not:DesignContestNotice
epo-not:DesignContestResult-D24
epo-not:DesignContestResult-D25
epo-not:DesignContestResultNotice
epo-not:DirectAwardPrenotificationNoticeNotice which sets out the Buyer's purchasing intention to award a Contract without - prior notification of Competition.
epo-not:eFormsNotice
epo-not:Modification-D23
epo-not:Modification-D24
epo-not:Modification-D25
epo-not:Notice1
epo-not:Notice10
epo-not:Notice11
epo-not:Notice12
epo-not:Notice13
epo-not:Notice14
epo-not:Notice15
epo-not:Notice16
epo-not:Notice17
epo-not:Notice18
epo-not:Notice19
epo-not:Notice2
epo-not:Notice20
epo-not:Notice21
epo-not:Notice22
epo-not:Notice23
epo-not:Notice24
epo-not:Notice25
epo-not:Notice26
epo-not:Notice27
epo-not:Notice28
epo-not:Notice29
epo-not:Notice3
epo-not:Notice30
epo-not:Notice31
epo-not:Notice32
epo-not:Notice33
epo-not:Notice34
epo-not:Notice35
epo-not:Notice36
epo-not:Notice37
epo-not:Notice38
epo-not:Notice39
epo-not:Notice4
epo-not:Notice40
epo-not:Notice5
epo-not:Notice6
epo-not:Notice7
epo-not:Notice8
epo-not:Notice9
epo-not:PIN-CFCSocial-D25
epo-not:PIN-CFCSocialNotice
epo-not:PIN-CFCSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:PIN-CFCStandard-D24
epo-not:PIN-CFCStandardNotice
epo-not:PINDefence-D81
epo-not:PINOnly-D24
epo-not:PINOnly-D25
epo-not:PINOnlyNoticePriorInformationNotice
epo-not:PINProfile-D24
epo-not:PINProfile-D25
epo-not:PINProfile-D81
epo-not:PINProfileNotice
epo-not:PIN-RTL-D24
epo-not:PIN-RTL-D25
epo-not:PINTimeLimitNotice
epo-not:PlanningNoticeNotice which sets out the Contracting Authority's purchasing intentions. It is used - by Contracting Authorities to provide Suppliers with information about a Procurement - Process. -
epo-not:PMCNotice
epo-not:QS-D25
epo-not:QSNotice
epo-not:QSNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:ResultNoticeAn announcement of the award or non-award of a Contract by a Buyer. - - (WG approval 27/03/2019)
epo-not:SocialAndOtherSpecificServices-D23
epo-not:SocialAndOtherSpecificServices-D24public contracts
epo-not:StandardFormsNotice
epo-not:Subcontract-D81
epo-not:SubcontractNotice
epo-not:VEAT-D23
epo-not:VEAT-D24
epo-not:VEAT-D25
epo-not:VEAT-D81
epo-not:VoluntaryEx-AnteTransparencyNoticeA Notice informing of the intention to award a Contract without prior publication - of a Contract Notice. - - Additional Information: - - For European Notices above the threshold - - "A means of advertising the intention to award the Contract without opening it up - to formal Competition. A Contracting Authority may decide that a Contract does not - require prior publication through a Contract Notice in the O.J.E.U. A reason for this - decision may be that the Contract meets the exceptional conditions described in Article - 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme - urgency brought about by events unforeseeable by the Contracting Entity and in accordance - with the strict conditions stated in the Directive” . - "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems - that a Contract does not require prior publication of a Contract Notice in the European - Journal (OJEU). This may apply, for example, if the Contract meets the exceptional - conditions justifying direct award of contracts. - - <b>This definition is still to be worked on.</b> -
-

Attributes (datatype properties) names and definitions

- - - - - - - - - - -
Class nameAttribute nameDefinitionData type / cardinality
-

Predicates (object properties) and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Predicate nameDefinitionDomain, Range and Cardinality
epo:announcesAwardDecision epo-not:ResultNotice -> epo:AwardDecision (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision (external) [0..*]
epo:announcesCompletionOfContractepo-not:CompletionNotice -> epo:Contract (external) [1]
epo:announcesContract epo-not:ResultNotice -> epo:Contract (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract (external) [0..*]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice -> epo:Lot (external) [1..*]
epo-not:CompetitionNotice -> epo:Lot (external) [1..*]
epo:announcesLotGroup epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup (external) [0..*]
epo-not:CompetitionNotice -> epo:LotGroup (external) [0..*]
epo:announcesLotGroupAwardInformation epo-not:ResultNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. - - Additional Information: - For example, elements in the Contract Award Notice that should be published at a later - date. epo-not:ResultNotice -> epo:PublicationProvision (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision (external) [0..*]
epo:announcesNoticeAwardInformation epo-not:ResultNotice -> epo:NoticeAwardInformation (external) [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation (external) [0..1]
epo:announcesPlannedProcurementPartepo-not:PlanningNotice -> epo:PlannedProcurementPart (external) [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice -> epo:Procedure (external) [1]
epo-not:CompetitionNotice -> epo:Procedure (external) [1]
epo:announcesReviewObjectepo-not:CompletionNotice -> epo:ReviewObject (external) [1..*]
epo:announcesRole epo-not:CompletionNotice -> epo:AgentInRole (external) [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole (external) [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole (external) [1..*]
epo-not:PlanningNotice -> epo:AgentInRole (external) [1..*]
epo:describesContractModificationepo-not:ContractModificationNotice -> epo:ContractModification (external) [0..*]
epo:describesResultNotice epo:NoticeAwardInformation (external) -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation (external) -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:hasFormType epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
epo:hasImplementingRegulation epo-not:eFormsNotice -> (EU) 2019/1780 [0..1]
epo-not:StandardFormsNotice -> (EU) 2015/1986 [0..1]
epo:hasLegalBasis epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
epo:hasNoticeType epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
epo:refersToAwardDecision epo-not:CompletionNotice -> epo:AwardDecision (external) [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision (external) [0..*]
epo:refersToContractToBeModifiedepo-not:ContractModificationNotice -> epo:Contract (external) [1]
epo:refersToLot epo-not:CompletionNotice -> epo:Lot (external) [1..*]
epo-not:ContractModificationNotice -> epo:Lot (external) [1..*]
epo-not:ResultNotice -> epo:Lot (external) [1..*]
epo:refersToLotGroup epo-not:CompletionNotice -> epo:LotGroup (external) [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup (external) [0..*]
epo-not:ResultNotice -> epo:LotGroup (external) [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo:refersToNonPublishedElementepo-not:CompletionNotice -> epo:PublicationProvision (external) [0..*]
epo:refersToNoticeAwardInformationepo-not:CompletionNotice -> epo:NoticeAwardInformation (external) [0..1]
epo:refersToProcedure epo-not:CompletionNotice -> epo:Procedure (external) [1]
epo-not:ContractModificationNotice -> epo:Procedure (external) [1]
epo-not:ResultNotice -> epo:Procedure (external) [1]
epo:refersToRoleepo-not:CompletionNotice -> epo:AgentInRole (external) [0..*]
epo-not:announcesRoleepo-not:ResultNotice -> epo:AgentInRole (external) [0..*]
epo-not:hasLegalBasisepo-not:Modification-D24 -> Directive 24 [0..1]
epo-not:refersToRoleepo-not:ResultNotice -> epo:AgentInRole (external) [1..*]
-
-
- - \ No newline at end of file diff --git a/glossary/demo_ontology_module_CM_glossary.html b/glossary/demo_ontology_module_CM_glossary.html deleted file mode 100644 index d1d5fdd..0000000 --- a/glossary/demo_ontology_module_CM_glossary.html +++ /dev/null @@ -1,692 +0,0 @@ - - - - - - - - - - - - - - - - Model glossary - - -
-
-
-

Table of contents

-
-
-
-

Glossary

-

Class names and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Class nameDefinition
epo-not:CANDefence-D81
epo-not:CANSocial-D25
epo-not:CANSocialNotice
epo-not:CANSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:CANStandard-D24
epo-not:CANStandardNotice
epo-not:CNDefence-D81
epo-not:CNSocial-D25
epo-not:CNSocialNotice
epo-not:CNSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:CNStandard-D24
epo-not:CNStandardNotice
epo-not:CompetitionNoticeAn announcement of the launch of a Procurement Procedure by a Procuring Entity. - - WG approval 18/05/2018 -
epo-not:CompletionNoticeAn announcement of the end of a Procurement by a Buyer.
epo-not:ConcessionAwardNotice-D23
epo-not:ConcessionNotice-D23
epo-not:ContractModificationNoticeAn announcement of the Modification Of a Contract/Concession during its term by a - Procuring Entity.
epo-not:DesignContest-D24
epo-not:DesignContest-D25
epo-not:DesignContestNotice
epo-not:DesignContestResult-D24
epo-not:DesignContestResult-D25
epo-not:DesignContestResultNotice
epo-not:DirectAwardPrenotificationNoticeNotice which sets out the Buyer's purchasing intention to award a Contract without - prior notification of Competition.
epo-not:eFormsNotice
epo-not:Modification-D23
epo-not:Modification-D24
epo-not:Modification-D25
epo-not:Notice1
epo-not:Notice10
epo-not:Notice11
epo-not:Notice12
epo-not:Notice13
epo-not:Notice14
epo-not:Notice15
epo-not:Notice16
epo-not:Notice17
epo-not:Notice18
epo-not:Notice19
epo-not:Notice2
epo-not:Notice20
epo-not:Notice21
epo-not:Notice22
epo-not:Notice23
epo-not:Notice24
epo-not:Notice25
epo-not:Notice26
epo-not:Notice27
epo-not:Notice28
epo-not:Notice29
epo-not:Notice3
epo-not:Notice30
epo-not:Notice31
epo-not:Notice32
epo-not:Notice33
epo-not:Notice34
epo-not:Notice35
epo-not:Notice36
epo-not:Notice37
epo-not:Notice38
epo-not:Notice39
epo-not:Notice4
epo-not:Notice40
epo-not:Notice5
epo-not:Notice6
epo-not:Notice7
epo-not:Notice8
epo-not:Notice9
epo-not:PIN-CFCSocial-D25
epo-not:PIN-CFCSocialNotice
epo-not:PIN-CFCSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:PIN-CFCStandard-D24
epo-not:PIN-CFCStandardNotice
epo-not:PINDefence-D81
epo-not:PINOnly-D24
epo-not:PINOnly-D25
epo-not:PINOnlyNoticePriorInformationNotice
epo-not:PINProfile-D24
epo-not:PINProfile-D25
epo-not:PINProfile-D81
epo-not:PINProfileNotice
epo-not:PIN-RTL-D24
epo-not:PIN-RTL-D25
epo-not:PINTimeLimitNotice
epo-not:PlanningNoticeNotice which sets out the Contracting Authority's purchasing intentions. It is used - by Contracting Authorities to provide Suppliers with information about a Procurement - Process. -
epo-not:PMCNotice
epo-not:QS-D25
epo-not:QSNotice
epo-not:QSNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:ResultNoticeAn announcement of the award or non-award of a Contract by a Buyer. - - (WG approval 27/03/2019)
epo-not:SocialAndOtherSpecificServices-D23
epo-not:SocialAndOtherSpecificServices-D24public contracts
epo-not:StandardFormsNotice
epo-not:Subcontract-D81
epo-not:SubcontractNotice
epo-not:VEAT-D23
epo-not:VEAT-D24
epo-not:VEAT-D25
epo-not:VEAT-D81
epo-not:VoluntaryEx-AnteTransparencyNoticeA Notice informing of the intention to award a Contract without prior publication - of a Contract Notice. - - Additional Information: - - For European Notices above the threshold - - "A means of advertising the intention to award the Contract without opening it up - to formal Competition. A Contracting Authority may decide that a Contract does not - require prior publication through a Contract Notice in the O.J.E.U. A reason for this - decision may be that the Contract meets the exceptional conditions described in Article - 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme - urgency brought about by events unforeseeable by the Contracting Entity and in accordance - with the strict conditions stated in the Directive” . - "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems - that a Contract does not require prior publication of a Contract Notice in the European - Journal (OJEU). This may apply, for example, if the Contract meets the exceptional - conditions justifying direct award of contracts. - - <b>This definition is still to be worked on.</b> -
-

Attributes (datatype properties) names and definitions

- - - - - - - - - - -
Class nameAttribute nameDefinitionData type / cardinality
-

Predicates (object properties) and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Predicate nameDefinitionDomain, Range and Cardinality
epo:announcesAwardDecision epo-not:ResultNotice -> epo:AwardDecision (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision (external) [0..*]
epo:announcesCompletionOfContractepo-not:CompletionNotice -> epo:Contract (external) [1]
epo:announcesContract epo-not:ResultNotice -> epo:Contract (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract (external) [0..*]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice -> epo:Lot (external) [1..*]
epo-not:CompetitionNotice -> epo:Lot (external) [1..*]
epo:announcesLotGroup epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup (external) [0..*]
epo-not:CompetitionNotice -> epo:LotGroup (external) [0..*]
epo:announcesLotGroupAwardInformation epo-not:ResultNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. - - Additional Information: - For example, elements in the Contract Award Notice that should be published at a later - date. epo-not:ResultNotice -> epo:PublicationProvision (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision (external) [0..*]
epo:announcesNoticeAwardInformation epo-not:ResultNotice -> epo:NoticeAwardInformation (external) [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation (external) [0..1]
epo:announcesPlannedProcurementPartepo-not:PlanningNotice -> epo:PlannedProcurementPart (external) [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice -> epo:Procedure (external) [1]
epo-not:CompetitionNotice -> epo:Procedure (external) [1]
epo:announcesReviewObjectepo-not:CompletionNotice -> epo:ReviewObject (external) [1..*]
epo:announcesRole epo-not:CompletionNotice -> epo:AgentInRole (external) [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole (external) [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole (external) [1..*]
epo-not:PlanningNotice -> epo:AgentInRole (external) [1..*]
epo:describesContractModificationepo-not:ContractModificationNotice -> epo:ContractModification (external) [0..*]
epo:describesResultNotice epo:NoticeAwardInformation (external) -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation (external) -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:hasFormType epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
epo:hasImplementingRegulation epo-not:eFormsNotice -> (EU) 2019/1780 [0..1]
epo-not:StandardFormsNotice -> (EU) 2015/1986 [0..1]
epo:hasLegalBasis epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
epo:hasNoticeType epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
epo:refersToAwardDecision epo-not:CompletionNotice -> epo:AwardDecision (external) [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision (external) [0..*]
epo:refersToContractToBeModifiedepo-not:ContractModificationNotice -> epo:Contract (external) [1]
epo:refersToLot epo-not:CompletionNotice -> epo:Lot (external) [1..*]
epo-not:ContractModificationNotice -> epo:Lot (external) [1..*]
epo-not:ResultNotice -> epo:Lot (external) [1..*]
epo:refersToLotGroup epo-not:CompletionNotice -> epo:LotGroup (external) [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup (external) [0..*]
epo-not:ResultNotice -> epo:LotGroup (external) [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo:refersToNonPublishedElementepo-not:CompletionNotice -> epo:PublicationProvision (external) [0..*]
epo:refersToNoticeAwardInformationepo-not:CompletionNotice -> epo:NoticeAwardInformation (external) [0..1]
epo:refersToProcedure epo-not:CompletionNotice -> epo:Procedure (external) [1]
epo-not:ContractModificationNotice -> epo:Procedure (external) [1]
epo-not:ResultNotice -> epo:Procedure (external) [1]
epo:refersToRoleepo-not:CompletionNotice -> epo:AgentInRole (external) [0..*]
epo-not:announcesRoleepo-not:ResultNotice -> epo:AgentInRole (external) [0..*]
epo-not:hasLegalBasisepo-not:Modification-D24 -> Directive 24 [0..1]
epo-not:refersToRoleepo-not:ResultNotice -> epo:AgentInRole (external) [1..*]
-
-
- - \ No newline at end of file diff --git a/glossary/ontologies-combined-glossary.html b/glossary/ontologies-combined-glossary.html deleted file mode 100644 index 3871f65..0000000 --- a/glossary/ontologies-combined-glossary.html +++ /dev/null @@ -1,6393 +0,0 @@ - - - - - - - - - - - - - - - - Model glossary - - -
-
-
-

Table of contents

-
-
-
-

Glossary

-

Class names and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Class nameDefinition
adms:IdentifierA character string to identify and distinguish uniquely, one instance of an object - in an identification scheme from all other objects in the same scheme together with - relevant supplementary information.
cccev:ConstraintLimitation applied to an Information Concept. - - Additional Information: - Constraints are Requirements in themselves, since they impose prerequisites which - influence the definition, use and/or Fulfilment of the Requirement. They represent - hard conditions such as minimum or maximum expressions which can be used to evaluate - pieces of information, the required age, income, involvement in activities, etc. An - example from the eProcurement domain is a threshold as the minimum turnover required - by the buying Organisation to select the Candidates. Note that CCCEV does not provide - any specific guidance on when which kind of Requirement should be used. Users of this - vocabulary should make decisions on this topic in their specific context.
cccev:CriterionCondition for evaluation or assessment. - - Additional Information: - In general, Criteria are used for comparison, filtering or Selection purposes. Criteria - usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need - to be met in order to pass the Requirements or to fulfil them to a certain degree - or quality. The concept of Criteria is broader than the concept of Constraint since - it covers more usages. The evaluation of the fulfilment is usually supported by the - provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology - defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria - or Award Criteria. A concrete example of a Criterion is 'participation in a criminal - organisation' which could also be considered as an Exclusion Ground Criterion in the - procurement domain or for requiring a public service.
cccev:EvidenceProof that a Requirement is met. - -
cccev:InformationConceptPiece of information that the Evidence provides or the Requirement needs.
cccev:RequirementCondition or prerequisite that is to be proven by Evidence. - - Additional Information: - Requirement is a generic class representing any type of prerequisite that may be desired, - needed or imposed as an obligation. CCCEV recommends to not use the Requirement class - directly, but rather a more semantically-enriched subclass such as Criterion, Information - Requirement or Constraint. Also note that the Requirement class is specified at a - more abstract level and is not to be used as the instantiation of a Requirement for - a specific Agent. - To illustrate the notion: the European Directive on services in the internal market - defines requirement as any obligation, prohibition, condition or limit provided for - in the laws, regulations or administrative provisions of the Member States or in consequence - of case-law, administrative practice, the rules of professional bodies, or the collective - rules of professional associations or other professional Organisations, adopted in - the exercise of their legal autonomy. - To stay consistent to how identification is realised in the eProcurement ontology, - we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification.
cpov:ContactPointInformation (e.g. e-mail address, telephone number) of a Person or department through - which the user can get in touch with. - - Additional information: - This class represents the contact information for a Public Service, Channel, Public - Organisation, etc. - The Contact Point could be a role, email address, telephone number, etc. - - WG approval 5/11/2019
cpov:PublicOrganisationAn Organisation that is defined as being part of the public sector by a legal framework - at any level. - - Additional information: - A body governed by public law: - - (a) established for the specific Purpose of meeting needs in the general interest - - (b) having legal personality; - - (c) financed, for the most part by the State, or regional or local authorities. - - - Examples of Public Organisations are municipality, international public body, ministry, - others. - - WG Approval 28/04/2020
cpv:PersonA individual human being who may be dead or alive, but not imaginary. -
cv:ChannelA medium through which Agents interact. - - Additional Information - Typical examples include online services, email, endpoint on eDelivery infrastructure, - phone, etc. - - Software solutions and electronic devices for communication and exchange of information - between Buyers and economic Operators. - Lots may use ad-hoc electronic means of communication that are not generally available - such as specific solutions for secure and dedicated communication or non-standard - eCatalogues. - - See also Directive recitals 53 to 56. - - WG approval 2023-02-14
dct:LocationAn identifiable geographic place or named place.
epo:AccessTermConditions and stipulations about where and how to access the Procurement Documents. - - WG Approval 09/03/2021 - -
epo:AcquiringCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of - the acquisition of supplies and/or services intended for other Buyers. - Additional Information: - In Public Procurement the Role of Acquiring Central Purchasing Body is carried out - by a Central Purchasing Body for other Contracting Authorities. - - WG approval 05/08/2021 -
epo:AcquiringPartyThe Role of an Agent that acts on the buying side of a Procurement Process. -
epo:AdHocChannelWeb page where tools and devices for electronic communication that are not generally - available can be downloaded free of charge. - - Additional Information: - - This corresponds in eForms to BT-724 Tool Atypical. - - - WG Acceptance 10/01/2023 -
epo:AgentInRoleRelative concept that ties an Agent to a part they play in a given Situational Context. - - Additional information: - The classification of roles is based is based on the degree of involvement into the - Procurement Process: - - Primary (Procurement) Pole is directly involved in the Procurement Process; - - Secondary (Procurement sub-) Role is secondary to the Procurement Process - - Tertiary (Related) Role is not involved in the Procurement Process.
epo:AuxiliaryPartyRole of an Agent who may be mentioned in the information exchanged during the Procurement - Process but who does not play an active part in it.
epo:AwardCriteriaSummary
epo:AwardCriterionCriterion that describes a Requirement that the Tender needs to resolve and on which - the Tender is evaluated and ranked. - - WG approval 05/11/2018
epo:AwardDecisionResolution of the Buyer as to the result of the Procurement Procedure. - - WG approval 14/11/2018
epo:AwarderA Role of an Agent that signs the Award Decision.
epo:AwardEvaluationTermConditions and stipulations defining particularities of the evaluation of Award Criteria.
epo:AwardingCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of - the award of Public Contracts or the conclusion of Framework Agreements for works, - supplies or services intended for other Buyers. - Additional Information: - In Public Procurement the Role of Awarding Central purchasing Body is carried out - by a Central Purchasing Body for other Contracting Authorities. - - WG approval 05/08/2021 -
epo:BudgetProviderA role of an agent whose Budget is used to pay for the Contract.
epo:BusinessA private law company registered in a national registry. - - WG Approval 28/04/2020 - -
epo:BuyerA Role of an Agent that awards a Contract and/or purchases items. - - Additional information: - In Public Procurement the Role of Buyer is carried out by the following types of Organisation: - Contracting Authority, Contracting Entity, a defense Contractor, an international - Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. - In Pre-Award, the Buyer generally awards the Contract, however future purchasers may - be foreseen. - In Post-Award the buyer generally refers to the purchaser of items.
epo:CandidateThe Role of an Agent that has sought an invitation or has been invited to take part - in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated - Procedure without prior publication, in a competitive dialogue or in an innovation - partnership. - - WG approval 30/05/2023
epo:CatalogueProviderA Role of an Agent compiling and supplying a Catalogue. - - Additional Information: - - The Catalogue Provider Role is usually played by the Agent that acts as a Seller, - or by another Agent that acts on behalf of the Seller. - - WG Approval 28/01/2021 -
epo:CatalogueReceiverA Role of an Agent processing a Catalogue. - - Additional Information: - The Catalogue Receiver may not only receive it but also validate it, process it, etc. - - The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or - by another Agent that acts on behalf of the Buyer. - - WG Approval 28/01/2021
epo:CentralPurchasingBodyRole of an Agent that provides centralised purchasing activities and, possibly, ancillary - purchasing activities for other Buyers. - - Additional Information: - In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting - Authority for other Contracting Authorities. - Contracting Authority procuring activities conducted on a permanent basis, in one - of the following forms:[...](b) the award of Public Contracts or the conclusion of - Framework Agreements for works, supplies or services intended for Contracting Authorities; - - WG approval 05/08/2021
epo:ConcessionContractA Contract between one or more Buyers and one or more Economic Operators giving the - right to the Economic Operators to exploit the rights foreseen in the Contract which - may include the receipt of Payments. - - WG Approval 24/05/2022
epo:ConcessionEstimate
epo:ContextSpecificDescriptionA description concerning a Procurement Object or a Notice in a specific Situation - Context. - - Additional Information: - The description has its own identity (+I) but is dependent (+D) on the concerned Entity. - - - We say that ContextSpecificDescription *concerns* an Entity. -
epo:ContextualProjectionProjection of an Entity and all of its properties that hold in a given Situation Context. - - - Additional Information: - The contextual projection does not have its own identity (-I), is dependent (+D) - on the described Entity, and is anti-rigid (~R) - - We say that ContextualProjection *describes* an Entity. - - Adaptation of ContextSlices pattern encoding a 4D view. - http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices
epo:ContractA voluntary, deliberate, and legally binding agreement between two or more competent - parties. - - Additional information: - This includes Concession Contracts. - - (WG approval 01/06/2018)
epo:ContractLotCompletionInformationInformation related to a given Lot at the end of the procurement.
epo:ContractModificationAn Announcement of the Modification Of a Contract/Concession during its Term by a - Buyer.
epo:ContractorThe Role of an Agent that has signed a Contract with a Buyer. - - WG approval 08/11/2022
epo:ContractSpecificTermGathering class for conditions and stipulations related to a contract in the Post-Award - Phase.
epo:ContractTermConditions and stipulations defining particularities of the Post Award Phase. - - (WG approval 23/11/2018) -
epo:DesignContestRegimeTermConditions and stipulations defining particularities of a Design Contest. - - WG approval: 04-02-2021
epo:DirectAwardTermConditions and stipulations defining particularities of the award of a Contract without - prior publication. - - Addtional Information: - - Direct award may refer to a previous Procedure and/or specific Lot(s). - - It may also refer to other justified situations whereby there is no previous Procedure. - - See Directive 2014/24/EU Article 32. - - WG Approval 22/11/2019 - - -
epo:DirectContract
epo:DocumentA set of interrelated Business Information representing the Business facts and associated - metadata. - The information may be conveyed in any language, medium or form, including textual, - numerical, graphic, cartographic, audio-visual forms, etc. - - WG Approval 23/05/2019 -
epo:DurationThe length of time in which a concept occurs.
epo:DynamicPurchaseSystemTechniqueA Technique that allows the selection of Candidates throughout the Procedure via the - Qualification Criteria, followed by individual Mini-Competitions for the Award of - Purchase Contracts. - - WG approval 23/05/2023
epo:DynamicPurchasingSystemAn electronic System that is set up by a Buyer which lists the Economic Operators - that satisfy the Qualification Criteria, which may later be put into competition via - a Mini-Competition in view of awarding a Purchase Contract. - - WG approval 23/05/2023 -
epo:EAuctionTechniqueA repetitive Technique in which new Prices, revised downwards, and/or new values concerning - certain elements of Tenders are bid on-line. - - Additional Information: - This corresponds in eForms to BT-767 Electronic Auction . - - WG approval 20/07/2018
epo:EconomicStandingSummary
epo:ElectronicSignature
epo:ElementChangeDescriptionInformation about a specific field to be changed with regard to a previous Notice.
epo:ElementConfidentialityDescriptionInformation about a specific field not intended for publication. - - Additional Information: - In the model, a field is identified by a combination of a class and a property on - that class. Therefore, these two references should be both provided. -
epo:ElementDescriptionDescription about a specific resource.
epo:ElementModificationDescriptionInformation about a specific field to be changed with regard to the Modification Of - a Contract.
epo:EmploymentInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory - framework for employment protection and working conditions.
epo:EnvironmentalProtectionInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory - framework for Environmental Protection.
epo:EstimateAn approximate calculation or a judgement of the value, number, Quantity or extent - of something.
epo:EvaluationTermConditions and stipulations defining particularities of the Tender evaluation. - - (WG approval 23/11/2018) - - -
epo:ExclusionGroundCriterion that describes a legal Requirement to be met by the Economic Operator to - be a Candidate in the Procurement. - - Additional Information: - This corresponds in eForms to BG-701 Exclusion Grounds. - - WG approval 31/10/2018
epo:ExclusionGroundsSummary
epo:ExpressionOfInterestDocument presenting an Economic Operator's Request to be considered for Procedures - covering a specific domain. - WG approval 13/04/2021
epo:FrameworkAgreementAn agreement between one or more Contracting Authorities and one or more Economic - Operators. - - Additional Information: - When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which - describes a Lot which specifies the both the Qualification and Award Criteria. - - WG approval 18/05/2021
epo:FrameworkAgreementTechniqueTechnique that establishes the terms governing Contracts to be awarded during a given - Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. - - WG approval 18/05/2021
epo:FrameworkAgreementTermConditions and stipulations defining particularities in a Framework Agreement.
epo:FundA financial resource used to support the Procurement. - - Additional Information: - - In the context of EU, Funds can be divided into programmes, actions and projects. - - Examples of EU funds are: the European Structural and Investment Funds, European Social - Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme - and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which - supports the eProcurement Ontology under sub-action 3). - - Funds may change between the lot and the contract, for example in the case of an emergency - crisis, a contract may be financed by a budget that was not foreseen in the call. - - WG Approved 14/05/2019 - - - - -
epo:GreenProcurementApproach whereby Buyers seek to procure with a reduced Environmental Impact. - - Additional Information: - - The approach may apply to the complete life cycle. The reduced Environmental Impact - is in comparison to goods, services and works with the same primary function that - would otherwise be procured. - - Tightly related are article 68 - Life-cycle costing and article 67 - most economically - advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf - An instance of the class GreenProcurement is represented in eForms with the code "env-imp" - defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf
epo:IndefiniteDuration
epo:InnovativeProcurementAn instance of the class InnovativeProcurement is represented in eForms with the code - "inn-pur" defined in the codelist Strategic-Procurement. - - Research (21/01/2020): - - Purchasing and early adoption of solutions which are not yet available on large scale - commercial basis. - - Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative - Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions - - Additional Information: - ‘innovation’ means the implementation of a new or significantly improved product, - service or process, including but not limited to production, building or construction - processes, a new marketing method, or a new organizational method in business practices, - workplace Organisation or external relations inter alia with the purpose of helping - to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable - and inclusive growth; - See: Directive 2014/24 - Articles: 2, 26 (3), 31, 67 (2.a) - - Question: - Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?
epo:JuryMember
epo:LeadBuyerA Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. - - - WG agreement: 2022-11-22
epo:LotA qualitative, quantitative or strategic subdivision of the goods, services or works - to be procured, allowing the award of one or more Contracts. - - WG approval 12/09/2018
epo:LotAwardDecisionResult concerning the Lot attributed by the Awarder.
epo:LotGroupCombination of several Lots to conduct comparative assessment of the Tenders. - - Additional Information: - - The comparative assessment may refer to the Selection Criteria, Award and Value that - apply to several Lots. - - Pending of discussion with eForms - - - - Member States may provide that, where more than one lot may be awarded to the same - tenderer, contracting authorities may award contracts combining several or all lots - where they have specified in the contract notice or in the invitation to confirm interest - that they reserve the possibility of doing so and indicate the lots or groups of lots - that may be combined.
epo:LotGroupAwardInformationAward information related to a given Group of Lots.
epo:LotSpecificTermGathering class for conditions and stipulations related to a Lot.
epo:MediatorA Role of an Agent that attempts to resolve a dispute between different Agents - and come to an agreement. - WG approval 20/04/2021
epo:MiniCompetitionA process where multiple winners or candidates of previous stages of a procedure bid - for a specific procurement. - - Additional Information: - It is typically used in framework agreements where the suppliers have already been - pre-selected, and the mini competition is used to determine which supplier is best - suited for a particular project or contract. - It is also used in a Dynamic Purchasing System where the suppliers come from a list - of Candidates. - - WG approval 30/05/2023
epo:MiniCompetitionAwardDecisionResult concerning the Mini-Competition attributed by the Awarder. -
epo:MonetaryValueA number of monetary units specified using a given unit of currency. - - Additional information: - In the pre-award phase of the procurement, all monetary values are considered to exclude - VAT based on the Directive 2014/24/EU. - - WG approval 13/04/2021 -
epo:MultipleStageProcedureTermConditions and stipulations defining particularities of Procedures carried out in - several steps - Additional Information: - Generally this refers to Procedures where selection is carried out to qualify Tenderers - who are then requested to submit the rest of their Tender for evaluation is Restricted - Procedure. - WG Approval 15/04/2021
epo:NonDisclosureAgreementTermConditions and stipulations
epo:NoticeDocument published by the Buyer about market opportunities and results. - - WG Approval 23/05/2019 -
epo:NoticeAwardInformationInformation about an Award Notice.
epo:NoticeChangeInformation about a corrigendum in a Notice.
epo:NoticeDescriptionDescriptions about the notice publishing, or providing evolutions of resources.
epo:OfferDocument providing the Monetary Value and the details to fulfill the Requirements - set out in the Procurement Documents or Request for Offer. - - Additional information: - A quotation is considered to be an Offer in the eProcurement Ontology. - - WG approval 09/02/2023
epo:OfferingPartyThe Role of an Agent that acts on the Economic Operator side during a Procurement - Process. - - Additional information: - As per the European Procurement Directives the notion of ‘Economic Operators’ should - be interpreted in a broad manner so as to include any Persons and/or Entities which - offer the execution of works, the supply of products or the provision of services - on the market, irrespective of the legal form under which they have chosen to operate. - Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited - companies, universities, public or private, and other forms of entities than natural - Persons should all fall within the notion of Economic Operator, whether or not they - are ‘Legal Persons’ in all circumstances.
epo:OfferIssuerThe Role of an Agent that distributes an Offer. - - WG approval 09/02/2023
epo:OfflineAccessProviderA Role of an Agent responsible for providing offline access to the Procurement Documents.
epo:OpeningTermConditions and stipulations defining particularities of the opening of Tenders. - Additional Information: - The opening of Tenders is the event when Tenders are made accessible for evaluation, - it is generally the same date and time for all Tenders. - WG Approval 15/04/2021
epo:OrganisationGroupAgreed collaboration of several Organisations. - Additional Information: - This concept has been created to fulfill the need to represent a grouping of Organisations - that is not necessarily registered i.e, consortia. - WG approval 15/04/2021
epo:OriginatorRequestDocument in which the Originator describes his needs. - - WG approval 09/02/2023
epo:OtherEntityEconomic Operator (who is not a Subcontractor) on which the Tenderer relies upon, - to meet Selection Criteria.
epo:ParticipationConditionCriterion that describes a Requirement to take part in a procurement. - - WG approval 30/05/2023
epo:ParticipationConditionsSummary
epo:ParticipationRequestProcessorA Role of an Agent responsible for processing Requests To Participate.
epo:ParticipationRequestReceiverA Role of an Agent responsible for receiving Requests To Participate.
epo:ParticipationRequestTermConditions and stipulations defining particularities of requesting participation in - a Procedure.
epo:PaymentExecutorA Role of an Agent responsible for executing the Payment.
epo:PeriodA time interval or a Duration. - - (WG approval 28/04/2020) -
epo:PlannedProcurementPartA subdivision of a Planned Procurement that may later become one or more Lots or a - self-standing Procedure. A Lot or a Procedure can also cover one or more parts of - the Planned Procurement. - - WG Approval 20/06/2019
epo:PrizeA reward given in a Contest. - WG approval: 15/04/2021
epo:ProcedureA legally defined set of administrative activities conducted to conclude one or more - Contracts. - - Additional Information - The Procedure is categorised in the law according to different rules determining whether - the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see - Procedure Type). - - WG Approval 20/08/2019 -
epo:ProcedureSpecificTermGathering class for conditions and stipulations related to a Procedure.
epo:ProcedureTermConditions and stipulations defining particularities of the Procedure. - - (WG approval 23/11/2018)
epo:ProcessPlanningTermConditions and stipulations defining particularities of the unfolding of the Procurement - Process.
epo:ProcurementCriteriaSummaryWG approval 24/01/2023
epo:ProcurementCriterionA criterion specific to Procurement. - - Additional Information: - - This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award - Criterion. Each of these Criteria can contain subcriteria (Criterion class). - - WG Approval 23/04/2020
epo:ProcurementDocumentDocument produced or referred to by the Buyer to describe or determine elements of - the Procurement. - - Additional information: - - Procurement Documents are to be accessible since the date of publication of the Contract - Notice or the prior information Notice when used as a call for competition. - - Examples of Procurement Documents are Technical Specifications, the Descriptive Document, - proposed conditions of Contract, formats for the presentation of Documents by Candidates - and Tenderers, information on generally applicable obligations. - - Other Documents related to the Procedure such as Notices are not considered to be - Procurement Documents. - - WG Approval 23/05/2019 17:08:30
epo:ProcurementElementGathering class for critical/central elements in the Procurement Process. - - TODO: add definition - Additional information: - Alias: ProcurementComponent
epo:ProcurementObjectThe whole or a division of goods, services or works to be procured. - - Additional Information: - Anything that can specify the procurement content (i.e. goods, services, work) is - a Procurement Object. - In a sense, such an "object" can constitute the "object of a Contract". - To test whether something is a Procedure Object check if it can have a Purpose and/or - CPV classification (<i>The CPV establishes a single classification system for public - procurement aimed at standardising the references used by Contracting Authorities - and entities to describe the subject of Procurement Contracts.</i>). - - Note: - Procedure, seems to be an exception from this rule. Because it is a conflated term: - it carries process properties and "purpose" properties.
epo:ProcurementProcedureInformationProviderA Role of an Agent responsible for providing additional information about the Procurement - Procedure.
epo:ProcurementProcessInformationInformation about the temporal unfolding or succession of Procurement Objects.
epo:ProcurementServiceProviderRole of a public or private body which offers ancillary purchasing activities on the - market. - - Additional information - - "Ancillary Purchasing Activities" means activities consisting in the provision of - support to purchasing activities, in particular in the following forms: - (a) technical infrastructure enabling Contracting Authorities to award Public Contracts - or to conclude Framework Agreements for works, supplies or services; - (b) advice on the conduct or design of public Procurement Procedures; - (c) preparation and management of Procurement Procedures on behalf and for the account - of the Contracting Authority concerned; - - Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. - - This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity - managing the Procurement, which may be different from the Buyer who is paying / using - the items being procured'. - - WG Approval 24/03/2020 -
epo:ProfessionalSuitabilitySummary
epo:ProjectA collaborative enterprise that is carefully planned to achieve a particular aim.
epo:PublicationProvisionInformation about fields not intended for publication. - - - Additional Information: - The non-published information may become available at a later date and may differ - from one element to another within a given Document. - - Examples of fields that may not be immediately published are Winner, Tender and Procedure - Lot Result, etc., e.g. for security reasons. - - WG Approval 16/05/2019 - - - - -
epo:PurchaseContractA Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract.
epo:PurposeThe description of the objectives related to a Procurement. - - Additional information: - - The description of the objectives includes the Subject Matter and Quantities. - - - The quantification of the objectives related to a procurement. - - To be re-reviewed by the WG the soonest. - - (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) - - The old definition read as follows: - - The description of the objectives related to a procurement. - - (WG approval 05/12/2018) -
epo:QualificationCriteriaSummary
epo:QualificationCriterionCriterion used in the first stage of procurement. - - WG approval 30/05/2023
epo:QuantityA counted number of non-monetary units possibly including fractions. -
epo:RequestForClarificationA demand for elucidation of received information. - Additional Information: - Requests for clarification are usually used by Buyers during the process of award - or evaluation to understand specific aspects of the Tender without altering the Tender. - WG approval 20/04/2021
epo:RequestForParticipationApplication of an Economic Operator to be included in a Procurement Procedure. - WG approval: 20/04/2021
epo:ReviewDecisionInformation about Review Decisions.
epo:ReviewerRole of an Agent who investigates the overall correctness of a Procurement Procedure, - producing a related report. - Additional Information: - Any Organisation or Person may request a review of a Procurement Procedure. - WG approval: 20/04/2021
epo:ReviewIrregularitySummaryInformation about the number and type of requests the Buyer received to review any - of its decisions (e.g. the Technical Specifications, Award Decision). - - Additional information: - This class corresponds in eForms to BG-613 Buyer Review Requests. - - -
epo:ReviewObjectInformation about a Review Request or a Review Decision. - - Additional information: - This class corresponds to the BG-714 Review in eForms. - -
epo:ReviewProcedureInformationProviderA Role of an Agent who is providing more information on the time limits for review - Procedures.
epo:ReviewRequestInformation about requests to review procedures.
epo:ReviewRequesterRole of an Agent who requests the review of a (Procurement) Procedure. - - WG Approval 23/10/2021
epo:ReviewRequestSummarySummary information about the requests the Buyer received to review any of its decisions - (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive - 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the - requests. - - Additional information: - This class corresponds in eForms to BG-612 Buyer Review Summary.
epo:SecurityClearanceTermConditions and stipulations about the status requested of individuals allowing them - access to classified information (state or organisational secrets) or to restricted - areas, after completion of a thorough background check. - - Additional information: - This corresponds in eForms to BT-578, BT-78, BT-732 . - - WG approval 20/06/2023 -
epo:SelectedCandidateListRecord of Candidates admitted to take part in award phases of procurements. - - WG approval 30/05/2023
epo:SelectionCriteriaSummary
epo:SelectionCriterionCriterion that describes a capacity Requirement that the Economic Operator needs to - fulfill to participate in the procurement. - - Additional Information: - Selection criteria may relate to: - (a) suitability to pursue the professional activity; - (b) economic and financial standing; - (c) technical and professional ability - - WG approval 31/10/2018
epo:SelectionEvaluationTermConditions and stipulations defining particularities of the evaluation of Selection - Criteria.
epo:SocialProcurementAn instance of the class SocialProcurement is represented in eForms with the code - "soc-obj" defined in the codelist Strategic-Procurement. - - - Research (21/01/2020): - Socially Responsible Public Procurement (SRPP): - - ‘SRPP’ means Procurement Operations that take into account one or more of the following - social considerations: employment opportunities, decent work, compliance with social - and labour rights, social inclusion (including persons with disabilities), equal opportunities, - accessibility design for all, taking account of sustainability criteria, including - ethical trade issues and wider voluntary compliance with corporate social responsibility - (CSR), while observing the principles enshrined in the Treaty for the European Union - (TFEU) and the Procurement Directives. - Source: Buying Social - A Guide to Taking Account of Social Considerations in Public - Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en - See Article 18 and Annex X Directive 2014/24.
epo:SpecificDuration
epo:StatisticalInformationStatistical data on the Procedure and the Lot. - - Additional Information - - At the present time Procurement Procedures are not fully electronic. At a later date, - information on the Tenders received could be inferred by the data in the eProcurement - System. - Therefore this class is temporal and should cease to exist in fully electronic Procurement. - The need for its presence responds also to the alignment with the Regulation (EU) - 2019/1780 (eForms). - - Attention will have to be paid in the future to possible inconsistencies derived from - data placed in other classes and data held in the Statistical Information class; e.g. - the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender - indicator, which in case of being false, may enter in contradiction with the highest - or lowest Tender value for that very same inadmissible Tender. - - WG Approval 12/12/2019 -
epo:StrategicProcurementPublic Procurement that contributes to achieving pressing policy goals. - - Additional Information: - Specific strategic goals could be, for example, Environmental Protection, innovation, - job creation and the development of small and medium enterprises. - - This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given - by the choices in BT-06 Strategic Procurement. - - Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph - on "background information". - - WG Approval 10/03/2020
epo:SubcontractingEstimateInformation on the approximation of the foreseen Subcontracting.
epo:SubcontractorA Role of an Agent that has an agreement to perform part or all of the obligations - of another Agents's Contract. - Additional information - For some Procedures, the Subcontractor signs as well the Contract between the Buyer - and the Contractor. - - At tendering time, entities relied upon by the Economic Operators can be Subcontractors - or not. - - When modelling ESPD we well analyze whether we need or not a Role named "relied upon". - - WG approval 05/08/2021 -
epo:SubcontractTermA concept to describe the main information regarding the share of parts of the Contract - to third parties.
epo:SubmissionStatisticalInformationStatistical information about submissions on a given competition, either at Lot level - or Mini-Competition level. - - WG approval 30/05/2023
epo:SubmissionTermConditions and stipulations defining particularities of submitting Documents to the - Buyer. - - Additional Information: - These Documents can be Tenders, Request To Participate and expressions of interest. - - WG Approval 14/07/2020
epo:SystemSoftware application used for performing Procurement activities. - - WG Approval 28/04/2020 - -
epo:TaxInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory - framework for taxes.
epo:TechnicalAbilitySummary
epo:TechniqueMethod used for conducting Procurement Procedures. - - Addtional information: - This corresponds in eForms to BG-706 Techniques. - - Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction - can be carried out in a Framework Agreement or DPS). - - WG Approval 19/09/2019 -
epo:TenderInformation submitted by the Economic Operator to specify its Offer regarding a specific - Lot, in response to the call for Tender. - - (WG approval 03/05/2022) - - -
epo:TenderAwardOutcomeResult concerning the Tender attributed by the Awarder.
epo:TendererA Role of an Agent that has submitted a Tender. - - Additional Information: - A Tenderer is an Economic Operator or group of Economic Operators that has submitted - a Tender. - WG approval 05/08/2021
epo:TenderGroupSpecific Offer in response to a Lot Group. - - Additional Information: - This class is generally used to provide the Monetary Value in response to a Lot Group. -
epo:TenderProcessorA Role of an Agent responsible for processing Tenders.
epo:TenderReceiverA Role of an Agent responsible for receiving Tenders.
epo:TermA governing condition or stipulation.
epo:WinnerA Role of an Agent to whom a Lot is awarded. - WG approval 05/08/2021 (revised 26/10/2021)
epo-not:CANDefence-D81
epo-not:CANSocial-D25
epo-not:CANSocialNotice
epo-not:CANSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:CANStandard-D24
epo-not:CANStandardNotice
epo-not:CNDefence-D81
epo-not:CNSocial-D25
epo-not:CNSocialNotice
epo-not:CNSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:CNStandard-D24
epo-not:CNStandardNotice
epo-not:CompetitionNoticeAn announcement of the launch of a Procurement Procedure by a Procuring Entity. - - WG approval 18/05/2018 -
epo-not:CompletionNoticeAn announcement of the end of a Procurement by a Buyer.
epo-not:ConcessionAwardNotice-D23
epo-not:ConcessionNotice-D23
epo-not:ContractModificationNoticeAn announcement of the Modification Of a Contract/Concession during its term by a - Procuring Entity.
epo-not:DesignContest-D24
epo-not:DesignContest-D25
epo-not:DesignContestNotice
epo-not:DesignContestResult-D24
epo-not:DesignContestResult-D25
epo-not:DesignContestResultNotice
epo-not:DirectAwardPrenotificationNoticeNotice which sets out the Buyer's purchasing intention to award a Contract without - prior notification of Competition.
epo-not:eFormsNotice
epo-not:Modification-D23
epo-not:Modification-D24
epo-not:Modification-D25
epo-not:Notice1
epo-not:Notice10
epo-not:Notice11
epo-not:Notice12
epo-not:Notice13
epo-not:Notice14
epo-not:Notice15
epo-not:Notice16
epo-not:Notice17
epo-not:Notice18
epo-not:Notice19
epo-not:Notice2
epo-not:Notice20
epo-not:Notice21
epo-not:Notice22
epo-not:Notice23
epo-not:Notice24
epo-not:Notice25
epo-not:Notice26
epo-not:Notice27
epo-not:Notice28
epo-not:Notice29
epo-not:Notice3
epo-not:Notice30
epo-not:Notice31
epo-not:Notice32
epo-not:Notice33
epo-not:Notice34
epo-not:Notice35
epo-not:Notice36
epo-not:Notice37
epo-not:Notice38
epo-not:Notice39
epo-not:Notice4
epo-not:Notice40
epo-not:Notice5
epo-not:Notice6
epo-not:Notice7
epo-not:Notice8
epo-not:Notice9
epo-not:PIN-CFCSocial-D25
epo-not:PIN-CFCSocialNotice
epo-not:PIN-CFCSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:PIN-CFCStandard-D24
epo-not:PIN-CFCStandardNotice
epo-not:PINDefence-D81
epo-not:PINOnly-D24
epo-not:PINOnly-D25
epo-not:PINOnlyNoticePriorInformationNotice
epo-not:PINProfile-D24
epo-not:PINProfile-D25
epo-not:PINProfile-D81
epo-not:PINProfileNotice
epo-not:PIN-RTL-D24
epo-not:PIN-RTL-D25
epo-not:PINTimeLimitNotice
epo-not:PlanningNoticeNotice which sets out the Contracting Authority's purchasing intentions. It is used - by Contracting Authorities to provide Suppliers with information about a Procurement - Process. -
epo-not:PMCNotice
epo-not:QS-D25
epo-not:QSNotice
epo-not:QSNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:ResultNoticeAn announcement of the award or non-award of a Contract by a Buyer. - - (WG approval 27/03/2019)
epo-not:SocialAndOtherSpecificServices-D23
epo-not:SocialAndOtherSpecificServices-D24public contracts
epo-not:StandardFormsNotice
epo-not:Subcontract-D81
epo-not:SubcontractNotice
epo-not:VEAT-D23
epo-not:VEAT-D24
epo-not:VEAT-D25
epo-not:VEAT-D81
epo-not:VoluntaryEx-AnteTransparencyNoticeA Notice informing of the intention to award a Contract without prior publication - of a Contract Notice. - - Additional Information: - - For European Notices above the threshold - - "A means of advertising the intention to award the Contract without opening it up - to formal Competition. A Contracting Authority may decide that a Contract does not - require prior publication through a Contract Notice in the O.J.E.U. A reason for this - decision may be that the Contract meets the exceptional conditions described in Article - 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme - urgency brought about by events unforeseeable by the Contracting Entity and in accordance - with the strict conditions stated in the Directive” . - "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems - that a Contract does not require prior publication of a Contract Notice in the European - Journal (OJEU). This may apply, for example, if the Contract meets the exceptional - conditions justifying direct award of contracts. - - <b>This definition is still to be worked on.</b> -
foaf:AgentA Person, an Organisation, or a System that acts in Procurement or have the power - to act in Procurement. - - WG Approval 28/04/2020
foaf:PersonThe Person class represents people. Something is a Person if it is a Person. We don't - nitpick about whether they're alive, dead, real, or imaginary. The Person class is - a sub-class of the Agent class, since all people are considered 'Agents' in FOAF.
locn:AddressThe particulars of the place where a Person or an Organisation is located. - - WG Approval 28/04/2020 - - Additional Information: - An "Address Representation" as conceptually defined by the INSPIRE Address Representation - data type: "Representation of an address spatial object for use in external application - schemas that need to include the basic, address information in a readable way.". - - - The representation of Addresses varies widely from one country's postal System to - another. Even within countries, there are almost always examples of Addresses that - do not conform to the stated national standard. At the time of publication, work is - progressing on ISO 19160-1 that defines a method through which different Addresses - can be converted from one conceptual model to another. - - - This specification was heavily based on the INSPIRE Address Representation data type. - It is noteworthy that if an Address is provided using the detailed breakdown suggested - by the properties for this class, then it will be INSPIRE-conformant. To this very - granular set of properties, we add two further properties: - - - full address (the complete address as a formatted string) - - addressID (a unique identifier for the address) - The first of these allows publishers to simply provide the complete Address as one - string, with or without formatting. This is analogous to vCard's label property. - - The addressID is part of the INSPIRE guidelines and provides a hook that can be used - to link the Address to an alternative representation, such as vCard or OASIS xAL.
locn:GeometryThe Geometry class provides the means to identify a Location as a point, line, polygon, - etc. expressed using coordinates in some coordinate reference System. - - Additional Information: - This class defines the notion of "Geometry" at the conceptual level, and it shall - be encoded by using different formats (see usage note of the locn:geometry property). - We also refer to the Examples section of this specification for a number of different - Geometry examples expressed in different formats.
org:OrganizationA collection of people organized together into a community or other social, commercial - or political structure. The group has some common purpose or reason for existence - which goes beyond the set of people belonging to it and can act as an Agent. Organisations - are often decomposable into hierarchical structures. - - (WG approval 23/11/2018). -
owl:ThingAny individual in the domain of discourse is a Thing. - - - Additional Information: - - The most basic concepts in a domain should correspond to classes that are the roots - of various taxonomic trees. Every individual in the OWL world is a member of the class - owl:Thing.
-

Attributes (datatype properties) names and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Class nameAttribute nameDefinitionData type / cardinality
adms:Identifieradms:schemaAgencyThe name of the agency that issued the identifier.rdf:PlainLiteral [0..*]
cccev:Criterioncccev:biasParameter used to adjust the evaluation of the Criterion. - - Additional Information: - The bias parameter tries to correct a systematic error. For example in procurement, - a home bias corresponds to the "presence of local preferences distorting international - specialisation and resource allocation". When quantified, this systematic error can - be removed.xsd:decimal [0..1]
cccev:Criterioncccev:weightRelative importance of the Criterion. - - Additional Information: - The weight must be between 0 and 1. Usually, all Criteria can be integrated within - a weighted sum equal to 1.xsd:decimal [0..1]
cccev:Criterioncccev:weightingConsiderationDescriptionExplanation of how the weighting of a Criterion is to be used. - - Additional Information: - This description gives the view of the creator of the Criterion weights on how to - interpret and use them during the evaluation process.rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:emailThe email of the Organisation. - - rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:telephoneA telephone number through which the Contact Point can be contacted. - rdf:PlainLiteral [0..*]
cpv:Personcv:birthDateThe point in time on which the Person was born.xsd:date [0..1]
locn:Geometrycv:coordinatesThe coordinate list.rdf:PlainLiteral [0..*]
locn:Geometrycv:latitudeThe latitude.rdf:PlainLiteral [0..*]
locn:Geometrycv:longitudeThe longitude.rdf:PlainLiteral [0..*]
cpv:Persondct:alternativeAny name by which an individual is known other than their full name. - WG 09/11/2021rdf:langString [0..*]
epo:ProcurementElement
epo:System
epo:AgentInRole
cpov:ContactPoint
cv:Channel
epo:NonDisclosureAgreementTerm
epo:SecurityClearanceTerm
epo:SubcontractTerm
cccev:InformationConcept
cccev:Requirement
epo:Technique
epo:SubcontractingEstimate
epo:ElectronicSignature
epo:Document
epo:Fund
dct:descriptionAn account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 - An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 - An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [1..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:Documentdct:issuedDate of formal issuance of the resource. - - Additional information: - This is generally used for modules other than eNotice. - The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or - xsd:timeStamp or any other variant of time expression. This extension needs to be - encoded/automated in the ontology and in the application profile. - Why is it like this? Because UML cannot handle such expressions of disjunctive property - ranges. - - WG approval 26/01/2023xsd:dateTime [0..1]
epo:ProcurementElement
foaf:Agent
epo:AgentInRole
epo:Document
epo:Fund
dct:titleA name given to the resource. - - WG approval 30/05/2023 A name given to the resource. - - WG approval 30/05/2023 A name given to the resource. - - WG approval 30/05/2023 - A name given to the resource. - - WG approval 30/05/2023 - - A name given to the resource. - - WG approval 30/05/2023 - rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:describesMinimumLevelOfStandardsrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesObjectiveParticipationRulesrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionRelevantLawrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesVerificationMethodrdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasAbnormallyLowTendersTenders received that were found irregular and non-acceptable due to an abnormally - low price or cost. - - Additional Information - The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. - - WG Approval 28/07/2020 - - xsd:integer [0..1]
epo:Procedureepo:hasAcceleratedProcedureJustificationThe reasons why the procedure is accelerated. - - Additional Information: - A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake - relief. - - WG Approval 09/06/2020 - - rdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasAccessibilityDateThe date at which unpublished data shall be published. - - WG Approval 11/06/2020xsd:date [0..1]
epo:Documentepo:hasAccessURLLocation where the resource can be accessed. - - WG approval 07/04/2022xsd:anyURI [0..*]
epo:Buyerepo:hasActivityDescriptionIn the ePO ontology a taxonomy with all activities, based on different classifications - (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively - to complement the definition attached to the MainActivityCode. - - However, in eForms there is the code "other" to cover undefined activities. For mapping - to this eForms feature one could also use this property. - rdf:PlainLiteral [0..*]
epo:ProcurementObject
epo:Notice
epo:ElementChangeDescription
epo:hasAdditionalInformationSupplementary data about the instance of the concept. - - WG Approval 15/10/2019 Supplementary data about the instance of the concept. - - WG Approval 15/10/2019 Supplementary data about the instance of the concept. - - WG Approval 15/10/2019 - rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
epo:AccessTermepo:hasAdditionalInformationDeadlineThe time limit for requesting further information. - - Additional information: - - This is generally used to indicate the deadline for Economic Operators to request - further information of the procedure before the submission deadline. - - This corresponds in eForms to BT-13 Additional Information Deadline. - - WG Approval 09/06/2020 - xsd:dateTime [0..1]
epo:AwardDecisionepo:hasAdditionalNonAwardJustificationFurther justification for the non award . - - Additional information: - This is generally used when the non award reason code is set to "Other". - - WG: 18/01/2022rdf:PlainLiteral [0..1]
cv:Channelepo:hasAddressURLxsd:anyURI [0..1]
foaf:Agentepo:hasAliasAcronym or alternative name of the Agent. - WG Approval 25/03/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasAmountValueThe numeric value of the amount, including decimals.xsd:decimal [1..1]
epo:AwardEvaluationTermepo:hasAwardCriteriaEvaluationFormulaThe mathematical equation or any other description used for complicated weighing of - criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing - cannot be expressed per criterion. - - Additional Information: - This corresponds in eForms to BT-543 Award Criteria Complicated.rdf:PlainLiteral [0..*]
epo:AwardEvaluationTermepo:hasAwardCriteriaOrderJustificationThe justification for only indicating the award criteria's order of importance, not - their weighing. - - Additional Information: - This corresponds in eForms to BT-733 Award Criteria Order Justification.rdf:PlainLiteral [0..1]
epo:AwardCriterionepo:hasAwardCriteriaStatedInProcurementDocumentsxsd:boolean [1..1]
epo:ProcessPlanningTermepo:hasAwardDateScheduledPlanned date for the award decision. - WG Approval 09/11/2021xsd:date [0..1]
epo:AwardDecisionepo:hasAwardDecisionDateThe official date of the award decision. - - Additional Information: - This corresponds in eForms to BT-1451 Winner Decision Date. - - WG Approval 09/01/2020 - xsd:dateTime [0..1]
epo:TenderAwardOutcomeepo:hasAwardRankThe position of the tender (i.e. whether the tender ended up first, second, third, - etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) - or an innovation partnership. - - Additional Information: - This corresponds in eForms to BT-171 Tender Rank. - xsd:integer [0..1]
epo:Periodepo:hasBeginningThe date and time on which this period begins.xsd:dateTime [0..1]
epo:FrameworkAgreementTermepo:hasBuyerCategoryDescriptionA classification of buyers participating in a framework agreement. - - Additional Information: - Buyers that can use the Framework Agreement not mentioned by name. - - For example, the classification "all hospitals in the Tuscany region" is used instead - of naming each individual buyer. - - This corresponds in eForms to BT-111 Framework Buyer Categories. - - WG Approval 2019-05-06rdf:PlainLiteral [0..*]
org:Organizationepo:hasBuyerLegalTypeDescriptionSelf-explanatory text about the Buyer Legal Type. - - Additional information: - This field is used when the Buyer Legal Type is not available in the controlled list - at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard - Forms. It shall be deprecated in the future. - - WG Approval 06/09/2022rdf:PlainLiteral [0..1]
epo:Buyerepo:hasBuyerProfileWebsite address where the buyer publishes information on its procurement procedures - and general information. - - Additional information: - This corresponds in the eForms to BT-508 Buyer Profile URL. - - WG approval 04/05/2018 - xsd:anyURI [0..1]
epo:ConcessionEstimateepo:hasCalculationMethodFormula for obtaining values. - - Additional Information: - The possible values are monetary values, ranking scores, criterion weighting. - - WG Approval 25/05/2018rdf:PlainLiteral [0..1]
epo:ElementChangeDescriptionepo:hasChangeDescriptionExplanatory text about the instance of the concept. - - WG Approval 30/09/2019rdf:PlainLiteral [0..*]
epo:ElementChangeDescriptionepo:hasChangeReasonDescriptionExplanatory text about why the element is altered. - - Additional information: - This corresponds in eForms to BT-762 Change Reason Description.rdf:PlainLiteral [0..*]
epo:GreenProcurementepo:hasCleanVehiclesThe number of all clean vehicles that have either been purchased, leased, rented, - hired-purchased or their use has been contractually committed to for the provision - of a purchased service. - - Additional Information - In the European Union, the legal requirements and scope for the provision of these - vehicles or services are covered by Directive 2009/33/EC. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:QualificationCriteriaSummaryepo:hasConditionVerificationMethodrdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasConfidentialityJustificationA narrative explanation of why data is not published. - - Additional Information: - This element is generally used when the non-publication-justification code chosen - is "other". - - WG Approval 09/11/2021 - rdf:PlainLiteral [0..1]
cpov:ContactPointepo:hasContactNameA short text by which a contact is known or referred to. - - WG Approval: 27/01/2022rdf:PlainLiteral [0..1]
epo:Contractepo:hasContractConclusionDateThe date the contract was signed by the last signatory party. - - <u>Additional Information:</u> - In exceptional cases contracts may be concluded without signature and therefore another - date may be used. The date of contract conclusion is always later than the end of - any standstill period. - This concept is not to be confused with the date of completion/end of the contract. - - This corresponds in eForms to BT-145 Contract Conclusion Date. - - WG Approval 09/01/2020xsd:date [0..1]
epo:ProcedureTermepo:hasCrossBorderLawThe applicable law when buyers from different countries procure together within one - procurement procedure. - - Additional Information: - This corresponds in eForms to BT-09 Cross Border Law.rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyIDIdentifier of the agency that maintains the currency code list used. - WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyNameName of the agency that maintains the currency code list used. - WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListIDConcept scheme URI used for the currency code list. - WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:SecurityClearanceTermepo:hasDeadlineThe deadline by which the security clearance must be submitted to the buyer. - - WG Approval 12/09/2019 - - xsd:dateTime [0..1]
epo:ReviewDecisionepo:hasDecisionDateThe date of the review decision. - - Additional information: - This attribute corresponds to the BT-787 Review Date in eForms. - xsd:date [0..1]
epo:Documentepo:hasDispatchDateDate of transmission of a record to an organisation. - - WG Approval 12/05/2020xsd:date [0..1]
epo:FrameworkAgreementTermepo:hasDurationExtensionJustificationThe explanation of the reason why the framework agreement has an extended duration. - - Additional Information: - This corresponds in eForms to BT-109 Framework Duration Justification. - The justification for exceptional cases when the duration of the framework agreement - exceeds the legal limits. - - Four years in the case of the general procurement Directive, seven years in the case - of the defence Directive, and eight years in the case of the sectoral Directive. - - WG Approval 26/09/2019rdf:PlainLiteral [0..1]
epo:SubmissionTermepo:hasEAuctionURLThe internet address of the electronic auction. - - Additional Information: - - This corresponds in eForms to BT-123 Electronic Auction URL.xsd:anyURI [0..1]
epo:SubmissionStatisticalInformationepo:hasEEAReceivedTendersThe amount of tenders received from economic operators in other EEA countries other - than the country of the buyer. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:Noticeepo:hasEFormsSubtypexsd:integer [0..1]
epo:ContractTermepo:hasEInvoicingElectronic means will be used for invoicing in the post-award process. - - Additional Information: - This attribute is used for standard form mappings. - - WG Approval 12/09/2019 - xsd:boolean [0..1]
epo:Tenderepo:hasElectronicSubmissionTransmission of tenders is possible by electronic means of communication. xsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasElectronicTendersElectronic Tender Lots received. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:ReviewObject
epo:ElementChangeDescription
epo:ElementModificationDescription
epo:hasElementReferenceReference to the class instance in the current notice. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, - BT-786 Review Notice Section Identifier and BT-1501 Modification Previous - Notice Section Identifier. Reference to the class instance in the current notice. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, - BT-786 Review Notice Section Identifier and BT-1501 Modification Previous - Notice Section Identifier. Reference to the class instance in the current notice. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, - BT-786 Review Notice Section Identifier and BT-1501 Modification Previous - Notice Section Identifier. - xsd:anyURI [0..*]
xsd:anyURI [1..1]
xsd:anyURI [0..1]
epo:Periodepo:hasEndThe date and time at which this period ends.xsd:dateTime [0..1]
epo:Contractepo:hasEntryIntoForceDateThe date on which the contract enters into force. - - Additional information: - - This is generally the date on which the fulfillment of the contract begins. - - This corresponds in eForms to - - WG approval 05/11/2019xsd:date [0..1]
epo:ContractTermepo:hasEOrderingElectronic means will be used for requesting and purchasing in the post-award process. - - WG Approval 12/09/2019 - - xsd:boolean [0..1]
epo:ContractTermepo:hasEPaymentElectronic means must be used for paying. - WG Approval 09/11/2021 - xsd:boolean [0..1]
epo:Noticeepo:hasESenderDispatchDateThe date and time the notice was transmitted electronically by the eSender to the - Publications Office of the European Union. - - Additional Information: - Typically, eSenders include national Official Journals, Buyers sending a large number - of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement - software developers. - - WG approval 20/06/2023xsd:dateTime [0..1]
epo:ProcessPlanningTermepo:hasEstimatedContractNoticePublicationDateForeseen date for publication of Contract Notice. - - Additional information: - This corresponds in eForms BT-127 Future Notice. - - xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToExpressInterestDateThe estimated date of dispatch of the invitations to confirm interest. - - Additional Information: - This corresponds in eForms to BT-631 Dispatch Invitation Interest.xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToTenderDateThe estimated date of dispatch of the invitations to submit tenders in two (or more) - stage procedures. - - Additional Information: - This corresponds in eForms to BT-130 Dispatch Invitation Tender. - - WG Approval 01/10/2019xsd:date [0..1]
epo:SubcontractingEstimateepo:hasEstimatedPercentageThe estimated proportion foreseen to be subcontracted. - - WG Approval 07/01/2020xsd:decimal [0..1]
epo:ProcessPlanningTermepo:hasEstimatedTenderInvitationDateThe planned date for the dispatch of the invitations to submit tenders. - WG Approval 09/11/2021xsd:date [0..1]
epo:SubmissionStatisticalInformationepo:hasEstimatedTotalSubcontractsThe estimated amount of work to be subcontracted in the contract resulting from the - lot. - WG Approval 09/11/2021xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasEUReceivedTendersThe amount of tenders received from economic operators in other EU countries other - than the country of the buyer.xsd:integer [0..1]
cpov:ContactPointepo:hasFaxThe fax number used to reach a person or an organisation.rdf:PlainLiteral [0..*]
epo:AwardCriterionepo:hasFixedValueThis corresponds in the eForms to BT-541 Award Criterion Number in association with - BT-5422 Award Criterion Number Fixed.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractAny subsequent service contract will be awarded to the winner or, in the case of a - design contest, winners. - - WG Approval 29/08/2019 xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractInformationFurther information about follow-up contracts, prizes and payments (for example non-monetary - prizes, payments given for participation). - - WG Approval 03/09/2019rdf:PlainLiteral [0..*]
epo:Noticeepo:hasFormNumberxsd:integer [0..1]
epo:ProcurementCriterionepo:hasFormulaThe mathematical equation or any other description used for complicated weighing of - criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing - cannot be expressed per criterion. - - Additional Information: - This corresponds in eForms to BT-543.rdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasGroupLotEvaluationMethodDescription of how lots and groups of lots are evaluated against one another in the - procedure. - - - - rdf:PlainLiteral [0..*]
epo:OrganisationGroupepo:hasGroupTypeForm of collaboration agreement between organisations. - - Additional Information: - This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also - be used for Organisation Groups. - - WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasGuaranteeDescriptionInformation on the financial commitment required from the economic operator. - - Additional Information: - 1. This information may include the amount and the way of delivering of the guarantee - 2. The financial commitment may be retained by the buyer in the case the tenderer - withdraws the submitted information (i.e. tender, expression of interest and request - for participation, but not request for clarifications) before the award of the contract - or does not sign the contract. - 3. Usual modalities are bonds, cheques, loans, other. - - WG Approval 21/07/20 - rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasInadmissibleTendersTenders received that cannot be awarded due to non-compliance to procurement document - requirements or having an abnormally low price or cost. - - <u>Additional Information: </u> - Non-compliance with a Procurement Document requirements include exclusion grounds, - selection criteria and submission deadline, etc. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:ElementConfidentialityDescriptionepo:hasInstanceReferenceThe URI of a given class that is being referred to.xsd:anyURI [1..1]
org:Organization
cpov:ContactPoint
epo:hasInternetAddressThe main web page used by the instance of the concept. - - WG Approval 01/06/2023 - The main web page used by the instance of the concept. - - WG Approval 01/06/2023 - - xsd:anyURI [0..*]
xsd:anyURI [0..1]
epo:DirectAwardTermepo:hasJustificationAn explanation about the reasons for using the concept. - WG Approval 5/11/2019 - rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasLateSubmissionInformationDescriptionA narrative text explaining the content of the economic operator information that - can be submitted late. - - Additional Information - This does not apply to requests for clarifications. - rdf:PlainLiteral [0..*]
epo:ProcurementObjectepo:hasLegalBasisDescriptionrdf:PlainLiteral [0..*]
epo:ContractTermepo:hasLegalFormRequirementThe legal form to be taken by a Contractor. - - Additional Information: - Generally, this is defined to cover the case where an Organisation Group is involved. - Note that the codelist provided at national level should be used.rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalFormTypeThe classification of an Organisation according to legislation. - - Additional Information: - Generally, this is defined for Tenderers who want to submit as an Organisation Group. - Note that the codelist provided at national level should be used. - rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalNameThe officially registered name of an organisation. - - WG Approval 10/01/2023rdf:PlainLiteral [0..*]
epo:Noticeepo:hasLongTitlerdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasLotAwardCombinationThe contracting authority reserves the right to award contracts combining lots or - groups of lots. - - Additional Information: - This property contains information about the Lots concerned. - This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard - Forms). - - WG approval 23/08/2022 - rdf:PlainLiteral [0..1]
org:Organizationepo:hasMainActivityDescriptionSelf-explanatory text about the Main Activity . - - Additional information: - This field is used when the Main Activity is not available in the controlled list - at-voc:main-activity-type . This is necessary in to cover data provided in the TED - Standard Forms. It shall be deprecated in the future. - - WG Approval 06/09/2022 - rdf:PlainLiteral [0..1]
epo:Procedureepo:hasMainFeatureMain features of the procedure and information about where the full rules for the - procedure can be found. - - Additional Information: - This information should be given when the procedure is not one of those mentioned - in the procurement directives. This can be the case for example for concessions, for - social and other specific services, and in case of voluntary publication of procurement - procedures below the EU procurement thresholds.rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasMaximumLotSubmissionAllowedThe total number of lots for which one Tenderer can submit Tenders. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms). - - WG approval 12/12/2018 - - xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMaximumNumberOfCandidatesMaximum number of candidates to be invited for the second stage of the procedure. - - WG Approval 22/08/2019xsd:integer [0..1]
epo:ProcedureTermepo:hasMaximumNumberOfLotsToBeAwardedThe maximum number of lots for which contract(s) can be awarded to one tenderer. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms). - - WG Approval 22/08/2019xsd:integer [0..1]
epo:ContractTermepo:hasMaximumNumberOfRenewalsThe maximum number of times the contract can be renewed. - - Additional Information - - By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract - (i.e. extend its duration) without a new procurement procedure. - For example, a contract may be valid for one year and the buyer may keep a possibility - to renew it (e.g. once, twice) for another three months, if he is content with the - services he received. - - PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken - from eForms. - xsd:integer [0..1]
epo:FrameworkAgreementTermepo:hasMaximumParticipantsNumberThe maximum number of participants in the framework agreement. - - Additional Information: - Maximum number of tenderers who may be awarded a contract within the framework agreement. - - The number is a positive integer. - - This corresponds in eForms to BT-113 Framework Maximum Participants Number. - - WG Approval 2019-02-05xsd:integer [0..1]
epo:SubcontractTermepo:hasMaximumShareThe maximum proportion of something to be distributed. - - Additional Information: - In the case of subcontracting the share may refer to the proportion of works, services - or supplies being subcontracted. - - WG Approval 17/09/2019 - - xsd:decimal [0..1]
epo:SubmissionStatisticalInformationepo:hasMediumTenderPerLotsTenders from medium-sized enterprise. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC. - xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMinimumNumberOfCandidatesMinimum number of candidates to be invited for the second stage of the procedure. - - WG Approval 22/08/2019 xsd:integer [0..1]
epo:SubcontractTermepo:hasMinimumShareThe minimum proportion of something to be distributed. - - Additional Information: - In the case of subcontracting the share may refer to the proportion of works, services - or supplies being subcontracted. - - WG Approval 17/09/2019xsd:decimal [0..1]
epo:SubcontractTermepo:hasMinimumSubcontractorsProposedObligationThe minimum percentage of the contract value that the contractor must subcontract. - - Additional information: - This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - - - WG Approval 09/11/2021xsd:decimal [0..1]
epo:ElementModificationDescriptionepo:hasModificationDescriptionAn explanatory text about this context. - - Additional Information - - This corresponds in Standard forms to Field VII.2.1 in F20 - This corresponds in eForms to BT-202 . - - WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ElementModificationDescriptionepo:hasModificationReasonDescriptionAn explanation about the reasons for using the concept. - - Additional Information - This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. - - This corresponds in eForms to BT-201 . - - WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasNationalProcedureRulesxsd:anyURI [0..*]
epo:StrategicProcurementepo:hasNonAccessibilityCriterionJustificationReason for not applying accessibility criteria. - - Additional information: - This corresponds in eForma to BT-755 Accessibility Justification. - - WG Approval 05/03/2019rdf:PlainLiteral [0..*]
epo:LotAwardDecisionepo:hasNonAwardedContractNumberThe number the contract would have had if it had been awarded. - - Additional information: - - This field is provided to support the data provided in the TED Standard Forms, and - it should be discontinued in the future. - - WG agreement: 06/09/2022 - rdf:PlainLiteral [0..1]
epo:LotAwardDecisionepo:hasNonAwardedContractTitleThe title the contract would have had if it had been awarded. - - Additional information: - - This field is provided to support the data provided in the TED Standard Forms, and - it should be discontinued in the future. - - WG agreement: 06/09/2022rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasNonEEAReceivedTendersThe amount of tenders received from economic operators in non-EEA countries. - - WG Approval 12/12/2019 15:20:36xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasNoNegotiationNecessaryThe buyer reserves the right to award the contract on the basis of the initial tenders - without any further negotiations. - - Additional information: - See Article 29(4) of Directive 2014/24/EU. - xsd:boolean [0..1]
epo:SubmissionTermepo:hasNonElectronicSubmissionDescriptionTextual explanation of how non-electronic information is to be presented. - - WG Approval 21/07/2020 - - rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasNonEUReceivedTendersThe amount of tenders received from economic operators in non-EU countries. - xsd:integer [0..1]
epo:Noticeepo:hasNoticePublicationNumberrdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasNumberOfReviewRequestsThe number of requests the buyer received to review any of its decisions.xsd:integer [1..1]
epo:SubmissionStatisticalInformationepo:hasNumberOfTenderersInvitedNumber of economic operators invited to tender. - - Additional Information - This may be used for single-stage procedures or to indicate the number of candidates - invited to tender in multi-stage procedures. - - WG Approval 01/12/2020 - - xsd:integer [0..1]
epo:Noticeepo:hasOJSIssueNumberxsd:integer [0..1]
epo:Noticeepo:hasOJSTyperdf:PlainLiteral [0..1]
epo:OpeningTermepo:hasOpeningDateTimeDate and time for the opening of tenders. - - WG Approval 12/03/2019 - - xsd:dateTime [1..1]
epo:OpeningTermepo:hasOpeningDescriptionFurther information about the opening of tenders. - - Additional Information - For example, who may participate in the opening and whether any authorization is needed. - - WG Approval 12/03/2019rdf:PlainLiteral [0..*]
epo:OpeningTermepo:hasOpeningURLThe identifier of the address of the Opening of Tenders. - WG Approval 09/11/2021xsd:anyURI [0..1]
epo:ContractTermepo:hasOptionsThe buyer reserves the right (not an obligation) for additional purchases from the - contractor (while the contract is valid).xsd:boolean [0..1]
epo:ContractTermepo:hasOptionsDescriptionThe motivation and details about additional purchases that the buyer may undertake - while the contract is valid. - - WG Approval 09/04/2019 rdf:PlainLiteral [0..*]
org:Organizationepo:hasOrganisationUnitNameThe name of a subpart of an organisation. - - Additional Information: - E.g. the relevant department of a large organisation. - - We added this attribute in case of eProcurement notices where the Buyer is actually - a part of an Organization and the rest of the properties apply to the rest of the - Organisation as well.rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasOtherCountriesReceivedTendersxsd:integer [0..1]
epo:AwardEvaluationTermepo:hasOverallCostAwardCriteriaPonderationThe weighting given to cost. - - Additional Information: - This weighting covers usually all cost criteria against price or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallPriceAwardCriteriaPonderationThe weighting given to price. - - Additional Information: - This weighting covers usually all price criteria against cost or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallQualityAwardCriteriaPonderationThe weighting given to quality. - - Additional Information: - This weighting covers usually all quality criteria against price or cost criteria.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasParticipationPaymentDetails on payments to participants - WG Approval 09/11/2021rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPaymentArrangementInformation about financial clauses that will govern some economic aspects of the - execution of the contract. - - Additional Information: These clauses usually refer to financial and payment provisions. - - This type of information should be structured instead of a free text in order to reuse - it an ideal world. Unfortunately this is an information that in the real life no one - is willing to provide pro-actively. - - WG Pending of discussion with eFormsrdf:PlainLiteral [0..*]
epo:ContractLotCompletionInformationepo:hasPaymentValueDiscrepancyJustificationrdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPerformanceConditionsThe particular conditions and additional information related to the execution of the - contract. - - Additional Information: - - For example, specific information about the place of performance, intermediary deliverables, - compensation for damages, intellectual property rights. - - WG approval 15-01-2019rdf:PlainLiteral [0..*]
epo:ContractTermepo:hasPlaceOfPerformanceAdditionalInformationFurther details on the location of the execution of the contract. - - WG Approval 30/07/2019rdf:PlainLiteral [0..*]
epo:PublicationProvisionepo:hasPreferredPublicationDateThe date the buyer would like to have the record made publicly available. - - Additional Information: - This corresponds in eForms to BT-738 Notice Publication Date Preferred. - - WG Approval 12/05/2020xsd:date [0..1]
epo:ElementChangeDescriptionepo:hasPreviousVersionOfElementReferenceReference to the class instance in the previous version of the notice, which was changed. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. - xsd:anyURI [0..1]
epo:Prizeepo:hasPrizeRankThe position of the prize (e.g. first place, second place) in a design contest list - of prizes. - - WG Approval 29/08/2019 - xsd:integer [0..1]
epo:ElementChangeDescriptionepo:hasProcurementDocumentChangeDateThe date and time of the change. - - Additional information: - This corresponds in eForms to BT-719 Change Procurement Documents Date - - WG Approval 5/11/2019 - xsd:date [0..1]
epo:ElementConfidentialityDescriptionepo:hasPropertyReferenceThe URI of a given attribute (property) that is being referred to.xsd:anyURI [1..1]
epo:AccessTermepo:hasPublicAccessURLWeb page where the procurement documents can be downloaded. - - Additional Information: - This corresponds in the eForms to BT-15 Documents URL. - - WG Approval 09/03/2021 - xsd:anyURI [0..1]
epo:Documentepo:hasPublicationDateDate of formal public issuance of the document. - - WG approval 20/06/2023xsd:date [0..1]
epo:QualificationCriteriaSummaryepo:hasQualificationConditionrdf:PlainLiteral [0..*]
epo:MultipleStageProcedureTermepo:hasQualificationSystemRenewalDescriptionrdf:PlainLiteral [0..1]
epo:Quantityepo:hasQuantityValueThe numeric value of the quantity, including decimals.xsd:decimal [1..1]
epo:SubmissionTermepo:hasReceiptDeadlineThe time limit for receiving submissions. - - Additional Information - This is the deadline by which the buyer must receive submissions (e.g. tenders, requests - to participate, clarifications, etc.) and is not the time at which the information - is submitted by the economic operator. - This attribute should be used for standard forms mappings. - - WG Approval 21/07/2020 - xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptExpressionDeadlineTime limit for receipt of expressions of interest. - - Pending of review by the WG - - xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptParticipationRequestDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptPreliminaryMarketConsultationDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptTenderDeadlinexsd:dateTime [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedMicroTendersThe amount of tenders received from a micro enterprise. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC.xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedParticipationRequestsThe amount of applications to participate from economic operators. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedSmallTendersTenders from small enterprise. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC. - - xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedTendersThe total amount of tenders received. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:Documentepo:hasReceptionDateNotes: Date when a record is acknowledged by an organisation. - - WG Approval 12/05/2020xsd:date [0..1]
epo:ProcurementObjectepo:hasRecurrenceDescriptionAny additional information about the recurrence of the Procurement. - - Additional Information: - For example estimated timing of the Procedure. - - This corresponds in eForms to BT-95 Recurrence Description. - - (WG approval 2019-01-16) - rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasRenewalDescriptionAny other information about the renewal(s). - - WG approval 16/04/2019 rdf:PlainLiteral [0..*]
epo:ReviewRequestepo:hasRequestDateThe date when the review request was submitted. - - Additional information: - This attribute corresponds to the BT-787 Review Date in eForms. - xsd:date [0..1]
epo:ContractTermepo:hasReservedExecutionThe execution of the contract is restricted to the framework of sheltered employment - programmes. - - Additional information: - This property corresponds in eForms to BT-736 - - WG Approval 12/09/2019 - - The codelist to be used is at-voc:applicability which is available at http://publications.europa.eu/resource/dataset/applicability - xsd:boolean [0..1]
epo:AccessTermepo:hasRestrictedAccessURLThe internet address with information on accessing the restricted (part of the) procurement - document. - - Additional Information: - This corresponds in eForms to BT-615 Documents Restricted URL. - xsd:anyURI [0..1]
epo:ReviewIrregularitySummaryepo:hasReviewIrregularityCountThe number of requests for a given irregularity. - - Additional information: - This attribute corresponds in eForms to BT-635 Buyer Review Requests Count.xsd:integer [1..1]
epo:ReviewObjectepo:hasReviewURLThe internet address of the documents concerning the review instance. - - Additional information: - This attribute corresponds in eForms to BT-794 Review URL. - xsd:anyURI [0..1]
adms:Identifierepo:hasSchemeThe name of the identification scheme.rdf:PlainLiteral [0..*]
adms:Identifierepo:hasSchemeVersionThe version of the identification scheme.rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:hasSelectionCriteriaStatedInProcurementDocumentsxsd:boolean [0..1]
epo:ProfessionalSuitabilitySummaryepo:hasServiceReservedToParticularProfessionxsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasSMEReceivedTendersThe amount of tenders received from micro, small and medium-sized enterprises. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC. - The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. - - WG Approval 05/03/2020 - xsd:integer [0..1]
epo:StrategicProcurementepo:hasStrategicProcurementDescriptionSelf-explanatory text about a concept. - rdf:PlainLiteral [0..*]
epo:SubcontractTermepo:hasSubcontractingInvolvedList of Subcontractors and the subject matter they cover are required. - - Additional Information: - The tenderer will ned to supply this information in the tender. - - WG Approval 28/02/2019xsd:boolean [0..1]
epo:SubcontractTermepo:hasSubcontractorsProposedAboveObligationThe maximum percentage of the contract value that the contractor must subcontract. - - Additional information: - This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - - - WG Approval 09/11/2021xsd:decimal [0..1]
epo:SubcontractingEstimateepo:hasSubjectMatterDescription of the share of the contract that is to be subcontracted. - - Additional infromation: - This can be an aggregate of several subcontracts. - - WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasSubmissionURL - Additional Information: - This corresponds to the eForms BT-18 Submission URL. - - This corresponds in eForms to BT-509 Organisation eDelivery Gateway.xsd:anyURI [0..*]
epo:MultipleStageProcedureTermepo:hasSuccessiveReductionThe number of solutions or tenders will be reduced in iterative evaluations for multiple - staged procedures. - - Additional information: - This refers to multiple-stage procedures (included two-stage procedures, at least). - Open Procedures can be seen as one-stage procedures. - WG Approval 22/08/2019 xsd:boolean [0..1]
cccev:Constraintepo:hasThresholdValueThe cut-off level for a given concept. - - Additional Information: - This value is given as e.g. a minimum score, a maximum number of tenders with the - highest score passing (see codelist at-voc:number-threshold).xsd:decimal [1..1]
epo:ReviewRequestSummaryepo:hasTotalNumberOfComplainantsThe number of economic operators that requested the buyer to review any of its decisions - (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive - 89/665/EEC and Directive 92/13/EEC. - - Additional information: - This attribute corresponds in eForms to BT-712 Buyer Review Complainants - - WG Approval 11/04/2019xsd:integer [0..1]
epo:GreenProcurementepo:hasTotalVehiclesThe number of all vehicles (regardless of whether clean or not) that have either been - purchased, leased, rented, hired-purchased or their use has been contractually committed - to for the provision of a purchased service. - - Additional Information - - In the European Union, the legal requirements and scope for the provision of these - vehicles or services are covered by Directive 2009/33/EC. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:Quantityepo:hasUnitDescriptionA narrative explanation defining the units of items being counted - - Additional information: This could be for example individual items or pack or two. - - WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasUnverifiedTendersOffers received for which it has not been verified if they are admissible or inadmissible - (e.g. because award criteria have been evaluated for all tenders and admissibility - is checked only for the winning tender). - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:Fundepo:hasURLThe identifier of a resource. - - Additional Information - - For example: - - 1. The URL of the system from where to access the procurement documents; - 2. The URL of the system for the submission of tender documents; - 3. The URL of the system from where to download a tool to communicate with the Buyer; - 4. The URL of the system used by a Technique to allow Economic Operators to exchange - information with the Buyer (e.g. eAuction and DPS Systems) - 5. The URL of the system used to exchange information between Buyer and EO for questions - and clarifications; - - WG Approval 30/09/2019xsd:anyURI [0..1]
epo:Documentepo:hasVersionA number that identifies a specific state of a document. - - WG approval: 18/11/2021 - rdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasWithdrawalDateThe date and time when the request for review was withdrawn. - - Additional information: - This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date.xsd:date [0..1]
epo:ReviewRequestepo:hasWithdrawalReasonThe explanation for withdrawing the request for review. - - Additional information: - This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasonsrdf:PlainLiteral [0..1]
epo:GreenProcurementepo:hasZeroEmissionVehiclesThe number of all zero-emission heavy-duty vehicles that have either been purchased, - leased, rented, hired-purchased or their use has been contractually committed to for - the provision of a purchased service. - - Additional Information - - In the European Union, the legal requirements and scope for the provision of these - vehicles or services are covered by Directive 2009/33/EC. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:ProcurementCriteriaSummaryepo:indicatesPerformingStaffInformationRequirementxsd:boolean [0..1]
epo:Procedureepo:isAcceleratedStatement about the fact that the procedure will be reduced due to a state of urgency. - - Additional Information - - This modifies the time limit for the receipt of requests to participate or the receipt - of tenders. - - WG Approval 20/08/2019 - xsd:boolean [0..1]
epo:SubmissionTermepo:isAdvancedElectronicSignatureRequiredAdvanced or qualified electronic signature or seal (as defined in Regulation (EU) - No 910/2014) is required. - - - - The submitted information is required to be signed electronically. - - Additional Information: - - Signature can be defined as "data in electronic form which is attached to or logically - associated with other data in electronic form and which is used by the signatory to - sign. - For more details on the meaning and uses of electronic signature you may consult different - authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 - on electronic identification and trust services for electronic transactions in the - internal market. - - WG Approval 21/07/2020 - xsd:boolean [0..1]
epo:ProcedureTermepo:isAwardedByCPBProcedure is awarded by a Central Purchasing Body. - - xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isCompetitionTerminatedNo further contracts will be awarded in this procedure. - - Additional Information: - This can be instantiated in the post award phase. - - PIN for Competition needs to be signaled. This field can be used even if no contracts - are awarded in the contract award notice. - - This corresponds in eForms to BT-756 PIN Competition Termination.xsd:boolean [0..1]
epo:Buyerepo:isContractingEntityRole of entities, which: - - (a) are contracting authorities or public undertakings and which pursue one of the - activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. - - (b) when they are not contracting authorities or public undertakings, have as one - of their activities any of the activities referred to in Articles 8 to 14, or any - combination thereof and operate on the basis of special or exclusive rights granted - by a competent authority of a Member State. - - Additional Information - - The indicator is needed in order to discriminate between those contracts where the - Contracting Entity acts as a Contracting Authority undergoing the limits and the rules - of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed - constraints. - For example, the Contracting Entities have different thresholds for the application - of Directive 24 if compared with Contracting Authorities. - - WG Approval 28/04/2020 - xsd:boolean [0..1]
epo:ProcurementObjectepo:isCoveredByGPASpecifies whether the Agreement on Government Procurement (GPA) applies. - - Additional information: - The GPA aims to establish a multilateral framework of balanced rights and obligations - relating to public contracts with a view to achieving the liberalization and expansion - of world trade. - - This corresponds in the e Forms to BT-115 GPA Coverage. - - WG Approval 15/10/2019 - - xsd:boolean [0..1]
epo:Procedureepo:isDesignContestA competition which enables the buyer to acquire a plan or design via a jury. - - Additional information: - Design contests have traditionally mostly been used in the fields of town and country - planning, architecture and engineering or data processing, other purposes, such as - to obtain plans for financial engineering - - The contest may include or not the award of prizes; - - WG approval 04-02-2021 xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isDPSTerminatedEnd of the Dynamic Purchase System (DPS). - - Additional Information: This property can be used in the contract award notice even - if no contracts are awarded. - - WG Approval 22/11/2019 - xsd:boolean [0..1]
epo:Noticeepo:isEUInstitutionxsd:boolean [0..1]
epo:SubmissionTermepo:isGuaranteeRequiredThe submitted information must include a financial commitment to be used in case of - default. - - Additional Information: - See the additional information provided in the definition of the 'Guarantee Description' - element. - - WG Approval 21/07/20 - - xsd:boolean [0..1]
epo:Procedureepo:isJointProcurementMultiple buyers procure together within the same procedure. - - Addition Information: - In case the joint procurement involves buyers from different countries, the national - law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:isJuryDecisionBindingIndicates whether the procuring entity is bound to apply the decision of the jury.xsd:boolean [0..1]
epo:Businessepo:isListedCompanyPublic companies listed on a stock exchange and subject to disclosure requirements - (either by stock exchange - rules or through law or enforceable means), which impose requirements to ensure adequate - transparency of - beneficial ownership. - - <u>Additional Information:</u> - - In eForms this indicator is used when the nationality of beneficial owner is not provided - because the Economic Operator is registered in a regulated market that is subject - to disclosure requirements consistent with Union law or subject to equivalent international - standards which ensure adequate transparency of ownership information. - - WG Approval 21/11/2019xsd:boolean [0..1]
epo:SubmissionTermepo:isMultipleTenderSubmissionAllowedTenderers may submit more than one competing tenders. - - WG Approval 10/10/2019 - - xsd:boolean [0..1]
epo:NonDisclosureAgreementTermepo:isNonDisclosureAgreementRequiredxsd:boolean [0..1]
epo:ProcedureTermepo:isOneLotOnlyAllowedIndicates whether tenders may be submitted for only one Lot. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms). - - WG approval 23/08/2022 - - xsd:boolean [0..1]
epo:ElementChangeDescriptionepo:isProcurementDocumentChangedOne or more procurement documents have been changed. - - Additional information: - This corresponds in eForms to BT-718 Change Procurement Documents - - WG Approval 05/11/2019xsd:boolean [0..1]
epo:AccessTermepo:isProcurementDocumentRestrictedThe access to certain procurement documents is restricted. - - Additional Information: - This corresponds in eForms to BT-14 Documents Restricted. - - WG Approval 10/10/2019xsd:boolean [0..1]
epo:ProcurementObjectepo:isRecurrentThe Procurement being notified is likely to be included in another procedure in the - foreseeable future. - - Additional Information: - - For example, a regularly re-tendered municipal service. This does not include awarding - multiple contracts within a single qualification system, framework agreement, or a - dynamic purchasing system. - - This corresponds in eForms to BT-94 Recurrence. - - WG Approval 12/05/2020 - xsd:boolean [0..1]
epo:ContractTermepo:isRenewalIndicatorIndicates whether the contract is subject to a renewal clause. - WG Approval 09/11/2021xsd:boolean [0..1]
epo:SecurityClearanceTermepo:isSecurityClearanceRequiredxsd:boolean [0..1]
epo:ProcurementObjectepo:isSMESuitableThe Lot is suitable for small and medium enterprises (SMEs). - - Additional Information - - This allows the buyer to make emphasis on the fact that the procedure has been designed - having SMEs in mind. This indicator is also to be reflected in the selection criteria. - - For example, number of employees and turnover are applicable to the definition of - an SME. - - WG Approval 15/10/2019 - xsd:boolean [0..1]
epo:ProcedureTermepo:isSubmissionForAllLotsAllowedIndicates whether tenders may be submitted for all Lots. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms) - - WG approval 23/08/2022 - xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isToBeRelaunchedIndicator of whether the procurement object is to be relaunched. - - Additional information: - This can be instantiated in the post award phase. - - This corresponds in eForms to BT-634 Procurement Relaunch. - - WG Approval: 18/01/2022 - xsd:boolean [0..1]
epo:SelectionCriterionepo:isUsedForCandidateRestrictionThe criterion will be used to select the candidates to be invited for the second stage - of a multistage procedure. - - Additional Information: - This property is only used if a maximum number of candidates was foreseen in the procedure. - This corresponds in eForms to BT-40 Selection Criteria Second Stage Invitexsd:boolean [0..1]
epo:ProcurementObjectepo:isUsingEUFundsThe procurement foresees funding by the Union. - - Additional Information: - The funding may cover the whole procurement or part of the procurement. - - For example the European Structural and Investment Funds or grants awarded by the - European Union. - - xsd:boolean [0..1]
epo:Tenderepo:isVariantAlternative solution to fulfil the buyer's needs as opposed to solutions indicated - in the procurement documents. - - Additional Information: - - The permission to offer variants is only allowed if specified in a Contract Notice - or a Prior Information Notice that used as a means for calling for a competition. - The buyer lays out minimum requirements in the procurement documents that must be - respected by tenderers submitting variants. - - WG Approval 29/05/2019 - - xsd:boolean [0..1]
epo:ReviewRequestepo:isWithdrawnThe review request was withdrawn. - - Additional information: - This attribute corresponds in eForms to BT-796 Review Request Withdrawn.xsd:boolean [0..1]
cpv:Personfoaf:familyNameThe hereditary surname of a family. - rdf:langString [0..*]
cpv:Personfoaf:givenNameThe name(s) that identify the Person within a family with a common surname. - rdf:langString [0..*]
cpv:Personfoaf:nameThe complete name of the Person as one string.rdf:langString [0..*]
locn:Addresslocn:addressAreaThe name or names of a geographic area or locality that groups a number of addressable - objects for addressing purposes, without being an administrative unit. - - Additional Information: - This would typically be part of a city, a neighbourhood or village, e.g. Montmartre.rdf:langString [0..1]
locn:Addresslocn:adminUnitL1The name or names of a unit of administration related to the exercise of jurisdictional - rights, for local, regional and national governance. Level 1 refers to the uppermost - administrative unit for the address, almost always a country. - - Additional Information: - Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, - country names should be provided in a consistent manner to reduce ambiguity. For example, - either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing - the two. The Country controlled vocabulary from the Publications Office can be reused - for this.rdf:langString [0..1]
locn:Addresslocn:adminUnitL2The name or names of a unit of administration related to the exercise of jurisdictional - rights, for local, regional and national governance. Level 2 refers to the region - of the address, usually a county, state or other such area that typically encompasses - several localities. - - Additional Information: - Some recommended codelists from the EU Publications Office include: Administrative - Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement - of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" - in the ATU controlled vocabulary. - rdf:langString [0..1]
locn:Addresslocn:fullAddressThe complete address written as a formatted string. - - Additional Information: - Use of this property is recommended as it will not suffer any misunderstandings that - might arise through the breaking up of an address into its component parts. This property - is analogous to vCard's label property but with two important differences: (1) formatting - is not assumed so that, unlike vCard label, it may not be suitable to print this on - an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress - property has no such restriction. An example of a full address is "Champ de Mars, - 5 Avenue Anatole France, 75007 Paris, France".rdf:langString [0..1]
dct:Locationlocn:geographicNameA textual description for a Location. - - Additional Information: - The INSPIRE Data Specification on Geographical Names provides a detailed model for - describing a 'named place', including methods for providing multiple names in multiple - scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, - the concept of a geographic name used here is consistent. - - A geographic name is a proper noun applied to a spatial object. Taking the example - used in the INSPIRE document (page 15), the following are all valid geographic names - for the Greek capital: - - - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) - - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) - - "Athens"@en (the English language exonym) - INSPIRE has a detailed (XML-based) method of providing metadata about a geographic - name and in XML-data sets that may be the most appropriate method to follow. When - using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical - data (the use case for INSPIRE), the Code datatype or a simple language identifier - may be used to provide such metadata. - - The country codes defined in ISO 3166 may be used as geographic names and these are - generally preferred over either the long form or short form of a country's name (as - they are less error prone). The Publications Office of the European Union recommends - the use of ISO 3166-1 codes for countries in all cases except two: - - - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - - use 'EL' in preference to the ISO 3166 code GR for Greece. - Where a country has changed its name or no longer exists (such as Czechoslovakia, - Yugoslavia etc.) use the ISO 3166-3 code.rdf:langString [0..1]
locn:Addresslocn:locatorDesignatorA number or a sequence of characters which allows a user or an application to interpret, - parse and format the locator within the relevant scope. A locator may include more - locator designators. - - Additional Information: - In simpler terms, this is the building number, apartment number, etc. For an address - such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17".rdf:PlainLiteral [0..1]
locn:Addresslocn:locatorNameProper noun(s) applied to the real world entity identified by the locator. - - Additional Information: - The locator name could be the name of the property or complex, of the building or - part of the building, or it could be the name of a room inside a building. - - The key difference between a locator and a locator name is that the latter is a proper - name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting - room within the European Commission headquarters for which locator name is more appropriate - than locator.rdf:langString [0..1]
locn:Addresslocn:postCodeThe post/zip code of an address. (INSPIRE's definition is "A code created and maintained - for postal purposes to identify a subdivision of addresses and postal delivery points.") - - Additional Information: - Post codes are common elements in many countries' postal address systems. One of the - many post codes of Paris is for example "75000".rdf:PlainLiteral [0..*]
locn:Addresslocn:postNameThe key postal division of the address, usually the city. (INSPIRE's definition is - "One or more names created and maintained for postal purposes to identify a subdivision - of addresses and postal delivery points.) For example, "Paris".rdf:langString [0..*]
locn:Addresslocn:thoroughfareAn address component that represents the name or names of a passage or way through - from one location to another. A thoroughfare is not necessarily a road, it might be - a waterway or some other feature. - - Additional Information: - For example, "Avenue des Champs-&#201;lys&#233;es".rdf:langString [0..*]
cpv:Personperson:birthNameFamily name of the Person given upon their birth. - WG Approval 09/11/2021rdf:langString [0..*]
cpv:Personperson:patronymicNameName based on the given name of the Person's father. - WG Approval 09/11/2021rdf:langString [0..*]
adms:Identifierskos:notationThe literal identifying an entity, like a person or an object.rdf:PlainLiteral [1..1]
cccev:InformationConcept
cccev:Requirement
skos:prefLabelThe preferred lexical label for a resource, in a given language. - - WG approval 30/05/2023 - - The preferred lexical label for a resource, in a given language. - - WG approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
epo:SpecificDurationtime:numericDurationValue of a temporal extent expressed as a number.xsd:decimal [1..1]
-

Predicates (object properties) and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Predicate nameDefinitionDomain, Range and Cardinality
adms:identifierA unique identifier of the instance of the concept. - - Additional Information - - For example, in the case of the Procurement Identifier, this could be the European - Public Procurement Identifier, and/or any other identifier provided by the buyer, - the service provider or any other stakeholder. - - WG Approval 12/11/2019 - - A unique identifier of the instance of the concept. - - Additional Information - - For example, in the case of the Procurement Identifier, this could be the European - Public Procurement Identifier, and/or any other identifier provided by the buyer, - the service provider or any other stakeholder. - - WG Approval 12/11/2019 A unique identifier of the instance of the concept. - - Additional Information - - For example, in the case of the Procurement Identifier, this could be the European - Public Procurement Identifier, and/or any other identifier provided by the buyer, - the service provider or any other stakeholder. - - WG Approval 12/11/2019 - Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class.epo:Project -> adms:Identifier [0..1]
epo:LotGroup -> adms:Identifier [0..1]
epo:ProcurementElement -> adms:Identifier [1]
foaf:Agent -> adms:Identifier [0..*]
dct:Location -> adms:Identifier [0..1]
cccev:InformationConcept -> adms:Identifier [0..1]
epo:Document -> adms:Identifier [0..*]
epo:Fund -> adms:Identifier [0..1]







cccev:confidentialityLevelTypeSecurity classification assigned to an Evidence e.g. classified, sensitive, public. - - Additional Information: - - Classifications should be defined by an organisation/country as an outcome of a security - assessment. - cccev:Evidence -> at-voc:confidentiality-level [0..1]
cccev:constrainsInformation Concept about which a Constraint expresses a limitation. - - Additional Information: - Information Concepts are tools to make Requirements more machine processable: they - allow to provide more detail about a Requirement. This way, Constraints can be made - very precise, namely the limit that must be achieved, is a limit on the value for - the associated Information Concept. For example, the Information Concept would be - the age of a person and the Constraint would be the required age in the context of - a specific evaluation.cccev:Constraint -> cccev:InformationConcept [0..*]
cccev:hasRequirementA more specific Requirement that is part of the Requirement.cccev:Requirement -> cccev:Requirement [0..*]
cccev:supportsConceptInformation Concept providing facts found/inferred from the Evidence. - - Additional Information: - Examples of Information Concepts are values found explictly in the evidence such as - a birth date or information derived from the Evidence such as "I am older that 18 - years" or "this is a FairTrade product".cccev:Evidence -> cccev:InformationConcept [0..*]
cccev:supportsRequirementRequirement for which the Evidence provides proof.cccev:Evidence -> cccev:Requirement [0..*]
cv:addressAssociates any Resource with the corresponding Address. - - Additional Information: - Asserting the address relationship implies that the Resource has an Address. org:Organization -> locn:Address [0..*]
cpov:ContactPoint -> locn:Address [0..1]
cv:registeredAddressThe registered address relationship links a Resource with the legally registered Address. - - Additional Information: - It is the address to which formal communications can be sent, such as the postal address. The registered address relationship links a Resource with the legally registered Address. - - Additional Information: - It is the address to which formal communications can be sent, such as the postal address. - cpv:Person -> locn:Address [0..1]
org:Organization -> locn:Address [0..1]
dct:typeCategory to which the Requirement belongs.cccev:Criterion -> at-voc:criterion [0..1]
epo:actsOnBehalfOfRepresents.epo:ProcurementServiceProvider -> epo:Buyer [1..*]
epo:announcesAwardDecision epo-not:ResultNotice -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision [0..*]
epo-not:ResultNotice -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision [0..*]
epo:announcesCompletionOfContract epo-not:CompletionNotice -> epo:Contract [1]
epo-not:CompletionNotice -> epo:Contract [1]
epo:announcesContract epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice -> epo:Lot [1..*]
epo-not:CompetitionNotice -> epo:Lot [1..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Lot [1..*]
epo-not:CompetitionNotice -> epo:Lot [1..*]
epo:announcesLotGroup epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo:announcesLotGroupAwardInformation epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. - - Additional Information: - For example, elements in the Contract Award Notice that should be published at a later - date. Relation indicating which parts of a document are not published. - - Additional Information: - For example, elements in the Contract Award Notice that should be published at a later - date. epo-not:ResultNotice -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision [0..*]
epo-not:ResultNotice -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision [0..*]
epo:announcesNoticeAwardInformation epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo:announcesPlannedProcurementPart epo-not:PlanningNotice -> epo:PlannedProcurementPart [0..*]
epo-not:PlanningNotice -> epo:PlannedProcurementPart [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice -> epo:Procedure [1]
epo-not:CompetitionNotice -> epo:Procedure [1]
epo-not:DirectAwardPrenotificationNotice -> epo:Procedure [1]
epo-not:CompetitionNotice -> epo:Procedure [1]
epo:announcesReviewObject epo-not:CompletionNotice -> epo:ReviewObject [1..*]
epo-not:CompletionNotice -> epo:ReviewObject [1..*]
epo:announcesRole epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo:associatedWithThe document to which a document is associated. - - WGM 01/03/2022 - epo:Document -> epo:Document [0..*]
epo:bindsBuyerProvides legal constraint on the Buyer.epo:Contract -> epo:Buyer [0..*]
epo:bindsContractorProvides legal constraint on the Contractor.epo:Contract -> epo:Contractor [0..*]
epo:comprisesLotAwardDecisionIncorporates LotAwardOutcome.epo:AwardDecision -> epo:LotAwardDecision [0..*]
epo:comprisesMiniCompetitionAwardDecisionepo:AwardDecision -> epo:MiniCompetitionAwardDecision [0..*]
epo:comprisesTenderIncorporates Tender.epo:TenderGroup -> epo:Tender [1..*]
epo:comprisesTenderAwardOutcomeIncorporates TenderAwardOutcome.epo:AwardDecision -> epo:TenderAwardOutcome [0..*]
epo:concernsLotRelates to Lot. Relates to Lot.epo:ProcurementProcessInformation -> epo:Lot [0..1]
epo:LotAwardDecision -> epo:Lot [1]
epo:concernsMiniCompetitionepo:MiniCompetitionAwardDecision -> epo:MiniCompetition [0..1]
epo:concernsProcedureRelates to Procedure.epo:ProcurementProcessInformation -> epo:Procedure [0..1]
epo:concernsReviewSummaryForLotRelates to Lot review summary. - - Additional information: - This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier.epo:ReviewRequestSummary -> epo:Lot [1]
epo:concernsTenderepo:TenderAwardOutcome -> epo:Tender [1]
epo:conformsToLegalBasisThe Notice was designed in accordance with the given legal basis. - - Additional Information: - This Notice can be used for Procedures which do not have the same legal basis. - This holds for standard forms.epo:Notice -> at-voc:legal-basis [0..1]
epo:conformsToSpecificLegalBasisepo:Notice -> at-voc:legal-basis [0..1]
epo:containsCandidateepo:SelectedCandidateList -> epo:Candidate [0..*]
epo:containsModificationsOf - - Additional information - This relation shall be used between Instances of the SAME type/class. - - The "modifying-instance" can be minimally instantiated, carrying the fields/information - that override the fields in the "modified-instance". - - This means that the "modifying-instance" (is under-specified) and might violate minimal - cardinality restrictions in case they are checked. But the purpose of such an instance - is not to be used as a full instance. - owl:Thing -> owl:Thing [0..1]
epo:contextualisedByThe place of the AgentInRole in the procurement is expressed by a ProcurementObject.epo:AgentInRole -> epo:ProcurementObject [0..*]
epo:definesBudgetProviderRelation indicating a ProcedureTerm has a BudgetProvider.epo:ProcedureTerm -> epo:BudgetProvider [0..1]
epo:definesCatalogueProviderRelation indicating an AccessTerm has a CatalogueProvider.epo:AccessTerm -> epo:CatalogueProvider [0..*]
epo:definesCatalogueReceiverRelation indicating an AccessTerm has a CatalogueReceiver.epo:AccessTerm -> epo:CatalogueReceiver [0..*]
epo:definesContractDurationRelation indicating a ContractTerm has a Duration.epo:ContractTerm -> epo:Duration [0..1]
epo:definesContractPeriodRelation indicating a ContractTerm has a Period.epo:ContractTerm -> epo:Period [0..1]
epo:definesInformationProviderRelation indicating a ProcedureTerm has an information provider.epo:ProcedureTerm -> epo:AuxiliaryParty [0..*]
epo:definesLotGroupRelation indicating a ProcedureTerm has a LotGroup.epo:ProcedureTerm -> epo:LotGroup [0..*]
epo:definesMediatorRelation indicating a ProcedureTerm has a Mediator.epo:ProcedureTerm -> epo:Mediator [0..1]
epo:definesOfflineAccessProviderRelation indicating an AccessTerm has an OfflineAccessProvider.epo:AccessTerm -> epo:OfflineAccessProvider [0..1]
epo:definesOpeningPlaceThe place where the tenders will be publicly opened. - - WG Approval 10-10-2019epo:OpeningTerm -> locn:Address [0..1]
epo:definesParticipationRequestProcessorRelation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor.epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor [0..1]
epo:definesParticipationRequestReceiverRelation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver.epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver [0..1]
epo:definesPaymentExecutorRelation indicating a ContractTerm has a PaymentExecutor.epo:ContractTerm -> epo:PaymentExecutor [0..1]
epo:definesPlaceOfPerformanceRelation indicating the place of performance of a Contract. - - WG approval 21/03/2023epo:ContractTerm -> dct:Location [0..*]
epo:definesPrizeRelation indicating a DesignContestRegimeTerm has a Prize.epo:DesignContestRegimeTerm -> epo:Prize [0..*]
epo:definesProcurementProcedureInformationProviderRelation indicating an AccessTerm has a ProcurementProcedureInformationProvider.epo:AccessTerm -> epo:ProcurementProcedureInformationProvider [0..1]
epo:definesSubcontractingTermRelation indicating a ContractTerm has a SubcontractingTerm.Relation indicating a - term has a subterm.epo:ContractTerm -> epo:SubcontractTerm [0..1]
epo:definesTenderProcessorRelation indicating a SubmissionTerm has a TenderProcessor.epo:SubmissionTerm -> epo:TenderProcessor [0..1]
epo:definesTenderReceiverRelation indicating a SubmissionTerm has a TenderReceiver.epo:SubmissionTerm -> epo:TenderReceiver [0..1]
epo:delegatesAncillaryActivitiesToEntrusts ancillary purchasing activities to ProcurementServiceProvider. - - Additional Information: - Directive 2014/24/EU describes ancillary purchasing activities as activities consisting - in the provision of support to purchasing activities, in particular in the following - forms: - - (a) technical infrastructure enabling contracting authorities to award public contracts - or to conclude framework agreements for works, supplies or services; - - (b) advice on the conduct or design of public procurement procedures; - - (c) preparation and management of procurement procedures on behalf and for the account - of the contracting authority concerned;epo:Buyer -> epo:ProcurementServiceProvider [0..*]
epo:describesContractModification epo-not:ContractModificationNotice -> epo:ContractModification [0..*]
epo-not:ContractModificationNotice -> epo:ContractModification [0..*]
epo:describesLotCompletionepo:ContractLotCompletionInformation -> epo:Lot [1]
epo:describesLotGroupepo:LotGroupAwardInformation -> epo:LotGroup [1]
epo:describesNoticeepo:NoticeDescription -> epo:Notice [1]
epo:describesResultNotice epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:distributesOfferepo:OfferIssuer -> epo:Offer [0..*]
epo:exposesChannelepo:AgentInRole -> cv:Channel [0..*]
epo:exposesInvoiceeChannelepo:Buyer -> cv:Channel [0..*]
epo:followsRulesSetByepo:MiniCompetition -> epo:FrameworkAgreement [0..1]
epo:foreseesConcession epo:ProcurementObject -> epo:ConcessionEstimate [0..1]
epo:Tender -> epo:ConcessionEstimate [0..1]
epo:foreseesContractSpecificTermepo:ProcurementObject -> epo:ContractSpecificTerm [0..*]
epo:foreseesProcurementObjectRelation indicating the instance of a Procurement Object that is planned. - - Additional Information: - The properties of the Procurement Object that is foreseen should be read as foreseen - properties. - For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. - For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy.epo:PlannedProcurementPart -> epo:ProcurementObject [0..1]
epo:foreseesSubcontractingepo:Tender -> epo:SubcontractingEstimate [0..*]
epo:foreseesTechniqueepo:PlannedProcurementPart -> epo:Technique [0..*]
epo:fulfillsRequirementThe requirement to which the concept meets. - WG Approval 09/11/2021 - - The requirement to which the concept meets. - WG Approval 09/11/2021 - - The requirement to which the concept meets. - WG Approval 09/11/2021 - - epo:GreenProcurement -> at-voc:environmental-impact [1..*]
epo:InnovativeProcurement -> at-voc:innovative-acquisition [1..*]
epo:SocialProcurement -> at-voc:social-objective [1..*]
epo:fulfillsStrategicProcurementepo:ProcurementObject -> epo:StrategicProcurement [0..*]
epo:hasAdditionalClassificationepo:Purpose -> at-voc:cpv [0..*]
epo:hasAdditionalContractNatureAdditional type of acquisition taken into consideration in the contract. - - WG Approval 11/06/2020 - - epo:ContractTerm -> at-voc:contract-nature [0..*]
epo:hasAllegedIrregularityTypeAdditional information: - This relation corresponds in eForms to BT-791 Review Irregularity Type - epo:ReviewRequest -> at-voc:irregularity-type [1..*]
epo:hasApproximateFrameworkAgreementValue epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasAwardCriterionTypeCategory of award criterion. - - epo:AwardCriterion -> at-voc:award-criterion-type [0..1]
epo:hasAwardedEstimatedValueThe estimated value that can be spent as provided by the Award Decision. - - <u>Additional Information</u>: - This property is used for framework agreements and dynamic purchasing systems. - Different cases of awarded values may refer to a lot, the global value of the procedure, - or of a combinatorial value of a group of lots. - - WG Approval 12/12/2019 - - epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardedValueThe value of the procurement provided by the Award Decision. - - Additional Information: - Different cases of awarded values may refer to a lot, the global value of the procedure, - or of a combinatorial value of a group of lots. - - In the case of framework agreements and dynamic purchasing systems this refers to - the maximum awarded value. - - WG Approval 10/12/2019epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardStatusIndicates whether the lot is awarded, not awarded or still open. - WG Approval 03/12/2019 - - epo:AwardDecision -> at-voc:winner-selection-status [0..1]
epo:hasBargainPriceThe value of procured supplies that have used a particularly advantageous opportunity - available for a very short time at a value considerably lower than normal market prices. - - WG approval 23/05/2023epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasBeneficialOwnerA role of any natural person(s) who ultimately owns or controls the organisation or - on whose behalf a transaction or activity is being conducted. - Additional Information: - This role is defined in the directive EU 2015/849 and it's beyond the scope for public - eProcurement domain. - WG approval 14/09/2021epo:Business -> cpv:Person [0..*]
epo:hasBroadPlaceOfPerformanceGeopolitical zone where the contract can be executed. - - Additional Information - - Used for setting restrictions that cannot be established with one country code or - a geographical zone identifier (like NUTS), because they have a broader scope (geographical, - economic, political, other). - epo:ContractTerm -> at-voc:other-place-service [0..1]
epo:hasBusinessSizeThe category of the business depending on number of employees and turnover. - - Additional information: - - See Commission Recommendation of 6 May 2003 concerning the definition of micro, small - and medium-sized enterprises. - - WG Approval 28/05/2020 - - epo:Business -> at-voc:economic-operator-size [0..1]
epo:hasBuyerLegalTypeA category that indicates the right of an Organisation to play the role of a buyer. - - Additional Information: - The category also effects the rules that the buyer has to abide to within the public - procurement procedure. - WG 07/09/2021 - - org:Organization -> at-voc:buyer-legal-type [0..1]
epo:hasCandidateListepo:DynamicPurchasingSystem -> epo:SelectedCandidateList [0..*]
epo:hasChangeJustificationCode explaining the change. - - WG Approval 5/11/2019 - The motives for the change. - - WG 5/11/2019 - - The codelist to be used is at-voc:change-corrig-justification which is available at - - http://publications.europa.eu/resource/dataset/change-corrig-justificationepo:ElementChangeDescription -> at-voc:change-corrig-justification [1]
epo:hasConcessionEstimatedValueepo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasConfirmedIrregularityTypeAdditional information: - This relation corresponds in eForms to BT-791 Review Irregularity Typeepo:ReviewDecision -> at-voc:irregularity-type [0..*]
epo:hasConstraintepo:ProcurementCriterion -> cccev:Constraint [0..*]
epo:hasContactPointInRoleepo:AgentInRole -> cpov:ContactPoint [0..*]
epo:hasContractNatureTypeSubject of the acquisition. - - WG Approval 11/06/2020 - - epo:ContractTerm -> at-voc:contract-nature [0..1]
epo:hasContractValueepo:Contract -> epo:MonetaryValue [0..1]
epo:hasCountryCode - dct:Location -> at-voc:country [0..1]
locn:Address -> at-voc:country [0..1]
epo:hasCountryOfBirthThe country in which the Person was born. - cpv:Person -> at-voc:country [0..1]
epo:hasCurrencyThe identifier of the currency as in the standard code list used. - - epo:MonetaryValue -> at-voc:currency [0..1]
epo:hasDirectAwardJustificationList of reasons for using a procedure which allows awarding contracts directly without - publishing a notice. - - WG Approval 28/05/2020 - epo:DirectAwardTerm -> at-voc:direct-award-justification [0..1]
epo:hasDocumentRestrictionJustificationAn explanation about the reasons why some procurement documents are restricted. - - Additional Information: - This corresponds in eForms to BT-707 Documents Restricted Justification. - - WG Approval 09/03/2021 - epo:AccessTerm -> at-voc:communication-justification [0..1]
epo:hasDPSScopeExplanation as to whether a dps is used and by whom. - - Additional Information: - This corresponds in eForms to BT-766 Dynamic Purchasing System. - WG Approval 09/11/2021 - Explanation as to whether a dps is used and by whom. - WG Approval 09/11/2021 - - The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usageepo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage [0..1]
epo:hasECataloguePermissionThe extent to which electronic catalogues may be used in tenders. - - WG Approval 03/10/2019 - epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEInvoicingPermissionepo:ContractTerm -> at-voc:permission [0..1]
epo:hasElectronicDigestepo:Document -> epo:Document [0..*]
epo:hasElectronicSignatureepo:Document -> epo:ElectronicSignature [0..*]
epo:hasElementChangeepo:NoticeChange -> epo:ElementChangeDescription [1..*]
epo:hasElementConfidentialityRelation indication that the publication provision applies to a given field of a document.epo:PublicationProvision -> epo:ElementConfidentialityDescription [1..*]
epo:hasElementDescriptionepo:NoticeDescription -> epo:ElementDescription [0..*]
epo:hasElementModificationepo:ContractModification -> epo:ElementModificationDescription [1..*]
epo:hasEndpointIdentifiercv:Channel -> adms:Identifier [0..*]
epo:hasEstimatedBuyerConcessionRevenueThe expected payments made by the buyer to the economic operator awarded the concession - that are not directly related to the use of the concession. - - <u>Additional Information:</u> - For example the public buyer pays a yearly fee to provide a ticketing solution to - the public. The fee the public pays for every ticket sold through the solution is - not included in this estimation but in the estimation of the user concession revenue. - - This corresponds to BT-160 in eForms. - - WG Approval 07/01/2020epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedDurationRelation indicating a Contract has an estimated Duration. - - Additional Information - - When the Lot uses a Technique the contract estimated duration applies to the Technique. - epo:Contract -> epo:Duration [0..1]
epo:hasEstimatedUserConcessionRevenueThe estimated revenue coming from the use of the concession. - - Additional Information: - Revenues are for example fees and fines. For example, the fees and fines coming from - the cars using a motorway. - - This corresponds to BT-162 in eForms. - epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedValueA forecast of the value of the procurement before competition. - - Additional Information: - Different cases of estimated values may refer to a lot, the global value of the procedure, - or of a combinatorial value of a group of lots. - The forecast is calculated by the buyer and covers all revenues whether coming from - the buyer or third parties. - See for example recital (19), Article 5 of Directive 2014/24/EU and other articles - from the rest of Directives about procurement. - - In the case of framework agreements and dynamic purchasing systems this refers to - the maximum estimated value. - - This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used - for BT-157 (for LotGroup). - <b> - </b><b>WG Approval 05/12/2019</b> - - epo:ProcurementElement -> epo:MonetaryValue [0..1]
epo:hasESubmissionPermissionThe requirements as to what extent electronic submission is allowed. - - WG Approval 03/10/2019 - - epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasFinancialOfferValueThe value offered by the Tenderer for a Lot. - - Additional Information: - This value is normally the one awarded for a winning Tender Lot. In case of negotiated - procedures the original financial value may be reviewed and the offer updated. - - This corresponds to BT-720 in eForms.epo:Tender -> epo:MonetaryValue [0..1]
epo:hasFixedValueTypeThe method to interpret the fixed value as pertaining to a total or unit. - - WG Approval 17/09/2019 - - epo:AwardCriterion -> at-voc:number-fixed [0..1]
epo:hasFormTypeA categorisation of the steps in which the Notice is used. - - WG Approval 12/05/2020 - - epo:Notice -> at-voc:form-type [0..1]
epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
epo:hasFrameworkAgreementEstimatedValueThis refers to BT-660 in eForms.epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementMaximumValueepo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementTypeThe form of framework agreement used in a procurement procedure. - - Addition information: - - A concept to distinguish the different types of framework agreement, which are: - 1. Framework agreement without reopening of competition, - 2. Framework agreement with reopening of competition, or - 3. Framework agreement partly without reopening of competition. - - WG Approval 19/09/2019 - - epo:FrameworkAgreementTerm -> at-voc:framework-agreement [1]
epo:hasFundProgrammeepo:Fund -> at-voc:EU-programme [0..1]
epo:hasGroupFrameworkAgreementMaximumValueThis corresponds to BT-156 in the eForms.epo:LotGroupAwardInformation -> epo:MonetaryValue [0..1]
epo:hasHighestReceivedTenderValueAmount of the Tender with the highest value. - - Additional Information - The value must correspond to an admissible tender. For example, tenders compliant - with the procurement document requirements, not having an abnormally low price or - cost, etc. - - - WG Approval 12/12/2019 - - - epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasImplementingRegulation epo-not:eFormsNotice -> (EU) 2019/1780 [0..1]
epo-not:StandardFormsNotice -> (EU) 2015/1986 [0..1]
epo:hasInternalIdentifierepo:ProcurementElement -> adms:Identifier [0..*]
epo:hasIrregularityTypeAdditional information: - This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity - Typeepo:ReviewIrregularitySummary -> at-voc:irregularity-type [1]
epo:hasItemCountryOfOriginThe source country of the product or service. - - Additional Information: - - The country of origin can be provided by the buyer as a requirement or by the tenderer - information of the item to be provided. - - WG Approval 07/01/2020 - - The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/countryepo:Tender -> at-voc:country [0..*]
epo:hasLanguageLanguage in which the submitted information is to be expressed. - - WG Approval 21/07/2020 - - epo:SubmissionTerm -> at-voc:language [0..*]
epo:hasLateSubmissionPermissionWhether economic operator-related information can be supplemented even after the submission - deadline. - - Additional Information - This is specific to the information on the economic operator and not the actual offer. - This does not apply to the requests for clarification. - - WG Approval 21/07/2020 - epo:SubmissionTerm -> at-voc:missing-info-submission [0..1]
epo:hasLaunchFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLaunchGroupFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLegalBasisThe legal basis under which the procurement procedure takes place. - - Additional Information: - For example European Directives or Regulations, national laws etc. - The recommended code list is the example for the legal basis at the European level. - - WG 04/04/2023 - - The legal basis under which the procurement procedure takes place. - - Additional Information: - For example European Directives or Regulations, national law - - WG 09/11/2021 - - The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis - epo:ProcurementObject -> at-voc:legal-basis [0..*]
epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
epo:hasLegalIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasLegalRegimeepo:ProcurementObject -> epo:legal-regime [0..*]
epo:hasLotReferenceepo:Contract -> epo:Lot [1..*]
epo:hasLowestReceivedTenderValueAmount of the Tender with the lowest value. - - Additional Information - The value must correspond to an admissible tender. For example, tenders compliant - with the procurement document requirements, not having an abnormally low price or - cost, etc. - - WG Approval 12/12/2019 - - epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasMainActivityThe principal sectoral area in which an organisation operates. - - Additional information: - - The activities associated with buyers are derived from the top level of the Classification - of the functions of the government (COFOG) from the United Nations Statistics Division. - - The activities associated with buyer are derived from sectors explicitly falling within - the sectoral directive (2014/25/EU Art. 8 - Art. 14). - - WG Approval 05/05/2020 - - org:Organization -> at-voc:main-activity [0..1]
epo:hasMainClassificationepo:Purpose -> at-voc:cpv [1..*]
epo:hasMaximumFrameworkAgreementAwardedValueThe maximum value which can be spent through all the framework agreements announced - in this notice, including options and renewals of contracts. - - Additional information: - - The value provided is a threshold value that implicity means that it cannot be exceeded - however it may not be reached during the execution of a contract. - - The Framework Agreements in a CAN are to be traced back and added to provide this - value. - - This corresponds to the BT-118 in eForms. - - WG Approval 03/12/2019epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasMemberepo:OrganisationGroup -> org:Organization [1..*]
epo:hasModificationJustificationExplanation of why a contract was modified. - WG Approval 09/11/2021 - - The codelist to be used is at-voc:modification-justification which is available at - http://publications.europa.eu/resource/dataset/modification-justification - - Additional Information - - This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - - This corresponds in eForms to BT-200. - - Explanation of why a contract was modified. - - WG Approval 09/11/2021 - - The codelist to be used is at-voc:modification-justification which is available at - http://publications.europa.eu/resource/dataset/modification-justification - - Additional Information - - This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - - This corresponds in eForms to BT-200. - - - epo:ElementModificationDescription -> at-voc:modification-justification [1]

epo:hasNationality - cpv:Person -> at-voc:country [0..*]
epo:hasNonAwardJustificationOn hold; Enumeration. - - - epo:AwardDecision -> at-voc:non-award-justification [0..1]
epo:hasNonElectronicSubmissionJustification - Reason for not accepting electronic information. - - WG Approval 21/07/2020 - epo:SubmissionTerm -> at-voc:communication-justification [0..*]
epo:hasNonPublicationJustificationThe reason why data is not published. - WG Approval 11/06/2020 - - epo:ElementConfidentialityDescription -> at-voc:non-publication-justification [1]
epo:hasNoticeType epo:Notice -> at-voc:notice-type [1]
epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
epo:hasNotificationContentTypeA categorisation of templates for sets of Procurement information to be conveyed in - Notices. - - WG Approval 12/05/2020epo:Notice -> epo:notification-phases-content-types [0..1]
epo:hasNutsCode dct:Location -> at-voc:nuts [0..1]
locn:Address -> at-voc:nuts [0..1]
epo:hasOfficialLanguageThe language(s) in which the instances of the given concepts are officially available. - These linguistic versions are equally legally valid. - - WG Approval 03/10/2019 - - epo:Document -> at-voc:language [1..*]
epo:hasPerformingStaffQualificationInformation - Additional information: - - This relation corresponds in eForms to BT-79.Explanation as to if and/or when information - of the persons to carry out the contract is to be provided. - WG Approval 09/11/2021 - - The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage - epo:ProcurementCriterion -> at-voc:requirement-stage [0..*]
epo:hasPlannedDurationepo:PlannedProcurementPart -> epo:Duration [0..1]
epo:hasPlannedPeriodepo:PlannedProcurementPart -> epo:Period [0..1]
epo:hasPrimaryContactPointorg:Organization -> cpov:ContactPoint [0..*]
epo:hasPrizeValueThe monetary value of a prize, if any, for the winner (or runners-up) of the design - contest. - - Additional Information: - This corresponds to BT-644 in eForms. - - WG Approval 29/08/2019 - - epo:Prize -> epo:MonetaryValue [0..1]
epo:hasProcedureTypeIdentification of the Procedure used. - - WG Approval 09/06/2020 - epo:Procedure -> at-voc:procurement-procedure-type [1]
epo:hasProcurementClassificationepo:Contract -> at-voc:cpv [0..1]
epo:hasProcurementHighestReceivedTenderValueThe highest received tender value for the procurement. - - Additional Information: - This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementLowestReceivedTenderValueThe lowest received tender value for the procurement. - - Additional Information: - This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementScopeDividedIntoLotepo:Procedure -> epo:Lot [1..*]
epo:hasPurposeRelation indicating a procurement part has a puropse.epo:ProcurementObject -> epo:Purpose [0..1]
epo:hasQualificationSystemDurationepo:MultipleStageProcedureTerm -> epo:Duration [0..1]
epo:hasReceivedSubmissionTypeepo:SubmissionStatisticalInformation -> at-voc:received-submission-type [0..1]
epo:hasRegistrationCountryorg:Organization -> at-voc:country [0..1]
epo:hasRemedyValueAdditional information: - This relation corresponds in eForms to BT-793 Review Remedy Value.epo:ReviewDecision -> epo:MonetaryValue [0..1]
epo:hasReservedExecutionepo:ContractTerm -> at-voc:applicability [0..1]
epo:hasReservedProcurementExplanation as to whether a procurement may be reserved for the participation of certain - types of organisation. - - Additional information: - This property corresponds in eForms to the BT-71 - WG Approval 09/11/2021 - Explanation as to whether a procurement may be reserved for the participation of certain - types of organisation. - - Additional information: - This property corresponds in eForms to the BT-71 - WG Approval 09/11/2021 - epo:ParticipationCondition -> at-voc:reserved-procurement [0..*]
epo:ParticipationConditionsSummary -> at-voc:reserved-procurement [0..*]
epo:hasReviewBodyTypeepo:Reviewer -> at-voc:review-body-type [0..*]
epo:hasReviewDecisionTypeAdditional information: - This relation corresponds in eForms to BT-790 Review Decision Type.epo:ReviewDecision -> at-voc:review-decision-type [0..*]
epo:hasReviewIrregularitySummaryAdditional information: - This relation corresponds in eForms to BG-613 Buyer Review Requestsepo:ReviewRequestSummary -> epo:ReviewIrregularitySummary [0..*]
epo:hasReviewRequestFeeAdditional information: - This relation corresponds in eForms to BT-795 Review Request Fee.epo:ReviewRequest -> epo:MonetaryValue [0..1]
epo:hasSelectionCriteriaUsage - Additional Information: - This corresponds in eForms to BT-748 Selection Criteria Used.epo:SelectionCriterion -> at-voc:usage [0..1]
epo:hasSelectionCriterionTypeThe classification of the selection criteria. - - - Additional Information: - - This corresponds in eForms to BT-747 Selection Criteria Type. - - WG Approval 09/11/2021 - epo:SelectionCriterion -> at-voc:selection-criterion [0..1]
epo:hasStartDateepo:SelectedCandidateList -> epo:Period [0..1]
epo:hasSubcontractingEstimatedValueThe estimated value of a single subcontract. - - This relates to BT-553 in eForms. - - WG Approval 01/09/2020 - - epo:SubcontractingEstimate -> epo:MonetaryValue [0..1]
epo:hasSubcontractingObligationThe requirement the tender must meet with regard to subcontracting parts of the contract. - WG Approval 09/11/2021 - - epo:SubcontractTerm -> at-voc:subcontracting-obligation [0..*]
epo:hasTaxIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasTenderSubcontractingInformationThe information about subcontracting that must be indicated in the tender. - - WG Approval 10/10/2019 - - epo:SubmissionTerm -> at-voc:subcontracting-indication [0..*]
epo:hasTenderValidityPeriodThe relation indicating until when a tender instance is applicable. - epo:SubmissionTerm -> epo:Period [0..1]
epo:hasThresholdTypeThe method to interpret the threshold value as minimum or a maximum. - - WG Approval 17/09/2019 - cccev:Constraint -> at-voc:number-threshold [0..*]
epo:hasTimePeriod - - epo:Period -> at-voc:timeperiod [1..*]
epo:hasTotalAwardedValueThe awarded value of all lots announced in this notice, including options and renewals. - - - Additional information: - The values of the individual Lots awarded under a framework agreement and mentioned - in this notice are included. - - The values of the individual lots announced in a CAN are to be traced back and added - to provide this value. - - This corresponds to the BT-161 in eForms. - - WG Approval 03/12/2019 - epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasTotalQuantityThe number of units required. - - Additional Information: - The quantity needs to go along with the unit. - - - - epo:Purpose -> epo:Quantity [0..1]
epo:hasTotalValue epo:TenderGroup -> epo:MonetaryValue [1]

epo:hasUnitCodeepo:Quantity -> at-voc:measurement-unit [1]
epo:hasUnofficialLanguageThe language translation(s) in which the instances of the given concepts are available. - These linguistic versions are not an official translation, they are provided only - for information. - - WG Approval 03/10/2019 - epo:Document -> at-voc:language [0..*]
epo:hasUsageThe codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage - epo:Technique -> at-voc:usage [0..1]
epo:hasUUIDA universally unique identifier for an instance of this document. - - WG Approval 12/05/2020epo:Document -> adms:Identifier [0..1]
epo:hasValidityPeriodThe relation indicating until when a given instance of a concept is applicable. - - WG approval 30/05/2023 - The relation indicating until when a given instance of a concept is applicable. - - WG approval 30/05/2023epo:Technique -> epo:Period [0..1]

epo:hasVariantPermissionThe obligation or possibility for tenderers to submit variants or not. - - Additional Information: - - Variants are alternative ways to fulfil the buyer's needs as opposed to solutions - indicated in the procurement documents. - - eForms: Whether tenderers are required, allowed or forbidden to submit tenders which - fulfil the buyer's needs differently than as proposed in the procurement documents. - - - Additional Information: - - Further conditions for submitting variant tenders are in the procurement documents. - epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasWeightValueTypeNo definition. Waiting on CCCEV alignment. - - - epo:ProcurementCriterion -> at-voc:number-weight [0..1]
epo:includesAccessibilityCriterionExplanation as to whether accessibility Criterion are used or not. - WG Approval 09/11/2021 - - epo:StrategicProcurement -> at-voc:accessibility [0..*]
epo:includesTenderAdditional information: - This corresponds in eForms to BT-3202 Contract Tender Identifier. - epo:Contract -> epo:Tender [0..*]
epo:indicatesAwardToWinnerReveals the winner to whom the tender award outcome is attributed.epo:TenderAwardOutcome -> epo:Winner [0..1]
epo:indicatesInvoiceeContactPointepo:Buyer -> cpov:ContactPoint []
epo:involvesBuyerepo:Procedure -> epo:Buyer [0..*]
epo:involvesProcurementDocumentepo:AccessTerm -> epo:ProcurementDocument [1]
epo:isBasedOnImplementingRegulationIndicates under which regulation a notice is created. - - WG Acceptance 06/09/2022epo:Notice -> at-voc:legal-basis [0..1]
epo:isBeneficialOwnerOfA role of any natural person(s) who ultimately owns or controls the organisation or - on whose behalf a transaction or activity is being conducted. - Additional Information: - This role is defined in the directive EU 2015/849 and it's beyond the scope for public - eProcurement domain. - WG approval 14/09/2021epo:Business [,0..*] <- cpv:Person
epo:isExecutedByProcurementServiceProviderepo:Procedure -> epo:ProcurementServiceProvider [0..1]
epo:isFundedByFunding is provided either completely or partially by a Fund. - - Additional information: - This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 - Contract EU Funds (applied per Contract lot) - Funds may change between the lot and the contract, for example in the case of an emergency - crisis, a contract may be financed by a budget that was not foreseen in the call. - - epo:ProcurementObject -> epo:Fund [0..*]
epo:isOwnedByAgentepo:System -> foaf:Agent [0..1]
epo:isResponsibilityOfBuyerThe buyer in charge of the procedure. - - Additional Information: - In case there are multiple buyers, it may be the case that one or more buyers are - in charge of the procedure. - - epo:Procedure -> epo:Buyer [0..*]
epo:isSubjectToContractSpecificTermepo:Contract -> epo:ContractSpecificTerm [0..*]
epo:isSubjectToGroupingepo:Tender -> epo:LotGroup [0..1]
epo:isSubjectToLotSpecificTermepo:Lot -> epo:LotSpecificTerm [0..*]
epo:isSubjectToProcedureSpecificTermepo:Procedure -> epo:ProcedureSpecificTerm [1..*]
epo:isSubjectToTermepo:ProcurementObject -> epo:Term [0..*]
epo:isSubmitedByRelation indicating the submission of a tender by an economic operator. - WG approval 18/05/2021epo:Tender -> epo:Tenderer [0..1]
epo:isSubmittedForLotepo:Tender -> epo:Lot [1]
epo:isSubmittedForLotGroupepo:TenderGroup -> epo:LotGroup [1]
epo:leadByepo:OrganisationGroup -> org:Organization [0..1]
epo:needsToBeATendererThe Winner must be a Tenderer.epo:Winner -> epo:Tenderer [0..1]
epo:needsToBeAWinnerThe Contractor must be a Winner. - epo:Contractor -> epo:Winner [0..1]
epo:ownsSystemepo:System [,0..*] <- foaf:Agent
epo:playedBy epo:AgentInRole -> foaf:Agent [1]

epo:JuryMember -> foaf:Person [0..1]
epo:providesContractTotalPaymentValueAdditional Information: - This corresponds to BT-779 in eForms. epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesContractTotalPenaltyValue - Additional Information: - This corresponds to BT-782 in eForms. - epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesRulingOnRemedyStates the measures to be taken after a review procedure.epo:ReviewDecision -> at-voc:remedy-type [0..*]
epo:refersToAwardDecision epo-not:CompletionNotice -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision [0..*]
epo-not:CompletionNotice -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision [0..*]
epo:refersToContractepo:ContractLotCompletionInformation -> epo:Contract [1]
epo:refersToContractToBeModified epo-not:ContractModificationNotice -> epo:Contract [1]
epo-not:ContractModificationNotice -> epo:Contract [1]
epo:refersToLot epo:Notice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo:refersToLotGroup epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:CompletionNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation [0..*]
epo:refersToNonPublishedElement epo-not:CompletionNotice -> epo:PublicationProvision [0..*]
epo-not:CompletionNotice -> epo:PublicationProvision [0..*]
epo:refersToNoticeepo:Notice -> epo:Notice [0..1]
epo:refersToNoticeAwardInformation epo-not:CompletionNotice -> epo:NoticeAwardInformation [0..1]
epo-not:CompletionNotice -> epo:NoticeAwardInformation [0..1]
epo:refersToOriginalNoticeepo:ContractModification -> epo:Notice [0..1]
epo:refersToPlannedPartepo:AccessTerm -> epo:PlannedProcurementPart [0..*]
epo:refersToPreviousepo:Document -> epo:Document [0..*]
epo:refersToPreviousNotice - Additional information: - This corresponds in eForms to BT-758 Change Notice Version Identifier.epo:NoticeChange -> epo:Notice [0..1]
epo:refersToPreviousProcedureReference to a previous procedure. - - Additional Information: - In the case of Direct Award Terms, this property points to a previous Procedure justifying - the use of Direct Award without a prior publication. - - This corresponds in the eForms to BT-1252 Direct Award Justification Previous - Procedure Identifierepo:DirectAwardTerm -> epo:Procedure [0..1]
epo:refersToPreviousProcedureLotReference to one or more Lots in a previous procedure. - - Additional Information: - In the case of Direct Award Terms, this property points to a previous Procedure justifying - the use of Direct Award without a prior publication. - - This corresponds in the eForms to BT-1252 Direct Award Justification Previous - Procedure Identifier - - WG Approval 22/11/2019 14:33:55epo:DirectAwardTerm -> epo:Lot [0..*]
epo:refersToPreviousReviewAdditional information: - This relation corresponds in eForms to BT-785 "Review Previous Identifier".epo:ReviewObject -> epo:ReviewObject [0..1]
epo:refersToProcedure epo-not:ResultNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo:Notice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:ResultNotice -> epo:Procedure [1]
epo:refersToRole epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo:requestsRemedyTypeAdditional information: - This relation corresponds in eForms to BT-792 Review Remedy Typeepo:ReviewRequest -> at-voc:remedy-type [0..*]
epo:resolvesReviewRequestepo:ReviewDecision -> epo:ReviewRequest [1]
epo:resultsFromLotAwardDecision epo:DirectContract -> epo:LotAwardDecision [0..*]
epo:FrameworkAgreement -> epo:LotAwardDecision [0..*]
epo:resultsFromMiniCompetitionAwardDecisionepo:PurchaseContract -> epo:MiniCompetitionAwardDecision [0..1]
epo:resultsInDynamicPurchasingSystemepo:DynamicPurchaseSystemTechnique -> epo:DynamicPurchasingSystem [1]
epo:setsGroupingContextForLotepo:LotGroup -> epo:Lot [1..*]
epo:signedByBuyerepo:Contract -> epo:Buyer [0..*]
epo:signedByContractorepo:Contract -> epo:Contractor [0..*]
epo:signsAwardDecisionepo:Buyer -> epo:AwardDecision [0..*]
epo:specifiesAwardCriterionepo:MiniCompetition -> epo:AwardCriterion [0..*]
epo:specifiesProcurementCriteriaSummaryepo:Procedure -> epo:ProcurementCriteriaSummary [0..*]
epo:specifiesProcurementCriterion epo:Lot -> epo:ProcurementCriterion [0..*]
epo:LotGroup -> epo:ProcurementCriterion [0..*]
epo:specifiesSubcontractorsepo:Tender -> epo:Subcontractor [0..*]
epo:substantiatesExclusionGroundepo:Tenderer -> epo:ExclusionGround [0..1]
epo:summarisesInformationForAwardDecisionRelates to submission for the given competition, either at Lot level or Mini-Competition - level. - - WG approval 30/05/2023epo:SubmissionStatisticalInformation -> epo:AwardDecision [1]
epo:usesCandidateListepo:MiniCompetition -> epo:SelectedCandidateList [0..1]
epo:usesChannelepo:ProcurementElement -> cv:Channel [0..*]
epo:usesTechniqueepo:ProcurementObject -> epo:Technique [0..*]
epo-not:announcesRole epo-not:ResultNotice -> epo:AgentInRole [0..*]
epo-not:ResultNotice -> epo:AgentInRole [0..*]
epo-not:hasLegalBasisepo-not:Modification-D24 -> Directive 24 [0..1]
epo-not:refersToRole epo-not:ResultNotice -> epo:AgentInRole [1..*]
epo-not:ResultNotice -> epo:AgentInRole [1..*]
locn:addressdct:Location -> locn:Address [0..1]
locn:addressIDA globally unique identifier for each instance of an Address. - - Additional Information: - The concept of adding a globally unique identifier for each instance of an address - is a crucial part of the INSPIRE data spec. A number of EU countries have already - implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. - OASIS xAL also includes an address identifier. It is the address Identifier that allows - an address to be represented in a format other than INSPIRE whilst remaining conformant - to the Core Vocabulary. - - The INSPIRE method of representing addresses is very detailed, designed primarily - for use in databases of addresses. Whilst data that is published in full conformance - with the INSPIRE data structure can be made available using the Location Core Vocabulary - the reverse is not true since the Core Vocabulary allows much greater flexibility. - - Many datasets that include address data as one piece of information about something - else are likely to have that data in simpler formats. These might be tailored to the - specific need of the dataset, follow a national norm, or make use of a standard like - vCard. - - To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable - with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location - Core Vocabulary provides the extra property of full address and makes use of INSPIRE's - addressID.locn:Address -> adms:Identifier [0..1]
locn:geographicIdentifierA URI that identifies the Location. - - Additional Information: - GeoNames.org provides stable, widely recognised identifiers for more than 10 million - geographical names that can be used as links to further information. For example, - http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately - these URIs cannot easily be automatically deduced since the URI scheme uses simple - numeric codes. Finding a GeoNames identifier for a Location is almost always a manual - process. Where such identifiers are known or can be found, however, it is recommended - that they be used. - - Where the Location Class is used to identify a country, if the geonames URI is not - known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX - where XX is the ISO 3166 two character code for the country. - - The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece - and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct - URIs for these countries are: - - - http://dbpedia.org/resource/ISO_3166-1:GR - - http://dbpedia.org/resource/ISO_3166-1:GB - even when the geographic name is given as EL or UK. - - The use of a URIs has added advantages: - - - it can be used by automated systems to look up additional data (linked data); - - a triple store may store only one copy of the URI, whereas if a string is used, - a copy of that string is always stored for each and every person in the database. - Thus, in large data sets, the saving on memory capacity and the improvement in transmission - efficiency can be substantial. - dct:Location -> adms:Identifier [0..1]
locn:geometrydct:Location -> locn:Geometry [0..1]
person:placeOfBirthThe Location where the Person was born.cpv:Person -> dct:Location [0..1]
person:placeOfDeathThe Location where the Person died.cpv:Person -> dct:Location [0..1]
time:unitTypeepo:SpecificDuration -> time:TemporalUnit [1]
-
-
- - \ No newline at end of file diff --git a/glossary/ontologies-combined_glossary.html b/glossary/ontologies-combined_glossary.html deleted file mode 100644 index 4f9aad5..0000000 --- a/glossary/ontologies-combined_glossary.html +++ /dev/null @@ -1,6393 +0,0 @@ - - - - - - - - - - - - - - - - Model glossary - - -
-
-
-

Table of contents

-
-
-
-

Glossary

-

Class names and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Class nameDefinition
adms:IdentifierA character string to identify and distinguish uniquely, one instance of an object - in an identification scheme from all other objects in the same scheme together with - relevant supplementary information.
cccev:ConstraintLimitation applied to an Information Concept. - - Additional Information: - Constraints are Requirements in themselves, since they impose prerequisites which - influence the definition, use and/or Fulfilment of the Requirement. They represent - hard conditions such as minimum or maximum expressions which can be used to evaluate - pieces of information, the required age, income, involvement in activities, etc. An - example from the eProcurement domain is a threshold as the minimum turnover required - by the buying Organisation to select the Candidates. Note that CCCEV does not provide - any specific guidance on when which kind of Requirement should be used. Users of this - vocabulary should make decisions on this topic in their specific context.
cccev:CriterionCondition for evaluation or assessment. - - Additional Information: - In general, Criteria are used for comparison, filtering or Selection purposes. Criteria - usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need - to be met in order to pass the Requirements or to fulfil them to a certain degree - or quality. The concept of Criteria is broader than the concept of Constraint since - it covers more usages. The evaluation of the fulfilment is usually supported by the - provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology - defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria - or Award Criteria. A concrete example of a Criterion is 'participation in a criminal - organisation' which could also be considered as an Exclusion Ground Criterion in the - procurement domain or for requiring a public service.
cccev:EvidenceProof that a Requirement is met. - -
cccev:InformationConceptPiece of information that the Evidence provides or the Requirement needs.
cccev:RequirementCondition or prerequisite that is to be proven by Evidence. - - Additional Information: - Requirement is a generic class representing any type of prerequisite that may be desired, - needed or imposed as an obligation. CCCEV recommends to not use the Requirement class - directly, but rather a more semantically-enriched subclass such as Criterion, Information - Requirement or Constraint. Also note that the Requirement class is specified at a - more abstract level and is not to be used as the instantiation of a Requirement for - a specific Agent. - To illustrate the notion: the European Directive on services in the internal market - defines requirement as any obligation, prohibition, condition or limit provided for - in the laws, regulations or administrative provisions of the Member States or in consequence - of case-law, administrative practice, the rules of professional bodies, or the collective - rules of professional associations or other professional Organisations, adopted in - the exercise of their legal autonomy. - To stay consistent to how identification is realised in the eProcurement ontology, - we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification.
cpov:ContactPointInformation (e.g. e-mail address, telephone number) of a Person or department through - which the user can get in touch with. - - Additional information: - This class represents the contact information for a Public Service, Channel, Public - Organisation, etc. - The Contact Point could be a role, email address, telephone number, etc. - - WG approval 5/11/2019
cpov:PublicOrganisationAn Organisation that is defined as being part of the public sector by a legal framework - at any level. - - Additional information: - A body governed by public law: - - (a) established for the specific Purpose of meeting needs in the general interest - - (b) having legal personality; - - (c) financed, for the most part by the State, or regional or local authorities. - - - Examples of Public Organisations are municipality, international public body, ministry, - others. - - WG Approval 28/04/2020
cpv:PersonA individual human being who may be dead or alive, but not imaginary. -
cv:ChannelA medium through which Agents interact. - - Additional Information - Typical examples include online services, email, endpoint on eDelivery infrastructure, - phone, etc. - - Software solutions and electronic devices for communication and exchange of information - between Buyers and economic Operators. - Lots may use ad-hoc electronic means of communication that are not generally available - such as specific solutions for secure and dedicated communication or non-standard - eCatalogues. - - See also Directive recitals 53 to 56. - - WG approval 2023-02-14
dct:LocationAn identifiable geographic place or named place.
epo:AccessTermConditions and stipulations about where and how to access the Procurement Documents. - - WG Approval 09/03/2021 - -
epo:AcquiringCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of - the acquisition of supplies and/or services intended for other Buyers. - Additional Information: - In Public Procurement the Role of Acquiring Central Purchasing Body is carried out - by a Central Purchasing Body for other Contracting Authorities. - - WG approval 05/08/2021 -
epo:AcquiringPartyThe Role of an Agent that acts on the buying side of a Procurement Process. -
epo:AdHocChannelWeb page where tools and devices for electronic communication that are not generally - available can be downloaded free of charge. - - Additional Information: - - This corresponds in eForms to BT-724 Tool Atypical. - - - WG Acceptance 10/01/2023 -
epo:AgentInRoleRelative concept that ties an Agent to a part they play in a given Situational Context. - - Additional information: - The classification of roles is based is based on the degree of involvement into the - Procurement Process: - - Primary (Procurement) Pole is directly involved in the Procurement Process; - - Secondary (Procurement sub-) Role is secondary to the Procurement Process - - Tertiary (Related) Role is not involved in the Procurement Process.
epo:AuxiliaryPartyRole of an Agent who may be mentioned in the information exchanged during the Procurement - Process but who does not play an active part in it.
epo:AwardCriteriaSummary
epo:AwardCriterionCriterion that describes a Requirement that the Tender needs to resolve and on which - the Tender is evaluated and ranked. - - WG approval 05/11/2018
epo:AwardDecisionResolution of the Buyer as to the result of the Procurement Procedure. - - WG approval 14/11/2018
epo:AwarderA Role of an Agent that signs the Award Decision.
epo:AwardEvaluationTermConditions and stipulations defining particularities of the evaluation of Award Criteria.
epo:AwardingCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of - the award of Public Contracts or the conclusion of Framework Agreements for works, - supplies or services intended for other Buyers. - Additional Information: - In Public Procurement the Role of Awarding Central purchasing Body is carried out - by a Central Purchasing Body for other Contracting Authorities. - - WG approval 05/08/2021 -
epo:BudgetProviderA role of an agent whose Budget is used to pay for the Contract.
epo:BusinessA private law company registered in a national registry. - - WG Approval 28/04/2020 - -
epo:BuyerA Role of an Agent that awards a Contract and/or purchases items. - - Additional information: - In Public Procurement the Role of Buyer is carried out by the following types of Organisation: - Contracting Authority, Contracting Entity, a defense Contractor, an international - Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. - In Pre-Award, the Buyer generally awards the Contract, however future purchasers may - be foreseen. - In Post-Award the buyer generally refers to the purchaser of items.
epo:CandidateThe Role of an Agent that has sought an invitation or has been invited to take part - in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated - Procedure without prior publication, in a competitive dialogue or in an innovation - partnership. - - WG approval 30/05/2023
epo:CatalogueProviderA Role of an Agent compiling and supplying a Catalogue. - - Additional Information: - - The Catalogue Provider Role is usually played by the Agent that acts as a Seller, - or by another Agent that acts on behalf of the Seller. - - WG Approval 28/01/2021 -
epo:CatalogueReceiverA Role of an Agent processing a Catalogue. - - Additional Information: - The Catalogue Receiver may not only receive it but also validate it, process it, etc. - - The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or - by another Agent that acts on behalf of the Buyer. - - WG Approval 28/01/2021
epo:CentralPurchasingBodyRole of an Agent that provides centralised purchasing activities and, possibly, ancillary - purchasing activities for other Buyers. - - Additional Information: - In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting - Authority for other Contracting Authorities. - Contracting Authority procuring activities conducted on a permanent basis, in one - of the following forms:[...](b) the award of Public Contracts or the conclusion of - Framework Agreements for works, supplies or services intended for Contracting Authorities; - - WG approval 05/08/2021
epo:ConcessionContractA Contract between one or more Buyers and one or more Economic Operators giving the - right to the Economic Operators to exploit the rights foreseen in the Contract which - may include the receipt of Payments. - - WG Approval 24/05/2022
epo:ConcessionEstimate
epo:ContextSpecificDescriptionA description concerning a Procurement Object or a Notice in a specific Situation - Context. - - Additional Information: - The description has its own identity (+I) but is dependent (+D) on the concerned Entity. - - - We say that ContextSpecificDescription *concerns* an Entity. -
epo:ContextualProjectionProjection of an Entity and all of its properties that hold in a given Situation Context. - - - Additional Information: - The contextual projection does not have its own identity (-I), is dependent (+D) - on the described Entity, and is anti-rigid (~R) - - We say that ContextualProjection *describes* an Entity. - - Adaptation of ContextSlices pattern encoding a 4D view. - http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices
epo:ContractA voluntary, deliberate, and legally binding agreement between two or more competent - parties. - - Additional information: - This includes Concession Contracts. - - (WG approval 01/06/2018)
epo:ContractLotCompletionInformationInformation related to a given Lot at the end of the procurement.
epo:ContractModificationAn Announcement of the Modification Of a Contract/Concession during its Term by a - Buyer.
epo:ContractorThe Role of an Agent that has signed a Contract with a Buyer. - - WG approval 08/11/2022
epo:ContractSpecificTermGathering class for conditions and stipulations related to a contract in the Post-Award - Phase.
epo:ContractTermConditions and stipulations defining particularities of the Post Award Phase. - - (WG approval 23/11/2018) -
epo:DesignContestRegimeTermConditions and stipulations defining particularities of a Design Contest. - - WG approval: 04-02-2021
epo:DirectAwardTermConditions and stipulations defining particularities of the award of a Contract without - prior publication. - - Addtional Information: - - Direct award may refer to a previous Procedure and/or specific Lot(s). - - It may also refer to other justified situations whereby there is no previous Procedure. - - See Directive 2014/24/EU Article 32. - - WG Approval 22/11/2019 - - -
epo:DirectContract
epo:DocumentA set of interrelated Business Information representing the Business facts and associated - metadata. - The information may be conveyed in any language, medium or form, including textual, - numerical, graphic, cartographic, audio-visual forms, etc. - - WG Approval 23/05/2019 -
epo:DurationThe length of time in which a concept occurs.
epo:DynamicPurchaseSystemTechniqueA Technique that allows the selection of Candidates throughout the Procedure via the - Qualification Criteria, followed by individual Mini-Competitions for the Award of - Purchase Contracts. - - WG approval 23/05/2023
epo:DynamicPurchasingSystemAn electronic System that is set up by a Buyer which lists the Economic Operators - that satisfy the Qualification Criteria, which may later be put into competition via - a Mini-Competition in view of awarding a Purchase Contract. - - WG approval 23/05/2023 -
epo:EAuctionTechniqueA repetitive Technique in which new Prices, revised downwards, and/or new values concerning - certain elements of Tenders are bid on-line. - - Additional Information: - This corresponds in eForms to BT-767 Electronic Auction . - - WG approval 20/07/2018
epo:EconomicStandingSummary
epo:ElectronicSignature
epo:ElementChangeDescriptionInformation about a specific field to be changed with regard to a previous Notice.
epo:ElementConfidentialityDescriptionInformation about a specific field not intended for publication. - - Additional Information: - In the model, a field is identified by a combination of a class and a property on - that class. Therefore, these two references should be both provided. -
epo:ElementDescriptionDescription about a specific resource.
epo:ElementModificationDescriptionInformation about a specific field to be changed with regard to the Modification Of - a Contract.
epo:EmploymentInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory - framework for employment protection and working conditions.
epo:EnvironmentalProtectionInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory - framework for Environmental Protection.
epo:EstimateAn approximate calculation or a judgement of the value, number, Quantity or extent - of something.
epo:EvaluationTermConditions and stipulations defining particularities of the Tender evaluation. - - (WG approval 23/11/2018) - - -
epo:ExclusionGroundCriterion that describes a legal Requirement to be met by the Economic Operator to - be a Candidate in the Procurement. - - Additional Information: - This corresponds in eForms to BG-701 Exclusion Grounds. - - WG approval 31/10/2018
epo:ExclusionGroundsSummary
epo:ExpressionOfInterestDocument presenting an Economic Operator's Request to be considered for Procedures - covering a specific domain. - WG approval 13/04/2021
epo:FrameworkAgreementAn agreement between one or more Contracting Authorities and one or more Economic - Operators. - - Additional Information: - When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which - describes a Lot which specifies the both the Qualification and Award Criteria. - - WG approval 18/05/2021
epo:FrameworkAgreementTechniqueTechnique that establishes the terms governing Contracts to be awarded during a given - Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. - - WG approval 18/05/2021
epo:FrameworkAgreementTermConditions and stipulations defining particularities in a Framework Agreement.
epo:FundA financial resource used to support the Procurement. - - Additional Information: - - In the context of EU, Funds can be divided into programmes, actions and projects. - - Examples of EU funds are: the European Structural and Investment Funds, European Social - Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme - and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which - supports the eProcurement Ontology under sub-action 3). - - Funds may change between the lot and the contract, for example in the case of an emergency - crisis, a contract may be financed by a budget that was not foreseen in the call. - - WG Approved 14/05/2019 - - - - -
epo:GreenProcurementApproach whereby Buyers seek to procure with a reduced Environmental Impact. - - Additional Information: - - The approach may apply to the complete life cycle. The reduced Environmental Impact - is in comparison to goods, services and works with the same primary function that - would otherwise be procured. - - Tightly related are article 68 - Life-cycle costing and article 67 - most economically - advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf - An instance of the class GreenProcurement is represented in eForms with the code "env-imp" - defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf
epo:IndefiniteDuration
epo:InnovativeProcurementAn instance of the class InnovativeProcurement is represented in eForms with the code - "inn-pur" defined in the codelist Strategic-Procurement. - - Research (21/01/2020): - - Purchasing and early adoption of solutions which are not yet available on large scale - commercial basis. - - Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative - Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions - - Additional Information: - ‘innovation’ means the implementation of a new or significantly improved product, - service or process, including but not limited to production, building or construction - processes, a new marketing method, or a new organizational method in business practices, - workplace Organisation or external relations inter alia with the purpose of helping - to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable - and inclusive growth; - See: Directive 2014/24 - Articles: 2, 26 (3), 31, 67 (2.a) - - Question: - Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?
epo:JuryMember
epo:LeadBuyerA Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. - - - WG agreement: 2022-11-22
epo:LotA qualitative, quantitative or strategic subdivision of the goods, services or works - to be procured, allowing the award of one or more Contracts. - - WG approval 12/09/2018
epo:LotAwardDecisionResult concerning the Lot attributed by the Awarder.
epo:LotGroupCombination of several Lots to conduct comparative assessment of the Tenders. - - Additional Information: - - The comparative assessment may refer to the Selection Criteria, Award and Value that - apply to several Lots. - - Pending of discussion with eForms - - - - Member States may provide that, where more than one lot may be awarded to the same - tenderer, contracting authorities may award contracts combining several or all lots - where they have specified in the contract notice or in the invitation to confirm interest - that they reserve the possibility of doing so and indicate the lots or groups of lots - that may be combined.
epo:LotGroupAwardInformationAward information related to a given Group of Lots.
epo:LotSpecificTermGathering class for conditions and stipulations related to a Lot.
epo:MediatorA Role of an Agent that attempts to resolve a dispute between different Agents - and come to an agreement. - WG approval 20/04/2021
epo:MiniCompetitionA process where multiple winners or candidates of previous stages of a procedure bid - for a specific procurement. - - Additional Information: - It is typically used in framework agreements where the suppliers have already been - pre-selected, and the mini competition is used to determine which supplier is best - suited for a particular project or contract. - It is also used in a Dynamic Purchasing System where the suppliers come from a list - of Candidates. - - WG approval 30/05/2023
epo:MiniCompetitionAwardDecisionResult concerning the Mini-Competition attributed by the Awarder. -
epo:MonetaryValueA number of monetary units specified using a given unit of currency. - - Additional information: - In the pre-award phase of the procurement, all monetary values are considered to exclude - VAT based on the Directive 2014/24/EU. - - WG approval 13/04/2021 -
epo:MultipleStageProcedureTermConditions and stipulations defining particularities of Procedures carried out in - several steps - Additional Information: - Generally this refers to Procedures where selection is carried out to qualify Tenderers - who are then requested to submit the rest of their Tender for evaluation is Restricted - Procedure. - WG Approval 15/04/2021
epo:NonDisclosureAgreementTermConditions and stipulations
epo:NoticeDocument published by the Buyer about market opportunities and results. - - WG Approval 23/05/2019 -
epo:NoticeAwardInformationInformation about an Award Notice.
epo:NoticeChangeInformation about a corrigendum in a Notice.
epo:NoticeDescriptionDescriptions about the notice publishing, or providing evolutions of resources.
epo:OfferDocument providing the Monetary Value and the details to fulfill the Requirements - set out in the Procurement Documents or Request for Offer. - - Additional information: - A quotation is considered to be an Offer in the eProcurement Ontology. - - WG approval 09/02/2023
epo:OfferingPartyThe Role of an Agent that acts on the Economic Operator side during a Procurement - Process. - - Additional information: - As per the European Procurement Directives the notion of ‘Economic Operators’ should - be interpreted in a broad manner so as to include any Persons and/or Entities which - offer the execution of works, the supply of products or the provision of services - on the market, irrespective of the legal form under which they have chosen to operate. - Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited - companies, universities, public or private, and other forms of entities than natural - Persons should all fall within the notion of Economic Operator, whether or not they - are ‘Legal Persons’ in all circumstances.
epo:OfferIssuerThe Role of an Agent that distributes an Offer. - - WG approval 09/02/2023
epo:OfflineAccessProviderA Role of an Agent responsible for providing offline access to the Procurement Documents.
epo:OpeningTermConditions and stipulations defining particularities of the opening of Tenders. - Additional Information: - The opening of Tenders is the event when Tenders are made accessible for evaluation, - it is generally the same date and time for all Tenders. - WG Approval 15/04/2021
epo:OrganisationGroupAgreed collaboration of several Organisations. - Additional Information: - This concept has been created to fulfill the need to represent a grouping of Organisations - that is not necessarily registered i.e, consortia. - WG approval 15/04/2021
epo:OriginatorRequestDocument in which the Originator describes his needs. - - WG approval 09/02/2023
epo:OtherEntityEconomic Operator (who is not a Subcontractor) on which the Tenderer relies upon, - to meet Selection Criteria.
epo:ParticipationConditionCriterion that describes a Requirement to take part in a procurement. - - WG approval 30/05/2023
epo:ParticipationConditionsSummary
epo:ParticipationRequestProcessorA Role of an Agent responsible for processing Requests To Participate.
epo:ParticipationRequestReceiverA Role of an Agent responsible for receiving Requests To Participate.
epo:ParticipationRequestTermConditions and stipulations defining particularities of requesting participation in - a Procedure.
epo:PaymentExecutorA Role of an Agent responsible for executing the Payment.
epo:PeriodA time interval or a Duration. - - (WG approval 28/04/2020) -
epo:PlannedProcurementPartA subdivision of a Planned Procurement that may later become one or more Lots or a - self-standing Procedure. A Lot or a Procedure can also cover one or more parts of - the Planned Procurement. - - WG Approval 20/06/2019
epo:PrizeA reward given in a Contest. - WG approval: 15/04/2021
epo:ProcedureA legally defined set of administrative activities conducted to conclude one or more - Contracts. - - Additional Information - The Procedure is categorised in the law according to different rules determining whether - the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see - Procedure Type). - - WG Approval 20/08/2019 -
epo:ProcedureSpecificTermGathering class for conditions and stipulations related to a Procedure.
epo:ProcedureTermConditions and stipulations defining particularities of the Procedure. - - (WG approval 23/11/2018)
epo:ProcessPlanningTermConditions and stipulations defining particularities of the unfolding of the Procurement - Process.
epo:ProcurementCriteriaSummaryWG approval 24/01/2023
epo:ProcurementCriterionA criterion specific to Procurement. - - Additional Information: - - This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award - Criterion. Each of these Criteria can contain subcriteria (Criterion class). - - WG Approval 23/04/2020
epo:ProcurementDocumentDocument produced or referred to by the Buyer to describe or determine elements of - the Procurement. - - Additional information: - - Procurement Documents are to be accessible since the date of publication of the Contract - Notice or the prior information Notice when used as a call for competition. - - Examples of Procurement Documents are Technical Specifications, the Descriptive Document, - proposed conditions of Contract, formats for the presentation of Documents by Candidates - and Tenderers, information on generally applicable obligations. - - Other Documents related to the Procedure such as Notices are not considered to be - Procurement Documents. - - WG Approval 23/05/2019 17:08:30
epo:ProcurementElementGathering class for critical/central elements in the Procurement Process. - - TODO: add definition - Additional information: - Alias: ProcurementComponent
epo:ProcurementObjectThe whole or a division of goods, services or works to be procured. - - Additional Information: - Anything that can specify the procurement content (i.e. goods, services, work) is - a Procurement Object. - In a sense, such an "object" can constitute the "object of a Contract". - To test whether something is a Procedure Object check if it can have a Purpose and/or - CPV classification (<i>The CPV establishes a single classification system for public - procurement aimed at standardising the references used by Contracting Authorities - and entities to describe the subject of Procurement Contracts.</i>). - - Note: - Procedure, seems to be an exception from this rule. Because it is a conflated term: - it carries process properties and "purpose" properties.
epo:ProcurementProcedureInformationProviderA Role of an Agent responsible for providing additional information about the Procurement - Procedure.
epo:ProcurementProcessInformationInformation about the temporal unfolding or succession of Procurement Objects.
epo:ProcurementServiceProviderRole of a public or private body which offers ancillary purchasing activities on the - market. - - Additional information - - "Ancillary Purchasing Activities" means activities consisting in the provision of - support to purchasing activities, in particular in the following forms: - (a) technical infrastructure enabling Contracting Authorities to award Public Contracts - or to conclude Framework Agreements for works, supplies or services; - (b) advice on the conduct or design of public Procurement Procedures; - (c) preparation and management of Procurement Procedures on behalf and for the account - of the Contracting Authority concerned; - - Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. - - This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity - managing the Procurement, which may be different from the Buyer who is paying / using - the items being procured'. - - WG Approval 24/03/2020 -
epo:ProfessionalSuitabilitySummary
epo:ProjectA collaborative enterprise that is carefully planned to achieve a particular aim.
epo:PublicationProvisionInformation about fields not intended for publication. - - - Additional Information: - The non-published information may become available at a later date and may differ - from one element to another within a given Document. - - Examples of fields that may not be immediately published are Winner, Tender and Procedure - Lot Result, etc., e.g. for security reasons. - - WG Approval 16/05/2019 - - - - -
epo:PurchaseContractA Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract.
epo:PurposeThe description of the objectives related to a Procurement. - - Additional information: - - The description of the objectives includes the Subject Matter and Quantities. - - - The quantification of the objectives related to a procurement. - - To be re-reviewed by the WG the soonest. - - (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) - - The old definition read as follows: - - The description of the objectives related to a procurement. - - (WG approval 05/12/2018) -
epo:QualificationCriteriaSummary
epo:QualificationCriterionCriterion used in the first stage of procurement. - - WG approval 30/05/2023
epo:QuantityA counted number of non-monetary units possibly including fractions. -
epo:RequestForClarificationA demand for elucidation of received information. - Additional Information: - Requests for clarification are usually used by Buyers during the process of award - or evaluation to understand specific aspects of the Tender without altering the Tender. - WG approval 20/04/2021
epo:RequestForParticipationApplication of an Economic Operator to be included in a Procurement Procedure. - WG approval: 20/04/2021
epo:ReviewDecisionInformation about Review Decisions.
epo:ReviewerRole of an Agent who investigates the overall correctness of a Procurement Procedure, - producing a related report. - Additional Information: - Any Organisation or Person may request a review of a Procurement Procedure. - WG approval: 20/04/2021
epo:ReviewIrregularitySummaryInformation about the number and type of requests the Buyer received to review any - of its decisions (e.g. the Technical Specifications, Award Decision). - - Additional information: - This class corresponds in eForms to BG-613 Buyer Review Requests. - - -
epo:ReviewObjectInformation about a Review Request or a Review Decision. - - Additional information: - This class corresponds to the BG-714 Review in eForms. - -
epo:ReviewProcedureInformationProviderA Role of an Agent who is providing more information on the time limits for review - Procedures.
epo:ReviewRequestInformation about requests to review procedures.
epo:ReviewRequesterRole of an Agent who requests the review of a (Procurement) Procedure. - - WG Approval 23/10/2021
epo:ReviewRequestSummarySummary information about the requests the Buyer received to review any of its decisions - (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive - 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the - requests. - - Additional information: - This class corresponds in eForms to BG-612 Buyer Review Summary.
epo:SecurityClearanceTermConditions and stipulations about the status requested of individuals allowing them - access to classified information (state or organisational secrets) or to restricted - areas, after completion of a thorough background check. - - Additional information: - This corresponds in eForms to BT-578, BT-78, BT-732 . - - WG approval 20/06/2023 -
epo:SelectedCandidateListRecord of Candidates admitted to take part in award phases of procurements. - - WG approval 30/05/2023
epo:SelectionCriteriaSummary
epo:SelectionCriterionCriterion that describes a capacity Requirement that the Economic Operator needs to - fulfill to participate in the procurement. - - Additional Information: - Selection criteria may relate to: - (a) suitability to pursue the professional activity; - (b) economic and financial standing; - (c) technical and professional ability - - WG approval 31/10/2018
epo:SelectionEvaluationTermConditions and stipulations defining particularities of the evaluation of Selection - Criteria.
epo:SocialProcurementAn instance of the class SocialProcurement is represented in eForms with the code - "soc-obj" defined in the codelist Strategic-Procurement. - - - Research (21/01/2020): - Socially Responsible Public Procurement (SRPP): - - ‘SRPP’ means Procurement Operations that take into account one or more of the following - social considerations: employment opportunities, decent work, compliance with social - and labour rights, social inclusion (including persons with disabilities), equal opportunities, - accessibility design for all, taking account of sustainability criteria, including - ethical trade issues and wider voluntary compliance with corporate social responsibility - (CSR), while observing the principles enshrined in the Treaty for the European Union - (TFEU) and the Procurement Directives. - Source: Buying Social - A Guide to Taking Account of Social Considerations in Public - Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en - See Article 18 and Annex X Directive 2014/24.
epo:SpecificDuration
epo:StatisticalInformationStatistical data on the Procedure and the Lot. - - Additional Information - - At the present time Procurement Procedures are not fully electronic. At a later date, - information on the Tenders received could be inferred by the data in the eProcurement - System. - Therefore this class is temporal and should cease to exist in fully electronic Procurement. - The need for its presence responds also to the alignment with the Regulation (EU) - 2019/1780 (eForms). - - Attention will have to be paid in the future to possible inconsistencies derived from - data placed in other classes and data held in the Statistical Information class; e.g. - the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender - indicator, which in case of being false, may enter in contradiction with the highest - or lowest Tender value for that very same inadmissible Tender. - - WG Approval 12/12/2019 -
epo:StrategicProcurementPublic Procurement that contributes to achieving pressing policy goals. - - Additional Information: - Specific strategic goals could be, for example, Environmental Protection, innovation, - job creation and the development of small and medium enterprises. - - This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given - by the choices in BT-06 Strategic Procurement. - - Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph - on "background information". - - WG Approval 10/03/2020
epo:SubcontractingEstimateInformation on the approximation of the foreseen Subcontracting.
epo:SubcontractorA Role of an Agent that has an agreement to perform part or all of the obligations - of another Agents's Contract. - Additional information - For some Procedures, the Subcontractor signs as well the Contract between the Buyer - and the Contractor. - - At tendering time, entities relied upon by the Economic Operators can be Subcontractors - or not. - - When modelling ESPD we well analyze whether we need or not a Role named "relied upon". - - WG approval 05/08/2021 -
epo:SubcontractTermA concept to describe the main information regarding the share of parts of the Contract - to third parties.
epo:SubmissionStatisticalInformationStatistical information about submissions on a given competition, either at Lot level - or Mini-Competition level. - - WG approval 30/05/2023
epo:SubmissionTermConditions and stipulations defining particularities of submitting Documents to the - Buyer. - - Additional Information: - These Documents can be Tenders, Request To Participate and expressions of interest. - - WG Approval 14/07/2020
epo:SystemSoftware application used for performing Procurement activities. - - WG Approval 28/04/2020 - -
epo:TaxInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory - framework for taxes.
epo:TechnicalAbilitySummary
epo:TechniqueMethod used for conducting Procurement Procedures. - - Addtional information: - This corresponds in eForms to BG-706 Techniques. - - Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction - can be carried out in a Framework Agreement or DPS). - - WG Approval 19/09/2019 -
epo:TenderInformation submitted by the Economic Operator to specify its Offer regarding a specific - Lot, in response to the call for Tender. - - (WG approval 03/05/2022) - - -
epo:TenderAwardOutcomeResult concerning the Tender attributed by the Awarder.
epo:TendererA Role of an Agent that has submitted a Tender. - - Additional Information: - A Tenderer is an Economic Operator or group of Economic Operators that has submitted - a Tender. - WG approval 05/08/2021
epo:TenderGroupSpecific Offer in response to a Lot Group. - - Additional Information: - This class is generally used to provide the Monetary Value in response to a Lot Group. -
epo:TenderProcessorA Role of an Agent responsible for processing Tenders.
epo:TenderReceiverA Role of an Agent responsible for receiving Tenders.
epo:TermA governing condition or stipulation.
epo:WinnerA Role of an Agent to whom a Lot is awarded. - WG approval 05/08/2021 (revised 26/10/2021)
epo-not:CANDefence-D81
epo-not:CANSocial-D25
epo-not:CANSocialNotice
epo-not:CANSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:CANStandard-D24
epo-not:CANStandardNotice
epo-not:CNDefence-D81
epo-not:CNSocial-D25
epo-not:CNSocialNotice
epo-not:CNSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:CNStandard-D24
epo-not:CNStandardNotice
epo-not:CompetitionNoticeAn announcement of the launch of a Procurement Procedure by a Procuring Entity. - - WG approval 18/05/2018 -
epo-not:CompletionNoticeAn announcement of the end of a Procurement by a Buyer.
epo-not:ConcessionAwardNotice-D23
epo-not:ConcessionNotice-D23
epo-not:ContractModificationNoticeAn announcement of the Modification Of a Contract/Concession during its term by a - Procuring Entity.
epo-not:DesignContest-D24
epo-not:DesignContest-D25
epo-not:DesignContestNotice
epo-not:DesignContestResult-D24
epo-not:DesignContestResult-D25
epo-not:DesignContestResultNotice
epo-not:DirectAwardPrenotificationNoticeNotice which sets out the Buyer's purchasing intention to award a Contract without - prior notification of Competition.
epo-not:eFormsNotice
epo-not:Modification-D23
epo-not:Modification-D24
epo-not:Modification-D25
epo-not:Notice1
epo-not:Notice10
epo-not:Notice11
epo-not:Notice12
epo-not:Notice13
epo-not:Notice14
epo-not:Notice15
epo-not:Notice16
epo-not:Notice17
epo-not:Notice18
epo-not:Notice19
epo-not:Notice2
epo-not:Notice20
epo-not:Notice21
epo-not:Notice22
epo-not:Notice23
epo-not:Notice24
epo-not:Notice25
epo-not:Notice26
epo-not:Notice27
epo-not:Notice28
epo-not:Notice29
epo-not:Notice3
epo-not:Notice30
epo-not:Notice31
epo-not:Notice32
epo-not:Notice33
epo-not:Notice34
epo-not:Notice35
epo-not:Notice36
epo-not:Notice37
epo-not:Notice38
epo-not:Notice39
epo-not:Notice4
epo-not:Notice40
epo-not:Notice5
epo-not:Notice6
epo-not:Notice7
epo-not:Notice8
epo-not:Notice9
epo-not:PIN-CFCSocial-D25
epo-not:PIN-CFCSocialNotice
epo-not:PIN-CFCSocialNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:PIN-CFCStandard-D24
epo-not:PIN-CFCStandardNotice
epo-not:PINDefence-D81
epo-not:PINOnly-D24
epo-not:PINOnly-D25
epo-not:PINOnlyNoticePriorInformationNotice
epo-not:PINProfile-D24
epo-not:PINProfile-D25
epo-not:PINProfile-D81
epo-not:PINProfileNotice
epo-not:PIN-RTL-D24
epo-not:PIN-RTL-D25
epo-not:PINTimeLimitNotice
epo-not:PlanningNoticeNotice which sets out the Contracting Authority's purchasing intentions. It is used - by Contracting Authorities to provide Suppliers with information about a Procurement - Process. -
epo-not:PMCNotice
epo-not:QS-D25
epo-not:QSNotice
epo-not:QSNotice-D25Additional information: - Social and other specific services – utilities -
epo-not:ResultNoticeAn announcement of the award or non-award of a Contract by a Buyer. - - (WG approval 27/03/2019)
epo-not:SocialAndOtherSpecificServices-D23
epo-not:SocialAndOtherSpecificServices-D24public contracts
epo-not:StandardFormsNotice
epo-not:Subcontract-D81
epo-not:SubcontractNotice
epo-not:VEAT-D23
epo-not:VEAT-D24
epo-not:VEAT-D25
epo-not:VEAT-D81
epo-not:VoluntaryEx-AnteTransparencyNoticeA Notice informing of the intention to award a Contract without prior publication - of a Contract Notice. - - Additional Information: - - For European Notices above the threshold - - "A means of advertising the intention to award the Contract without opening it up - to formal Competition. A Contracting Authority may decide that a Contract does not - require prior publication through a Contract Notice in the O.J.E.U. A reason for this - decision may be that the Contract meets the exceptional conditions described in Article - 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme - urgency brought about by events unforeseeable by the Contracting Entity and in accordance - with the strict conditions stated in the Directive” . - "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems - that a Contract does not require prior publication of a Contract Notice in the European - Journal (OJEU). This may apply, for example, if the Contract meets the exceptional - conditions justifying direct award of contracts. - - <b>This definition is still to be worked on.</b> -
foaf:AgentA Person, an Organisation, or a System that acts in Procurement or have the power - to act in Procurement. - - WG Approval 28/04/2020
foaf:PersonThe Person class represents people. Something is a Person if it is a Person. We don't - nitpick about whether they're alive, dead, real, or imaginary. The Person class is - a sub-class of the Agent class, since all people are considered 'Agents' in FOAF.
locn:AddressThe particulars of the place where a Person or an Organisation is located. - - WG Approval 28/04/2020 - - Additional Information: - An "Address Representation" as conceptually defined by the INSPIRE Address Representation - data type: "Representation of an address spatial object for use in external application - schemas that need to include the basic, address information in a readable way.". - - - The representation of Addresses varies widely from one country's postal System to - another. Even within countries, there are almost always examples of Addresses that - do not conform to the stated national standard. At the time of publication, work is - progressing on ISO 19160-1 that defines a method through which different Addresses - can be converted from one conceptual model to another. - - - This specification was heavily based on the INSPIRE Address Representation data type. - It is noteworthy that if an Address is provided using the detailed breakdown suggested - by the properties for this class, then it will be INSPIRE-conformant. To this very - granular set of properties, we add two further properties: - - - full address (the complete address as a formatted string) - - addressID (a unique identifier for the address) - The first of these allows publishers to simply provide the complete Address as one - string, with or without formatting. This is analogous to vCard's label property. - - The addressID is part of the INSPIRE guidelines and provides a hook that can be used - to link the Address to an alternative representation, such as vCard or OASIS xAL.
locn:GeometryThe Geometry class provides the means to identify a Location as a point, line, polygon, - etc. expressed using coordinates in some coordinate reference System. - - Additional Information: - This class defines the notion of "Geometry" at the conceptual level, and it shall - be encoded by using different formats (see usage note of the locn:geometry property). - We also refer to the Examples section of this specification for a number of different - Geometry examples expressed in different formats.
org:OrganizationA collection of people organized together into a community or other social, commercial - or political structure. The group has some common purpose or reason for existence - which goes beyond the set of people belonging to it and can act as an Agent. Organisations - are often decomposable into hierarchical structures. - - (WG approval 23/11/2018). -
owl:ThingAny individual in the domain of discourse is a Thing. - - - Additional Information: - - The most basic concepts in a domain should correspond to classes that are the roots - of various taxonomic trees. Every individual in the OWL world is a member of the class - owl:Thing.
-

Attributes (datatype properties) names and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Class nameAttribute nameDefinitionData type / cardinality
adms:Identifieradms:schemaAgencyThe name of the agency that issued the identifier.rdf:PlainLiteral [0..*]
cccev:Criterioncccev:biasParameter used to adjust the evaluation of the Criterion. - - Additional Information: - The bias parameter tries to correct a systematic error. For example in procurement, - a home bias corresponds to the "presence of local preferences distorting international - specialisation and resource allocation". When quantified, this systematic error can - be removed.xsd:decimal [0..1]
cccev:Criterioncccev:weightRelative importance of the Criterion. - - Additional Information: - The weight must be between 0 and 1. Usually, all Criteria can be integrated within - a weighted sum equal to 1.xsd:decimal [0..1]
cccev:Criterioncccev:weightingConsiderationDescriptionExplanation of how the weighting of a Criterion is to be used. - - Additional Information: - This description gives the view of the creator of the Criterion weights on how to - interpret and use them during the evaluation process.rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:emailThe email of the Organisation. - - rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:telephoneA telephone number through which the Contact Point can be contacted. - rdf:PlainLiteral [0..*]
cpv:Personcv:birthDateThe point in time on which the Person was born.xsd:date [0..1]
locn:Geometrycv:coordinatesThe coordinate list.rdf:PlainLiteral [0..*]
locn:Geometrycv:latitudeThe latitude.rdf:PlainLiteral [0..*]
locn:Geometrycv:longitudeThe longitude.rdf:PlainLiteral [0..*]
cpv:Persondct:alternativeAny name by which an individual is known other than their full name. - WG 09/11/2021rdf:langString [0..*]
epo:ProcurementElement
epo:System
epo:AgentInRole
cpov:ContactPoint
cv:Channel
epo:NonDisclosureAgreementTerm
epo:SecurityClearanceTerm
epo:SubcontractTerm
cccev:InformationConcept
cccev:Requirement
epo:Technique
epo:SubcontractingEstimate
epo:ElectronicSignature
epo:Document
epo:Fund
dct:descriptionAn account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 - An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023 - An account of the resource. - - Additional Information: - Description may include but is not limited to: an abstract, a table of contents, a - graphical representation, or a free-text account of the resource. - - WG Approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [1..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:Documentdct:issuedDate of formal issuance of the resource. - - Additional information: - This is generally used for modules other than eNotice. - The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or - xsd:timeStamp or any other variant of time expression. This extension needs to be - encoded/automated in the ontology and in the application profile. - Why is it like this? Because UML cannot handle such expressions of disjunctive property - ranges. - - WG approval 26/01/2023xsd:dateTime [0..1]
epo:ProcurementElement
foaf:Agent
epo:AgentInRole
epo:Document
epo:Fund
dct:titleA name given to the resource. - - WG approval 30/05/2023 A name given to the resource. - - WG approval 30/05/2023 A name given to the resource. - - WG approval 30/05/2023 - A name given to the resource. - - WG approval 30/05/2023 - - A name given to the resource. - - WG approval 30/05/2023 - rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:describesMinimumLevelOfStandardsrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesObjectiveParticipationRulesrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionRelevantLawrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesVerificationMethodrdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasAbnormallyLowTendersTenders received that were found irregular and non-acceptable due to an abnormally - low price or cost. - - Additional Information - The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. - - WG Approval 28/07/2020 - - xsd:integer [0..1]
epo:Procedureepo:hasAcceleratedProcedureJustificationThe reasons why the procedure is accelerated. - - Additional Information: - A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake - relief. - - WG Approval 09/06/2020 - - rdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasAccessibilityDateThe date at which unpublished data shall be published. - - WG Approval 11/06/2020xsd:date [0..1]
epo:Documentepo:hasAccessURLLocation where the resource can be accessed. - - WG approval 07/04/2022xsd:anyURI [0..*]
epo:Buyerepo:hasActivityDescriptionIn the ePO ontology a taxonomy with all activities, based on different classifications - (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively - to complement the definition attached to the MainActivityCode. - - However, in eForms there is the code "other" to cover undefined activities. For mapping - to this eForms feature one could also use this property. - rdf:PlainLiteral [0..*]
epo:ProcurementObject
epo:Notice
epo:ElementChangeDescription
epo:hasAdditionalInformationSupplementary data about the instance of the concept. - - WG Approval 15/10/2019 Supplementary data about the instance of the concept. - - WG Approval 15/10/2019 Supplementary data about the instance of the concept. - - WG Approval 15/10/2019 - rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
epo:AccessTermepo:hasAdditionalInformationDeadlineThe time limit for requesting further information. - - Additional information: - - This is generally used to indicate the deadline for Economic Operators to request - further information of the procedure before the submission deadline. - - This corresponds in eForms to BT-13 Additional Information Deadline. - - WG Approval 09/06/2020 - xsd:dateTime [0..1]
epo:AwardDecisionepo:hasAdditionalNonAwardJustificationFurther justification for the non award . - - Additional information: - This is generally used when the non award reason code is set to "Other". - - WG: 18/01/2022rdf:PlainLiteral [0..1]
cv:Channelepo:hasAddressURLxsd:anyURI [0..1]
foaf:Agentepo:hasAliasAcronym or alternative name of the Agent. - WG Approval 25/03/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasAmountValueThe numeric value of the amount, including decimals.xsd:decimal [1..1]
epo:AwardEvaluationTermepo:hasAwardCriteriaEvaluationFormulaThe mathematical equation or any other description used for complicated weighing of - criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing - cannot be expressed per criterion. - - Additional Information: - This corresponds in eForms to BT-543 Award Criteria Complicated.rdf:PlainLiteral [0..*]
epo:AwardEvaluationTermepo:hasAwardCriteriaOrderJustificationThe justification for only indicating the award criteria's order of importance, not - their weighing. - - Additional Information: - This corresponds in eForms to BT-733 Award Criteria Order Justification.rdf:PlainLiteral [0..1]
epo:AwardCriterionepo:hasAwardCriteriaStatedInProcurementDocumentsxsd:boolean [1..1]
epo:ProcessPlanningTermepo:hasAwardDateScheduledPlanned date for the award decision. - WG Approval 09/11/2021xsd:date [0..1]
epo:AwardDecisionepo:hasAwardDecisionDateThe official date of the award decision. - - Additional Information: - This corresponds in eForms to BT-1451 Winner Decision Date. - - WG Approval 09/01/2020 - xsd:dateTime [0..1]
epo:TenderAwardOutcomeepo:hasAwardRankThe position of the tender (i.e. whether the tender ended up first, second, third, - etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) - or an innovation partnership. - - Additional Information: - This corresponds in eForms to BT-171 Tender Rank. - xsd:integer [0..1]
epo:Periodepo:hasBeginningThe date and time on which this period begins.xsd:dateTime [0..1]
epo:FrameworkAgreementTermepo:hasBuyerCategoryDescriptionA classification of buyers participating in a framework agreement. - - Additional Information: - Buyers that can use the Framework Agreement not mentioned by name. - - For example, the classification "all hospitals in the Tuscany region" is used instead - of naming each individual buyer. - - This corresponds in eForms to BT-111 Framework Buyer Categories. - - WG Approval 2019-05-06rdf:PlainLiteral [0..*]
org:Organizationepo:hasBuyerLegalTypeDescriptionSelf-explanatory text about the Buyer Legal Type. - - Additional information: - This field is used when the Buyer Legal Type is not available in the controlled list - at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard - Forms. It shall be deprecated in the future. - - WG Approval 06/09/2022rdf:PlainLiteral [0..1]
epo:Buyerepo:hasBuyerProfileWebsite address where the buyer publishes information on its procurement procedures - and general information. - - Additional information: - This corresponds in the eForms to BT-508 Buyer Profile URL. - - WG approval 04/05/2018 - xsd:anyURI [0..1]
epo:ConcessionEstimateepo:hasCalculationMethodFormula for obtaining values. - - Additional Information: - The possible values are monetary values, ranking scores, criterion weighting. - - WG Approval 25/05/2018rdf:PlainLiteral [0..1]
epo:ElementChangeDescriptionepo:hasChangeDescriptionExplanatory text about the instance of the concept. - - WG Approval 30/09/2019rdf:PlainLiteral [0..*]
epo:ElementChangeDescriptionepo:hasChangeReasonDescriptionExplanatory text about why the element is altered. - - Additional information: - This corresponds in eForms to BT-762 Change Reason Description.rdf:PlainLiteral [0..*]
epo:GreenProcurementepo:hasCleanVehiclesThe number of all clean vehicles that have either been purchased, leased, rented, - hired-purchased or their use has been contractually committed to for the provision - of a purchased service. - - Additional Information - In the European Union, the legal requirements and scope for the provision of these - vehicles or services are covered by Directive 2009/33/EC. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:QualificationCriteriaSummaryepo:hasConditionVerificationMethodrdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasConfidentialityJustificationA narrative explanation of why data is not published. - - Additional Information: - This element is generally used when the non-publication-justification code chosen - is "other". - - WG Approval 09/11/2021 - rdf:PlainLiteral [0..1]
cpov:ContactPointepo:hasContactNameA short text by which a contact is known or referred to. - - WG Approval: 27/01/2022rdf:PlainLiteral [0..1]
epo:Contractepo:hasContractConclusionDateThe date the contract was signed by the last signatory party. - - <u>Additional Information:</u> - In exceptional cases contracts may be concluded without signature and therefore another - date may be used. The date of contract conclusion is always later than the end of - any standstill period. - This concept is not to be confused with the date of completion/end of the contract. - - This corresponds in eForms to BT-145 Contract Conclusion Date. - - WG Approval 09/01/2020xsd:date [0..1]
epo:ProcedureTermepo:hasCrossBorderLawThe applicable law when buyers from different countries procure together within one - procurement procedure. - - Additional Information: - This corresponds in eForms to BT-09 Cross Border Law.rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyIDIdentifier of the agency that maintains the currency code list used. - WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyNameName of the agency that maintains the currency code list used. - WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListIDConcept scheme URI used for the currency code list. - WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:SecurityClearanceTermepo:hasDeadlineThe deadline by which the security clearance must be submitted to the buyer. - - WG Approval 12/09/2019 - - xsd:dateTime [0..1]
epo:ReviewDecisionepo:hasDecisionDateThe date of the review decision. - - Additional information: - This attribute corresponds to the BT-787 Review Date in eForms. - xsd:date [0..1]
epo:Documentepo:hasDispatchDateDate of transmission of a record to an organisation. - - WG Approval 12/05/2020xsd:date [0..1]
epo:FrameworkAgreementTermepo:hasDurationExtensionJustificationThe explanation of the reason why the framework agreement has an extended duration. - - Additional Information: - This corresponds in eForms to BT-109 Framework Duration Justification. - The justification for exceptional cases when the duration of the framework agreement - exceeds the legal limits. - - Four years in the case of the general procurement Directive, seven years in the case - of the defence Directive, and eight years in the case of the sectoral Directive. - - WG Approval 26/09/2019rdf:PlainLiteral [0..1]
epo:SubmissionTermepo:hasEAuctionURLThe internet address of the electronic auction. - - Additional Information: - - This corresponds in eForms to BT-123 Electronic Auction URL.xsd:anyURI [0..1]
epo:SubmissionStatisticalInformationepo:hasEEAReceivedTendersThe amount of tenders received from economic operators in other EEA countries other - than the country of the buyer. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:Noticeepo:hasEFormsSubtypexsd:integer [0..1]
epo:ContractTermepo:hasEInvoicingElectronic means will be used for invoicing in the post-award process. - - Additional Information: - This attribute is used for standard form mappings. - - WG Approval 12/09/2019 - xsd:boolean [0..1]
epo:Tenderepo:hasElectronicSubmissionTransmission of tenders is possible by electronic means of communication. xsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasElectronicTendersElectronic Tender Lots received. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:ReviewObject
epo:ElementChangeDescription
epo:ElementModificationDescription
epo:hasElementReferenceReference to the class instance in the current notice. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, - BT-786 Review Notice Section Identifier and BT-1501 Modification Previous - Notice Section Identifier. Reference to the class instance in the current notice. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, - BT-786 Review Notice Section Identifier and BT-1501 Modification Previous - Notice Section Identifier. Reference to the class instance in the current notice. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, - BT-786 Review Notice Section Identifier and BT-1501 Modification Previous - Notice Section Identifier. - xsd:anyURI [0..*]
xsd:anyURI [1..1]
xsd:anyURI [0..1]
epo:Periodepo:hasEndThe date and time at which this period ends.xsd:dateTime [0..1]
epo:Contractepo:hasEntryIntoForceDateThe date on which the contract enters into force. - - Additional information: - - This is generally the date on which the fulfillment of the contract begins. - - This corresponds in eForms to - - WG approval 05/11/2019xsd:date [0..1]
epo:ContractTermepo:hasEOrderingElectronic means will be used for requesting and purchasing in the post-award process. - - WG Approval 12/09/2019 - - xsd:boolean [0..1]
epo:ContractTermepo:hasEPaymentElectronic means must be used for paying. - WG Approval 09/11/2021 - xsd:boolean [0..1]
epo:Noticeepo:hasESenderDispatchDateThe date and time the notice was transmitted electronically by the eSender to the - Publications Office of the European Union. - - Additional Information: - Typically, eSenders include national Official Journals, Buyers sending a large number - of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement - software developers. - - WG approval 20/06/2023xsd:dateTime [0..1]
epo:ProcessPlanningTermepo:hasEstimatedContractNoticePublicationDateForeseen date for publication of Contract Notice. - - Additional information: - This corresponds in eForms BT-127 Future Notice. - - xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToExpressInterestDateThe estimated date of dispatch of the invitations to confirm interest. - - Additional Information: - This corresponds in eForms to BT-631 Dispatch Invitation Interest.xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToTenderDateThe estimated date of dispatch of the invitations to submit tenders in two (or more) - stage procedures. - - Additional Information: - This corresponds in eForms to BT-130 Dispatch Invitation Tender. - - WG Approval 01/10/2019xsd:date [0..1]
epo:SubcontractingEstimateepo:hasEstimatedPercentageThe estimated proportion foreseen to be subcontracted. - - WG Approval 07/01/2020xsd:decimal [0..1]
epo:ProcessPlanningTermepo:hasEstimatedTenderInvitationDateThe planned date for the dispatch of the invitations to submit tenders. - WG Approval 09/11/2021xsd:date [0..1]
epo:SubmissionStatisticalInformationepo:hasEstimatedTotalSubcontractsThe estimated amount of work to be subcontracted in the contract resulting from the - lot. - WG Approval 09/11/2021xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasEUReceivedTendersThe amount of tenders received from economic operators in other EU countries other - than the country of the buyer.xsd:integer [0..1]
cpov:ContactPointepo:hasFaxThe fax number used to reach a person or an organisation.rdf:PlainLiteral [0..*]
epo:AwardCriterionepo:hasFixedValueThis corresponds in the eForms to BT-541 Award Criterion Number in association with - BT-5422 Award Criterion Number Fixed.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractAny subsequent service contract will be awarded to the winner or, in the case of a - design contest, winners. - - WG Approval 29/08/2019 xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractInformationFurther information about follow-up contracts, prizes and payments (for example non-monetary - prizes, payments given for participation). - - WG Approval 03/09/2019rdf:PlainLiteral [0..*]
epo:Noticeepo:hasFormNumberxsd:integer [0..1]
epo:ProcurementCriterionepo:hasFormulaThe mathematical equation or any other description used for complicated weighing of - criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing - cannot be expressed per criterion. - - Additional Information: - This corresponds in eForms to BT-543.rdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasGroupLotEvaluationMethodDescription of how lots and groups of lots are evaluated against one another in the - procedure. - - - - rdf:PlainLiteral [0..*]
epo:OrganisationGroupepo:hasGroupTypeForm of collaboration agreement between organisations. - - Additional Information: - This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also - be used for Organisation Groups. - - WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasGuaranteeDescriptionInformation on the financial commitment required from the economic operator. - - Additional Information: - 1. This information may include the amount and the way of delivering of the guarantee - 2. The financial commitment may be retained by the buyer in the case the tenderer - withdraws the submitted information (i.e. tender, expression of interest and request - for participation, but not request for clarifications) before the award of the contract - or does not sign the contract. - 3. Usual modalities are bonds, cheques, loans, other. - - WG Approval 21/07/20 - rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasInadmissibleTendersTenders received that cannot be awarded due to non-compliance to procurement document - requirements or having an abnormally low price or cost. - - <u>Additional Information: </u> - Non-compliance with a Procurement Document requirements include exclusion grounds, - selection criteria and submission deadline, etc. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:ElementConfidentialityDescriptionepo:hasInstanceReferenceThe URI of a given class that is being referred to.xsd:anyURI [1..1]
org:Organization
cpov:ContactPoint
epo:hasInternetAddressThe main web page used by the instance of the concept. - - WG Approval 01/06/2023 - The main web page used by the instance of the concept. - - WG Approval 01/06/2023 - - xsd:anyURI [0..*]
xsd:anyURI [0..1]
epo:DirectAwardTermepo:hasJustificationAn explanation about the reasons for using the concept. - WG Approval 5/11/2019 - rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasLateSubmissionInformationDescriptionA narrative text explaining the content of the economic operator information that - can be submitted late. - - Additional Information - This does not apply to requests for clarifications. - rdf:PlainLiteral [0..*]
epo:ProcurementObjectepo:hasLegalBasisDescriptionrdf:PlainLiteral [0..*]
epo:ContractTermepo:hasLegalFormRequirementThe legal form to be taken by a Contractor. - - Additional Information: - Generally, this is defined to cover the case where an Organisation Group is involved. - Note that the codelist provided at national level should be used.rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalFormTypeThe classification of an Organisation according to legislation. - - Additional Information: - Generally, this is defined for Tenderers who want to submit as an Organisation Group. - Note that the codelist provided at national level should be used. - rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalNameThe officially registered name of an organisation. - - WG Approval 10/01/2023rdf:PlainLiteral [0..*]
epo:Noticeepo:hasLongTitlerdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasLotAwardCombinationThe contracting authority reserves the right to award contracts combining lots or - groups of lots. - - Additional Information: - This property contains information about the Lots concerned. - This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard - Forms). - - WG approval 23/08/2022 - rdf:PlainLiteral [0..1]
org:Organizationepo:hasMainActivityDescriptionSelf-explanatory text about the Main Activity . - - Additional information: - This field is used when the Main Activity is not available in the controlled list - at-voc:main-activity-type . This is necessary in to cover data provided in the TED - Standard Forms. It shall be deprecated in the future. - - WG Approval 06/09/2022 - rdf:PlainLiteral [0..1]
epo:Procedureepo:hasMainFeatureMain features of the procedure and information about where the full rules for the - procedure can be found. - - Additional Information: - This information should be given when the procedure is not one of those mentioned - in the procurement directives. This can be the case for example for concessions, for - social and other specific services, and in case of voluntary publication of procurement - procedures below the EU procurement thresholds.rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasMaximumLotSubmissionAllowedThe total number of lots for which one Tenderer can submit Tenders. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms). - - WG approval 12/12/2018 - - xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMaximumNumberOfCandidatesMaximum number of candidates to be invited for the second stage of the procedure. - - WG Approval 22/08/2019xsd:integer [0..1]
epo:ProcedureTermepo:hasMaximumNumberOfLotsToBeAwardedThe maximum number of lots for which contract(s) can be awarded to one tenderer. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms). - - WG Approval 22/08/2019xsd:integer [0..1]
epo:ContractTermepo:hasMaximumNumberOfRenewalsThe maximum number of times the contract can be renewed. - - Additional Information - - By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract - (i.e. extend its duration) without a new procurement procedure. - For example, a contract may be valid for one year and the buyer may keep a possibility - to renew it (e.g. once, twice) for another three months, if he is content with the - services he received. - - PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken - from eForms. - xsd:integer [0..1]
epo:FrameworkAgreementTermepo:hasMaximumParticipantsNumberThe maximum number of participants in the framework agreement. - - Additional Information: - Maximum number of tenderers who may be awarded a contract within the framework agreement. - - The number is a positive integer. - - This corresponds in eForms to BT-113 Framework Maximum Participants Number. - - WG Approval 2019-02-05xsd:integer [0..1]
epo:SubcontractTermepo:hasMaximumShareThe maximum proportion of something to be distributed. - - Additional Information: - In the case of subcontracting the share may refer to the proportion of works, services - or supplies being subcontracted. - - WG Approval 17/09/2019 - - xsd:decimal [0..1]
epo:SubmissionStatisticalInformationepo:hasMediumTenderPerLotsTenders from medium-sized enterprise. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC. - xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMinimumNumberOfCandidatesMinimum number of candidates to be invited for the second stage of the procedure. - - WG Approval 22/08/2019 xsd:integer [0..1]
epo:SubcontractTermepo:hasMinimumShareThe minimum proportion of something to be distributed. - - Additional Information: - In the case of subcontracting the share may refer to the proportion of works, services - or supplies being subcontracted. - - WG Approval 17/09/2019xsd:decimal [0..1]
epo:SubcontractTermepo:hasMinimumSubcontractorsProposedObligationThe minimum percentage of the contract value that the contractor must subcontract. - - Additional information: - This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - - - WG Approval 09/11/2021xsd:decimal [0..1]
epo:ElementModificationDescriptionepo:hasModificationDescriptionAn explanatory text about this context. - - Additional Information - - This corresponds in Standard forms to Field VII.2.1 in F20 - This corresponds in eForms to BT-202 . - - WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ElementModificationDescriptionepo:hasModificationReasonDescriptionAn explanation about the reasons for using the concept. - - Additional Information - This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. - - This corresponds in eForms to BT-201 . - - WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasNationalProcedureRulesxsd:anyURI [0..*]
epo:StrategicProcurementepo:hasNonAccessibilityCriterionJustificationReason for not applying accessibility criteria. - - Additional information: - This corresponds in eForma to BT-755 Accessibility Justification. - - WG Approval 05/03/2019rdf:PlainLiteral [0..*]
epo:LotAwardDecisionepo:hasNonAwardedContractNumberThe number the contract would have had if it had been awarded. - - Additional information: - - This field is provided to support the data provided in the TED Standard Forms, and - it should be discontinued in the future. - - WG agreement: 06/09/2022 - rdf:PlainLiteral [0..1]
epo:LotAwardDecisionepo:hasNonAwardedContractTitleThe title the contract would have had if it had been awarded. - - Additional information: - - This field is provided to support the data provided in the TED Standard Forms, and - it should be discontinued in the future. - - WG agreement: 06/09/2022rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasNonEEAReceivedTendersThe amount of tenders received from economic operators in non-EEA countries. - - WG Approval 12/12/2019 15:20:36xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasNoNegotiationNecessaryThe buyer reserves the right to award the contract on the basis of the initial tenders - without any further negotiations. - - Additional information: - See Article 29(4) of Directive 2014/24/EU. - xsd:boolean [0..1]
epo:SubmissionTermepo:hasNonElectronicSubmissionDescriptionTextual explanation of how non-electronic information is to be presented. - - WG Approval 21/07/2020 - - rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasNonEUReceivedTendersThe amount of tenders received from economic operators in non-EU countries. - xsd:integer [0..1]
epo:Noticeepo:hasNoticePublicationNumberrdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasNumberOfReviewRequestsThe number of requests the buyer received to review any of its decisions.xsd:integer [1..1]
epo:SubmissionStatisticalInformationepo:hasNumberOfTenderersInvitedNumber of economic operators invited to tender. - - Additional Information - This may be used for single-stage procedures or to indicate the number of candidates - invited to tender in multi-stage procedures. - - WG Approval 01/12/2020 - - xsd:integer [0..1]
epo:Noticeepo:hasOJSIssueNumberxsd:integer [0..1]
epo:Noticeepo:hasOJSTyperdf:PlainLiteral [0..1]
epo:OpeningTermepo:hasOpeningDateTimeDate and time for the opening of tenders. - - WG Approval 12/03/2019 - - xsd:dateTime [1..1]
epo:OpeningTermepo:hasOpeningDescriptionFurther information about the opening of tenders. - - Additional Information - For example, who may participate in the opening and whether any authorization is needed. - - WG Approval 12/03/2019rdf:PlainLiteral [0..*]
epo:OpeningTermepo:hasOpeningURLThe identifier of the address of the Opening of Tenders. - WG Approval 09/11/2021xsd:anyURI [0..1]
epo:ContractTermepo:hasOptionsThe buyer reserves the right (not an obligation) for additional purchases from the - contractor (while the contract is valid).xsd:boolean [0..1]
epo:ContractTermepo:hasOptionsDescriptionThe motivation and details about additional purchases that the buyer may undertake - while the contract is valid. - - WG Approval 09/04/2019 rdf:PlainLiteral [0..*]
org:Organizationepo:hasOrganisationUnitNameThe name of a subpart of an organisation. - - Additional Information: - E.g. the relevant department of a large organisation. - - We added this attribute in case of eProcurement notices where the Buyer is actually - a part of an Organization and the rest of the properties apply to the rest of the - Organisation as well.rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasOtherCountriesReceivedTendersxsd:integer [0..1]
epo:AwardEvaluationTermepo:hasOverallCostAwardCriteriaPonderationThe weighting given to cost. - - Additional Information: - This weighting covers usually all cost criteria against price or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallPriceAwardCriteriaPonderationThe weighting given to price. - - Additional Information: - This weighting covers usually all price criteria against cost or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallQualityAwardCriteriaPonderationThe weighting given to quality. - - Additional Information: - This weighting covers usually all quality criteria against price or cost criteria.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasParticipationPaymentDetails on payments to participants - WG Approval 09/11/2021rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPaymentArrangementInformation about financial clauses that will govern some economic aspects of the - execution of the contract. - - Additional Information: These clauses usually refer to financial and payment provisions. - - This type of information should be structured instead of a free text in order to reuse - it an ideal world. Unfortunately this is an information that in the real life no one - is willing to provide pro-actively. - - WG Pending of discussion with eFormsrdf:PlainLiteral [0..*]
epo:ContractLotCompletionInformationepo:hasPaymentValueDiscrepancyJustificationrdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPerformanceConditionsThe particular conditions and additional information related to the execution of the - contract. - - Additional Information: - - For example, specific information about the place of performance, intermediary deliverables, - compensation for damages, intellectual property rights. - - WG approval 15-01-2019rdf:PlainLiteral [0..*]
epo:ContractTermepo:hasPlaceOfPerformanceAdditionalInformationFurther details on the location of the execution of the contract. - - WG Approval 30/07/2019rdf:PlainLiteral [0..*]
epo:PublicationProvisionepo:hasPreferredPublicationDateThe date the buyer would like to have the record made publicly available. - - Additional Information: - This corresponds in eForms to BT-738 Notice Publication Date Preferred. - - WG Approval 12/05/2020xsd:date [0..1]
epo:ElementChangeDescriptionepo:hasPreviousVersionOfElementReferenceReference to the class instance in the previous version of the notice, which was changed. - - Additional information: - This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. - xsd:anyURI [0..1]
epo:Prizeepo:hasPrizeRankThe position of the prize (e.g. first place, second place) in a design contest list - of prizes. - - WG Approval 29/08/2019 - xsd:integer [0..1]
epo:ElementChangeDescriptionepo:hasProcurementDocumentChangeDateThe date and time of the change. - - Additional information: - This corresponds in eForms to BT-719 Change Procurement Documents Date - - WG Approval 5/11/2019 - xsd:date [0..1]
epo:ElementConfidentialityDescriptionepo:hasPropertyReferenceThe URI of a given attribute (property) that is being referred to.xsd:anyURI [1..1]
epo:AccessTermepo:hasPublicAccessURLWeb page where the procurement documents can be downloaded. - - Additional Information: - This corresponds in the eForms to BT-15 Documents URL. - - WG Approval 09/03/2021 - xsd:anyURI [0..1]
epo:Documentepo:hasPublicationDateDate of formal public issuance of the document. - - WG approval 20/06/2023xsd:date [0..1]
epo:QualificationCriteriaSummaryepo:hasQualificationConditionrdf:PlainLiteral [0..*]
epo:MultipleStageProcedureTermepo:hasQualificationSystemRenewalDescriptionrdf:PlainLiteral [0..1]
epo:Quantityepo:hasQuantityValueThe numeric value of the quantity, including decimals.xsd:decimal [1..1]
epo:SubmissionTermepo:hasReceiptDeadlineThe time limit for receiving submissions. - - Additional Information - This is the deadline by which the buyer must receive submissions (e.g. tenders, requests - to participate, clarifications, etc.) and is not the time at which the information - is submitted by the economic operator. - This attribute should be used for standard forms mappings. - - WG Approval 21/07/2020 - xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptExpressionDeadlineTime limit for receipt of expressions of interest. - - Pending of review by the WG - - xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptParticipationRequestDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptPreliminaryMarketConsultationDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptTenderDeadlinexsd:dateTime [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedMicroTendersThe amount of tenders received from a micro enterprise. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC.xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedParticipationRequestsThe amount of applications to participate from economic operators. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedSmallTendersTenders from small enterprise. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC. - - xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedTendersThe total amount of tenders received. - - WG Approval 12/12/2019xsd:integer [0..1]
epo:Documentepo:hasReceptionDateNotes: Date when a record is acknowledged by an organisation. - - WG Approval 12/05/2020xsd:date [0..1]
epo:ProcurementObjectepo:hasRecurrenceDescriptionAny additional information about the recurrence of the Procurement. - - Additional Information: - For example estimated timing of the Procedure. - - This corresponds in eForms to BT-95 Recurrence Description. - - (WG approval 2019-01-16) - rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasRenewalDescriptionAny other information about the renewal(s). - - WG approval 16/04/2019 rdf:PlainLiteral [0..*]
epo:ReviewRequestepo:hasRequestDateThe date when the review request was submitted. - - Additional information: - This attribute corresponds to the BT-787 Review Date in eForms. - xsd:date [0..1]
epo:ContractTermepo:hasReservedExecutionThe execution of the contract is restricted to the framework of sheltered employment - programmes. - - Additional information: - This property corresponds in eForms to BT-736 - - WG Approval 12/09/2019 - - The codelist to be used is at-voc:applicability which is available at http://publications.europa.eu/resource/dataset/applicability - xsd:boolean [0..1]
epo:AccessTermepo:hasRestrictedAccessURLThe internet address with information on accessing the restricted (part of the) procurement - document. - - Additional Information: - This corresponds in eForms to BT-615 Documents Restricted URL. - xsd:anyURI [0..1]
epo:ReviewIrregularitySummaryepo:hasReviewIrregularityCountThe number of requests for a given irregularity. - - Additional information: - This attribute corresponds in eForms to BT-635 Buyer Review Requests Count.xsd:integer [1..1]
epo:ReviewObjectepo:hasReviewURLThe internet address of the documents concerning the review instance. - - Additional information: - This attribute corresponds in eForms to BT-794 Review URL. - xsd:anyURI [0..1]
adms:Identifierepo:hasSchemeThe name of the identification scheme.rdf:PlainLiteral [0..*]
adms:Identifierepo:hasSchemeVersionThe version of the identification scheme.rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:hasSelectionCriteriaStatedInProcurementDocumentsxsd:boolean [0..1]
epo:ProfessionalSuitabilitySummaryepo:hasServiceReservedToParticularProfessionxsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasSMEReceivedTendersThe amount of tenders received from micro, small and medium-sized enterprises. - - <u>Additional Information:</u> - - See Commission Recommendation 2003/361/EC. - The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. - - WG Approval 05/03/2020 - xsd:integer [0..1]
epo:StrategicProcurementepo:hasStrategicProcurementDescriptionSelf-explanatory text about a concept. - rdf:PlainLiteral [0..*]
epo:SubcontractTermepo:hasSubcontractingInvolvedList of Subcontractors and the subject matter they cover are required. - - Additional Information: - The tenderer will ned to supply this information in the tender. - - WG Approval 28/02/2019xsd:boolean [0..1]
epo:SubcontractTermepo:hasSubcontractorsProposedAboveObligationThe maximum percentage of the contract value that the contractor must subcontract. - - Additional information: - This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - - - WG Approval 09/11/2021xsd:decimal [0..1]
epo:SubcontractingEstimateepo:hasSubjectMatterDescription of the share of the contract that is to be subcontracted. - - Additional infromation: - This can be an aggregate of several subcontracts. - - WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasSubmissionURL - Additional Information: - This corresponds to the eForms BT-18 Submission URL. - - This corresponds in eForms to BT-509 Organisation eDelivery Gateway.xsd:anyURI [0..*]
epo:MultipleStageProcedureTermepo:hasSuccessiveReductionThe number of solutions or tenders will be reduced in iterative evaluations for multiple - staged procedures. - - Additional information: - This refers to multiple-stage procedures (included two-stage procedures, at least). - Open Procedures can be seen as one-stage procedures. - WG Approval 22/08/2019 xsd:boolean [0..1]
cccev:Constraintepo:hasThresholdValueThe cut-off level for a given concept. - - Additional Information: - This value is given as e.g. a minimum score, a maximum number of tenders with the - highest score passing (see codelist at-voc:number-threshold).xsd:decimal [1..1]
epo:ReviewRequestSummaryepo:hasTotalNumberOfComplainantsThe number of economic operators that requested the buyer to review any of its decisions - (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive - 89/665/EEC and Directive 92/13/EEC. - - Additional information: - This attribute corresponds in eForms to BT-712 Buyer Review Complainants - - WG Approval 11/04/2019xsd:integer [0..1]
epo:GreenProcurementepo:hasTotalVehiclesThe number of all vehicles (regardless of whether clean or not) that have either been - purchased, leased, rented, hired-purchased or their use has been contractually committed - to for the provision of a purchased service. - - Additional Information - - In the European Union, the legal requirements and scope for the provision of these - vehicles or services are covered by Directive 2009/33/EC. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:Quantityepo:hasUnitDescriptionA narrative explanation defining the units of items being counted - - Additional information: This could be for example individual items or pack or two. - - WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasUnverifiedTendersOffers received for which it has not been verified if they are admissible or inadmissible - (e.g. because award criteria have been evaluated for all tenders and admissibility - is checked only for the winning tender). - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:Fundepo:hasURLThe identifier of a resource. - - Additional Information - - For example: - - 1. The URL of the system from where to access the procurement documents; - 2. The URL of the system for the submission of tender documents; - 3. The URL of the system from where to download a tool to communicate with the Buyer; - 4. The URL of the system used by a Technique to allow Economic Operators to exchange - information with the Buyer (e.g. eAuction and DPS Systems) - 5. The URL of the system used to exchange information between Buyer and EO for questions - and clarifications; - - WG Approval 30/09/2019xsd:anyURI [0..1]
epo:Documentepo:hasVersionA number that identifies a specific state of a document. - - WG approval: 18/11/2021 - rdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasWithdrawalDateThe date and time when the request for review was withdrawn. - - Additional information: - This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date.xsd:date [0..1]
epo:ReviewRequestepo:hasWithdrawalReasonThe explanation for withdrawing the request for review. - - Additional information: - This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasonsrdf:PlainLiteral [0..1]
epo:GreenProcurementepo:hasZeroEmissionVehiclesThe number of all zero-emission heavy-duty vehicles that have either been purchased, - leased, rented, hired-purchased or their use has been contractually committed to for - the provision of a purchased service. - - Additional Information - - In the European Union, the legal requirements and scope for the provision of these - vehicles or services are covered by Directive 2009/33/EC. - - WG Approval 28/07/2020 - xsd:integer [0..1]
epo:ProcurementCriteriaSummaryepo:indicatesPerformingStaffInformationRequirementxsd:boolean [0..1]
epo:Procedureepo:isAcceleratedStatement about the fact that the procedure will be reduced due to a state of urgency. - - Additional Information - - This modifies the time limit for the receipt of requests to participate or the receipt - of tenders. - - WG Approval 20/08/2019 - xsd:boolean [0..1]
epo:SubmissionTermepo:isAdvancedElectronicSignatureRequiredAdvanced or qualified electronic signature or seal (as defined in Regulation (EU) - No 910/2014) is required. - - - - The submitted information is required to be signed electronically. - - Additional Information: - - Signature can be defined as "data in electronic form which is attached to or logically - associated with other data in electronic form and which is used by the signatory to - sign. - For more details on the meaning and uses of electronic signature you may consult different - authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 - on electronic identification and trust services for electronic transactions in the - internal market. - - WG Approval 21/07/2020 - xsd:boolean [0..1]
epo:ProcedureTermepo:isAwardedByCPBProcedure is awarded by a Central Purchasing Body. - - xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isCompetitionTerminatedNo further contracts will be awarded in this procedure. - - Additional Information: - This can be instantiated in the post award phase. - - PIN for Competition needs to be signaled. This field can be used even if no contracts - are awarded in the contract award notice. - - This corresponds in eForms to BT-756 PIN Competition Termination.xsd:boolean [0..1]
epo:Buyerepo:isContractingEntityRole of entities, which: - - (a) are contracting authorities or public undertakings and which pursue one of the - activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. - - (b) when they are not contracting authorities or public undertakings, have as one - of their activities any of the activities referred to in Articles 8 to 14, or any - combination thereof and operate on the basis of special or exclusive rights granted - by a competent authority of a Member State. - - Additional Information - - The indicator is needed in order to discriminate between those contracts where the - Contracting Entity acts as a Contracting Authority undergoing the limits and the rules - of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed - constraints. - For example, the Contracting Entities have different thresholds for the application - of Directive 24 if compared with Contracting Authorities. - - WG Approval 28/04/2020 - xsd:boolean [0..1]
epo:ProcurementObjectepo:isCoveredByGPASpecifies whether the Agreement on Government Procurement (GPA) applies. - - Additional information: - The GPA aims to establish a multilateral framework of balanced rights and obligations - relating to public contracts with a view to achieving the liberalization and expansion - of world trade. - - This corresponds in the e Forms to BT-115 GPA Coverage. - - WG Approval 15/10/2019 - - xsd:boolean [0..1]
epo:Procedureepo:isDesignContestA competition which enables the buyer to acquire a plan or design via a jury. - - Additional information: - Design contests have traditionally mostly been used in the fields of town and country - planning, architecture and engineering or data processing, other purposes, such as - to obtain plans for financial engineering - - The contest may include or not the award of prizes; - - WG approval 04-02-2021 xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isDPSTerminatedEnd of the Dynamic Purchase System (DPS). - - Additional Information: This property can be used in the contract award notice even - if no contracts are awarded. - - WG Approval 22/11/2019 - xsd:boolean [0..1]
epo:Noticeepo:isEUInstitutionxsd:boolean [0..1]
epo:SubmissionTermepo:isGuaranteeRequiredThe submitted information must include a financial commitment to be used in case of - default. - - Additional Information: - See the additional information provided in the definition of the 'Guarantee Description' - element. - - WG Approval 21/07/20 - - xsd:boolean [0..1]
epo:Procedureepo:isJointProcurementMultiple buyers procure together within the same procedure. - - Addition Information: - In case the joint procurement involves buyers from different countries, the national - law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:isJuryDecisionBindingIndicates whether the procuring entity is bound to apply the decision of the jury.xsd:boolean [0..1]
epo:Businessepo:isListedCompanyPublic companies listed on a stock exchange and subject to disclosure requirements - (either by stock exchange - rules or through law or enforceable means), which impose requirements to ensure adequate - transparency of - beneficial ownership. - - <u>Additional Information:</u> - - In eForms this indicator is used when the nationality of beneficial owner is not provided - because the Economic Operator is registered in a regulated market that is subject - to disclosure requirements consistent with Union law or subject to equivalent international - standards which ensure adequate transparency of ownership information. - - WG Approval 21/11/2019xsd:boolean [0..1]
epo:SubmissionTermepo:isMultipleTenderSubmissionAllowedTenderers may submit more than one competing tenders. - - WG Approval 10/10/2019 - - xsd:boolean [0..1]
epo:NonDisclosureAgreementTermepo:isNonDisclosureAgreementRequiredxsd:boolean [0..1]
epo:ProcedureTermepo:isOneLotOnlyAllowedIndicates whether tenders may be submitted for only one Lot. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms). - - WG approval 23/08/2022 - - xsd:boolean [0..1]
epo:ElementChangeDescriptionepo:isProcurementDocumentChangedOne or more procurement documents have been changed. - - Additional information: - This corresponds in eForms to BT-718 Change Procurement Documents - - WG Approval 05/11/2019xsd:boolean [0..1]
epo:AccessTermepo:isProcurementDocumentRestrictedThe access to certain procurement documents is restricted. - - Additional Information: - This corresponds in eForms to BT-14 Documents Restricted. - - WG Approval 10/10/2019xsd:boolean [0..1]
epo:ProcurementObjectepo:isRecurrentThe Procurement being notified is likely to be included in another procedure in the - foreseeable future. - - Additional Information: - - For example, a regularly re-tendered municipal service. This does not include awarding - multiple contracts within a single qualification system, framework agreement, or a - dynamic purchasing system. - - This corresponds in eForms to BT-94 Recurrence. - - WG Approval 12/05/2020 - xsd:boolean [0..1]
epo:ContractTermepo:isRenewalIndicatorIndicates whether the contract is subject to a renewal clause. - WG Approval 09/11/2021xsd:boolean [0..1]
epo:SecurityClearanceTermepo:isSecurityClearanceRequiredxsd:boolean [0..1]
epo:ProcurementObjectepo:isSMESuitableThe Lot is suitable for small and medium enterprises (SMEs). - - Additional Information - - This allows the buyer to make emphasis on the fact that the procedure has been designed - having SMEs in mind. This indicator is also to be reflected in the selection criteria. - - For example, number of employees and turnover are applicable to the definition of - an SME. - - WG Approval 15/10/2019 - xsd:boolean [0..1]
epo:ProcedureTermepo:isSubmissionForAllLotsAllowedIndicates whether tenders may be submitted for all Lots. - - Additional information: - This field is used to complement the SubmissionTerms (which are at the Lot level) - for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled - in the TED Standard Forms) - - WG approval 23/08/2022 - xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isToBeRelaunchedIndicator of whether the procurement object is to be relaunched. - - Additional information: - This can be instantiated in the post award phase. - - This corresponds in eForms to BT-634 Procurement Relaunch. - - WG Approval: 18/01/2022 - xsd:boolean [0..1]
epo:SelectionCriterionepo:isUsedForCandidateRestrictionThe criterion will be used to select the candidates to be invited for the second stage - of a multistage procedure. - - Additional Information: - This property is only used if a maximum number of candidates was foreseen in the procedure. - This corresponds in eForms to BT-40 Selection Criteria Second Stage Invitexsd:boolean [0..1]
epo:ProcurementObjectepo:isUsingEUFundsThe procurement foresees funding by the Union. - - Additional Information: - The funding may cover the whole procurement or part of the procurement. - - For example the European Structural and Investment Funds or grants awarded by the - European Union. - - xsd:boolean [0..1]
epo:Tenderepo:isVariantAlternative solution to fulfil the buyer's needs as opposed to solutions indicated - in the procurement documents. - - Additional Information: - - The permission to offer variants is only allowed if specified in a Contract Notice - or a Prior Information Notice that used as a means for calling for a competition. - The buyer lays out minimum requirements in the procurement documents that must be - respected by tenderers submitting variants. - - WG Approval 29/05/2019 - - xsd:boolean [0..1]
epo:ReviewRequestepo:isWithdrawnThe review request was withdrawn. - - Additional information: - This attribute corresponds in eForms to BT-796 Review Request Withdrawn.xsd:boolean [0..1]
cpv:Personfoaf:familyNameThe hereditary surname of a family. - rdf:langString [0..*]
cpv:Personfoaf:givenNameThe name(s) that identify the Person within a family with a common surname. - rdf:langString [0..*]
cpv:Personfoaf:nameThe complete name of the Person as one string.rdf:langString [0..*]
locn:Addresslocn:addressAreaThe name or names of a geographic area or locality that groups a number of addressable - objects for addressing purposes, without being an administrative unit. - - Additional Information: - This would typically be part of a city, a neighbourhood or village, e.g. Montmartre.rdf:langString [0..1]
locn:Addresslocn:adminUnitL1The name or names of a unit of administration related to the exercise of jurisdictional - rights, for local, regional and national governance. Level 1 refers to the uppermost - administrative unit for the address, almost always a country. - - Additional Information: - Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, - country names should be provided in a consistent manner to reduce ambiguity. For example, - either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing - the two. The Country controlled vocabulary from the Publications Office can be reused - for this.rdf:langString [0..1]
locn:Addresslocn:adminUnitL2The name or names of a unit of administration related to the exercise of jurisdictional - rights, for local, regional and national governance. Level 2 refers to the region - of the address, usually a county, state or other such area that typically encompasses - several localities. - - Additional Information: - Some recommended codelists from the EU Publications Office include: Administrative - Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement - of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" - in the ATU controlled vocabulary. - rdf:langString [0..1]
locn:Addresslocn:fullAddressThe complete address written as a formatted string. - - Additional Information: - Use of this property is recommended as it will not suffer any misunderstandings that - might arise through the breaking up of an address into its component parts. This property - is analogous to vCard's label property but with two important differences: (1) formatting - is not assumed so that, unlike vCard label, it may not be suitable to print this on - an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress - property has no such restriction. An example of a full address is "Champ de Mars, - 5 Avenue Anatole France, 75007 Paris, France".rdf:langString [0..1]
dct:Locationlocn:geographicNameA textual description for a Location. - - Additional Information: - The INSPIRE Data Specification on Geographical Names provides a detailed model for - describing a 'named place', including methods for providing multiple names in multiple - scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, - the concept of a geographic name used here is consistent. - - A geographic name is a proper noun applied to a spatial object. Taking the example - used in the INSPIRE document (page 15), the following are all valid geographic names - for the Greek capital: - - - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) - - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) - - "Athens"@en (the English language exonym) - INSPIRE has a detailed (XML-based) method of providing metadata about a geographic - name and in XML-data sets that may be the most appropriate method to follow. When - using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical - data (the use case for INSPIRE), the Code datatype or a simple language identifier - may be used to provide such metadata. - - The country codes defined in ISO 3166 may be used as geographic names and these are - generally preferred over either the long form or short form of a country's name (as - they are less error prone). The Publications Office of the European Union recommends - the use of ISO 3166-1 codes for countries in all cases except two: - - - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - - use 'EL' in preference to the ISO 3166 code GR for Greece. - Where a country has changed its name or no longer exists (such as Czechoslovakia, - Yugoslavia etc.) use the ISO 3166-3 code.rdf:langString [0..1]
locn:Addresslocn:locatorDesignatorA number or a sequence of characters which allows a user or an application to interpret, - parse and format the locator within the relevant scope. A locator may include more - locator designators. - - Additional Information: - In simpler terms, this is the building number, apartment number, etc. For an address - such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17".rdf:PlainLiteral [0..1]
locn:Addresslocn:locatorNameProper noun(s) applied to the real world entity identified by the locator. - - Additional Information: - The locator name could be the name of the property or complex, of the building or - part of the building, or it could be the name of a room inside a building. - - The key difference between a locator and a locator name is that the latter is a proper - name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting - room within the European Commission headquarters for which locator name is more appropriate - than locator.rdf:langString [0..1]
locn:Addresslocn:postCodeThe post/zip code of an address. (INSPIRE's definition is "A code created and maintained - for postal purposes to identify a subdivision of addresses and postal delivery points.") - - Additional Information: - Post codes are common elements in many countries' postal address systems. One of the - many post codes of Paris is for example "75000".rdf:PlainLiteral [0..*]
locn:Addresslocn:postNameThe key postal division of the address, usually the city. (INSPIRE's definition is - "One or more names created and maintained for postal purposes to identify a subdivision - of addresses and postal delivery points.) For example, "Paris".rdf:langString [0..*]
locn:Addresslocn:thoroughfareAn address component that represents the name or names of a passage or way through - from one location to another. A thoroughfare is not necessarily a road, it might be - a waterway or some other feature. - - Additional Information: - For example, "Avenue des Champs-&#201;lys&#233;es".rdf:langString [0..*]
cpv:Personperson:birthNameFamily name of the Person given upon their birth. - WG Approval 09/11/2021rdf:langString [0..*]
cpv:Personperson:patronymicNameName based on the given name of the Person's father. - WG Approval 09/11/2021rdf:langString [0..*]
adms:Identifierskos:notationThe literal identifying an entity, like a person or an object.rdf:PlainLiteral [1..1]
cccev:InformationConcept
cccev:Requirement
skos:prefLabelThe preferred lexical label for a resource, in a given language. - - WG approval 30/05/2023 - - The preferred lexical label for a resource, in a given language. - - WG approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
epo:SpecificDurationtime:numericDurationValue of a temporal extent expressed as a number.xsd:decimal [1..1]
-

Predicates (object properties) and definitions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Predicate nameDefinitionDomain, Range and Cardinality
adms:identifierA unique identifier of the instance of the concept. - - Additional Information - - For example, in the case of the Procurement Identifier, this could be the European - Public Procurement Identifier, and/or any other identifier provided by the buyer, - the service provider or any other stakeholder. - - WG Approval 12/11/2019 - - A unique identifier of the instance of the concept. - - Additional Information - - For example, in the case of the Procurement Identifier, this could be the European - Public Procurement Identifier, and/or any other identifier provided by the buyer, - the service provider or any other stakeholder. - - WG Approval 12/11/2019 A unique identifier of the instance of the concept. - - Additional Information - - For example, in the case of the Procurement Identifier, this could be the European - Public Procurement Identifier, and/or any other identifier provided by the buyer, - the service provider or any other stakeholder. - - WG Approval 12/11/2019 - Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class.epo:Project -> adms:Identifier [0..1]
epo:LotGroup -> adms:Identifier [0..1]
epo:ProcurementElement -> adms:Identifier [1]
foaf:Agent -> adms:Identifier [0..*]
dct:Location -> adms:Identifier [0..1]
cccev:InformationConcept -> adms:Identifier [0..1]
epo:Document -> adms:Identifier [0..*]
epo:Fund -> adms:Identifier [0..1]







cccev:confidentialityLevelTypeSecurity classification assigned to an Evidence e.g. classified, sensitive, public. - - Additional Information: - - Classifications should be defined by an organisation/country as an outcome of a security - assessment. - cccev:Evidence -> at-voc:confidentiality-level [0..1]
cccev:constrainsInformation Concept about which a Constraint expresses a limitation. - - Additional Information: - Information Concepts are tools to make Requirements more machine processable: they - allow to provide more detail about a Requirement. This way, Constraints can be made - very precise, namely the limit that must be achieved, is a limit on the value for - the associated Information Concept. For example, the Information Concept would be - the age of a person and the Constraint would be the required age in the context of - a specific evaluation.cccev:Constraint -> cccev:InformationConcept [0..*]
cccev:hasRequirementA more specific Requirement that is part of the Requirement.cccev:Requirement -> cccev:Requirement [0..*]
cccev:supportsConceptInformation Concept providing facts found/inferred from the Evidence. - - Additional Information: - Examples of Information Concepts are values found explictly in the evidence such as - a birth date or information derived from the Evidence such as "I am older that 18 - years" or "this is a FairTrade product".cccev:Evidence -> cccev:InformationConcept [0..*]
cccev:supportsRequirementRequirement for which the Evidence provides proof.cccev:Evidence -> cccev:Requirement [0..*]
cv:addressAssociates any Resource with the corresponding Address. - - Additional Information: - Asserting the address relationship implies that the Resource has an Address. org:Organization -> locn:Address [0..*]
cpov:ContactPoint -> locn:Address [0..1]
cv:registeredAddressThe registered address relationship links a Resource with the legally registered Address. - - Additional Information: - It is the address to which formal communications can be sent, such as the postal address. The registered address relationship links a Resource with the legally registered Address. - - Additional Information: - It is the address to which formal communications can be sent, such as the postal address. - cpv:Person -> locn:Address [0..1]
org:Organization -> locn:Address [0..1]
dct:typeCategory to which the Requirement belongs.cccev:Criterion -> at-voc:criterion [0..1]
epo:actsOnBehalfOfRepresents.epo:ProcurementServiceProvider -> epo:Buyer [1..*]
epo:announcesAwardDecision epo-not:ResultNotice -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision [0..*]
epo-not:ResultNotice -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision [0..*]
epo:announcesCompletionOfContract epo-not:CompletionNotice -> epo:Contract [1]
epo-not:CompletionNotice -> epo:Contract [1]
epo:announcesContract epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice -> epo:Lot [1..*]
epo-not:CompetitionNotice -> epo:Lot [1..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Lot [1..*]
epo-not:CompetitionNotice -> epo:Lot [1..*]
epo:announcesLotGroup epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo:announcesLotGroupAwardInformation epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. - - Additional Information: - For example, elements in the Contract Award Notice that should be published at a later - date. Relation indicating which parts of a document are not published. - - Additional Information: - For example, elements in the Contract Award Notice that should be published at a later - date. epo-not:ResultNotice -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision [0..*]
epo-not:ResultNotice -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision [0..*]
epo:announcesNoticeAwardInformation epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo:announcesPlannedProcurementPart epo-not:PlanningNotice -> epo:PlannedProcurementPart [0..*]
epo-not:PlanningNotice -> epo:PlannedProcurementPart [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice -> epo:Procedure [1]
epo-not:CompetitionNotice -> epo:Procedure [1]
epo-not:DirectAwardPrenotificationNotice -> epo:Procedure [1]
epo-not:CompetitionNotice -> epo:Procedure [1]
epo:announcesReviewObject epo-not:CompletionNotice -> epo:ReviewObject [1..*]
epo-not:CompletionNotice -> epo:ReviewObject [1..*]
epo:announcesRole epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo:associatedWithThe document to which a document is associated. - - WGM 01/03/2022 - epo:Document -> epo:Document [0..*]
epo:bindsBuyerProvides legal constraint on the Buyer.epo:Contract -> epo:Buyer [0..*]
epo:bindsContractorProvides legal constraint on the Contractor.epo:Contract -> epo:Contractor [0..*]
epo:comprisesLotAwardDecisionIncorporates LotAwardOutcome.epo:AwardDecision -> epo:LotAwardDecision [0..*]
epo:comprisesMiniCompetitionAwardDecisionepo:AwardDecision -> epo:MiniCompetitionAwardDecision [0..*]
epo:comprisesTenderIncorporates Tender.epo:TenderGroup -> epo:Tender [1..*]
epo:comprisesTenderAwardOutcomeIncorporates TenderAwardOutcome.epo:AwardDecision -> epo:TenderAwardOutcome [0..*]
epo:concernsLotRelates to Lot. Relates to Lot.epo:ProcurementProcessInformation -> epo:Lot [0..1]
epo:LotAwardDecision -> epo:Lot [1]
epo:concernsMiniCompetitionepo:MiniCompetitionAwardDecision -> epo:MiniCompetition [0..1]
epo:concernsProcedureRelates to Procedure.epo:ProcurementProcessInformation -> epo:Procedure [0..1]
epo:concernsReviewSummaryForLotRelates to Lot review summary. - - Additional information: - This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier.epo:ReviewRequestSummary -> epo:Lot [1]
epo:concernsTenderepo:TenderAwardOutcome -> epo:Tender [1]
epo:conformsToLegalBasisThe Notice was designed in accordance with the given legal basis. - - Additional Information: - This Notice can be used for Procedures which do not have the same legal basis. - This holds for standard forms.epo:Notice -> at-voc:legal-basis [0..1]
epo:conformsToSpecificLegalBasisepo:Notice -> at-voc:legal-basis [0..1]
epo:containsCandidateepo:SelectedCandidateList -> epo:Candidate [0..*]
epo:containsModificationsOf - - Additional information - This relation shall be used between Instances of the SAME type/class. - - The "modifying-instance" can be minimally instantiated, carrying the fields/information - that override the fields in the "modified-instance". - - This means that the "modifying-instance" (is under-specified) and might violate minimal - cardinality restrictions in case they are checked. But the purpose of such an instance - is not to be used as a full instance. - owl:Thing -> owl:Thing [0..1]
epo:contextualisedByThe place of the AgentInRole in the procurement is expressed by a ProcurementObject.epo:AgentInRole -> epo:ProcurementObject [0..*]
epo:definesBudgetProviderRelation indicating a ProcedureTerm has a BudgetProvider.epo:ProcedureTerm -> epo:BudgetProvider [0..1]
epo:definesCatalogueProviderRelation indicating an AccessTerm has a CatalogueProvider.epo:AccessTerm -> epo:CatalogueProvider [0..*]
epo:definesCatalogueReceiverRelation indicating an AccessTerm has a CatalogueReceiver.epo:AccessTerm -> epo:CatalogueReceiver [0..*]
epo:definesContractDurationRelation indicating a ContractTerm has a Duration.epo:ContractTerm -> epo:Duration [0..1]
epo:definesContractPeriodRelation indicating a ContractTerm has a Period.epo:ContractTerm -> epo:Period [0..1]
epo:definesInformationProviderRelation indicating a ProcedureTerm has an information provider.epo:ProcedureTerm -> epo:AuxiliaryParty [0..*]
epo:definesLotGroupRelation indicating a ProcedureTerm has a LotGroup.epo:ProcedureTerm -> epo:LotGroup [0..*]
epo:definesMediatorRelation indicating a ProcedureTerm has a Mediator.epo:ProcedureTerm -> epo:Mediator [0..1]
epo:definesOfflineAccessProviderRelation indicating an AccessTerm has an OfflineAccessProvider.epo:AccessTerm -> epo:OfflineAccessProvider [0..1]
epo:definesOpeningPlaceThe place where the tenders will be publicly opened. - - WG Approval 10-10-2019epo:OpeningTerm -> locn:Address [0..1]
epo:definesParticipationRequestProcessorRelation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor.epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor [0..1]
epo:definesParticipationRequestReceiverRelation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver.epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver [0..1]
epo:definesPaymentExecutorRelation indicating a ContractTerm has a PaymentExecutor.epo:ContractTerm -> epo:PaymentExecutor [0..1]
epo:definesPlaceOfPerformanceRelation indicating the place of performance of a Contract. - - WG approval 21/03/2023epo:ContractTerm -> dct:Location [0..*]
epo:definesPrizeRelation indicating a DesignContestRegimeTerm has a Prize.epo:DesignContestRegimeTerm -> epo:Prize [0..*]
epo:definesProcurementProcedureInformationProviderRelation indicating an AccessTerm has a ProcurementProcedureInformationProvider.epo:AccessTerm -> epo:ProcurementProcedureInformationProvider [0..1]
epo:definesSubcontractingTermRelation indicating a ContractTerm has a SubcontractingTerm.Relation indicating a - term has a subterm.epo:ContractTerm -> epo:SubcontractTerm [0..1]
epo:definesTenderProcessorRelation indicating a SubmissionTerm has a TenderProcessor.epo:SubmissionTerm -> epo:TenderProcessor [0..1]
epo:definesTenderReceiverRelation indicating a SubmissionTerm has a TenderReceiver.epo:SubmissionTerm -> epo:TenderReceiver [0..1]
epo:delegatesAncillaryActivitiesToEntrusts ancillary purchasing activities to ProcurementServiceProvider. - - Additional Information: - Directive 2014/24/EU describes ancillary purchasing activities as activities consisting - in the provision of support to purchasing activities, in particular in the following - forms: - - (a) technical infrastructure enabling contracting authorities to award public contracts - or to conclude framework agreements for works, supplies or services; - - (b) advice on the conduct or design of public procurement procedures; - - (c) preparation and management of procurement procedures on behalf and for the account - of the contracting authority concerned;epo:Buyer -> epo:ProcurementServiceProvider [0..*]
epo:describesContractModification epo-not:ContractModificationNotice -> epo:ContractModification [0..*]
epo-not:ContractModificationNotice -> epo:ContractModification [0..*]
epo:describesLotCompletionepo:ContractLotCompletionInformation -> epo:Lot [1]
epo:describesLotGroupepo:LotGroupAwardInformation -> epo:LotGroup [1]
epo:describesNoticeepo:NoticeDescription -> epo:Notice [1]
epo:describesResultNotice epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:distributesOfferepo:OfferIssuer -> epo:Offer [0..*]
epo:exposesChannelepo:AgentInRole -> cv:Channel [0..*]
epo:exposesInvoiceeChannelepo:Buyer -> cv:Channel [0..*]
epo:followsRulesSetByepo:MiniCompetition -> epo:FrameworkAgreement [0..1]
epo:foreseesConcession epo:ProcurementObject -> epo:ConcessionEstimate [0..1]
epo:Tender -> epo:ConcessionEstimate [0..1]
epo:foreseesContractSpecificTermepo:ProcurementObject -> epo:ContractSpecificTerm [0..*]
epo:foreseesProcurementObjectRelation indicating the instance of a Procurement Object that is planned. - - Additional Information: - The properties of the Procurement Object that is foreseen should be read as foreseen - properties. - For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. - For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy.epo:PlannedProcurementPart -> epo:ProcurementObject [0..1]
epo:foreseesSubcontractingepo:Tender -> epo:SubcontractingEstimate [0..*]
epo:foreseesTechniqueepo:PlannedProcurementPart -> epo:Technique [0..*]
epo:fulfillsRequirementThe requirement to which the concept meets. - WG Approval 09/11/2021 - - The requirement to which the concept meets. - WG Approval 09/11/2021 - - The requirement to which the concept meets. - WG Approval 09/11/2021 - - epo:GreenProcurement -> at-voc:environmental-impact [1..*]
epo:InnovativeProcurement -> at-voc:innovative-acquisition [1..*]
epo:SocialProcurement -> at-voc:social-objective [1..*]
epo:fulfillsStrategicProcurementepo:ProcurementObject -> epo:StrategicProcurement [0..*]
epo:hasAdditionalClassificationepo:Purpose -> at-voc:cpv [0..*]
epo:hasAdditionalContractNatureAdditional type of acquisition taken into consideration in the contract. - - WG Approval 11/06/2020 - - epo:ContractTerm -> at-voc:contract-nature [0..*]
epo:hasAllegedIrregularityTypeAdditional information: - This relation corresponds in eForms to BT-791 Review Irregularity Type - epo:ReviewRequest -> at-voc:irregularity-type [1..*]
epo:hasApproximateFrameworkAgreementValue epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasAwardCriterionTypeCategory of award criterion. - - epo:AwardCriterion -> at-voc:award-criterion-type [0..1]
epo:hasAwardedEstimatedValueThe estimated value that can be spent as provided by the Award Decision. - - <u>Additional Information</u>: - This property is used for framework agreements and dynamic purchasing systems. - Different cases of awarded values may refer to a lot, the global value of the procedure, - or of a combinatorial value of a group of lots. - - WG Approval 12/12/2019 - - epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardedValueThe value of the procurement provided by the Award Decision. - - Additional Information: - Different cases of awarded values may refer to a lot, the global value of the procedure, - or of a combinatorial value of a group of lots. - - In the case of framework agreements and dynamic purchasing systems this refers to - the maximum awarded value. - - WG Approval 10/12/2019epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardStatusIndicates whether the lot is awarded, not awarded or still open. - WG Approval 03/12/2019 - - epo:AwardDecision -> at-voc:winner-selection-status [0..1]
epo:hasBargainPriceThe value of procured supplies that have used a particularly advantageous opportunity - available for a very short time at a value considerably lower than normal market prices. - - WG approval 23/05/2023epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasBeneficialOwnerA role of any natural person(s) who ultimately owns or controls the organisation or - on whose behalf a transaction or activity is being conducted. - Additional Information: - This role is defined in the directive EU 2015/849 and it's beyond the scope for public - eProcurement domain. - WG approval 14/09/2021epo:Business -> cpv:Person [0..*]
epo:hasBroadPlaceOfPerformanceGeopolitical zone where the contract can be executed. - - Additional Information - - Used for setting restrictions that cannot be established with one country code or - a geographical zone identifier (like NUTS), because they have a broader scope (geographical, - economic, political, other). - epo:ContractTerm -> at-voc:other-place-service [0..1]
epo:hasBusinessSizeThe category of the business depending on number of employees and turnover. - - Additional information: - - See Commission Recommendation of 6 May 2003 concerning the definition of micro, small - and medium-sized enterprises. - - WG Approval 28/05/2020 - - epo:Business -> at-voc:economic-operator-size [0..1]
epo:hasBuyerLegalTypeA category that indicates the right of an Organisation to play the role of a buyer. - - Additional Information: - The category also effects the rules that the buyer has to abide to within the public - procurement procedure. - WG 07/09/2021 - - org:Organization -> at-voc:buyer-legal-type [0..1]
epo:hasCandidateListepo:DynamicPurchasingSystem -> epo:SelectedCandidateList [0..*]
epo:hasChangeJustificationCode explaining the change. - - WG Approval 5/11/2019 - The motives for the change. - - WG 5/11/2019 - - The codelist to be used is at-voc:change-corrig-justification which is available at - - http://publications.europa.eu/resource/dataset/change-corrig-justificationepo:ElementChangeDescription -> at-voc:change-corrig-justification [1]
epo:hasConcessionEstimatedValueepo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasConfirmedIrregularityTypeAdditional information: - This relation corresponds in eForms to BT-791 Review Irregularity Typeepo:ReviewDecision -> at-voc:irregularity-type [0..*]
epo:hasConstraintepo:ProcurementCriterion -> cccev:Constraint [0..*]
epo:hasContactPointInRoleepo:AgentInRole -> cpov:ContactPoint [0..*]
epo:hasContractNatureTypeSubject of the acquisition. - - WG Approval 11/06/2020 - - epo:ContractTerm -> at-voc:contract-nature [0..1]
epo:hasContractValueepo:Contract -> epo:MonetaryValue [0..1]
epo:hasCountryCode - dct:Location -> at-voc:country [0..1]
locn:Address -> at-voc:country [0..1]
epo:hasCountryOfBirthThe country in which the Person was born. - cpv:Person -> at-voc:country [0..1]
epo:hasCurrencyThe identifier of the currency as in the standard code list used. - - epo:MonetaryValue -> at-voc:currency [0..1]
epo:hasDirectAwardJustificationList of reasons for using a procedure which allows awarding contracts directly without - publishing a notice. - - WG Approval 28/05/2020 - epo:DirectAwardTerm -> at-voc:direct-award-justification [0..1]
epo:hasDocumentRestrictionJustificationAn explanation about the reasons why some procurement documents are restricted. - - Additional Information: - This corresponds in eForms to BT-707 Documents Restricted Justification. - - WG Approval 09/03/2021 - epo:AccessTerm -> at-voc:communication-justification [0..1]
epo:hasDPSScopeExplanation as to whether a dps is used and by whom. - - Additional Information: - This corresponds in eForms to BT-766 Dynamic Purchasing System. - WG Approval 09/11/2021 - Explanation as to whether a dps is used and by whom. - WG Approval 09/11/2021 - - The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usageepo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage [0..1]
epo:hasECataloguePermissionThe extent to which electronic catalogues may be used in tenders. - - WG Approval 03/10/2019 - epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEInvoicingPermissionepo:ContractTerm -> at-voc:permission [0..1]
epo:hasElectronicDigestepo:Document -> epo:Document [0..*]
epo:hasElectronicSignatureepo:Document -> epo:ElectronicSignature [0..*]
epo:hasElementChangeepo:NoticeChange -> epo:ElementChangeDescription [1..*]
epo:hasElementConfidentialityRelation indication that the publication provision applies to a given field of a document.epo:PublicationProvision -> epo:ElementConfidentialityDescription [1..*]
epo:hasElementDescriptionepo:NoticeDescription -> epo:ElementDescription [0..*]
epo:hasElementModificationepo:ContractModification -> epo:ElementModificationDescription [1..*]
epo:hasEndpointIdentifiercv:Channel -> adms:Identifier [0..*]
epo:hasEstimatedBuyerConcessionRevenueThe expected payments made by the buyer to the economic operator awarded the concession - that are not directly related to the use of the concession. - - <u>Additional Information:</u> - For example the public buyer pays a yearly fee to provide a ticketing solution to - the public. The fee the public pays for every ticket sold through the solution is - not included in this estimation but in the estimation of the user concession revenue. - - This corresponds to BT-160 in eForms. - - WG Approval 07/01/2020epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedDurationRelation indicating a Contract has an estimated Duration. - - Additional Information - - When the Lot uses a Technique the contract estimated duration applies to the Technique. - epo:Contract -> epo:Duration [0..1]
epo:hasEstimatedUserConcessionRevenueThe estimated revenue coming from the use of the concession. - - Additional Information: - Revenues are for example fees and fines. For example, the fees and fines coming from - the cars using a motorway. - - This corresponds to BT-162 in eForms. - epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedValueA forecast of the value of the procurement before competition. - - Additional Information: - Different cases of estimated values may refer to a lot, the global value of the procedure, - or of a combinatorial value of a group of lots. - The forecast is calculated by the buyer and covers all revenues whether coming from - the buyer or third parties. - See for example recital (19), Article 5 of Directive 2014/24/EU and other articles - from the rest of Directives about procurement. - - In the case of framework agreements and dynamic purchasing systems this refers to - the maximum estimated value. - - This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used - for BT-157 (for LotGroup). - <b> - </b><b>WG Approval 05/12/2019</b> - - epo:ProcurementElement -> epo:MonetaryValue [0..1]
epo:hasESubmissionPermissionThe requirements as to what extent electronic submission is allowed. - - WG Approval 03/10/2019 - - epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasFinancialOfferValueThe value offered by the Tenderer for a Lot. - - Additional Information: - This value is normally the one awarded for a winning Tender Lot. In case of negotiated - procedures the original financial value may be reviewed and the offer updated. - - This corresponds to BT-720 in eForms.epo:Tender -> epo:MonetaryValue [0..1]
epo:hasFixedValueTypeThe method to interpret the fixed value as pertaining to a total or unit. - - WG Approval 17/09/2019 - - epo:AwardCriterion -> at-voc:number-fixed [0..1]
epo:hasFormTypeA categorisation of the steps in which the Notice is used. - - WG Approval 12/05/2020 - - epo:Notice -> at-voc:form-type [0..1]
epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
epo:hasFrameworkAgreementEstimatedValueThis refers to BT-660 in eForms.epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementMaximumValueepo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementTypeThe form of framework agreement used in a procurement procedure. - - Addition information: - - A concept to distinguish the different types of framework agreement, which are: - 1. Framework agreement without reopening of competition, - 2. Framework agreement with reopening of competition, or - 3. Framework agreement partly without reopening of competition. - - WG Approval 19/09/2019 - - epo:FrameworkAgreementTerm -> at-voc:framework-agreement [1]
epo:hasFundProgrammeepo:Fund -> at-voc:EU-programme [0..1]
epo:hasGroupFrameworkAgreementMaximumValueThis corresponds to BT-156 in the eForms.epo:LotGroupAwardInformation -> epo:MonetaryValue [0..1]
epo:hasHighestReceivedTenderValueAmount of the Tender with the highest value. - - Additional Information - The value must correspond to an admissible tender. For example, tenders compliant - with the procurement document requirements, not having an abnormally low price or - cost, etc. - - - WG Approval 12/12/2019 - - - epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasImplementingRegulation epo-not:eFormsNotice -> (EU) 2019/1780 [0..1]
epo-not:StandardFormsNotice -> (EU) 2015/1986 [0..1]
epo:hasInternalIdentifierepo:ProcurementElement -> adms:Identifier [0..*]
epo:hasIrregularityTypeAdditional information: - This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity - Typeepo:ReviewIrregularitySummary -> at-voc:irregularity-type [1]
epo:hasItemCountryOfOriginThe source country of the product or service. - - Additional Information: - - The country of origin can be provided by the buyer as a requirement or by the tenderer - information of the item to be provided. - - WG Approval 07/01/2020 - - The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/countryepo:Tender -> at-voc:country [0..*]
epo:hasLanguageLanguage in which the submitted information is to be expressed. - - WG Approval 21/07/2020 - - epo:SubmissionTerm -> at-voc:language [0..*]
epo:hasLateSubmissionPermissionWhether economic operator-related information can be supplemented even after the submission - deadline. - - Additional Information - This is specific to the information on the economic operator and not the actual offer. - This does not apply to the requests for clarification. - - WG Approval 21/07/2020 - epo:SubmissionTerm -> at-voc:missing-info-submission [0..1]
epo:hasLaunchFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLaunchGroupFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLegalBasisThe legal basis under which the procurement procedure takes place. - - Additional Information: - For example European Directives or Regulations, national laws etc. - The recommended code list is the example for the legal basis at the European level. - - WG 04/04/2023 - - The legal basis under which the procurement procedure takes place. - - Additional Information: - For example European Directives or Regulations, national law - - WG 09/11/2021 - - The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis - epo:ProcurementObject -> at-voc:legal-basis [0..*]
epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
epo:hasLegalIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasLegalRegimeepo:ProcurementObject -> epo:legal-regime [0..*]
epo:hasLotReferenceepo:Contract -> epo:Lot [1..*]
epo:hasLowestReceivedTenderValueAmount of the Tender with the lowest value. - - Additional Information - The value must correspond to an admissible tender. For example, tenders compliant - with the procurement document requirements, not having an abnormally low price or - cost, etc. - - WG Approval 12/12/2019 - - epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasMainActivityThe principal sectoral area in which an organisation operates. - - Additional information: - - The activities associated with buyers are derived from the top level of the Classification - of the functions of the government (COFOG) from the United Nations Statistics Division. - - The activities associated with buyer are derived from sectors explicitly falling within - the sectoral directive (2014/25/EU Art. 8 - Art. 14). - - WG Approval 05/05/2020 - - org:Organization -> at-voc:main-activity [0..1]
epo:hasMainClassificationepo:Purpose -> at-voc:cpv [1..*]
epo:hasMaximumFrameworkAgreementAwardedValueThe maximum value which can be spent through all the framework agreements announced - in this notice, including options and renewals of contracts. - - Additional information: - - The value provided is a threshold value that implicity means that it cannot be exceeded - however it may not be reached during the execution of a contract. - - The Framework Agreements in a CAN are to be traced back and added to provide this - value. - - This corresponds to the BT-118 in eForms. - - WG Approval 03/12/2019epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasMemberepo:OrganisationGroup -> org:Organization [1..*]
epo:hasModificationJustificationExplanation of why a contract was modified. - WG Approval 09/11/2021 - - The codelist to be used is at-voc:modification-justification which is available at - http://publications.europa.eu/resource/dataset/modification-justification - - Additional Information - - This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - - This corresponds in eForms to BT-200. - - Explanation of why a contract was modified. - - WG Approval 09/11/2021 - - The codelist to be used is at-voc:modification-justification which is available at - http://publications.europa.eu/resource/dataset/modification-justification - - Additional Information - - This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - - This corresponds in eForms to BT-200. - - - epo:ElementModificationDescription -> at-voc:modification-justification [1]

epo:hasNationality - cpv:Person -> at-voc:country [0..*]
epo:hasNonAwardJustificationOn hold; Enumeration. - - - epo:AwardDecision -> at-voc:non-award-justification [0..1]
epo:hasNonElectronicSubmissionJustification - Reason for not accepting electronic information. - - WG Approval 21/07/2020 - epo:SubmissionTerm -> at-voc:communication-justification [0..*]
epo:hasNonPublicationJustificationThe reason why data is not published. - WG Approval 11/06/2020 - - epo:ElementConfidentialityDescription -> at-voc:non-publication-justification [1]
epo:hasNoticeType epo:Notice -> at-voc:notice-type [1]
epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
epo:hasNotificationContentTypeA categorisation of templates for sets of Procurement information to be conveyed in - Notices. - - WG Approval 12/05/2020epo:Notice -> epo:notification-phases-content-types [0..1]
epo:hasNutsCode dct:Location -> at-voc:nuts [0..1]
locn:Address -> at-voc:nuts [0..1]
epo:hasOfficialLanguageThe language(s) in which the instances of the given concepts are officially available. - These linguistic versions are equally legally valid. - - WG Approval 03/10/2019 - - epo:Document -> at-voc:language [1..*]
epo:hasPerformingStaffQualificationInformation - Additional information: - - This relation corresponds in eForms to BT-79.Explanation as to if and/or when information - of the persons to carry out the contract is to be provided. - WG Approval 09/11/2021 - - The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage - epo:ProcurementCriterion -> at-voc:requirement-stage [0..*]
epo:hasPlannedDurationepo:PlannedProcurementPart -> epo:Duration [0..1]
epo:hasPlannedPeriodepo:PlannedProcurementPart -> epo:Period [0..1]
epo:hasPrimaryContactPointorg:Organization -> cpov:ContactPoint [0..*]
epo:hasPrizeValueThe monetary value of a prize, if any, for the winner (or runners-up) of the design - contest. - - Additional Information: - This corresponds to BT-644 in eForms. - - WG Approval 29/08/2019 - - epo:Prize -> epo:MonetaryValue [0..1]
epo:hasProcedureTypeIdentification of the Procedure used. - - WG Approval 09/06/2020 - epo:Procedure -> at-voc:procurement-procedure-type [1]
epo:hasProcurementClassificationepo:Contract -> at-voc:cpv [0..1]
epo:hasProcurementHighestReceivedTenderValueThe highest received tender value for the procurement. - - Additional Information: - This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementLowestReceivedTenderValueThe lowest received tender value for the procurement. - - Additional Information: - This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementScopeDividedIntoLotepo:Procedure -> epo:Lot [1..*]
epo:hasPurposeRelation indicating a procurement part has a puropse.epo:ProcurementObject -> epo:Purpose [0..1]
epo:hasQualificationSystemDurationepo:MultipleStageProcedureTerm -> epo:Duration [0..1]
epo:hasReceivedSubmissionTypeepo:SubmissionStatisticalInformation -> at-voc:received-submission-type [0..1]
epo:hasRegistrationCountryorg:Organization -> at-voc:country [0..1]
epo:hasRemedyValueAdditional information: - This relation corresponds in eForms to BT-793 Review Remedy Value.epo:ReviewDecision -> epo:MonetaryValue [0..1]
epo:hasReservedExecutionepo:ContractTerm -> at-voc:applicability [0..1]
epo:hasReservedProcurementExplanation as to whether a procurement may be reserved for the participation of certain - types of organisation. - - Additional information: - This property corresponds in eForms to the BT-71 - WG Approval 09/11/2021 - Explanation as to whether a procurement may be reserved for the participation of certain - types of organisation. - - Additional information: - This property corresponds in eForms to the BT-71 - WG Approval 09/11/2021 - epo:ParticipationCondition -> at-voc:reserved-procurement [0..*]
epo:ParticipationConditionsSummary -> at-voc:reserved-procurement [0..*]
epo:hasReviewBodyTypeepo:Reviewer -> at-voc:review-body-type [0..*]
epo:hasReviewDecisionTypeAdditional information: - This relation corresponds in eForms to BT-790 Review Decision Type.epo:ReviewDecision -> at-voc:review-decision-type [0..*]
epo:hasReviewIrregularitySummaryAdditional information: - This relation corresponds in eForms to BG-613 Buyer Review Requestsepo:ReviewRequestSummary -> epo:ReviewIrregularitySummary [0..*]
epo:hasReviewRequestFeeAdditional information: - This relation corresponds in eForms to BT-795 Review Request Fee.epo:ReviewRequest -> epo:MonetaryValue [0..1]
epo:hasSelectionCriteriaUsage - Additional Information: - This corresponds in eForms to BT-748 Selection Criteria Used.epo:SelectionCriterion -> at-voc:usage [0..1]
epo:hasSelectionCriterionTypeThe classification of the selection criteria. - - - Additional Information: - - This corresponds in eForms to BT-747 Selection Criteria Type. - - WG Approval 09/11/2021 - epo:SelectionCriterion -> at-voc:selection-criterion [0..1]
epo:hasStartDateepo:SelectedCandidateList -> epo:Period [0..1]
epo:hasSubcontractingEstimatedValueThe estimated value of a single subcontract. - - This relates to BT-553 in eForms. - - WG Approval 01/09/2020 - - epo:SubcontractingEstimate -> epo:MonetaryValue [0..1]
epo:hasSubcontractingObligationThe requirement the tender must meet with regard to subcontracting parts of the contract. - WG Approval 09/11/2021 - - epo:SubcontractTerm -> at-voc:subcontracting-obligation [0..*]
epo:hasTaxIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasTenderSubcontractingInformationThe information about subcontracting that must be indicated in the tender. - - WG Approval 10/10/2019 - - epo:SubmissionTerm -> at-voc:subcontracting-indication [0..*]
epo:hasTenderValidityPeriodThe relation indicating until when a tender instance is applicable. - epo:SubmissionTerm -> epo:Period [0..1]
epo:hasThresholdTypeThe method to interpret the threshold value as minimum or a maximum. - - WG Approval 17/09/2019 - cccev:Constraint -> at-voc:number-threshold [0..*]
epo:hasTimePeriod - - epo:Period -> at-voc:timeperiod [1..*]
epo:hasTotalAwardedValueThe awarded value of all lots announced in this notice, including options and renewals. - - - Additional information: - The values of the individual Lots awarded under a framework agreement and mentioned - in this notice are included. - - The values of the individual lots announced in a CAN are to be traced back and added - to provide this value. - - This corresponds to the BT-161 in eForms. - - WG Approval 03/12/2019 - epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasTotalQuantityThe number of units required. - - Additional Information: - The quantity needs to go along with the unit. - - - - epo:Purpose -> epo:Quantity [0..1]
epo:hasTotalValue epo:TenderGroup -> epo:MonetaryValue [1]

epo:hasUnitCodeepo:Quantity -> at-voc:measurement-unit [1]
epo:hasUnofficialLanguageThe language translation(s) in which the instances of the given concepts are available. - These linguistic versions are not an official translation, they are provided only - for information. - - WG Approval 03/10/2019 - epo:Document -> at-voc:language [0..*]
epo:hasUsageThe codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage - epo:Technique -> at-voc:usage [0..1]
epo:hasUUIDA universally unique identifier for an instance of this document. - - WG Approval 12/05/2020epo:Document -> adms:Identifier [0..1]
epo:hasValidityPeriodThe relation indicating until when a given instance of a concept is applicable. - - WG approval 30/05/2023 - The relation indicating until when a given instance of a concept is applicable. - - WG approval 30/05/2023epo:Technique -> epo:Period [0..1]

epo:hasVariantPermissionThe obligation or possibility for tenderers to submit variants or not. - - Additional Information: - - Variants are alternative ways to fulfil the buyer's needs as opposed to solutions - indicated in the procurement documents. - - eForms: Whether tenderers are required, allowed or forbidden to submit tenders which - fulfil the buyer's needs differently than as proposed in the procurement documents. - - - Additional Information: - - Further conditions for submitting variant tenders are in the procurement documents. - epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasWeightValueTypeNo definition. Waiting on CCCEV alignment. - - - epo:ProcurementCriterion -> at-voc:number-weight [0..1]
epo:includesAccessibilityCriterionExplanation as to whether accessibility Criterion are used or not. - WG Approval 09/11/2021 - - epo:StrategicProcurement -> at-voc:accessibility [0..*]
epo:includesTenderAdditional information: - This corresponds in eForms to BT-3202 Contract Tender Identifier. - epo:Contract -> epo:Tender [0..*]
epo:indicatesAwardToWinnerReveals the winner to whom the tender award outcome is attributed.epo:TenderAwardOutcome -> epo:Winner [0..1]
epo:indicatesInvoiceeContactPointepo:Buyer -> cpov:ContactPoint []
epo:involvesBuyerepo:Procedure -> epo:Buyer [0..*]
epo:involvesProcurementDocumentepo:AccessTerm -> epo:ProcurementDocument [1]
epo:isBasedOnImplementingRegulationIndicates under which regulation a notice is created. - - WG Acceptance 06/09/2022epo:Notice -> at-voc:legal-basis [0..1]
epo:isBeneficialOwnerOfA role of any natural person(s) who ultimately owns or controls the organisation or - on whose behalf a transaction or activity is being conducted. - Additional Information: - This role is defined in the directive EU 2015/849 and it's beyond the scope for public - eProcurement domain. - WG approval 14/09/2021epo:Business [,0..*] <- cpv:Person
epo:isExecutedByProcurementServiceProviderepo:Procedure -> epo:ProcurementServiceProvider [0..1]
epo:isFundedByFunding is provided either completely or partially by a Fund. - - Additional information: - This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 - Contract EU Funds (applied per Contract lot) - Funds may change between the lot and the contract, for example in the case of an emergency - crisis, a contract may be financed by a budget that was not foreseen in the call. - - epo:ProcurementObject -> epo:Fund [0..*]
epo:isOwnedByAgentepo:System -> foaf:Agent [0..1]
epo:isResponsibilityOfBuyerThe buyer in charge of the procedure. - - Additional Information: - In case there are multiple buyers, it may be the case that one or more buyers are - in charge of the procedure. - - epo:Procedure -> epo:Buyer [0..*]
epo:isSubjectToContractSpecificTermepo:Contract -> epo:ContractSpecificTerm [0..*]
epo:isSubjectToGroupingepo:Tender -> epo:LotGroup [0..1]
epo:isSubjectToLotSpecificTermepo:Lot -> epo:LotSpecificTerm [0..*]
epo:isSubjectToProcedureSpecificTermepo:Procedure -> epo:ProcedureSpecificTerm [1..*]
epo:isSubjectToTermepo:ProcurementObject -> epo:Term [0..*]
epo:isSubmitedByRelation indicating the submission of a tender by an economic operator. - WG approval 18/05/2021epo:Tender -> epo:Tenderer [0..1]
epo:isSubmittedForLotepo:Tender -> epo:Lot [1]
epo:isSubmittedForLotGroupepo:TenderGroup -> epo:LotGroup [1]
epo:leadByepo:OrganisationGroup -> org:Organization [0..1]
epo:needsToBeATendererThe Winner must be a Tenderer.epo:Winner -> epo:Tenderer [0..1]
epo:needsToBeAWinnerThe Contractor must be a Winner. - epo:Contractor -> epo:Winner [0..1]
epo:ownsSystemepo:System [,0..*] <- foaf:Agent
epo:playedBy epo:AgentInRole -> foaf:Agent [1]

epo:JuryMember -> foaf:Person [0..1]
epo:providesContractTotalPaymentValueAdditional Information: - This corresponds to BT-779 in eForms. epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesContractTotalPenaltyValue - Additional Information: - This corresponds to BT-782 in eForms. - epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesRulingOnRemedyStates the measures to be taken after a review procedure.epo:ReviewDecision -> at-voc:remedy-type [0..*]
epo:refersToAwardDecision epo-not:CompletionNotice -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision [0..*]
epo-not:CompletionNotice -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision [0..*]
epo:refersToContractepo:ContractLotCompletionInformation -> epo:Contract [1]
epo:refersToContractToBeModified epo-not:ContractModificationNotice -> epo:Contract [1]
epo-not:ContractModificationNotice -> epo:Contract [1]
epo:refersToLot epo:Notice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo:refersToLotGroup epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:CompletionNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation [0..*]
epo:refersToNonPublishedElement epo-not:CompletionNotice -> epo:PublicationProvision [0..*]
epo-not:CompletionNotice -> epo:PublicationProvision [0..*]
epo:refersToNoticeepo:Notice -> epo:Notice [0..1]
epo:refersToNoticeAwardInformation epo-not:CompletionNotice -> epo:NoticeAwardInformation [0..1]
epo-not:CompletionNotice -> epo:NoticeAwardInformation [0..1]
epo:refersToOriginalNoticeepo:ContractModification -> epo:Notice [0..1]
epo:refersToPlannedPartepo:AccessTerm -> epo:PlannedProcurementPart [0..*]
epo:refersToPreviousepo:Document -> epo:Document [0..*]
epo:refersToPreviousNotice - Additional information: - This corresponds in eForms to BT-758 Change Notice Version Identifier.epo:NoticeChange -> epo:Notice [0..1]
epo:refersToPreviousProcedureReference to a previous procedure. - - Additional Information: - In the case of Direct Award Terms, this property points to a previous Procedure justifying - the use of Direct Award without a prior publication. - - This corresponds in the eForms to BT-1252 Direct Award Justification Previous - Procedure Identifierepo:DirectAwardTerm -> epo:Procedure [0..1]
epo:refersToPreviousProcedureLotReference to one or more Lots in a previous procedure. - - Additional Information: - In the case of Direct Award Terms, this property points to a previous Procedure justifying - the use of Direct Award without a prior publication. - - This corresponds in the eForms to BT-1252 Direct Award Justification Previous - Procedure Identifier - - WG Approval 22/11/2019 14:33:55epo:DirectAwardTerm -> epo:Lot [0..*]
epo:refersToPreviousReviewAdditional information: - This relation corresponds in eForms to BT-785 "Review Previous Identifier".epo:ReviewObject -> epo:ReviewObject [0..1]
epo:refersToProcedure epo-not:ResultNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo:Notice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:ResultNotice -> epo:Procedure [1]
epo:refersToRole epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo:requestsRemedyTypeAdditional information: - This relation corresponds in eForms to BT-792 Review Remedy Typeepo:ReviewRequest -> at-voc:remedy-type [0..*]
epo:resolvesReviewRequestepo:ReviewDecision -> epo:ReviewRequest [1]
epo:resultsFromLotAwardDecision epo:DirectContract -> epo:LotAwardDecision [0..*]
epo:FrameworkAgreement -> epo:LotAwardDecision [0..*]
epo:resultsFromMiniCompetitionAwardDecisionepo:PurchaseContract -> epo:MiniCompetitionAwardDecision [0..1]
epo:resultsInDynamicPurchasingSystemepo:DynamicPurchaseSystemTechnique -> epo:DynamicPurchasingSystem [1]
epo:setsGroupingContextForLotepo:LotGroup -> epo:Lot [1..*]
epo:signedByBuyerepo:Contract -> epo:Buyer [0..*]
epo:signedByContractorepo:Contract -> epo:Contractor [0..*]
epo:signsAwardDecisionepo:Buyer -> epo:AwardDecision [0..*]
epo:specifiesAwardCriterionepo:MiniCompetition -> epo:AwardCriterion [0..*]
epo:specifiesProcurementCriteriaSummaryepo:Procedure -> epo:ProcurementCriteriaSummary [0..*]
epo:specifiesProcurementCriterion epo:Lot -> epo:ProcurementCriterion [0..*]
epo:LotGroup -> epo:ProcurementCriterion [0..*]
epo:specifiesSubcontractorsepo:Tender -> epo:Subcontractor [0..*]
epo:substantiatesExclusionGroundepo:Tenderer -> epo:ExclusionGround [0..1]
epo:summarisesInformationForAwardDecisionRelates to submission for the given competition, either at Lot level or Mini-Competition - level. - - WG approval 30/05/2023epo:SubmissionStatisticalInformation -> epo:AwardDecision [1]
epo:usesCandidateListepo:MiniCompetition -> epo:SelectedCandidateList [0..1]
epo:usesChannelepo:ProcurementElement -> cv:Channel [0..*]
epo:usesTechniqueepo:ProcurementObject -> epo:Technique [0..*]
epo-not:announcesRole epo-not:ResultNotice -> epo:AgentInRole [0..*]
epo-not:ResultNotice -> epo:AgentInRole [0..*]
epo-not:hasLegalBasisepo-not:Modification-D24 -> Directive 24 [0..1]
epo-not:refersToRole epo-not:ResultNotice -> epo:AgentInRole [1..*]
epo-not:ResultNotice -> epo:AgentInRole [1..*]
locn:addressdct:Location -> locn:Address [0..1]
locn:addressIDA globally unique identifier for each instance of an Address. - - Additional Information: - The concept of adding a globally unique identifier for each instance of an address - is a crucial part of the INSPIRE data spec. A number of EU countries have already - implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. - OASIS xAL also includes an address identifier. It is the address Identifier that allows - an address to be represented in a format other than INSPIRE whilst remaining conformant - to the Core Vocabulary. - - The INSPIRE method of representing addresses is very detailed, designed primarily - for use in databases of addresses. Whilst data that is published in full conformance - with the INSPIRE data structure can be made available using the Location Core Vocabulary - the reverse is not true since the Core Vocabulary allows much greater flexibility. - - Many datasets that include address data as one piece of information about something - else are likely to have that data in simpler formats. These might be tailored to the - specific need of the dataset, follow a national norm, or make use of a standard like - vCard. - - To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable - with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location - Core Vocabulary provides the extra property of full address and makes use of INSPIRE's - addressID.locn:Address -> adms:Identifier [0..1]
locn:geographicIdentifierA URI that identifies the Location. - - Additional Information: - GeoNames.org provides stable, widely recognised identifiers for more than 10 million - geographical names that can be used as links to further information. For example, - http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately - these URIs cannot easily be automatically deduced since the URI scheme uses simple - numeric codes. Finding a GeoNames identifier for a Location is almost always a manual - process. Where such identifiers are known or can be found, however, it is recommended - that they be used. - - Where the Location Class is used to identify a country, if the geonames URI is not - known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX - where XX is the ISO 3166 two character code for the country. - - The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece - and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct - URIs for these countries are: - - - http://dbpedia.org/resource/ISO_3166-1:GR - - http://dbpedia.org/resource/ISO_3166-1:GB - even when the geographic name is given as EL or UK. - - The use of a URIs has added advantages: - - - it can be used by automated systems to look up additional data (linked data); - - a triple store may store only one copy of the URI, whereas if a string is used, - a copy of that string is always stored for each and every person in the database. - Thus, in large data sets, the saving on memory capacity and the improvement in transmission - efficiency can be substantial. - dct:Location -> adms:Identifier [0..1]
locn:geometrydct:Location -> locn:Geometry [0..1]
person:placeOfBirthThe Location where the Person was born.cpv:Person -> dct:Location [0..1]
person:placeOfDeathThe Location where the Person died.cpv:Person -> dct:Location [0..1]
time:unitTypeepo:SpecificDuration -> time:TemporalUnit [1]
-
-
- - \ No newline at end of file diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM-core.rdf b/implementation/demo_ontology/owl_ontology/demo_ontology_CM-core.rdf deleted file mode 100644 index 4de0d53..0000000 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM-core.rdf +++ /dev/null @@ -1,11497 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology - core - This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused. - This artefact provides the ontology core specification. - This version is automatically generated from demo_ontology_CM.xml on 2023-07-11 - - - - - - 2023-07-11 - 4.0.0 - 3.1.0 - - Semantic Specification Realease - 3.1.0 - http://data.europa.eu/a4g/ontology# - epo - The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated. - - European Union - - - - - Dynamic purchasing system - - - An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. - -WG approval 23/05/2023 - - - - - - - - Mini competition - - - A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. - -Additional Information: -It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. -It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. - -WG approval 30/05/2023 - - - - - - - Mini competition award decision - - - Result concerning the Mini-Competition attributed by the Awarder. - - - - - - - - Selected candidate list - - - Record of Candidates admitted to take part in award phases of procurements. - -WG approval 30/05/2023 - - - - - - - Project - - - A collaborative enterprise that is carefully planned to achieve a particular aim. - - - - - - - Procurement object - - - The whole or a division of goods, services or works to be procured. - -Additional Information: -Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. -In a sense, such an "object" can constitute the "object of a Contract". -To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (<i>The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.</i>). - -Note: -Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and "purpose" properties. - - - - - - - Lot - - - A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. - -WG approval 12/09/2018 - - - - - - - Planned procurement part - - - A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. - -WG Approval 20/06/2019 - - - - - - - Procedure - - - A legally defined set of administrative activities conducted to conclude one or more Contracts. - -Additional Information -The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). - -WG Approval 20/08/2019 - - - - - - - - Lot group - - - Combination of several Lots to conduct comparative assessment of the Tenders. - -Additional Information: - -The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. - -Pending of discussion with eForms - - - -Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined. - - - - - - - Procurement element - - - Gathering class for critical/central elements in the Procurement Process. - -TODO: add definition -Additional information: -Alias: ProcurementComponent - - - - - - - Purpose - - - The description of the objectives related to a Procurement. - -Additional information: - -The description of the objectives includes the Subject Matter and Quantities. - - -The quantification of the objectives related to a procurement. - -To be re-reviewed by the WG the soonest. - -(WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) - -The old definition read as follows: - -The description of the objectives related to a procurement. - -(WG approval 05/12/2018) - - - - - - - - Tender group - - - Specific Offer in response to a Lot Group. - -Additional Information: -This class is generally used to provide the Monetary Value in response to a Lot Group. - - - - - - - - Public organisation - - - An Organisation that is defined as being part of the public sector by a legal framework at any level. - -Additional information: -A body governed by public law: -- (a) established for the specific Purpose of meeting needs in the general interest -- (b) having legal personality; -- (c) financed, for the most part by the State, or regional or local authorities. - -Examples of Public Organisations are municipality, international public body, ministry, others. - -WG Approval 28/04/2020 - - - - Person - - - A individual human being who may be dead or alive, but not imaginary. - - - - - Ad hoc channel - - - Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. - -Additional Information: - -This corresponds in eForms to BT-724 Tool Atypical. - - -WG Acceptance 10/01/2023 - - - - - - - - Business - - - A private law company registered in a national registry. - -WG Approval 28/04/2020 - - - - - - - - - Organisation group - - - Agreed collaboration of several Organisations. -Additional Information: -This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. -WG approval 15/04/2021 - - - - - - - System - - - Software application used for performing Procurement activities. - -WG Approval 28/04/2020 - - - - - - - - - Agent - - - A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. - -WG Approval 28/04/2020 - - - - Person - - - The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF. - - - - Organization - - - A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. - -(WG approval 23/11/2018). - - - - - Acquiring central purchasing body - - - Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. -Additional Information: -In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. - -WG approval 05/08/2021 - - - - - - - - Acquiring party - - - The Role of an Agent that acts on the buying side of a Procurement Process. - - - - - - - - Agent in role - - - Relative concept that ties an Agent to a part they play in a given Situational Context. - -Additional information: -The classification of roles is based is based on the degree of involvement into the Procurement Process: -- Primary (Procurement) Pole is directly involved in the Procurement Process; -- Secondary (Procurement sub-) Role is secondary to the Procurement Process -- Tertiary (Related) Role is not involved in the Procurement Process. - - - - - - - Auxiliary party - - - Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it. - - - - - - - Awarder - - - A Role of an Agent that signs the Award Decision. - - - - - - - Awarding central purchasing body - - - Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. -Additional Information: -In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. - -WG approval 05/08/2021 - - - - - - - - Budget provider - - - A role of an agent whose Budget is used to pay for the Contract. - - - - - - - Buyer - - - A Role of an Agent that awards a Contract and/or purchases items. - -Additional information: -In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. -In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. -In Post-Award the buyer generally refers to the purchaser of items. - - - - - - - Candidate - - - The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. - -WG approval 30/05/2023 - - - - - - - Catalogue provider - - - A Role of an Agent compiling and supplying a Catalogue. - -Additional Information: - -The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. - -WG Approval 28/01/2021 - - - - - - - - Catalogue receiver - - - A Role of an Agent processing a Catalogue. - -Additional Information: -The Catalogue Receiver may not only receive it but also validate it, process it, etc. - -The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. - -WG Approval 28/01/2021 - - - - - - - Central purchasing body - - - Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. - -Additional Information: -In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. -Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; - -WG approval 05/08/2021 - - - - - - - Contractor - - - The Role of an Agent that has signed a Contract with a Buyer. - -WG approval 08/11/2022 - - - - - - - Employment information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions. - - - - - - - Environmental protection information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection. - - - - - - - Jury member - - - - - - - Lead buyer - - - A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. - -WG agreement: 2022-11-22 - - - - - - - Mediator - - - A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. -WG approval 20/04/2021 - - - - - - - Offering party - - - The Role of an Agent that acts on the Economic Operator side during a Procurement Process. - -Additional information: -As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances. - - - - - - - Offer issuer - - - The Role of an Agent that distributes an Offer. - -WG approval 09/02/2023 - - - - - - - Offline access provider - - - A Role of an Agent responsible for providing offline access to the Procurement Documents. - - - - - - - Other entity - - - Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria. - - - - - - - Participation request processor - - - A Role of an Agent responsible for processing Requests To Participate. - - - - - - - Participation request receiver - - - A Role of an Agent responsible for receiving Requests To Participate. - - - - - - - Payment executor - - - A Role of an Agent responsible for executing the Payment. - - - - - - - Procurement procedure information provider - - - A Role of an Agent responsible for providing additional information about the Procurement Procedure. - - - - - - - Procurement service provider - - - Role of a public or private body which offers ancillary purchasing activities on the market. - -Additional information - -"Ancillary Purchasing Activities" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: -(a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; -(b) advice on the conduct or design of public Procurement Procedures; -(c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; - -Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. - -This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. - -WG Approval 24/03/2020 - - - - - - - - Reviewer - - - Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. -Additional Information: -Any Organisation or Person may request a review of a Procurement Procedure. -WG approval: 20/04/2021 - - - - - - - Review procedure information provider - - - A Role of an Agent who is providing more information on the time limits for review Procedures. - - - - - - - Review requester - - - Role of an Agent who requests the review of a (Procurement) Procedure. - -WG Approval 23/10/2021 - - - - - - - Subcontractor - - - A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. -Additional information -For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. - -At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. - -When modelling ESPD we well analyze whether we need or not a Role named "relied upon". - -WG approval 05/08/2021 - - - - - - - - Tax information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes. - - - - - - - Tenderer - - - A Role of an Agent that has submitted a Tender. - -Additional Information: -A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. -WG approval 05/08/2021 - - - - - - - Tender processor - - - A Role of an Agent responsible for processing Tenders. - - - - - - - Tender receiver - - - A Role of an Agent responsible for receiving Tenders. - - - - - - - Winner - - - A Role of an Agent to whom a Lot is awarded. -WG approval 05/08/2021 (revised 26/10/2021) - - - - - - - Contact point - - - Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. - -Additional information: -This class represents the contact information for a Public Service, Channel, Public Organisation, etc. -The Contact Point could be a role, email address, telephone number, etc. - -WG approval 5/11/2019 - - - - Channel - - - A medium through which Agents interact. - -Additional Information -Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. - -Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. -Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. - -See also Directive recitals 53 to 56. - -WG approval 2023-02-14 - - - - Location - - - An identifiable geographic place or named place. - - - - Address - - - The particulars of the place where a Person or an Organisation is located. - -WG Approval 28/04/2020 - -Additional Information: -An "Address Representation" as conceptually defined by the INSPIRE Address Representation data type: "Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.". - - -The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. - - -This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - -- full address (the complete address as a formatted string) -- addressID (a unique identifier for the address) -The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. - -The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL. - - - - Geometry - - - The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. - -Additional Information: -This class defines the notion of "Geometry" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats. - - - - Contract specific term - - - Gathering class for conditions and stipulations related to a contract in the Post-Award Phase. - - - - - - - Lot specific term - - - Gathering class for conditions and stipulations related to a Lot. - - - - - - - Procedure specific term - - - Gathering class for conditions and stipulations related to a Procedure. - - - - - - - Process planning term - - - Conditions and stipulations defining particularities of the unfolding of the Procurement Process. - - - - - - - Term - - - A governing condition or stipulation. - - - - - - - Participation request term - - - Conditions and stipulations defining particularities of requesting participation in a Procedure. - - - - - - - Access term - - - Conditions and stipulations about where and how to access the Procurement Documents. - -WG Approval 09/03/2021 - - - - - - - - - Non disclosure agreement term - - - Conditions and stipulations - - - - - - - Opening term - - - Conditions and stipulations defining particularities of the opening of Tenders. -Additional Information: -The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. -WG Approval 15/04/2021 - - - - - - - Security clearance term - - - Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. - -Additional information: -This corresponds in eForms to BT-578, BT-78, BT-732 . - -WG approval 20/06/2023 - - - - - - - - Direct award term - - - Conditions and stipulations defining particularities of the award of a Contract without prior publication. - -Addtional Information: - -Direct award may refer to a previous Procedure and/or specific Lot(s). - -It may also refer to other justified situations whereby there is no previous Procedure. - -See Directive 2014/24/EU Article 32. - -WG Approval 22/11/2019 - - - - - - - - - - Procedure term - - - Conditions and stipulations defining particularities of the Procedure. - -(WG approval 23/11/2018) - - - - - - - Submission term - - - Conditions and stipulations defining particularities of submitting Documents to the Buyer. - -Additional Information: -These Documents can be Tenders, Request To Participate and expressions of interest. - -WG Approval 14/07/2020 - - - - - - - Contract term - - - Conditions and stipulations defining particularities of the Post Award Phase. - -(WG approval 23/11/2018) - - - - - - - - Design contest regime term - - - Conditions and stipulations defining particularities of a Design Contest. - -WG approval: 04-02-2021 - - - - - - - Framework agreement term - - - Conditions and stipulations defining particularities in a Framework Agreement. - - - - - - - Multiple stage procedure term - - - Conditions and stipulations defining particularities of Procedures carried out in several steps -Additional Information: -Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. -WG Approval 15/04/2021 - - - - - - - Prize - - - A reward given in a Contest. -WG approval: 15/04/2021 - - - - - - - Subcontract term - - - A concept to describe the main information regarding the share of parts of the Contract to third parties. - - - - - - - Award evaluation term - - - Conditions and stipulations defining particularities of the evaluation of Award Criteria. - - - - - - - Evaluation term - - - Conditions and stipulations defining particularities of the Tender evaluation. - -(WG approval 23/11/2018) - - - - - - - - - - Selection evaluation term - - - Conditions and stipulations defining particularities of the evaluation of Selection Criteria. - - - - - - - Constraint - - - Limitation applied to an Information Concept. - -Additional Information: -Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context. - - - - Criterion - - - Condition for evaluation or assessment. - -Additional Information: -In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service. - - - - Evidence - - - Proof that a Requirement is met. - - - - - - Information concept - - - Piece of information that the Evidence provides or the Requirement needs. - - - - Requirement - - - Condition or prerequisite that is to be proven by Evidence. - -Additional Information: -Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. -To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. -To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification. - - - - Award criteria summary - - - - - - - Award criterion - - - Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. - -WG approval 05/11/2018 - - - - - - - Economic standing summary - - - - - - - Exclusion ground - - - Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. - -Additional Information: -This corresponds in eForms to BG-701 Exclusion Grounds. - -WG approval 31/10/2018 - - - - - - - Exclusion grounds summary - - - - - - - Participation condition - - - Criterion that describes a Requirement to take part in a procurement. - -WG approval 30/05/2023 - - - - - - - Participation conditions summary - - - - - - - Procurement criteria summary - - - WG approval 24/01/2023 - - - - - - - Procurement criterion - - - A criterion specific to Procurement. - -Additional Information: - -This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). - -WG Approval 23/04/2020 - - - - - - - Professional suitability summary - - - - - - - Qualification criteria summary - - - - - - - Qualification criterion - - - Criterion used in the first stage of procurement. - -WG approval 30/05/2023 - - - - - - - Selection criteria summary - - - - - - - Selection criterion - - - Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. - -Additional Information: -Selection criteria may relate to: -(a) suitability to pursue the professional activity; -(b) economic and financial standing; -(c) technical and professional ability - -WG approval 31/10/2018 - - - - - - - Technical ability summary - - - - - - - Green procurement - - - Approach whereby Buyers seek to procure with a reduced Environmental Impact. - -Additional Information: - -The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. - -Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf -An instance of the class GreenProcurement is represented in eForms with the code "env-imp" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf - - - - - - - Innovative procurement - - - An instance of the class InnovativeProcurement is represented in eForms with the code "inn-pur" defined in the codelist Strategic-Procurement. - -Research (21/01/2020): - -Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. - -Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions - -Additional Information: -‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; -See: Directive 2014/24 -Articles: 2, 26 (3), 31, 67 (2.a) - -Question: -Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement? - - - - - - - Social procurement - - - An instance of the class SocialProcurement is represented in eForms with the code "soc-obj" defined in the codelist Strategic-Procurement. - - -Research (21/01/2020): -Socially Responsible Public Procurement (SRPP): - -‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. -Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en -See Article 18 and Annex X Directive 2014/24. - - - - - - - Strategic procurement - - - Public Procurement that contributes to achieving pressing policy goals. - -Additional Information: -Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. - -This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. - -Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on "background information". - -WG Approval 10/03/2020 - - - - - - - Dynamic purchase system technique - - - A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. - -WG approval 23/05/2023 - - - - - - - E auction technique - - - A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. - -Additional Information: -This corresponds in eForms to BT-767 Electronic Auction . - -WG approval 20/07/2018 - - - - - - - Framework agreement technique - - - Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. - -WG approval 18/05/2021 - - - - - - - Technique - - - Method used for conducting Procurement Procedures. - -Addtional information: -This corresponds in eForms to BG-706 Techniques. - -Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). - -WG Approval 19/09/2019 - - - - - - - - Context specific description - - - A description concerning a Procurement Object or a Notice in a specific Situation Context. - -Additional Information: -The description has its own identity (+I) but is dependent (+D) on the concerned Entity. - -We say that ContextSpecificDescription *concerns* an Entity. - - - - - - - - Contextual projection - - - Projection of an Entity and all of its properties that hold in a given Situation Context. - -Additional Information: -The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) - -We say that ContextualProjection *describes* an Entity. - -Adaptation of ContextSlices pattern encoding a 4D view. -http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices - - - - - - - Estimate - - - An approximate calculation or a judgement of the value, number, Quantity or extent of something. - - - - - - - Procurement process information - - - Information about the temporal unfolding or succession of Procurement Objects. - - - - - - - Statistical information - - - Statistical data on the Procedure and the Lot. - -Additional Information - -At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. -Therefore this class is temporal and should cease to exist in fully electronic Procurement. -The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). - -Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. - -WG Approval 12/12/2019 - - - - - - - - Concession estimate - - - - - - - Subcontracting estimate - - - Information on the approximation of the foreseen Subcontracting. - - - - - - - Lot award decision - - - Result concerning the Lot attributed by the Awarder. - - - - - - - Lot group award information - - - Award information related to a given Group of Lots. - - - - - - - Notice award information - - - Information about an Award Notice. - - - - - - - Tender award outcome - - - Result concerning the Tender attributed by the Awarder. - - - - - - - Review irregularity summary - - - Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). - -Additional information: -This class corresponds in eForms to BG-613 Buyer Review Requests. - - - - - - - - - - Review request summary - - - Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. - -Additional information: -This class corresponds in eForms to BG-612 Buyer Review Summary. - - - - - - - Submission statistical information - - - Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. - -WG approval 30/05/2023 - - - - - - - Contract lot completion information - - - Information related to a given Lot at the end of the procurement. - - - - - - - Electronic signature - - - - - - - Originator request - - - Document in which the Originator describes his needs. - -WG approval 09/02/2023 - - - - - - - Tender - - - Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. - -(WG approval 03/05/2022) - - - - - - - - - - Offer - - - Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. - -Additional information: -A quotation is considered to be an Offer in the eProcurement Ontology. - -WG approval 09/02/2023 - - - - - - - Procurement document - - - Document produced or referred to by the Buyer to describe or determine elements of the Procurement. - -Additional information: - -Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. - -Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. - -Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. - -WG Approval 23/05/2019 17:08:30 - - - - - - - Notice - - - Document published by the Buyer about market opportunities and results. - -WG Approval 23/05/2019 - - - - - - - - Document - - - A set of interrelated Business Information representing the Business facts and associated metadata. -The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. - -WG Approval 23/05/2019 - - - - - - - - Award decision - - - Resolution of the Buyer as to the result of the Procurement Procedure. - -WG approval 14/11/2018 - - - - - - - Request for participation - - - Application of an Economic Operator to be included in a Procurement Procedure. -WG approval: 20/04/2021 - - - - - - - Expression of interest - - - Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. -WG approval 13/04/2021 - - - - - - - Request for clarification - - - A demand for elucidation of received information. -Additional Information: -Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. -WG approval 20/04/2021 - - - - - - - Direct contract - - - - - - - Concession contract - - - A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. - -WG Approval 24/05/2022 - - - - - - - Purchase contract - - - A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract. - - - - - - - Fund - - - A financial resource used to support the Procurement. - -Additional Information: - -In the context of EU, Funds can be divided into programmes, actions and projects. - -Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). - -Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. - -WG Approved 14/05/2019 - - - - - - - - - - - - Framework agreement - - - An agreement between one or more Contracting Authorities and one or more Economic Operators. - -Additional Information: -When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. - -WG approval 18/05/2021 - - - - - - - Contract - - - A voluntary, deliberate, and legally binding agreement between two or more competent parties. - -Additional information: -This includes Concession Contracts. - -(WG approval 01/06/2018) - - - - - - - Review decision - - - Information about Review Decisions. - - - - - - - Review object - - - Information about a Review Request or a Review Decision. - -Additional information: -This class corresponds to the BG-714 Review in eForms. - - - - - - - - - Review request - - - Information about requests to review procedures. - - - - - - - Contract modification - - - An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer. - - - - - - - Element change description - - - Information about a specific field to be changed with regard to a previous Notice. - - - - - - - Element confidentiality description - - - Information about a specific field not intended for publication. - -Additional Information: -In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided. - - - - - - - - Element description - - - Description about a specific resource. - - - - - - - Element modification description - - - Information about a specific field to be changed with regard to the Modification Of a Contract. - - - - - - - Notice change - - - Information about a corrigendum in a Notice. - - - - - - - Notice description - - - Descriptions about the notice publishing, or providing evolutions of resources. - - - - - - - Publication provision - - - Information about fields not intended for publication. - - -Additional Information: -The non-published information may become available at a later date and may differ from one element to another within a given Document. - -Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. - -WG Approval 16/05/2019 - - - - - - - - - - - - Identifier - - - A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. - - - - Duration - - - The length of time in which a concept occurs. - - - - - - - Indefinite duration - - - - - - - Monetary value - - - A number of monetary units specified using a given unit of currency. - -Additional information: -In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. - -WG approval 13/04/2021 - - - - - - - - Period - - - A time interval or a Duration. - -(WG approval 28/04/2020) - - - - - - - - Quantity - - - A counted number of non-monetary units possibly including fractions. - - - - - - - - Specific duration - - - - - - - Thing - - - Any individual in the domain of discourse is a Thing. - - -Additional Information: - -The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing. - - - - Accessibility - - - This table provides a list of options for the use of accessibility Criteria for Person with disabilities in the technical specifications within the domain of Public Procurement. - - - - Applicability - - - This table provides a list of the options pertinent to be chosen for a matter concerning the applicability of predefined fields. It is designed for but not restricted to the context of public procurement. - - - - Award-criterion-type - - - This table provides the list of rules to be taken into account for the Award Decisions within the in public Procurement Procedures. The initial values are those foreseen in the public procurement directives of 2014 (Directives 2014/23/EU, 2014/24/EU and 2014/25/EU). - - - - Buyer-legal-type - - - This table provides a list of the type of Procuring Authorities within the domain of public procurement according to legislation. - - - - - Change-corrig-justification - - - This table provides the codes and values used in case of justification of corrections applied to a Notice within the context of Public Procurement. - - - - Communication-justification - - - This table provides the justification for restricting access rights to resources within the context of Public Procurement - - - - Confidentiality-level - - - The Confidentiality level authority table is a controlled vocabulary used to define the information confidentiality levels according to the European Commission Security Notice ‘Information assessment and classification’, C(2019) 1903 final, 5.3.2019. - - - - - - - Contract-nature - - - This table provides a list of different types of subjects and goods that can be acquired by means of a public Contract such as works, supplies and services by one or more Contracting Authorities from Economic Operators. - - - - Country - - - The Country authority table is a controlled vocabulary that lists concepts associated with names of countries and territories. - -Its main scope is to support documentary metadata activities. - -The concepts included are correlated with the ISO 3166 international standard. ISO 3166-1 contains a two-letter code which is recommended as the general purpose code, a three-letter code which has better mnenomic properties and a numeric-3 code which can be useful if script independence of the codes is important. The authority code relies on the ISO 3166-1/alpha-3 positions. If an authority code is needed for a country without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic or numeric. - -A country code comparison is provided between ISO codes, IANA codes (Internet Country-code Top-level Domains) and TIR (Transport International par la Route) Vehicle system codes. - - - - - - Cpv - - - To support an effective Single Market, the Commission encourages suppliers and Contracting Authorities/Entities to adopt best practice and use electronic communication and information technology to provide all the relevant information, so as to ensure best value for money in Public Procurement. - - - - Criterion - - - This table provides Criteria used for Public Procurement Procedures. - - - - Currency - - - The Currency authority table is a controlled vocabulary that lists concepts associated with currencies and currency subunits. - -The concepts included are correlated with the ISO 4217 international standard. - - - - - - Direct-award-justification - - - This table provides the list of reasons for using a Procedure which allows awarding Contracts directly without the Requirement of publishing a call for competition in the Official Journal of the European Union. - - - - Dps-usage - - - This table provides a list wether a dynamic purchasing system is involved in a Procurement and, in case of central purchasing bodies, whether it can be used by buyers not listed in the Notice of the Official Journal of the European Union. - - - - Economic-operator-size - - - This table provides the different categories in which the Tenderers to whom a Contract can be awarded are classified, according to their size (using as Criteria the number of employees). - - - - - Environmental-impact - - - This table provides the information about whether a Procurement includes a process to procure goods, services and works with a reduced Environmental Impact throughout their life cycle. - - - - E u-programme - - - The EU programme authority table (AT) is a controlled vocabulary providing the list of programmes created and coordinated by the European Union and financially supported by the European Union or, in a few cases, by the contributions from the Member States. It has been developed specifically for the EU Budget as open linked data project. It indicates the authority code and start-use date of each concept and gives labels in all official EU languages. - - - - Form-type - - - This table provides the codes and values used for the type of forms published on TED. - - - - - - Framework-agreement - - - This table provides the list of codes to distinguish the different type Framework Agreement involved in a Tender. - - - - Innovative-acquisition - - - This table provides the codes and values used for innovative works, supplies or services being bought. - - - - Irregularity-type - - - This code list refers generally to the types of irregularities described in Section 2 of the Annex to the Commission Decision C(2019) 3452. - - - - Language - - - The Language authority table is a controlled vocabulary that lists concepts associated with languages. - -Its main scope is to support activities associated with publication process. - -The concepts included are correlated with the ISO 639 international standard. This standard is issued in several parts: - -ISO 639-1 contains strictly two alphabetic letters (alpha-2), - -ISO 639-2/B (B = bibliographic) is used for bibliographic purpose (alpha-3), - -ISO 639-2/T (T = terminology) is used for technical purpose (alpha-3), - -ISO 639-3 covers all the languages and macro-languages of the world (alpha-3); the values are compliant with ISO 639-2/T. - -If an authority code is needed for a language without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic. - - - - - - Legal-basis - - - This table provides the legal basis based on the legal acts used for a given Public Procurement Procedure. The table is provided by the Publications Office. - - - - - Main-activity - - - This table provides the list of main activities of the Buyers. - -The codes associated with Contracting Authorities are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. - -The codes associated with contracting entities are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). - - - - Measurement-unit - - - The Measurement unit authority table is a controlled vocabulary listing units of measurement with their authority codes. The labels and symbols are given in all official EU languages. If available, the codes are based on the code list recommendation N&#176;. 20 "Codes for Units of Measure Used in International Trade" (as revised periodically) maintained and published by UNECE through its Center for Trade Facilitation and Electronic Business (UN/CEFACT). The Measurement unit authority table is maintained by the Publications Office of the European Union on the EU Vocabularies website. - - - - Missing-info-submission - - - This table provides the list of codes indicating wether Tenderer-related information (complete or partial) can be supplemented even after the submission deadline. - - - - Modification-justification - - - This table provides the main reasons for modifying a Contract within the domain of Public Procurement. - - - - - - Non-award-justification - - - This table provides the list of reasons of the Buyer for not choosing a Winner in the Procurement Procedure. - - - - Non-publication-justification - - - This table provides codes and values for the main reasons for not immediately publishing a Notice within the context of Public Procurement. - - - - Notice-type - - - This table provides a list of Public Procurement Notices according to procurement legislation published once a project is approved. - - - - Number-fixed - - - This table provides the codes linked to fix values within the context of Public Procurement. - - - - Number-threshold - - - This table provides the codes linked to the type of threshold values within the context of Public Procurement. - - - - Number-weight - - - This table provides the codes linked to the type of weight values used in Award Criteria within the context of Public Procurement. - - - - Nuts - - - The NUTS classification (Nomenclature of territorial units for statistics) is a hierarchical system for dividing up the economic territory of the EU and the UK. The NUTS 2021 compiles the versions 2010, 2013, 2016 and 2021 of the NUTS classification as well as the Statistical Regions for countries that do not belong to the EU such as candidate countries, potential candidates or countries belonging to the EFTA (European Free Trade Association). - - - - Other-place-service - - - This table provides the broad geopolitical areas linked to the Location of works and the place of performance or delivery within the context of Public Procurement. - - - - - - Permission - - - This table provides the codes linked to the different values of permission and/or obligation. - - - - Procurement-procedure-type - - - This table provides a list of activities leading to the conclusion of public Contracts used in Public Procurement according to the legislation. - - - - - - Received-submission-type - - - This table provides the list of relevant categories used to classify Tenders or requests to participate received within the context of Public Procurement. - - - - Remedy-type - - - This table describes the measures taken following a Review. - - - - Requirement-stage - - - This table describes when and whether a given Requirement must be provided in a Procedure. - - - - Reserved-procurement - - - This table provides the values used to indicate wether the participation in the Procurement is reserved for specific Organisations. - - - - Review-body-type - - - This table covers the list of organisations providing the review of a given procedure. - - - - Review-decision-type - - - This table describes the decision made a review body. - - - - Selection-criterion - - - This table provides the list of conditions that are concerned for evaluation purposes. In the domain of Public Procurement, Selection Criteria are normally based on a specific legal framework. This codelist is a subset of the ESPD codelist CriterionTaxonomy. - - - - Social-objective - - - This table provides the values linked to any social objective promoted by the technical specifications, Award Criteria, Selection Criteria or Contract performance conditions included in a Procurement. - - - - Subcontracting-indication - - - This table provides the list of codes and values used to indicate information regarding the share of parts of a Contract to third parties. The share may refer to the portion of work, services or supplies and/or to the subject matter being subcontracted. - - - - Subcontracting-obligation - - - This table provides the list of codes and values used for the obligation of the Economic Operator of sharing parts of the original Contract to third parties. The share may refer to the portion of work, services or supplies. - - - - Timeperiod - - - The Time-period authority table is a controlled vocabulary which lists the periods of time in the 24 official languages of the EU. It enumerates the names of the seasons, months, weekdays and the main units of time when the issues are published. It also contains concepts for ‘unlimited’ or ‘unknown’ time periods. - - - - - - Usage - - - This table provides the list of codes and values indicating the application of Criteria or other concepts and information. - - - - Winner-selection-status - - - This table provides the list of codes and values used to indicate whether a tenderer was chosen to be awarded with a Contract and wether the competition is open. - - - - Legal-regime - - - - - - - Notification-phases-content-types - - - - - - - Temporal unit - - - standard duration, which provides the scale factor for a time extent, or the granularity or precision for a time position. - - - - - Plain literal - - - - Any u r i - - - - Boolean - - - - Date - - - - Date time - - - - Decimal - - - - Integer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Has candidate list - - - - - - - Results in dynamic purchasing system - - - - - - - Uses candidate list - - - - - - - Specifies award criterion - - - - - - - Follows rules set by - - - - - - - Concerns mini competition - - - - - - - Comprises mini competition award decision - - - - - - - Results from mini competition award decision - - - - - - - Contains candidate - - - - - - - Has start date - - - - - - - Identifier - - - A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 - - (epo:Project -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 (epo:LotGroup -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 - (epo:ProcurementElement -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (foaf:Agent -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (dct:Location -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (cccev:InformationConcept -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Document -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Fund -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:Consignment -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:ShipmentInformation -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-cat:Line -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:AbstractContainer -> adms:Identifier (+adms:identifier)) - - - - Refers to project - - - - - - - Has purpose - - - Relation indicating a procurement part has a puropse. (epo:ProcurementObject -> epo:Purpose (+epo:hasPurpose)) - - - - - - - Is funded by - - - Funding is provided either completely or partially by a Fund. - -Additional information: -This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) -Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. - - (epo:ProcurementObject -> epo:Fund (+epo:isFundedBy)) - - - - - - - Has legal basis - - - The legal basis under which the procurement procedure takes place. - -Additional Information: -For example European Directives or Regulations, national laws etc. -The recommended code list is the example for the legal basis at the European level. - -WG 04/04/2023 - - (epo:ProcurementObject -> at-voc:legal-basis (+epo:hasLegalBasis)) - - - - - - - Is subject to term - - - - - - - Fulfills strategic procurement - - - - - - - Foresees concession - - - - - - - Uses technique - - - - - - - Foresees contract specific term - - - - - - - Has legal regime - - - - - - - Contextualised by - - - The place of the AgentInRole in the procurement is expressed by a ProcurementObject. (epo:AgentInRole -> epo:ProcurementObject (+epo:contextualisedBy)) - - - - - - - Foresees procurement object - - - Relation indicating the instance of a Procurement Object that is planned. - -Additional Information: -The properties of the Procurement Object that is foreseen should be read as foreseen properties. -For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. -For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy. (epo:PlannedProcurementPart -> epo:ProcurementObject (+epo:foreseesProcurementObject)) - - - - - - - Specifies procurement criterion - - - - - - - Is subject to lot specific term - - - - - - - Has lot reference - - - - - - - Sets grouping context for lot - - - - - - - Refers to lot - - - - - - - Refers to previous procedure lot - - - Reference to one or more Lots in a previous procedure. - -Additional Information: -In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. - -This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier - -WG Approval 22/11/2019 14:33:55 (epo:DirectAwardTerm -> epo:Lot (+epo:refersToPreviousProcedureLot)) - - - - - - - Announces lot - - - - - - - Is assigned for evaluation of - - - - - - - Is submitted for lot - - - - - - - Concerns review summary for lot - - - Relates to Lot review summary. - -Additional information: -This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier. (epo:ReviewRequestSummary -> epo:Lot (+epo:concernsReviewSummaryForLot)) - - - - - - - Describes lot completion - - - - - - - Concerns lot - - - Relates to Lot. (epo:ProcurementProcessInformation -> epo:Lot (+epo:concernsLot)) Relates to Lot. (epo:LotAwardDecision -> epo:Lot (+epo:concernsLot)) - - - - - - - Has procurement scope divided into lot - - - - - - - Foresees technique - - - - - - - Has planned period - - - - - - - Has planned duration - - - - - - - Announces planned procurement part - - - - - - - Refers to planned part - - - - - - - Has procedure type - - - Identification of the Procedure used. - -WG Approval 09/06/2020 - (epo:Procedure -> at-voc:procurement-procedure-type (+epo:hasProcedureType)) - - - - - - - Is subject to procedure specific term - - - - - - - Is executed by procurement service provider - - - - - - - Involves buyer - - - - - - - Is responsibility of buyer - - - The buyer in charge of the procedure. - -Additional Information: -In case there are multiple buyers, it may be the case that one or more buyers are in charge of the procedure. - (epo:Procedure -> epo:Buyer (+epo:isResponsibilityOfBuyer)) - - - - - - - Specifies procurement criteria summary - - - - - - - Refers to previous procedure - - - Reference to a previous procedure. - -Additional Information: -In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. - -This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier (epo:DirectAwardTerm -> epo:Procedure (+epo:refersToPreviousProcedure)) - - - - - - - Refers to procedure - - - - - - - Concerns procedure - - - Relates to Procedure. (epo:ProcurementProcessInformation -> epo:Procedure (+epo:concernsProcedure)) - - - - - - - Announces procedure - - - - - - - Refers to lot group - - - - - - - Defines lot group - - - Relation indicating a ProcedureTerm has a LotGroup. (epo:ProcedureTerm -> epo:LotGroup (+epo:definesLotGroup)) - - - - - - - Describes lot group - - - - - - - Is subject to grouping - - - - - - - Announces lot group - - - - - - - Is submitted for lot group - - - - - - - Uses channel - - - - - - - Has internal identifier - - - - - - - Has estimated value - - - A forecast of the value of the procurement before competition. - -Additional Information: -Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. -The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. -See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. - -In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. - -This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). -<b> -</b><b>WG Approval 05/12/2019</b> - - (epo:ProcurementElement -> epo:MonetaryValue (+epo:hasEstimatedValue)) - - - - - - - Has total quantity - - - The number of units required. - -Additional Information: -The quantity needs to go along with the unit. - - - - (epo:Purpose -> epo:Quantity (+epo:hasTotalQuantity)) - - - - - - - Has main classification - - - - - - - Has additional classification - - - - - - - Comprises tender - - - Incorporates Tender. (epo:TenderGroup -> epo:Tender (+epo:comprisesTender)) - - - - - - - Has total value - - - - - - - Registered address - - - The registered address relationship links a Resource with the legally registered Address. - -Additional Information: -It is the address to which formal communications can be sent, such as the postal address. (cpv:Person -> locn:Address (+cv:registeredAddress)) The registered address relationship links a Resource with the legally registered Address. - -Additional Information: -It is the address to which formal communications can be sent, such as the postal address. - (org:Organization -> locn:Address (+cv:registeredAddress)) - - - - Has nationality - - - - (cpv:Person -> at-voc:country (+epo:hasNationality)) - - - - - - - Has country of birth - - - The country in which the Person was born. - (cpv:Person -> at-voc:country (+epo:hasCountryOfBirth)) - - - - - - - Place of birth - - - The Location where the Person was born. (cpv:Person -> dct:Location (+person:placeOfBirth)) - - - - Place of death - - - The Location where the Person died. (cpv:Person -> dct:Location (+person:placeOfDeath)) - - - - Is beneficial owner of - - - A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. -Additional Information: -This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. -WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf)) - - - - - - - Has beneficial owner - - - A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. -Additional Information: -This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. -WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf)) - - - - - - - Has business size - - - The category of the business depending on number of employees and turnover. - -Additional information: - -See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. - -WG Approval 28/05/2020 - - (epo:Business -> at-voc:economic-operator-size (+epo:hasBusinessSize)) - - - - - - - Has member - - - - - - - Lead by - - - - - - - Owns system - - - - - - - Is owned by agent - - - - - - - Played by - - - - - - - Has certification - - - Relation to the proof of conformance. - -WG approval 30/05/2023 (foaf:Person -> epo-cat:Certificate (+epo:hasCertification)) Relation to the proof of conformance. - -WG approval 30/05/2023 (org:Organization -> epo-cat:Certificate (+epo:hasCertification)) - - - - - - - Has legal identifier - - - - - - - Has main activity - - - The principal sectoral area in which an organisation operates. - -Additional information: - -The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. - -The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). - -WG Approval 05/05/2020 - - (org:Organization -> at-voc:main-activity (+epo:hasMainActivity)) - - - - - - - Has registration country - - - - - - - Address - - - Associates any Resource with the corresponding Address. - -Additional Information: -Asserting the address relationship implies that the Resource has an Address. (org:Organization -> locn:Address (+cv:address)) - - - - Has primary contact point - - - - - - - Has buyer legal type - - - A category that indicates the right of an Organisation to play the role of a buyer. - -Additional Information: -The category also effects the rules that the buyer has to abide to within the public procurement procedure. -WG 07/09/2021 - - (org:Organization -> at-voc:buyer-legal-type (+epo:hasBuyerLegalType)) - - - - - - - Has tax identifier - - - - - - - Exposes channel - - - - - - - Has contact point in role - - - - - - - Refers to role - - - - - - - Announces role - - - - - - - Announces role - - - - - - - Refers to role - - - - - - - Defines information provider - - - Relation indicating a ProcedureTerm has an information provider. (epo:ProcedureTerm -> epo:AuxiliaryParty (+epo:definesInformationProvider)) - - - - - - - Defines budget provider - - - Relation indicating a ProcedureTerm has a BudgetProvider. (epo:ProcedureTerm -> epo:BudgetProvider (+epo:definesBudgetProvider)) - - - - - - - Signs award decision - - - - - - - Indicates invoicee contact point - - - - - - - Exposes invoicee channel - - - - - - - Delegates ancillary activities to - - - Entrusts ancillary purchasing activities to ProcurementServiceProvider. - -Additional Information: -Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: - -(a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; - -(b) advice on the conduct or design of public procurement procedures; - -(c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned; (epo:Buyer -> epo:ProcurementServiceProvider (+epo:delegatesAncillaryActivitiesTo)) - - - - - - - Binds buyer - - - Provides legal constraint on the Buyer. (epo:Contract -> epo:Buyer (+epo:bindsBuyer)) - - - - - - - Acts on behalf of - - - Represents. (epo:ProcurementServiceProvider -> epo:Buyer (+epo:actsOnBehalfOf)) - - - - - - - Is appointed by - - - - - - - Agreed by buyer - - - - - - - Specifies buyer - - - - - - - Specifies buyer - - - - - - - Signed by buyer - - - - - - - Defines catalogue provider - - - Relation indicating an AccessTerm has a CatalogueProvider. (epo:AccessTerm -> epo:CatalogueProvider (+epo:definesCatalogueProvider)) - - - - - - - Specifies catalogue provider - - - - - - - Specifies catalogue receiver - - - - - - - Defines catalogue receiver - - - Relation indicating an AccessTerm has a CatalogueReceiver. (epo:AccessTerm -> epo:CatalogueReceiver (+epo:definesCatalogueReceiver)) - - - - - - - Needs to be a winner - - - The Contractor must be a Winner. - (epo:Contractor -> epo:Winner (+epo:needsToBeAWinner)) - - - - - - - Signed by contractor - - - - - - - Binds contractor - - - Provides legal constraint on the Contractor. (epo:Contract -> epo:Contractor (+epo:bindsContractor)) - - - - - - - Has evaluation member - - - - - - - Defines mediator - - - Relation indicating a ProcedureTerm has a Mediator. (epo:ProcedureTerm -> epo:Mediator (+epo:definesMediator)) - - - - - - - Distributes offer - - - - - - - Defines offline access provider - - - Relation indicating an AccessTerm has an OfflineAccessProvider. (epo:AccessTerm -> epo:OfflineAccessProvider (+epo:definesOfflineAccessProvider)) - - - - - - - Defines participation request processor - - - Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor. (epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor (+epo:definesParticipationRequestProcessor)) - - - - - - - Defines participation request receiver - - - Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver. (epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver (+epo:definesParticipationRequestReceiver)) - - - - - - - Defines payment executor - - - Relation indicating a ContractTerm has a PaymentExecutor. (epo:ContractTerm -> epo:PaymentExecutor (+epo:definesPaymentExecutor)) - - - - - - - Defines procurement procedure information provider - - - Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider. (epo:AccessTerm -> epo:ProcurementProcedureInformationProvider (+epo:definesProcurementProcedureInformationProvider)) - - - - - - - Has review body type - - - - - - - Specifies subcontractors - - - - - - - Substantiates exclusion ground - - - - - - - Needs to be a tenderer - - - The Winner must be a Tenderer. (epo:Winner -> epo:Tenderer (+epo:needsToBeATenderer)) - - - - - - - Is submited by - - - Relation indicating the submission of a tender by an economic operator. -WG approval 18/05/2021 (epo:Tender -> epo:Tenderer (+epo:isSubmitedBy)) - - - - - - - Defines tender processor - - - Relation indicating a SubmissionTerm has a TenderProcessor. (epo:SubmissionTerm -> epo:TenderProcessor (+epo:definesTenderProcessor)) - - - - - - - Defines tender receiver - - - Relation indicating a SubmissionTerm has a TenderReceiver. (epo:SubmissionTerm -> epo:TenderReceiver (+epo:definesTenderReceiver)) - - - - - - - Indicates award to winner - - - Reveals the winner to whom the tender award outcome is attributed. (epo:TenderAwardOutcome -> epo:Winner (+epo:indicatesAwardToWinner)) - - - - - - - Has endpoint identifier - - - - - - - Has country code - - - - (locn:Address -> at-voc:country (+epo:hasCountryCode)) - - - - - - - Has nuts code - - - - - - - Geographic identifier - - - A URI that identifies the Location. - -Additional Information: -GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. - -Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. - -The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - -- http://dbpedia.org/resource/ISO_3166-1:GR -- http://dbpedia.org/resource/ISO_3166-1:GB -even when the geographic name is given as EL or UK. - -The use of a URIs has added advantages: - -- it can be used by automated systems to look up additional data (linked data); -- a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. - (dct:Location -> adms:Identifier (+locn:geographicIdentifier)) - - - - Geometry - - - - Address - - - - Specifies place of despatch - - - - - - - Specifies delivery agreement location - - - - - - - Has delivery location - - - - - - - Specifies place of delivery - - - - - - - Defines place of performance - - - Relation indicating the place of performance of a Contract. - -WG approval 21/03/2023 (epo:ContractTerm -> dct:Location (+epo:definesPlaceOfPerformance)) - - - - - - - Address i d - - - A globally unique identifier for each instance of an Address. - -Additional Information: -The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. - -The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. - -Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. - -To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID. (locn:Address -> adms:Identifier (+locn:addressID)) - - - - Defines opening place - - - The place where the tenders will be publicly opened. - -WG Approval 10-10-2019 (epo:OpeningTerm -> locn:Address (+epo:definesOpeningPlace)) - - - - - - - Is subject to contract specific term - - - - - - - Involves procurement document - - - - - - - Has document restriction justification - - - An explanation about the reasons why some procurement documents are restricted. - -Additional Information: -This corresponds in eForms to BT-707 Documents Restricted Justification. - -WG Approval 09/03/2021 - (epo:AccessTerm -> at-voc:communication-justification (+epo:hasDocumentRestrictionJustification)) - - - - - - - Has direct award justification - - - List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. - -WG Approval 28/05/2020 - (epo:DirectAwardTerm -> at-voc:direct-award-justification (+epo:hasDirectAwardJustification)) - - - - - - - Has late submission permission - - - Whether economic operator-related information can be supplemented even after the submission deadline. - -Additional Information -This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. - -WG Approval 21/07/2020 - (epo:SubmissionTerm -> at-voc:missing-info-submission (+epo:hasLateSubmissionPermission)) - - - - - - - Has non electronic submission justification - - - -Reason for not accepting electronic information. - -WG Approval 21/07/2020 - (epo:SubmissionTerm -> at-voc:communication-justification (+epo:hasNonElectronicSubmissionJustification)) - - - - - - - Has variant permission - - - The obligation or possibility for tenderers to submit variants or not. - -Additional Information: - -Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. - -eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. - -Additional Information: - -Further conditions for submitting variant tenders are in the procurement documents. - (epo:SubmissionTerm -> at-voc:permission (+epo:hasVariantPermission)) - - - - - - - Has e submission permission - - - The requirements as to what extent electronic submission is allowed. - -WG Approval 03/10/2019 - - (epo:SubmissionTerm -> at-voc:permission (+epo:hasESubmissionPermission)) - - - - - - - Has tender subcontracting information - - - The information about subcontracting that must be indicated in the tender. - -WG Approval 10/10/2019 - - (epo:SubmissionTerm -> at-voc:subcontracting-indication (+epo:hasTenderSubcontractingInformation)) - - - - - - - Has e catalogue permission - - - The extent to which electronic catalogues may be used in tenders. - -WG Approval 03/10/2019 - (epo:SubmissionTerm -> at-voc:permission (+epo:hasECataloguePermission)) - - - - - - - Has tender validity period - - - The relation indicating until when a tender instance is applicable. - (epo:SubmissionTerm -> epo:Period (+epo:hasTenderValidityPeriod)) - - - - - - - Has language - - - Language in which the submitted information is to be expressed. - -WG Approval 21/07/2020 - - (epo:SubmissionTerm -> at-voc:language (+epo:hasLanguage)) - - - - - - - Has broad place of performance - - - Geopolitical zone where the contract can be executed. - -Additional Information - -Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). - (epo:ContractTerm -> at-voc:other-place-service (+epo:hasBroadPlaceOfPerformance)) - - - - - - - Defines contract duration - - - Relation indicating a ContractTerm has a Duration. (epo:ContractTerm -> epo:Duration (+epo:definesContractDuration)) - - - - - - - Has e invoicing permission - - - - - - - Has reserved execution - - - - - - - Has contract nature type - - - Subject of the acquisition. - -WG Approval 11/06/2020 - - (epo:ContractTerm -> at-voc:contract-nature (+epo:hasContractNatureType)) - - - - - - - Has additional contract nature - - - Additional type of acquisition taken into consideration in the contract. - -WG Approval 11/06/2020 - - (epo:ContractTerm -> at-voc:contract-nature (+epo:hasAdditionalContractNature)) - - - - - - - Defines subcontracting term - - - Relation indicating a ContractTerm has a SubcontractingTerm. (epo:ContractTerm -> epo:SubcontractTerm (+epo:definesSubcontractingTerm)) - - - - - - - Defines contract period - - - Relation indicating a ContractTerm has a Period. (epo:ContractTerm -> epo:Period (+epo:definesContractPeriod)) - - - - - - - Defines prize - - - Relation indicating a DesignContestRegimeTerm has a Prize. (epo:DesignContestRegimeTerm -> epo:Prize (+epo:definesPrize)) - - - - - - - Has launch framework agreement maximum value - - - - - - - Has framework agreement type - - - The form of framework agreement used in a procurement procedure. - -Addition information: - -A concept to distinguish the different types of framework agreement, which are: -1. Framework agreement without reopening of competition, -2. Framework agreement with reopening of competition, or -3. Framework agreement partly without reopening of competition. - -WG Approval 19/09/2019 - - (epo:FrameworkAgreementTerm -> at-voc:framework-agreement (+epo:hasFrameworkAgreementType)) - - - - - - - Has launch group framework agreement maximum value - - - - - - - Has qualification system duration - - - - - - - Has prize value - - - The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. - -Additional Information: -This corresponds to BT-644 in eForms. - -WG Approval 29/08/2019 - - (epo:Prize -> epo:MonetaryValue (+epo:hasPrizeValue)) - - - - - - - Has subcontracting obligation - - - The requirement the tender must meet with regard to subcontracting parts of the contract. -WG Approval 09/11/2021 - - (epo:SubcontractTerm -> at-voc:subcontracting-obligation (+epo:hasSubcontractingObligation)) - - - - - - - Constrains - - - Information Concept about which a Constraint expresses a limitation. - -Additional Information: -Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation. (cccev:Constraint -> cccev:InformationConcept (+cccev:constrains)) - - - - Has threshold type - - - The method to interpret the threshold value as minimum or a maximum. - -WG Approval 17/09/2019 - (cccev:Constraint -> at-voc:number-threshold (+epo:hasThresholdType)) - - - - - - - Has constraint - - - - - - - Type - - - Category to which the Requirement belongs. (cccev:Criterion -> at-voc:criterion (+dct:type)) - - - - Supports requirement - - - Requirement for which the Evidence provides proof. (cccev:Evidence -> cccev:Requirement (+cccev:supportsRequirement)) - - - - Supports concept - - - Information Concept providing facts found/inferred from the Evidence. - -Additional Information: -Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as "I am older that 18 years" or "this is a FairTrade product". (cccev:Evidence -> cccev:InformationConcept (+cccev:supportsConcept)) - - - - Confidentiality level type - - - Security classification assigned to an Evidence e.g. classified, sensitive, public. - -Additional Information: - -Classifications should be defined by an organisation/country as an outcome of a security assessment. - (cccev:Evidence -> at-voc:confidentiality-level (+cccev:confidentialityLevelType)) - - - - Has requirement - - - A more specific Requirement that is part of the Requirement. (cccev:Requirement -> cccev:Requirement (+cccev:hasRequirement)) - - - - Has award criterion type - - - Category of award criterion. - - (epo:AwardCriterion -> at-voc:award-criterion-type (+epo:hasAwardCriterionType)) - - - - - - - Has fixed value type - - - The method to interpret the fixed value as pertaining to a total or unit. - -WG Approval 17/09/2019 - - (epo:AwardCriterion -> at-voc:number-fixed (+epo:hasFixedValueType)) - - - - - - - Answers award criteria - - - - - - - Answers exclusion ground - - - - - - - Announces exclusion ground - - - - - - - Has reserved procurement - - - Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. - -Additional information: -This property corresponds in eForms to the BT-71 -WG Approval 09/11/2021 - (epo:ParticipationCondition -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. - -Additional information: -This property corresponds in eForms to the BT-71 -WG Approval 09/11/2021 - (epo:ParticipationConditionsSummary -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) - - - - - - - Has weight value type - - - No definition. Waiting on CCCEV alignment. - - - (epo:ProcurementCriterion -> at-voc:number-weight (+epo:hasWeightValueType)) - - - - - - - Has performing staff qualification information - - - -Additional information: - -This relation corresponds in eForms to BT-79. (epo:ProcurementCriterion -> at-voc:requirement-stage (+epo:hasPerformingStaffQualificationInformation)) - - - - - - - Has selection criteria usage - - - -Additional Information: -This corresponds in eForms to BT-748 Selection Criteria Used. (epo:SelectionCriterion -> at-voc:usage (+epo:hasSelectionCriteriaUsage)) - - - - - - - Has selection criterion type - - - The classification of the selection criteria. - - -Additional Information: - -This corresponds in eForms to BT-747 Selection Criteria Type. - -WG Approval 09/11/2021 - (epo:SelectionCriterion -> at-voc:selection-criterion (+epo:hasSelectionCriterionType)) - - - - - - - Announces selection criteria - - - - - - - Answers selection criteria - - - - - - - Fulfills requirement - - - The requirement to which the concept meets. -WG Approval 09/11/2021 - - (epo:GreenProcurement -> at-voc:environmental-impact (+epo:fulfillsRequirement)) The requirement to which the concept meets. -WG Approval 09/11/2021 - - (epo:InnovativeProcurement -> at-voc:innovative-acquisition (+epo:fulfillsRequirement)) The requirement to which the concept meets. -WG Approval 09/11/2021 - - (epo:SocialProcurement -> at-voc:social-objective (+epo:fulfillsRequirement)) - - - - - - - Includes accessibility criterion - - - Explanation as to whether accessibility Criterion are used or not. -WG Approval 09/11/2021 - - (epo:StrategicProcurement -> at-voc:accessibility (+epo:includesAccessibilityCriterion)) - - - - - - - Has d p s scope - - - Explanation as to whether a dps is used and by whom. - -Additional Information: -This corresponds in eForms to BT-766 Dynamic Purchasing System. -WG Approval 09/11/2021 - (epo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage (+epo:hasDPSScope)) - - - - - - - Has usage - - - The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage - (epo:Technique -> at-voc:usage (+epo:hasUsage)) - - - - - - - Has validity period - - - The relation indicating until when a given instance of a concept is applicable. - -WG approval 30/05/2023 - (epo:Technique -> epo:Period (+epo:hasValidityPeriod)) The relation indicating until when a given instance of a concept is applicable. - -WG approval 30/05/2023 (epo-cat:Certificate -> epo:Period (+epo:hasValidityPeriod)) - - - - - - - Has concession estimated value - - - - - - - Has estimated user concession revenue - - - The estimated revenue coming from the use of the concession. - -Additional Information: -Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. - -This corresponds to BT-162 in eForms. - (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedUserConcessionRevenue)) - - - - - - - Has estimated buyer concession revenue - - - The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. - -<u>Additional Information:</u> -For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. - -This corresponds to BT-160 in eForms. - -WG Approval 07/01/2020 (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedBuyerConcessionRevenue)) - - - - - - - Has subcontracting estimated value - - - The estimated value of a single subcontract. - -This relates to BT-553 in eForms. - -WG Approval 01/09/2020 - - (epo:SubcontractingEstimate -> epo:MonetaryValue (+epo:hasSubcontractingEstimatedValue)) - - - - - - - Foresees subcontracting - - - - - - - Has awarded estimated value - - - The estimated value that can be spent as provided by the Award Decision. - -<u>Additional Information</u>: -This property is used for framework agreements and dynamic purchasing systems. -Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. - -WG Approval 12/12/2019 - - (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasAwardedEstimatedValue)) - - - - - - - Has framework agreement maximum value - - - - - - - Has framework agreement estimated value - - - This refers to BT-660 in eForms. (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasFrameworkAgreementEstimatedValue)) - - - - - - - Has approximate framework agreement value - - - - - - - Results from lot award decision - - - - - - - Comprises lot award decision - - - Incorporates LotAwardOutcome. (epo:AwardDecision -> epo:LotAwardDecision (+epo:comprisesLotAwardDecision)) - - - - - - - Has group framework agreement maximum value - - - This corresponds to BT-156 in the eForms. (epo:LotGroupAwardInformation -> epo:MonetaryValue (+epo:hasGroupFrameworkAgreementMaximumValue)) - - - - - - - Announces lot group award information - - - - - - - Refers to lot group award information - - - - - - - Has maximum framework agreement awarded value - - - The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. - -Additional information: - -The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. - -The Framework Agreements in a CAN are to be traced back and added to provide this value. - -This corresponds to the BT-118 in eForms. - -WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasMaximumFrameworkAgreementAwardedValue)) - - - - - - - Describes result notice - - - - - - - Has procurement highest received tender value - - - The highest received tender value for the procurement. - -Additional Information: -This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementHighestReceivedTenderValue)) - - - - - - - Has procurement lowest received tender value - - - The lowest received tender value for the procurement. - -Additional Information: -This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementLowestReceivedTenderValue)) - - - - - - - Has total awarded value - - - The awarded value of all lots announced in this notice, including options and renewals. - -Additional information: -The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. - -The values of the individual lots announced in a CAN are to be traced back and added to provide this value. - -This corresponds to the BT-161 in eForms. - -WG Approval 03/12/2019 - (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasTotalAwardedValue)) - - - - - - - Announces notice award information - - - - - - - Refers to notice award information - - - - - - - Concerns tender - - - - - - - Comprises tender award outcome - - - Incorporates TenderAwardOutcome. (epo:AwardDecision -> epo:TenderAwardOutcome (+epo:comprisesTenderAwardOutcome)) - - - - - - - Has irregularity type - - - Additional information: -This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type (epo:ReviewIrregularitySummary -> at-voc:irregularity-type (+epo:hasIrregularityType)) - - - - - - - Has review irregularity summary - - - Additional information: -This relation corresponds in eForms to BG-613 Buyer Review Requests (epo:ReviewRequestSummary -> epo:ReviewIrregularitySummary (+epo:hasReviewIrregularitySummary)) - - - - - - - Has highest received tender value - - - Amount of the Tender with the highest value. - -Additional Information -The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. - - -WG Approval 12/12/2019 - - - (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasHighestReceivedTenderValue)) - - - - - - - Has received submission type - - - - - - - Has lowest received tender value - - - Amount of the Tender with the lowest value. - -Additional Information -The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. - -WG Approval 12/12/2019 - - (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasLowestReceivedTenderValue)) - - - - - - - Summarises information for award decision - - - Relates to submission for the given competition, either at Lot level or Mini-Competition level. - -WG approval 30/05/2023 (epo:SubmissionStatisticalInformation -> epo:AwardDecision (+epo:summarisesInformationForAwardDecision)) - - - - - - - Refers to contract - - - - - - - Provides contract total penalty value - - - -Additional Information: -This corresponds to BT-782 in eForms. - (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPenaltyValue)) - - - - - - - Provides contract total payment value - - - Additional Information: -This corresponds to BT-779 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPaymentValue)) - - - - - - - Has electronic signature - - - - - - - Concerns originator request - - - - - - - Has tax information - - - - - - - Is supported by - - - - - - - Has item country of origin - - - The source country of the product or service. - -Additional Information: - -The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. - -WG Approval 07/01/2020 - -The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country (epo:Tender -> at-voc:country (+epo:hasItemCountryOfOrigin)) - - - - - - - Has financial offer value - - - The value offered by the Tenderer for a Lot. - -Additional Information: -This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. - -This corresponds to BT-720 in eForms. (epo:Tender -> epo:MonetaryValue (+epo:hasFinancialOfferValue)) - - - - - - - Includes tender - - - Additional information: -This corresponds in eForms to BT-3202 Contract Tender Identifier. - (epo:Contract -> epo:Tender (+epo:includesTender)) - - - - - - - Is based on implementing regulation - - - Indicates under which regulation a notice is created. - -WG Acceptance 06/09/2022 (epo:Notice -> at-voc:legal-basis (+epo:isBasedOnImplementingRegulation)) - - - - - - - Conforms to legal basis - - - The Notice was designed in accordance with the given legal basis. - -Additional Information: -This Notice can be used for Procedures which do not have the same legal basis. -This holds for standard forms. (epo:Notice -> at-voc:legal-basis (+epo:conformsToLegalBasis)) - - - - - - - Has notice type - - - - - - - Refers to notice - - - - - - - Has notification content type - - - A categorisation of templates for sets of Procurement information to be conveyed in Notices. - -WG Approval 12/05/2020 (epo:Notice -> epo:notification-phases-content-types (+epo:hasNotificationContentType)) - - - - - - - Conforms to specific legal basis - - - - - - - Has form type - - - A categorisation of the steps in which the Notice is used. - -WG Approval 12/05/2020 - - (epo:Notice -> at-voc:form-type (+epo:hasFormType)) - - - - - - - Describes notice - - - - - - - Refers to previous notice - - - -Additional information: -This corresponds in eForms to BT-758 Change Notice Version Identifier. (epo:NoticeChange -> epo:Notice (+epo:refersToPreviousNotice)) - - - - - - - Refers to original notice - - - - - - - Has u u i d - - - A universally unique identifier for an instance of this document. - -WG Approval 12/05/2020 (epo:Document -> adms:Identifier (+epo:hasUUID)) - - - - - - - Has document status - - - https://test-docs.peppol.eu/logistics/transport-execution/codelist/DocumentStatusCode/ (epo:Document -> at-voc-new:document-status (+epo:hasDocumentStatus)) - - - - - - - Has document type - - - - -https://docs.peppol.eu/poacc/upgrade-3/2022-Q4/codelist/UNCL1001_T01/ (epo:Document -> at-voc-new:document-type (+epo:hasDocumentType)) - - - - - - - Associated with - - - The document to which a document is associated. - -WGM 01/03/2022 - (epo:Document -> epo:Document (+epo:associatedWith)) - - - - - - - Has official language - - - The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. - -WG Approval 03/10/2019 - - (epo:Document -> at-voc:language (+epo:hasOfficialLanguage)) - - - - - - - Has electronic digest - - - - - - - Has unofficial language - - - The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. - -WG Approval 03/10/2019 - (epo:Document -> at-voc:language (+epo:hasUnofficialLanguage)) - - - - - - - Refers to previous - - - - - - - Has associated document - - - - - - - Has external specification - - - URI reference to external item information or specifications, e.g. web address. - (epo-cat:Item -> epo:Document (+epo-cat:hasExternalSpecification)) - - - - - - - Has award status - - - Indicates whether the lot is awarded, not awarded or still open. -WG Approval 03/12/2019 - - (epo:AwardDecision -> at-voc:winner-selection-status (+epo:hasAwardStatus)) - - - - - - - Has awarded value - - - The value of the procurement provided by the Award Decision. - -Additional Information: -Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. - -In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. - -WG Approval 10/12/2019 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasAwardedValue)) - - - - - - - Has non award justification - - - On hold; Enumeration. - - - (epo:AwardDecision -> at-voc:non-award-justification (+epo:hasNonAwardJustification)) - - - - - - - Has bargain price - - - The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. - -WG approval 23/05/2023 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasBargainPrice)) - - - - - - - Refers to award decision - - - - - - - Announces award decision - - - - - - - Has fund programme - - - - - - - Specifies deliverable - - - - - - - Has contract value - - - - - - - Has contract amendment - - - - - - - Has estimated duration - - - Relation indicating a Contract has an estimated Duration. - -Additional Information - -When the Lot uses a Technique the contract estimated duration applies to the Technique. - (epo:Contract -> epo:Duration (+epo:hasEstimatedDuration)) - - - - - - - Has procurement classification - - - - - - - Announces completion of contract - - - - - - - Refers to contract to be modified - - - - - - - Announces contract - - - - - - - Concerns contract - - - - - - - Is subordinated to contract - - - - - - - Implements contract - - - - - - - Resolves review request - - - - - - - Provides ruling on remedy - - - States the measures to be taken after a review procedure. (epo:ReviewDecision -> at-voc:remedy-type (+epo:providesRulingOnRemedy)) - - - - - - - Has remedy value - - - Additional information: -This relation corresponds in eForms to BT-793 Review Remedy Value. (epo:ReviewDecision -> epo:MonetaryValue (+epo:hasRemedyValue)) - - - - - - - Has confirmed irregularity type - - - Additional information: -This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewDecision -> at-voc:irregularity-type (+epo:hasConfirmedIrregularityType)) - - - - - - - Has review decision type - - - Additional information: -This relation corresponds in eForms to BT-790 Review Decision Type. (epo:ReviewDecision -> at-voc:review-decision-type (+epo:hasReviewDecisionType)) - - - - - - - Refers to previous review - - - Additional information: -This relation corresponds in eForms to BT-785 "Review Previous Identifier". (epo:ReviewObject -> epo:ReviewObject (+epo:refersToPreviousReview)) - - - - - - - Announces review object - - - - - - - Has alleged irregularity type - - - Additional information: -This relation corresponds in eForms to BT-791 Review Irregularity Type - (epo:ReviewRequest -> at-voc:irregularity-type (+epo:hasAllegedIrregularityType)) - - - - - - - Has review request fee - - - Additional information: -This relation corresponds in eForms to BT-795 Review Request Fee. (epo:ReviewRequest -> epo:MonetaryValue (+epo:hasReviewRequestFee)) - - - - - - - Requests remedy type - - - Additional information: -This relation corresponds in eForms to BT-792 Review Remedy Type (epo:ReviewRequest -> at-voc:remedy-type (+epo:requestsRemedyType)) - - - - - - - Has element modification - - - - - - - Describes contract modification - - - - - - - Has change justification - - - Code explaining the change. - -WG Approval 5/11/2019 - (epo:ElementChangeDescription -> at-voc:change-corrig-justification (+epo:hasChangeJustification)) - - - - - - - Has element change - - - - - - - Has non publication justification - - - The reason why data is not published. -WG Approval 11/06/2020 - - (epo:ElementConfidentialityDescription -> at-voc:non-publication-justification (+epo:hasNonPublicationJustification)) - - - - - - - Has element confidentiality - - - Relation indication that the publication provision applies to a given field of a document. (epo:PublicationProvision -> epo:ElementConfidentialityDescription (+epo:hasElementConfidentiality)) - - - - - - - Has element description - - - - - - - Has modification justification - - - Explanation of why a contract was modified. -WG Approval 09/11/2021 - -The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification - -Additional Information - -This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - -This corresponds in eForms to BT-200. - - (epo:ElementModificationDescription -> at-voc:modification-justification (+epo:hasModificationJustification)) Explanation of why a contract was modified. - -WG Approval 09/11/2021 - -The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification - -Additional Information - -This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - -This corresponds in eForms to BT-200. - - - (epo:AmendedContract -> at-voc:modification-justification (+epo:hasModificationJustification)) - - - - - - - Announces non published element - - - Relation indicating which parts of a document are not published. - -Additional Information: -For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement)) - - - - - - - Refers to non published element - - - - - - - Has operator licence i d - - - - - - - Has item standard i d - - - The identifier for the instance of the concept based on a standard scheme. - -Additional information: -For example the GTIN scheme (Global Trade Item Number). - -WG Approval 24/02/2022 - (epo-cat:Item -> adms:Identifier (+epo:hasItemStandardID)) - - - - - - - Has manufacturer i d - - - The manufacturer's identifier for the item. - (epo-cat:Manufacturer -> adms:Identifier (+epo:hasManufacturerID)) - - - - - - - Has trace i d - - - - - - - Has vehicle segment i d - - - - - - - Has freight forwarder consignment i d - - - - - - - Has seller item i d - - - The general identifier for the concept as defined by the seller. - -WG Approval 16/05/2023 - (epo-cat:Item -> adms:Identifier (+epo:hasSellerItemID)) - - - - - - - Has carrier consignment i d - - - - - - - Has vehicle i d - - - - - - - Has batch i d - - - The identifier assigned to a specific batch of the produced Item. -WG Approval 16/05/2023 - (epo-cat:Batch -> adms:Identifier (+epo:hasBatchID)) - - - - - - - Has serial i d - - - The identifier assigned to the specific instance of the produced concept. -WG Approval 16/05/2023 - (epo-cat:Item -> adms:Identifier (+epo:hasSerialID)) - - - - - - - Has manufacturer item i d - - - This refers to the general identifier for the concept as defined by the manufacturer. - - -WG Approval 16/05/2023 - - (epo-cat:Item -> adms:Identifier (+epo:hasManufacturerItemID)) - - - - - - - Has buyer item i d - - - This refers to the identifier for the specific instance of the produced concept. -WG Approval 16/05/2023 - (epo-cat:Item -> adms:Identifier (+epo:hasBuyerItemID)) - - - - - - - Has tracking i d - - - - - - - Has consignee consignment i d - - - - - - - Has expected delivery time - - - The expected amount of time between the order and delivery of an item. - -WG approval 26/07/2022 (epo-cat:Price -> epo:Duration (+epo-cat:hasExpectedDeliveryTime)) - - - - - - - Has currency - - - The identifier of the currency as in the standard code list used. - - (epo:MonetaryValue -> at-voc:currency (+epo:hasCurrency)) - - - - - - - Is calculated on - - - The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. - - (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:TaxInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) - - - - - - - Has total tax inclusive amount - - - - - - - Has total tax exclusive amount - - - - - - - Has consignment invoice value - - - Declared amount of the Consignment. - -Additional Information: - -This is a logistics information needed for logistics, security measures, customs check, etc. (epo-ful:Consignment -> epo:MonetaryValue (+epo-ful:hasConsignmentInvoiceValue)) - - - - - - - Has consignment free on board value - - - - - - - Has amount - - - The predetermined monetary value charged in addition to the price. - -WG approval 26/07/2022 (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) The predetermined monetary value charged in addition to the price. - -WG approval 26/07/2022 - - (epo-ord:TaxInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) - - - - - - - Has consignment declared statistics value - - - - - - - Has net monetary value - - - - - - - Has total line amount - - - - - - - Has total allowance amount - - - - - - - Has declared statistical value - - - - - - - Has rounding amount - - - - - - - Has prepaid amount - - - - - - - Has amount due for payment - - - - - - - Has total charge amount - - - - - - - Has time period - - - - - (epo:Period -> at-voc:timeperiod (+epo:hasTimePeriod)) - - - - - - - Has estimated delivery period - - - - - - - Has price validity - - - - - - - Has catalogue line validity - - - - - - - Has delivery period - - - - - - - Has unit code - - - - - - - Has gross weight - - - - - - - Has net weight - - - - - - - Has quantity - - - - - - - Has length - - - - - - - Has quantity threshold - - - - - - - Has gross volume - - - - - - - Has net quantity - - - The net quantity of the item that is contained in each consumable unit, excluding any packaging materials. - (epo-cat:Item -> epo:Quantity (+epo-cat:hasNetQuantity)) - - - - - - - Has chargeable weight - - - - - - - Has transport handling unit quantity - - - - - - - Has despatched quantity - - - Quantity despatched for delivered. (epo-ful:DespatchLine -> epo:Quantity (+epo-ful:hasDespatchedQuantity)) - - - - - - - Has loading length - - - - - - - Has width - - - - - - - Has height - - - - - - - Has outstanding quantity - - - - - - - Has base quantity - - - The quantity at which the net monetary value applies. (epo-cat:Price -> epo:Quantity (+epo-cat:hasBaseQuantity)) - - - - - - - Has orderabable unit factor rate - - - - - - - Has maximum temperature - - - - - - - Has qualified value - - - Qualified value of the property, which is defined in a classification scheme. - -Additional Information: -For example, the (0173-1#02-AAA026#007) drilling diameter of an item has value of 12 inches. - -WG approval 28/07/2022 (epo-cat:ItemProperty -> epo:Quantity (+epo-cat:hasQualifiedValue)) - - - - - - - Has total goods item quantity - - - - - - - Has minimum quantity guaranteed for delivery - - - The minimum quantity of an item that is guaranteed by the seller to be delivered. - - (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMinimumQuantityGuaranteedForDelivery)) - - - - - - - Has maximum order quantity - - - The maximum number of orderable units that can be ordered according to details provided in the catalogue line, such as price. - (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMaximumOrderQuantity)) - - - - - - - Has minimum temperature - - - - - - - Has net volume - - - - - - - Unit type - - - - Contains modifications of - - - - -Additional information -This relation shall be used between Instances of the SAME type/class. - -The "modifying-instance" can be minimally instantiated, carrying the fields/information that override the fields in the "modified-instance". - -This means that the "modifying-instance" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. - (owl:Thing -> owl:Thing (+epo:containsModificationsOf)) - - - - - - - Has country of origin - - - - - - - Is s m e suitable - - - The Lot is suitable for small and medium enterprises (SMEs). - -Additional Information - -This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. - -For example, number of employees and turnover are applicable to the definition of an SME. - -WG Approval 15/10/2019 - (epo:ProcurementObject) - - - - - - - Has additional information - - - Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 (epo:ProcurementObject) Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 (epo:Notice) Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 - (epo:ElementChangeDescription) - - - - - - - Is using e u funds - - - The procurement foresees funding by the Union. - -Additional Information: -The funding may cover the whole procurement or part of the procurement. - -For example the European Structural and Investment Funds or grants awarded by the European Union. - - (epo:ProcurementObject) - - - - - - - Is covered by g p a - - - Specifies whether the Agreement on Government Procurement (GPA) applies. - -Additional information: -The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. - -This corresponds in the e Forms to BT-115 GPA Coverage. - -WG Approval 15/10/2019 - - (epo:ProcurementObject) - - - - - - - Is recurrent - - - The Procurement being notified is likely to be included in another procedure in the foreseeable future. - -Additional Information: - -For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. - -This corresponds in eForms to BT-94 Recurrence. - -WG Approval 12/05/2020 - (epo:ProcurementObject) - - - - - - - Has recurrence description - - - Any additional information about the recurrence of the Procurement. - -Additional Information: -For example estimated timing of the Procedure. - -This corresponds in eForms to BT-95 Recurrence Description. - -(WG approval 2019-01-16) - (epo:ProcurementObject) - - - - - - - Has legal basis description - - - - - - - Is accelerated - - - Statement about the fact that the procedure will be reduced due to a state of urgency. - -Additional Information - -This modifies the time limit for the receipt of requests to participate or the receipt of tenders. - -WG Approval 20/08/2019 - (epo:Procedure) - - - - - - - Has accelerated procedure justification - - - The reasons why the procedure is accelerated. - -Additional Information: -A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. - -WG Approval 09/06/2020 - - (epo:Procedure) - - - - - - - Has main feature - - - Main features of the procedure and information about where the full rules for the procedure can be found. - -Additional Information: -This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds. (epo:Procedure) - - - - - - - Is joint procurement - - - Multiple buyers procure together within the same procedure. - -Addition Information: -In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . (epo:Procedure) - - - - - - - Is design contest - - - A competition which enables the buyer to acquire a plan or design via a jury. - -Additional information: -Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering - -The contest may include or not the award of prizes; - -WG approval 04-02-2021 (epo:Procedure) - - - - - - - Title - - - A name given to the resource. - -WG approval 30/05/2023 (epo:ProcurementElement) A name given to the resource. - -WG approval 30/05/2023 (foaf:Agent) A name given to the resource. - -WG approval 30/05/2023 - (epo:AgentInRole) A name given to the resource. - -WG approval 30/05/2023 - - (epo:Document) A name given to the resource. - -WG approval 30/05/2023 - (epo:Fund) - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:ProcurementElement) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:System) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:AgentInRole) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (cpov:ContactPoint) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (cv:Channel) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - (epo:NonDisclosureAgreementTerm) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:SecurityClearanceTerm) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:SubcontractTerm) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (cccev:InformationConcept) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (cccev:Requirement) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:Technique) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:SubcontractingEstimate) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:ElectronicSignature) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - (epo:Document) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:Fund) - - - - Name - - - The complete name of the Person as one string. (cpv:Person) - - - - Family name - - - The hereditary surname of a family. - (cpv:Person) - - - - Given name - - - The name(s) that identify the Person within a family with a common surname. - (cpv:Person) - - - - Patronymic name - - - Name based on the given name of the Person's father. -WG Approval 09/11/2021 (cpv:Person) - - - - Alternative - - - Any name by which an individual is known other than their full name. -WG 09/11/2021 (cpv:Person) - - - - Birth name - - - Family name of the Person given upon their birth. -WG Approval 09/11/2021 (cpv:Person) - - - - Birth date - - - The point in time on which the Person was born. (cpv:Person) - - - - Is listed company - - - Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange -rules or through law or enforceable means), which impose requirements to ensure adequate transparency of -beneficial ownership. - -<u>Additional Information:</u> - -In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. - -WG Approval 21/11/2019 (epo:Business) - - - - - - - Has group type - - - Form of collaboration agreement between organisations. - -Additional Information: -This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. - -WG Approval 09/11/2021 (epo:OrganisationGroup) - - - - - - - Has alias - - - Acronym or alternative name of the Agent. -WG Approval 25/03/2021 (foaf:Agent) - - - - - - - Has legal name - - - The officially registered name of an organisation. - -WG Approval 10/01/2023 (org:Organization) - - - - - - - Has organisation unit name - - - The name of a subpart of an organisation. - -Additional Information: -E.g. the relevant department of a large organisation. - -We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well. (org:Organization) - - - - - - - Has buyer legal type description - - - Self-explanatory text about the Buyer Legal Type. - -Additional information: -This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. - -WG Approval 06/09/2022 (org:Organization) - - - - - - - Has legal form type - - - The classification of an Organisation according to legislation. - -Additional Information: -Generally, this is defined for Tenderers who want to submit as an Organisation Group. -Note that the codelist provided at national level should be used. - (org:Organization) - - - - - - - Has main activity description - - - Self-explanatory text about the Main Activity . - -Additional information: -This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. - -WG Approval 06/09/2022 - (org:Organization) - - - - - - - Has internet address - - - The main web page used by the instance of the concept. - -WG Approval 01/06/2023 - (org:Organization) The main web page used by the instance of the concept. - -WG Approval 01/06/2023 - - (cpov:ContactPoint) - - - - - - - Is contracting entity - - - Role of entities, which: - -(a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. - -(b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. - -Additional Information - -The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. -For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. - -WG Approval 28/04/2020 - (epo:Buyer) - - - - - - - Has activity description - - - In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. - -However, in eForms there is the code "other" to cover undefined activities. For mapping to this eForms feature one could also use this property. - (epo:Buyer) - - - - - - - Has buyer profile - - - Website address where the buyer publishes information on its procurement procedures and general information. - -Additional information: -This corresponds in the eForms to BT-508 Buyer Profile URL. - -WG approval 04/05/2018 - (epo:Buyer) - - - - - - - Has fax - - - The fax number used to reach a person or an organisation. (cpov:ContactPoint) - - - - - - - Telephone - - - A telephone number through which the Contact Point can be contacted. - (cpov:ContactPoint) - - - - Email - - - The email of the Organisation. - - (cpov:ContactPoint) - - - - Has contact name - - - A short text by which a contact is known or referred to. - -WG Approval: 27/01/2022 (cpov:ContactPoint) - - - - - - - Has address u r l - - - - - - - Geographic name - - - A textual description for a Location. - -Additional Information: -The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. - -A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - -- "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) -- "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) -- "Athens"@en (the English language exonym) -INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. - -The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - -- use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; -- use 'EL' in preference to the ISO 3166 code GR for Greece. -Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code. (dct:Location) - - - - Post name - - - The key postal division of the address, usually the city. (INSPIRE's definition is "One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, "Paris". (locn:Address) - - - - Address area - - - The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. - -Additional Information: -This would typically be part of a city, a neighbourhood or village, e.g. Montmartre. (locn:Address) - - - - Locator name - - - Proper noun(s) applied to the real world entity identified by the locator. - -Additional Information: -The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. - -The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator. (locn:Address) - - - - Admin unit l2 - - - The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. - -Additional Information: -Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" in the ATU controlled vocabulary. - (locn:Address) - - - - Full address - - - The complete address written as a formatted string. - -Additional Information: -Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is "Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France". (locn:Address) - - - - Locator designator - - - A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. - -Additional Information: -In simpler terms, this is the building number, apartment number, etc. For an address such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17". (locn:Address) - - - - Admin unit l1 - - - The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. - -Additional Information: -Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this. (locn:Address) - - - - Post code - - - The post/zip code of an address. (INSPIRE's definition is "A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.") - -Additional Information: -Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example "75000". (locn:Address) - - - - Thoroughfare - - - An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. - -Additional Information: -For example, "Avenue des Champs-&#201;lys&#233;es". (locn:Address) - - - - Coordinates - - - The coordinate list. (locn:Geometry) - - - - Longitude - - - The longitude. (locn:Geometry) - - - - Latitude - - - The latitude. (locn:Geometry) - - - - Has estimated contract notice publication date - - - Foreseen date for publication of Contract Notice. - -Additional information: -This corresponds in eForms BT-127 Future Notice. - - (epo:ProcessPlanningTerm) - - - - - - - Has estimated tender invitation date - - - The planned date for the dispatch of the invitations to submit tenders. -WG Approval 09/11/2021 (epo:ProcessPlanningTerm) - - - - - - - Has award date scheduled - - - Planned date for the award decision. -WG Approval 09/11/2021 (epo:ProcessPlanningTerm) - - - - - - - Is procurement document restricted - - - The access to certain procurement documents is restricted. - -Additional Information: -This corresponds in eForms to BT-14 Documents Restricted. - -WG Approval 10/10/2019 (epo:AccessTerm) - - - - - - - Has restricted access u r l - - - The internet address with information on accessing the restricted (part of the) procurement document. - -Additional Information: -This corresponds in eForms to BT-615 Documents Restricted URL. - (epo:AccessTerm) - - - - - - - Has additional information deadline - - - The time limit for requesting further information. - -Additional information: - -This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. - -This corresponds in eForms to BT-13 Additional Information Deadline. - -WG Approval 09/06/2020 - (epo:AccessTerm) - - - - - - - Has public access u r l - - - Web page where the procurement documents can be downloaded. - -Additional Information: -This corresponds in the eForms to BT-15 Documents URL. - -WG Approval 09/03/2021 - (epo:AccessTerm) - - - - - - - Is non disclosure agreement required - - - - - - - Has opening date time - - - Date and time for the opening of tenders. - -WG Approval 12/03/2019 - - (epo:OpeningTerm) - - - - - - - Has opening description - - - Further information about the opening of tenders. - -Additional Information -For example, who may participate in the opening and whether any authorization is needed. - -WG Approval 12/03/2019 (epo:OpeningTerm) - - - - - - - Has opening u r l - - - The identifier of the address of the Opening of Tenders. -WG Approval 09/11/2021 (epo:OpeningTerm) - - - - - - - Has deadline - - - The deadline by which the security clearance must be submitted to the buyer. - -WG Approval 12/09/2019 - - (epo:SecurityClearanceTerm) - - - - - - - Is security clearance required - - - - - - - Has justification - - - An explanation about the reasons for using the concept. -WG Approval 5/11/2019 - (epo:DirectAwardTerm) - - - - - - - Is submission for all lots allowed - - - Indicates whether tenders may be submitted for all Lots. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) - -WG approval 23/08/2022 - (epo:ProcedureTerm) - - - - - - - Has cross border law - - - The applicable law when buyers from different countries procure together within one procurement procedure. - -Additional Information: -This corresponds in eForms to BT-09 Cross Border Law. (epo:ProcedureTerm) - - - - - - - Is one lot only allowed - - - Indicates whether tenders may be submitted for only one Lot. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 23/08/2022 - - (epo:ProcedureTerm) - - - - - - - Has group lot evaluation method - - - Description of how lots and groups of lots are evaluated against one another in the procedure. - - - - (epo:ProcedureTerm) - - - - - - - Is awarded by c p b - - - Procedure is awarded by a Central Purchasing Body. - - (epo:ProcedureTerm) - - - - - - - Has maximum lot submission allowed - - - The total number of lots for which one Tenderer can submit Tenders. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 12/12/2018 - - (epo:ProcedureTerm) - - - - - - - Has lot award combination - - - The contracting authority reserves the right to award contracts combining lots or groups of lots. - -Additional Information: -This property contains information about the Lots concerned. -This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 23/08/2022 - (epo:ProcedureTerm) - - - - - - - Has maximum number of lots to be awarded - - - The maximum number of lots for which contract(s) can be awarded to one tenderer. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG Approval 22/08/2019 (epo:ProcedureTerm) - - - - - - - Has national procedure rules - - - - - - - Has e auction u r l - - - The internet address of the electronic auction. - -Additional Information: - -This corresponds in eForms to BT-123 Electronic Auction URL. (epo:SubmissionTerm) - - - - - - - Has receipt deadline - - - The time limit for receiving submissions. - -Additional Information -This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. -This attribute should be used for standard forms mappings. - -WG Approval 21/07/2020 - (epo:SubmissionTerm) - - - - - - - Has receipt expression deadline - - - Time limit for receipt of expressions of interest. - -Pending of review by the WG - - (epo:SubmissionTerm) - - - - - - - Is guarantee required - - - The submitted information must include a financial commitment to be used in case of default. - -Additional Information: -See the additional information provided in the definition of the 'Guarantee Description' element. - -WG Approval 21/07/20 - - (epo:SubmissionTerm) - - - - - - - Has guarantee description - - - Information on the financial commitment required from the economic operator. - -Additional Information: -1. This information may include the amount and the way of delivering of the guarantee -2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. -3. Usual modalities are bonds, cheques, loans, other. - -WG Approval 21/07/20 - (epo:SubmissionTerm) - - - - - - - Has submission u r l - - - -Additional Information: -This corresponds to the eForms BT-18 Submission URL. - -This corresponds in eForms to BT-509 Organisation eDelivery Gateway. (epo:SubmissionTerm) - - - - - - - Has non electronic submission description - - - Textual explanation of how non-electronic information is to be presented. - -WG Approval 21/07/2020 - - (epo:SubmissionTerm) - - - - - - - Has receipt preliminary market consultation deadline - - - - - - - Is advanced electronic signature required - - - Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. - - - -The submitted information is required to be signed electronically. - -Additional Information: - -Signature can be defined as "data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. -For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. - -WG Approval 21/07/2020 - (epo:SubmissionTerm) - - - - - - - Has receipt participation request deadline - - - - - - - Is multiple tender submission allowed - - - Tenderers may submit more than one competing tenders. - -WG Approval 10/10/2019 - - (epo:SubmissionTerm) - - - - - - - Has receipt tender deadline - - - - - - - Has late submission information description - - - A narrative text explaining the content of the economic operator information that can be submitted late. - -Additional Information -This does not apply to requests for clarifications. - (epo:SubmissionTerm) - - - - - - - Has e ordering - - - Electronic means will be used for requesting and purchasing in the post-award process. - -WG Approval 12/09/2019 - - (epo:ContractTerm) - - - - - - - Has e payment - - - Electronic means must be used for paying. -WG Approval 09/11/2021 - (epo:ContractTerm) - - - - - - - Has options - - - The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid). (epo:ContractTerm) - - - - - - - Has e invoicing - - - Electronic means will be used for invoicing in the post-award process. - -Additional Information: -This attribute is used for standard form mappings. - -WG Approval 12/09/2019 - (epo:ContractTerm) - - - - - - - Is renewal indicator - - - Indicates whether the contract is subject to a renewal clause. -WG Approval 09/11/2021 (epo:ContractTerm) - - - - - - - Has maximum number of renewals - - - The maximum number of times the contract can be renewed. - -Additional Information - -By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. -For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. - -PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. - (epo:ContractTerm) - - - - - - - Has options description - - - The motivation and details about additional purchases that the buyer may undertake while the contract is valid. - -WG Approval 09/04/2019 (epo:ContractTerm) - - - - - - - Has renewal description - - - Any other information about the renewal(s). - -WG approval 16/04/2019 (epo:ContractTerm) - - - - - - - Has payment arrangement - - - Information about financial clauses that will govern some economic aspects of the execution of the contract. - -Additional Information: These clauses usually refer to financial and payment provisions. - -This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. - -WG Pending of discussion with eForms (epo:ContractTerm) - - - - - - - Has legal form requirement - - - The legal form to be taken by a Contractor. - -Additional Information: -Generally, this is defined to cover the case where an Organisation Group is involved. -Note that the codelist provided at national level should be used. (epo:ContractTerm) - - - - - - - Has place of performance additional information - - - Further details on the location of the execution of the contract. - -WG Approval 30/07/2019 (epo:ContractTerm) - - - - - - - Has performance conditions - - - The particular conditions and additional information related to the execution of the contract. - -Additional Information: - -For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. - -WG approval 15-01-2019 (epo:ContractTerm) - - - - - - - Is jury decision binding - - - Indicates whether the procuring entity is bound to apply the decision of the jury. (epo:DesignContestRegimeTerm) - - - - - - - Has participation payment - - - Details on payments to participants -WG Approval 09/11/2021 (epo:DesignContestRegimeTerm) - - - - - - - Has followup contract - - - Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. - -WG Approval 29/08/2019 (epo:DesignContestRegimeTerm) - - - - - - - Has followup contract information - - - Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). - -WG Approval 03/09/2019 (epo:DesignContestRegimeTerm) - - - - - - - Has maximum participants number - - - The maximum number of participants in the framework agreement. - -Additional Information: -Maximum number of tenderers who may be awarded a contract within the framework agreement. - -The number is a positive integer. - -This corresponds in eForms to BT-113 Framework Maximum Participants Number. - -WG Approval 2019-02-05 (epo:FrameworkAgreementTerm) - - - - - - - Has buyer category description - - - A classification of buyers participating in a framework agreement. - -Additional Information: -Buyers that can use the Framework Agreement not mentioned by name. - -For example, the classification "all hospitals in the Tuscany region" is used instead of naming each individual buyer. - -This corresponds in eForms to BT-111 Framework Buyer Categories. - -WG Approval 2019-05-06 (epo:FrameworkAgreementTerm) - - - - - - - Has duration extension justification - - - The explanation of the reason why the framework agreement has an extended duration. - -Additional Information: -This corresponds in eForms to BT-109 Framework Duration Justification. -The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. - -Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. - -WG Approval 26/09/2019 (epo:FrameworkAgreementTerm) - - - - - - - Has maximum number of candidates - - - Maximum number of candidates to be invited for the second stage of the procedure. - -WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) - - - - - - - Has successive reduction - - - The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. - -Additional information: -This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. -WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) - - - - - - - Has minimum number of candidates - - - Minimum number of candidates to be invited for the second stage of the procedure. - -WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) - - - - - - - Has estimated invitation to tender date - - - The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. - -Additional Information: -This corresponds in eForms to BT-130 Dispatch Invitation Tender. - -WG Approval 01/10/2019 (epo:MultipleStageProcedureTerm) - - - - - - - Has no negotiation necessary - - - The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. - -Additional information: -See Article 29(4) of Directive 2014/24/EU. - (epo:MultipleStageProcedureTerm) - - - - - - - Has estimated invitation to express interest date - - - The estimated date of dispatch of the invitations to confirm interest. - -Additional Information: -This corresponds in eForms to BT-631 Dispatch Invitation Interest. (epo:MultipleStageProcedureTerm) - - - - - - - Has qualification system renewal description - - - - - - - Has prize rank - - - The position of the prize (e.g. first place, second place) in a design contest list of prizes. - -WG Approval 29/08/2019 - (epo:Prize) - - - - - - - Has maximum share - - - The maximum proportion of something to be distributed. - -Additional Information: -In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. - -WG Approval 17/09/2019 - - (epo:SubcontractTerm) - - - - - - - Has minimum share - - - The minimum proportion of something to be distributed. - -Additional Information: -In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. - -WG Approval 17/09/2019 (epo:SubcontractTerm) - - - - - - - Has subcontracting involved - - - List of Subcontractors and the subject matter they cover are required. - -Additional Information: -The tenderer will ned to supply this information in the tender. - -WG Approval 28/02/2019 (epo:SubcontractTerm) - - - - - - - Has minimum subcontractors proposed obligation - - - The minimum percentage of the contract value that the contractor must subcontract. - -Additional information: -This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - -WG Approval 09/11/2021 (epo:SubcontractTerm) - - - - - - - Has subcontractors proposed above obligation - - - The maximum percentage of the contract value that the contractor must subcontract. - -Additional information: -This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - -WG Approval 09/11/2021 (epo:SubcontractTerm) - - - - - - - Has award criteria evaluation formula - - - The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. - -Additional Information: -This corresponds in eForms to BT-543 Award Criteria Complicated. (epo:AwardEvaluationTerm) - - - - - - - Has overall quality award criteria ponderation - - - The weighting given to quality. - -Additional Information: -This weighting covers usually all quality criteria against price or cost criteria. (epo:AwardEvaluationTerm) - - - - - - - Has overall price award criteria ponderation - - - The weighting given to price. - -Additional Information: -This weighting covers usually all price criteria against cost or quality criteria. (epo:AwardEvaluationTerm) - - - - - - - Has award criteria order justification - - - The justification for only indicating the award criteria's order of importance, not their weighing. - -Additional Information: -This corresponds in eForms to BT-733 Award Criteria Order Justification. (epo:AwardEvaluationTerm) - - - - - - - Has overall cost award criteria ponderation - - - The weighting given to cost. - -Additional Information: -This weighting covers usually all cost criteria against price or quality criteria. (epo:AwardEvaluationTerm) - - - - - - - Has threshold value - - - The cut-off level for a given concept. - -Additional Information: -This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold). (cccev:Constraint) - - - - - - - Bias - - - Parameter used to adjust the evaluation of the Criterion. - -Additional Information: -The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the "presence of local preferences distorting international specialisation and resource allocation". When quantified, this systematic error can be removed. (cccev:Criterion) - - - - Weight - - - Relative importance of the Criterion. - -Additional Information: -The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1. (cccev:Criterion) - - - - Weighting consideration description - - - Explanation of how the weighting of a Criterion is to be used. - -Additional Information: -This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process. (cccev:Criterion) - - - - Pref label - - - The preferred lexical label for a resource, in a given language. - -WG approval 30/05/2023 - - (cccev:InformationConcept) The preferred lexical label for a resource, in a given language. - -WG approval 30/05/2023 (cccev:Requirement) - - - - Has award criteria stated in procurement documents - - - - - - - Has fixed value - - - This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed. (epo:AwardCriterion) - - - - - - - Describes objective participation rules - - - - - - - Describes verification method - - - - - - - Indicates performing staff information requirement - - - - - - - Has formula - - - The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. - -Additional Information: -This corresponds in eForms to BT-543. (epo:ProcurementCriterion) - - - - - - - Describes profession relevant law - - - - - - - Has service reserved to particular profession - - - - - - - Describes profession - - - - - - - Has qualification condition - - - - - - - Has condition verification method - - - - - - - Has selection criteria stated in procurement documents - - - - - - - Describes minimum level of standards - - - - - - - Is used for candidate restriction - - - The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. - -Additional Information: -This property is only used if a maximum number of candidates was foreseen in the procedure. -This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite (epo:SelectionCriterion) - - - - - - - Has total vehicles - - - The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information - -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 - (epo:GreenProcurement) - - - - - - - Has zero emission vehicles - - - The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information - -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 - (epo:GreenProcurement) - - - - - - - Has clean vehicles - - - The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 - (epo:GreenProcurement) - - - - - - - Has non accessibility criterion justification - - - Reason for not applying accessibility criteria. - -Additional information: -This corresponds in eForma to BT-755 Accessibility Justification. - -WG Approval 05/03/2019 (epo:StrategicProcurement) - - - - - - - Has strategic procurement description - - - Self-explanatory text about a concept. - (epo:StrategicProcurement) - - - - - - - Is to be relaunched - - - Indicator of whether the procurement object is to be relaunched. - -Additional information: -This can be instantiated in the post award phase. - -This corresponds in eForms to BT-634 Procurement Relaunch. - -WG Approval: 18/01/2022 - (epo:ProcurementProcessInformation) - - - - - - - Is competition terminated - - - No further contracts will be awarded in this procedure. - -Additional Information: -This can be instantiated in the post award phase. - -PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. - -This corresponds in eForms to BT-756 PIN Competition Termination. (epo:ProcurementProcessInformation) - - - - - - - Is d p s terminated - - - End of the Dynamic Purchase System (DPS). - -Additional Information: This property can be used in the contract award notice even if no contracts are awarded. - -WG Approval 22/11/2019 - (epo:ProcurementProcessInformation) - - - - - - - Has calculation method - - - Formula for obtaining values. - -Additional Information: -The possible values are monetary values, ranking scores, criterion weighting. - -WG Approval 25/05/2018 (epo:ConcessionEstimate) - - - - - - - Has estimated percentage - - - The estimated proportion foreseen to be subcontracted. - -WG Approval 07/01/2020 (epo:SubcontractingEstimate) - - - - - - - Has subject matter - - - Description of the share of the contract that is to be subcontracted. - -Additional infromation: -This can be an aggregate of several subcontracts. - -WG Approval 09/11/2021 (epo:SubcontractingEstimate) - - - - - - - Has non awarded contract title - - - The title the contract would have had if it had been awarded. - -Additional information: - -This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. - -WG agreement: 06/09/2022 (epo:LotAwardDecision) - - - - - - - Has non awarded contract number - - - The number the contract would have had if it had been awarded. - -Additional information: - -This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. - -WG agreement: 06/09/2022 - (epo:LotAwardDecision) - - - - - - - Has award rank - - - The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. - -Additional Information: -This corresponds in eForms to BT-171 Tender Rank. - (epo:TenderAwardOutcome) - - - - - - - Has review irregularity count - - - The number of requests for a given irregularity. - -Additional information: -This attribute corresponds in eForms to BT-635 Buyer Review Requests Count. (epo:ReviewIrregularitySummary) - - - - - - - Has total number of complainants - - - The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. - -Additional information: -This attribute corresponds in eForms to BT-712 Buyer Review Complainants - -WG Approval 11/04/2019 (epo:ReviewRequestSummary) - - - - - - - Has e e a received tenders - - - The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. - -WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) - - - - - - - Has received participation requests - - - The amount of applications to participate from economic operators. - -WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) - - - - - - - Has non e e a received tenders - - - The amount of tenders received from economic operators in non-EEA countries. - -WG Approval 12/12/2019 15:20:36 (epo:SubmissionStatisticalInformation) - - - - - - - Has s m e received tenders - - - The amount of tenders received from micro, small and medium-sized enterprises. - -<u>Additional Information:</u> - -See Commission Recommendation 2003/361/EC. -The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. - -WG Approval 05/03/2020 - (epo:SubmissionStatisticalInformation) - - - - - - - Has received micro tenders - - - The amount of tenders received from a micro enterprise. - -<u>Additional Information:</u> - -See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation) - - - - - - - Has received small tenders - - - Tenders from small enterprise. - -<u>Additional Information:</u> - -See Commission Recommendation 2003/361/EC. - - (epo:SubmissionStatisticalInformation) - - - - - - - Has medium tender per lots - - - Tenders from medium-sized enterprise. - -<u>Additional Information:</u> - -See Commission Recommendation 2003/361/EC. - (epo:SubmissionStatisticalInformation) - - - - - - - Has received tenders - - - The total amount of tenders received. - -WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) - - - - - - - Has inadmissible tenders - - - Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. - -<u>Additional Information: </u> -Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. - -WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) - - - - - - - Has abnormally low tenders - - - Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. - -Additional Information -The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. - -WG Approval 28/07/2020 - - (epo:SubmissionStatisticalInformation) - - - - - - - Has non e u received tenders - - - The amount of tenders received from economic operators in non-EU countries. - (epo:SubmissionStatisticalInformation) - - - - - - - Has unverified tenders - - - Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). - -WG Approval 28/07/2020 - (epo:SubmissionStatisticalInformation) - - - - - - - Has electronic tenders - - - Electronic Tender Lots received. - -WG Approval 28/07/2020 - (epo:SubmissionStatisticalInformation) - - - - - - - Has e u received tenders - - - The amount of tenders received from economic operators in other EU countries other than the country of the buyer. (epo:SubmissionStatisticalInformation) - - - - - - - Has other countries received tenders - - - - - - - Has estimated total subcontracts - - - The estimated amount of work to be subcontracted in the contract resulting from the lot. -WG Approval 09/11/2021 (epo:SubmissionStatisticalInformation) - - - - - - - Has number of tenderers invited - - - Number of economic operators invited to tender. - -Additional Information -This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. - -WG Approval 01/12/2020 - - (epo:SubmissionStatisticalInformation) - - - - - - - Has payment value discrepancy justification - - - - - - - Has electronic submission - - - Transmission of tenders is possible by electronic means of communication. (epo:Tender) - - - - - - - Is variant - - - Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. - -Additional Information: - -The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. -The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. - -WG Approval 29/05/2019 - - (epo:Tender) - - - - - - - Has o j s issue number - - - - - - - Has o j s type - - - - - - - Has long title - - - - - - - Has notice publication number - - - - - - - Has form number - - - - - - - Has e forms subtype - - - - - - - Is e u institution - - - - - - - Has e sender dispatch date - - - The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. - -Additional Information: -Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. - -WG approval 20/06/2023 (epo:Notice) - - - - - - - Has publication date - - - Date of formal public issuance of the document. - -WG approval 20/06/2023 (epo:Document) - - - - - - - Has reception date - - - Notes: Date when a record is acknowledged by an organisation. - -WG Approval 12/05/2020 (epo:Document) - - - - - - - Has dispatch date - - - Date of transmission of a record to an organisation. - -WG Approval 12/05/2020 (epo:Document) - - - - - - - Issued - - - Date of formal issuance of the resource. - -Additional information: -This is generally used for modules other than eNotice. -The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. -Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. - -WG approval 26/01/2023 (epo:Document) - - - - Has access u r l - - - Location where the resource can be accessed. - -WG approval 07/04/2022 (epo:Document) - - - - - - - Has version - - - A number that identifies a specific state of a document. - -WG approval: 18/11/2021 - (epo:Document) - - - - - - - Has award decision date - - - The official date of the award decision. - -Additional Information: -This corresponds in eForms to BT-1451 Winner Decision Date. - -WG Approval 09/01/2020 - (epo:AwardDecision) - - - - - - - Has additional non award justification - - - Further justification for the non award . - -Additional information: -This is generally used when the non award reason code is set to "Other". - -WG: 18/01/2022 (epo:AwardDecision) - - - - - - - Has u r l - - - The identifier of a resource. - -Additional Information - -For example: - -1. The URL of the system from where to access the procurement documents; -2. The URL of the system for the submission of tender documents; -3. The URL of the system from where to download a tool to communicate with the Buyer; -4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) -5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; - -WG Approval 30/09/2019 (epo:Fund) - - - - - - - Has contract conclusion date - - - The date the contract was signed by the last signatory party. - -<u>Additional Information:</u> -In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. -This concept is not to be confused with the date of completion/end of the contract. - -This corresponds in eForms to BT-145 Contract Conclusion Date. - -WG Approval 09/01/2020 (epo:Contract) - - - - - - - Has entry into force date - - - The date on which the contract enters into force. - -Additional information: - -This is generally the date on which the fulfillment of the contract begins. - -This corresponds in eForms to - -WG approval 05/11/2019 (epo:Contract) - - - - - - - Has decision date - - - The date of the review decision. - -Additional information: -This attribute corresponds to the BT-787 Review Date in eForms. - (epo:ReviewDecision) - - - - - - - Has element reference - - - Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ReviewObject) Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementChangeDescription) Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. - (epo:ElementModificationDescription) - - - - - - - Has review u r l - - - The internet address of the documents concerning the review instance. - -Additional information: -This attribute corresponds in eForms to BT-794 Review URL. - (epo:ReviewObject) - - - - - - - Has number of review requests - - - The number of requests the buyer received to review any of its decisions. (epo:ReviewRequest) - - - - - - - Is withdrawn - - - The review request was withdrawn. - -Additional information: -This attribute corresponds in eForms to BT-796 Review Request Withdrawn. (epo:ReviewRequest) - - - - - - - Has withdrawal date - - - The date and time when the request for review was withdrawn. - -Additional information: -This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date. (epo:ReviewRequest) - - - - - - - Has withdrawal reason - - - The explanation for withdrawing the request for review. - -Additional information: -This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons (epo:ReviewRequest) - - - - - - - Has request date - - - The date when the review request was submitted. - -Additional information: -This attribute corresponds to the BT-787 Review Date in eForms. - (epo:ReviewRequest) - - - - - - - Has previous version of element reference - - - Reference to the class instance in the previous version of the notice, which was changed. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. - (epo:ElementChangeDescription) - - - - - - - Has change description - - - Explanatory text about the instance of the concept. - -WG Approval 30/09/2019 (epo:ElementChangeDescription) - - - - - - - Has change reason description - - - Explanatory text about why the element is altered. - -Additional information: -This corresponds in eForms to BT-762 Change Reason Description. (epo:ElementChangeDescription) - - - - - - - Is procurement document changed - - - One or more procurement documents have been changed. - -Additional information: -This corresponds in eForms to BT-718 Change Procurement Documents - -WG Approval 05/11/2019 (epo:ElementChangeDescription) - - - - - - - Has procurement document change date - - - The date and time of the change. - -Additional information: -This corresponds in eForms to BT-719 Change Procurement Documents Date - -WG Approval 5/11/2019 - (epo:ElementChangeDescription) - - - - - - - Has instance reference - - - The URI of a given class that is being referred to. (epo:ElementConfidentialityDescription) - - - - - - - Has property reference - - - The URI of a given attribute (property) that is being referred to. (epo:ElementConfidentialityDescription) - - - - - - - Has accessibility date - - - The date at which unpublished data shall be published. - -WG Approval 11/06/2020 (epo:ElementConfidentialityDescription) - - - - - - - Has confidentiality justification - - - A narrative explanation of why data is not published. - -Additional Information: -This element is generally used when the non-publication-justification code chosen is "other". - -WG Approval 09/11/2021 - (epo:ElementConfidentialityDescription) - - - - - - - Has modification description - - - An explanatory text about this context. - -Additional Information - -This corresponds in Standard forms to Field VII.2.1 in F20 -This corresponds in eForms to BT-202 . - -WG Approval 5/11/2019 (epo:ElementModificationDescription) - - - - - - - Has modification reason description - - - An explanation about the reasons for using the concept. - -Additional Information -This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. - -This corresponds in eForms to BT-201 . - -WG Approval 5/11/2019 (epo:ElementModificationDescription) - - - - - - - Has preferred publication date - - - The date the buyer would like to have the record made publicly available. - -Additional Information: -This corresponds in eForms to BT-738 Notice Publication Date Preferred. - -WG Approval 12/05/2020 (epo:PublicationProvision) - - - - - - - Notation - - - The literal identifying an entity, like a person or an object. (adms:Identifier) - - - - Schema agency - - - The name of the agency that issued the identifier. (adms:Identifier) - - - - Has scheme - - - The name of the identification scheme. (adms:Identifier) - - - - - - - Has scheme version - - - The version of the identification scheme. (adms:Identifier) - - - - - - - Has amount value - - - The numeric value of the amount, including decimals. (epo:MonetaryValue) - - - - - - - Has currency code list agency i d - - - Identifier of the agency that maintains the currency code list used. -WG approval 13/04/2021 (epo:MonetaryValue) - - - - - - - Has currency code list agency name - - - Name of the agency that maintains the currency code list used. -WG approval 13/04/2021 (epo:MonetaryValue) - - - - - - - Has currency code list i d - - - Concept scheme URI used for the currency code list. -WG approval 13/04/2021 (epo:MonetaryValue) - - - - - - - Has beginning - - - The date and time on which this period begins. (epo:Period) - - - - - - - Has end - - - The date and time at which this period ends. (epo:Period) - - - - - - - Has quantity value - - - The numeric value of the quantity, including decimals. (epo:Quantity) - - - - - - - Has unit description - - - A narrative explanation defining the units of items being counted - -Additional information: This could be for example individual items or pack or two. - -WG Approval 09/11/2021 (epo:Quantity) - - - - - - - Numeric duration - - - Value of a temporal extent expressed as a number. (epo:SpecificDuration) - - diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM-core.ttl b/implementation/demo_ontology/owl_ontology/demo_ontology_CM-core.ttl deleted file mode 100644 index bf4864a..0000000 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM-core.ttl +++ /dev/null @@ -1,5860 +0,0 @@ -@prefix : . -@prefix adms: . -@prefix at-voc: . -@prefix bibo: . -@prefix cc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix locn: . -@prefix org: . -@prefix owl: . -@prefix person: . -@prefix rdf: . -@prefix rdfs: . -@prefix skos: . -@prefix time: . -@prefix vann: . -@prefix xsd: . - -:AccessTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm, - :ProcedureSpecificTerm ; - skos:definition """Conditions and stipulations about where and how to access the Procurement Documents. - -WG Approval 09/03/2021 - -"""@en ; - skos:prefLabel "Access term"@en . - -:AcquiringCentralPurchasingBody a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :CentralPurchasingBody ; - skos:definition """Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. -Additional Information: -In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. - -WG approval 05/08/2021 -"""@en ; - skos:prefLabel "Acquiring central purchasing body"@en . - -:AdHocChannel a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf cccev:Channel ; - skos:definition """Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. - -Additional Information: - -This corresponds in eForms to BT-724 Tool Atypical. - - -WG Acceptance 10/01/2023 -"""@en ; - skos:prefLabel "Ad hoc channel"@en . - -:AwardCriteriaSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriteriaSummary ; - skos:prefLabel "Award criteria summary"@en . - -:AwardCriterion a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriterion ; - skos:definition """Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. - -WG approval 05/11/2018"""@en ; - skos:prefLabel "Award criterion"@en . - -:AwardEvaluationTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :EvaluationTerm ; - skos:definition "Conditions and stipulations defining particularities of the evaluation of Award Criteria."@en ; - skos:prefLabel "Award evaluation term"@en . - -:Awarder a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent that signs the Award Decision."@en ; - skos:prefLabel "Awarder"@en . - -:AwardingCentralPurchasingBody a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :CentralPurchasingBody ; - skos:definition """Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. -Additional Information: -In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. - -WG approval 05/08/2021 -"""@en ; - skos:prefLabel "Awarding central purchasing body"@en . - -:BudgetProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A role of an agent whose Budget is used to pay for the Contract."@en ; - skos:prefLabel "Budget provider"@en . - -:Business a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf org:Organization ; - skos:definition """A private law company registered in a national registry. - -WG Approval 28/04/2020 - -"""@en ; - skos:prefLabel "Business"@en . - -:Candidate a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition """The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. - -WG approval 30/05/2023"""@en ; - skos:prefLabel "Candidate"@en . - -:CatalogueProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition """A Role of an Agent compiling and supplying a Catalogue. - -Additional Information: - -The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. - -WG Approval 28/01/2021 -"""@en ; - skos:prefLabel "Catalogue provider"@en . - -:CatalogueReceiver a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition """A Role of an Agent processing a Catalogue. - -Additional Information: -The Catalogue Receiver may not only receive it but also validate it, process it, etc. - -The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. - -WG Approval 28/01/2021"""@en ; - skos:prefLabel "Catalogue receiver"@en . - -:ConcessionContract a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Contract ; - skos:definition """A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. - -WG Approval 24/05/2022"""@en ; - skos:prefLabel "Concession contract"@en . - -:ConcessionEstimate a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Estimate ; - skos:prefLabel "Concession estimate"@en . - -:ContractLotCompletionInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextualProjection ; - skos:definition "Information related to a given Lot at the end of the procurement."@en ; - skos:prefLabel "Contract lot completion information"@en . - -:ContractModification a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :NoticeDescription ; - skos:definition "An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer."@en ; - skos:prefLabel "Contract modification"@en . - -:ContractTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContractSpecificTerm ; - skos:definition """Conditions and stipulations defining particularities of the Post Award Phase. - -(WG approval 23/11/2018) -"""@en ; - skos:prefLabel "Contract term"@en . - -:Contractor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition """The Role of an Agent that has signed a Contract with a Buyer. - -WG approval 08/11/2022"""@en ; - skos:prefLabel "Contractor"@en . - -:DesignContestRegimeTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition """Conditions and stipulations defining particularities of a Design Contest. - -WG approval: 04-02-2021"""@en ; - skos:prefLabel "Design contest regime term"@en . - -:DirectAwardTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcedureSpecificTerm ; - skos:definition """Conditions and stipulations defining particularities of the award of a Contract without prior publication. - -Addtional Information: - -Direct award may refer to a previous Procedure and/or specific Lot(s). - -It may also refer to other justified situations whereby there is no previous Procedure. - -See Directive 2014/24/EU Article 32. - -WG Approval 22/11/2019 - - -"""@en ; - skos:prefLabel "Direct award term"@en . - -:DirectContract a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Contract ; - skos:prefLabel "Direct contract"@en . - -:DynamicPurchaseSystemTechnique a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Technique ; - skos:definition """A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. - -WG approval 23/05/2023"""@en ; - skos:prefLabel "Dynamic purchase system technique"@en . - -:DynamicPurchasingSystem a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. - -WG approval 23/05/2023 -"""@en ; - skos:prefLabel "Dynamic purchasing system"@en . - -:EAuctionTechnique a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Technique ; - skos:definition """A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. - -Additional Information: -This corresponds in eForms to BT-767 Electronic Auction . - -WG approval 20/07/2018"""@en ; - skos:prefLabel "E auction technique"@en . - -:EconomicStandingSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :SelectionCriteriaSummary ; - skos:prefLabel "Economic standing summary"@en . - -:ElectronicSignature a owl:Class ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Electronic signature"@en . - -:ElementChangeDescription a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ElementDescription ; - skos:definition "Information about a specific field to be changed with regard to a previous Notice."@en ; - skos:prefLabel "Element change description"@en . - -:ElementConfidentialityDescription a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ElementDescription ; - skos:definition """Information about a specific field not intended for publication. - -Additional Information: -In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided. -"""@en ; - skos:prefLabel "Element confidentiality description"@en . - -:ElementModificationDescription a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ElementDescription ; - skos:definition "Information about a specific field to be changed with regard to the Modification Of a Contract."@en ; - skos:prefLabel "Element modification description"@en . - -:EmploymentInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AuxiliaryParty ; - skos:definition "A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions."@en ; - skos:prefLabel "Employment information provider"@en . - -:EnvironmentalProtectionInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AuxiliaryParty ; - skos:definition "A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection."@en ; - skos:prefLabel "Environmental protection information provider"@en . - -:ExclusionGround a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :QualificationCriterion ; - skos:definition """Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. - -Additional Information: -This corresponds in eForms to BG-701 Exclusion Grounds. - -WG approval 31/10/2018"""@en ; - skos:prefLabel "Exclusion ground"@en . - -:ExclusionGroundsSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :QualificationCriteriaSummary ; - skos:prefLabel "Exclusion grounds summary"@en . - -:ExpressionOfInterest a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. -WG approval 13/04/2021"""@en ; - skos:prefLabel "Expression of interest"@en . - -:FrameworkAgreement a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Contract ; - skos:definition """An agreement between one or more Contracting Authorities and one or more Economic Operators. - -Additional Information: -When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. - -WG approval 18/05/2021"""@en ; - skos:prefLabel "Framework agreement"@en . - -:FrameworkAgreementTechnique a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Technique ; - skos:definition """Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. - -WG approval 18/05/2021"""@en ; - skos:prefLabel "Framework agreement technique"@en . - -:FrameworkAgreementTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm, - :ProcedureSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities in a Framework Agreement."@en ; - skos:prefLabel "Framework agreement term"@en . - -:Fund a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """A financial resource used to support the Procurement. - -Additional Information: - -In the context of EU, Funds can be divided into programmes, actions and projects. - -Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). - -Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. - -WG Approved 14/05/2019 - - - - -"""@en ; - skos:prefLabel "Fund"@en . - -:GreenProcurement a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StrategicProcurement ; - skos:definition """Approach whereby Buyers seek to procure with a reduced Environmental Impact. - -Additional Information: - -The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. - -Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf -An instance of the class GreenProcurement is represented in eForms with the code "env-imp" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf"""@en ; - skos:prefLabel "Green procurement"@en . - -:IndefiniteDuration a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Duration ; - skos:prefLabel "Indefinite duration"@en . - -:InnovativeProcurement a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StrategicProcurement ; - skos:definition """An instance of the class InnovativeProcurement is represented in eForms with the code "inn-pur" defined in the codelist Strategic-Procurement. - -Research (21/01/2020): - -Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. - -Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions - -Additional Information: -‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; -See: Directive 2014/24 -Articles: 2, 26 (3), 31, 67 (2.a) - -Question: -Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?"""@en ; - skos:prefLabel "Innovative procurement"@en . - -:JuryMember a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:prefLabel "Jury member"@en . - -:LeadBuyer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Buyer ; - skos:definition """A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. - -WG agreement: 2022-11-22"""@en ; - skos:prefLabel "Lead buyer"@en . - -:Lot a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementObject ; - skos:definition """A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. - -WG approval 12/09/2018"""@en ; - skos:prefLabel "Lot"@en . - -:LotAwardDecision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AwardDecision ; - skos:definition "Result concerning the Lot attributed by the Awarder."@en ; - skos:prefLabel "Lot award decision"@en . - -:LotGroup a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """Combination of several Lots to conduct comparative assessment of the Tenders. - -Additional Information: - -The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. - -Pending of discussion with eForms - - - -Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined."""@en ; - skos:prefLabel "Lot group"@en . - -:LotGroupAwardInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextualProjection ; - skos:definition "Award information related to a given Group of Lots."@en ; - skos:prefLabel "Lot group award information"@en . - -:Mediator a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition """A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. -WG approval 20/04/2021"""@en ; - skos:prefLabel "Mediator"@en . - -:MiniCompetition a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. - -Additional Information: -It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. -It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. - -WG approval 30/05/2023"""@en ; - skos:prefLabel "Mini competition"@en . - -:MiniCompetitionAwardDecision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AwardDecision ; - skos:definition """Result concerning the Mini-Competition attributed by the Awarder. -"""@en ; - skos:prefLabel "Mini competition award decision"@en . - -:MonetaryValue a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """A number of monetary units specified using a given unit of currency. - -Additional information: -In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. - -WG approval 13/04/2021 -"""@en ; - skos:prefLabel "Monetary value"@en . - -:MultipleStageProcedureTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition """Conditions and stipulations defining particularities of Procedures carried out in several steps -Additional Information: -Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. -WG Approval 15/04/2021"""@en ; - skos:prefLabel "Multiple stage procedure term"@en . - -:NonDisclosureAgreementTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition "Conditions and stipulations"@en ; - skos:prefLabel "Non disclosure agreement term"@en . - -:Notice a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """Document published by the Buyer about market opportunities and results. - -WG Approval 23/05/2019 -"""@en ; - skos:prefLabel "Notice"@en . - -:NoticeAwardInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextSpecificDescription ; - skos:definition "Information about an Award Notice."@en ; - skos:prefLabel "Notice award information"@en . - -:NoticeChange a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :NoticeDescription ; - skos:definition "Information about a corrigendum in a Notice."@en ; - skos:prefLabel "Notice change"@en . - -:Offer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. - -Additional information: -A quotation is considered to be an Offer in the eProcurement Ontology. - -WG approval 09/02/2023"""@en ; - skos:prefLabel "Offer"@en . - -:OfferIssuer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition """The Role of an Agent that distributes an Offer. - -WG approval 09/02/2023"""@en ; - skos:prefLabel "Offer issuer"@en . - -:OfflineAccessProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for providing offline access to the Procurement Documents."@en ; - skos:prefLabel "Offline access provider"@en . - -:OpeningTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition """Conditions and stipulations defining particularities of the opening of Tenders. -Additional Information: -The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. -WG Approval 15/04/2021"""@en ; - skos:prefLabel "Opening term"@en . - -:OrganisationGroup a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf org:Organization ; - skos:definition """Agreed collaboration of several Organisations. -Additional Information: -This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. -WG approval 15/04/2021"""@en ; - skos:prefLabel "Organisation group"@en . - -:OriginatorRequest a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """Document in which the Originator describes his needs. - -WG approval 09/02/2023"""@en ; - skos:prefLabel "Originator request"@en . - -:OtherEntity a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria."@en ; - skos:prefLabel "Other entity"@en . - -:ParticipationCondition a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriterion ; - skos:definition """Criterion that describes a Requirement to take part in a procurement. - -WG approval 30/05/2023"""@en ; - skos:prefLabel "Participation condition"@en . - -:ParticipationConditionsSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriteriaSummary ; - skos:prefLabel "Participation conditions summary"@en . - -:ParticipationRequestProcessor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for processing Requests To Participate."@en ; - skos:prefLabel "Participation request processor"@en . - -:ParticipationRequestReceiver a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for receiving Requests To Participate."@en ; - skos:prefLabel "Participation request receiver"@en . - -:ParticipationRequestTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of requesting participation in a Procedure."@en ; - skos:prefLabel "Participation request term"@en . - -:PaymentExecutor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for executing the Payment."@en ; - skos:prefLabel "Payment executor"@en . - -:Period a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """A time interval or a Duration. - -(WG approval 28/04/2020) -"""@en ; - skos:prefLabel "Period"@en . - -:PlannedProcurementPart a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementElement ; - skos:definition """A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. - -WG Approval 20/06/2019"""@en ; - skos:prefLabel "Planned procurement part"@en . - -:Prize a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """A reward given in a Contest. -WG approval: 15/04/2021"""@en ; - skos:prefLabel "Prize"@en . - -:Procedure a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementObject ; - skos:definition """A legally defined set of administrative activities conducted to conclude one or more Contracts. - -Additional Information -The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). - -WG Approval 20/08/2019 -"""@en ; - skos:prefLabel "Procedure"@en . - -:ProcedureTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcedureSpecificTerm ; - skos:definition """Conditions and stipulations defining particularities of the Procedure. - -(WG approval 23/11/2018)"""@en ; - skos:prefLabel "Procedure term"@en . - -:ProcessPlanningTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Term ; - skos:definition "Conditions and stipulations defining particularities of the unfolding of the Procurement Process."@en ; - skos:prefLabel "Process planning term"@en . - -:ProcurementDocument a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """Document produced or referred to by the Buyer to describe or determine elements of the Procurement. - -Additional information: - -Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. - -Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. - -Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. - -WG Approval 23/05/2019 17:08:30"""@en ; - skos:prefLabel "Procurement document"@en . - -:ProcurementProcedureInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for providing additional information about the Procurement Procedure."@en ; - skos:prefLabel "Procurement procedure information provider"@en . - -:ProcurementProcessInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextSpecificDescription ; - skos:definition "Information about the temporal unfolding or succession of Procurement Objects."@en ; - skos:prefLabel "Procurement process information"@en . - -:ProcurementServiceProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition """Role of a public or private body which offers ancillary purchasing activities on the market. - -Additional information - -"Ancillary Purchasing Activities" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: -(a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; -(b) advice on the conduct or design of public Procurement Procedures; -(c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; - -Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. - -This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. - -WG Approval 24/03/2020 -"""@en ; - skos:prefLabel "Procurement service provider"@en . - -:ProfessionalSuitabilitySummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :SelectionCriteriaSummary ; - skos:prefLabel "Professional suitability summary"@en . - -:Project a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A collaborative enterprise that is carefully planned to achieve a particular aim."@en ; - skos:prefLabel "Project"@en . - -:PublicationProvision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :NoticeDescription ; - skos:definition """Information about fields not intended for publication. - - -Additional Information: -The non-published information may become available at a later date and may differ from one element to another within a given Document. - -Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. - -WG Approval 16/05/2019 - - - - -"""@en ; - skos:prefLabel "Publication provision"@en . - -:PurchaseContract a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Contract ; - skos:definition "A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract."@en ; - skos:prefLabel "Purchase contract"@en . - -:Purpose a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """The description of the objectives related to a Procurement. - -Additional information: - -The description of the objectives includes the Subject Matter and Quantities. - - -The quantification of the objectives related to a procurement. - -To be re-reviewed by the WG the soonest. - -(WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) - -The old definition read as follows: - -The description of the objectives related to a procurement. - -(WG approval 05/12/2018) -"""@en ; - skos:prefLabel "Purpose"@en . - -:Quantity a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """A counted number of non-monetary units possibly including fractions. -"""@en ; - skos:prefLabel "Quantity"@en . - -:RequestForClarification a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """A demand for elucidation of received information. -Additional Information: -Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. -WG approval 20/04/2021"""@en ; - skos:prefLabel "Request for clarification"@en . - -:RequestForParticipation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """Application of an Economic Operator to be included in a Procurement Procedure. -WG approval: 20/04/2021"""@en ; - skos:prefLabel "Request for participation"@en . - -:ReviewDecision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ReviewObject ; - skos:definition "Information about Review Decisions. "@en ; - skos:prefLabel "Review decision"@en . - -:ReviewIrregularitySummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StatisticalInformation ; - skos:definition """Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). - -Additional information: -This class corresponds in eForms to BG-613 Buyer Review Requests. - - -"""@en ; - skos:prefLabel "Review irregularity summary"@en . - -:ReviewProcedureInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent who is providing more information on the time limits for review Procedures."@en ; - skos:prefLabel "Review procedure information provider"@en . - -:ReviewRequest a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ReviewObject ; - skos:definition "Information about requests to review procedures. "@en ; - skos:prefLabel "Review request"@en . - -:ReviewRequestSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StatisticalInformation ; - skos:definition """Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. - -Additional information: -This class corresponds in eForms to BG-612 Buyer Review Summary."""@en ; - skos:prefLabel "Review request summary"@en . - -:ReviewRequester a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition """Role of an Agent who requests the review of a (Procurement) Procedure. - -WG Approval 23/10/2021"""@en ; - skos:prefLabel "Review requester"@en . - -:Reviewer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition """Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. -Additional Information: -Any Organisation or Person may request a review of a Procurement Procedure. -WG approval: 20/04/2021"""@en ; - skos:prefLabel "Reviewer"@en . - -:SecurityClearanceTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition """Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. - -Additional information: -This corresponds in eForms to BT-578, BT-78, BT-732 . - -WG approval 20/06/2023 -"""@en ; - skos:prefLabel "Security clearance term"@en . - -:SelectedCandidateList a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """Record of Candidates admitted to take part in award phases of procurements. - -WG approval 30/05/2023"""@en ; - skos:prefLabel "Selected candidate list"@en . - -:SelectionCriterion a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :QualificationCriterion ; - skos:definition """Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. - -Additional Information: -Selection criteria may relate to: -(a) suitability to pursue the professional activity; -(b) economic and financial standing; -(c) technical and professional ability - -WG approval 31/10/2018"""@en ; - skos:prefLabel "Selection criterion"@en . - -:SelectionEvaluationTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :EvaluationTerm ; - skos:definition "Conditions and stipulations defining particularities of the evaluation of Selection Criteria."@en ; - skos:prefLabel "Selection evaluation term"@en . - -:SocialProcurement a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StrategicProcurement ; - skos:definition """An instance of the class SocialProcurement is represented in eForms with the code "soc-obj" defined in the codelist Strategic-Procurement. - - -Research (21/01/2020): -Socially Responsible Public Procurement (SRPP): - -‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. -Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en -See Article 18 and Annex X Directive 2014/24."""@en ; - skos:prefLabel "Social procurement"@en . - -:SpecificDuration a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Duration ; - skos:prefLabel "Specific duration"@en . - -:SubcontractTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContractSpecificTerm ; - skos:definition "A concept to describe the main information regarding the share of parts of the Contract to third parties."@en ; - skos:prefLabel "Subcontract term"@en . - -:SubcontractingEstimate a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Estimate ; - skos:definition "Information on the approximation of the foreseen Subcontracting."@en ; - skos:prefLabel "Subcontracting estimate"@en . - -:Subcontractor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition """A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. -Additional information -For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. - -At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. - -When modelling ESPD we well analyze whether we need or not a Role named "relied upon". - -WG approval 05/08/2021 -"""@en ; - skos:prefLabel "Subcontractor"@en . - -:SubmissionStatisticalInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StatisticalInformation ; - skos:definition """Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. - -WG approval 30/05/2023"""@en ; - skos:prefLabel "Submission statistical information"@en . - -:SubmissionTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm, - :ProcedureSpecificTerm ; - skos:definition """Conditions and stipulations defining particularities of submitting Documents to the Buyer. - -Additional Information: -These Documents can be Tenders, Request To Participate and expressions of interest. - -WG Approval 14/07/2020"""@en ; - skos:prefLabel "Submission term"@en . - -:System a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf foaf:Agent ; - skos:definition """Software application used for performing Procurement activities. - -WG Approval 28/04/2020 - -"""@en ; - skos:prefLabel "System"@en . - -:TaxInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AuxiliaryParty ; - skos:definition "A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes."@en ; - skos:prefLabel "Tax information provider"@en . - -:TechnicalAbilitySummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :SelectionCriteriaSummary ; - skos:prefLabel "Technical ability summary"@en . - -:Tender a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. - -(WG approval 03/05/2022) - - -"""@en ; - skos:prefLabel "Tender"@en . - -:TenderAwardOutcome a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextualProjection ; - skos:definition "Result concerning the Tender attributed by the Awarder."@en ; - skos:prefLabel "Tender award outcome"@en . - -:TenderGroup a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """Specific Offer in response to a Lot Group. - -Additional Information: -This class is generally used to provide the Monetary Value in response to a Lot Group. -"""@en ; - skos:prefLabel "Tender group"@en . - -:TenderProcessor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for processing Tenders."@en ; - skos:prefLabel "Tender processor"@en . - -:TenderReceiver a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for receiving Tenders."@en ; - skos:prefLabel "Tender receiver"@en . - -:Tenderer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition """A Role of an Agent that has submitted a Tender. - -Additional Information: -A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. -WG approval 05/08/2021"""@en ; - skos:prefLabel "Tenderer"@en . - -:Winner a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition """A Role of an Agent to whom a Lot is awarded. -WG approval 05/08/2021 (revised 26/10/2021)"""@en ; - skos:prefLabel "Winner"@en . - -:actsOnBehalfOf a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Represents. (epo:ProcurementServiceProvider -> epo:Buyer (+epo:actsOnBehalfOf)) "@en ; - skos:prefLabel "Acts on behalf of"@en . - -:agreedByBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Agreed by buyer"@en . - -:announcesAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces award decision"@en . - -:announcesCompletionOfContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces completion of contract"@en . - -:announcesContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces contract"@en . - -:announcesExclusionGround a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces exclusion ground"@en . - -:announcesLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces lot"@en . - -:announcesLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces lot group"@en . - -:announcesLotGroupAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces lot group award information"@en . - -:announcesNonPublishedElement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Relation indicating which parts of a document are not published. - -Additional Information: -For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement)) """@en ; - skos:prefLabel "Announces non published element"@en . - -:announcesNoticeAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces notice award information"@en . - -:announcesPlannedProcurementPart a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces planned procurement part"@en . - -:announcesProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces procedure"@en . - -:announcesReviewObject a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces review object"@en . - -:announcesRole a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces role"@en . - -:announcesSelectionCriteria a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces selection criteria"@en . - -:answersAwardCriteria a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Answers award criteria"@en . - -:answersExclusionGround a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Answers exclusion ground"@en . - -:answersSelectionCriteria a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Answers selection criteria"@en . - -:associatedWith a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The document to which a document is associated. - -WGM 01/03/2022 - (epo:Document -> epo:Document (+epo:associatedWith)) """@en ; - skos:prefLabel "Associated with"@en . - -:bindsBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Provides legal constraint on the Buyer. (epo:Contract -> epo:Buyer (+epo:bindsBuyer)) "@en ; - skos:prefLabel "Binds buyer"@en . - -:bindsContractor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Provides legal constraint on the Contractor. (epo:Contract -> epo:Contractor (+epo:bindsContractor)) "@en ; - skos:prefLabel "Binds contractor"@en . - -:comprisesLotAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Incorporates LotAwardOutcome. (epo:AwardDecision -> epo:LotAwardDecision (+epo:comprisesLotAwardDecision)) "@en ; - skos:prefLabel "Comprises lot award decision"@en . - -:comprisesMiniCompetitionAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Comprises mini competition award decision"@en . - -:comprisesTender a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Incorporates Tender. (epo:TenderGroup -> epo:Tender (+epo:comprisesTender)) "@en ; - skos:prefLabel "Comprises tender"@en . - -:comprisesTenderAwardOutcome a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Incorporates TenderAwardOutcome. (epo:AwardDecision -> epo:TenderAwardOutcome (+epo:comprisesTenderAwardOutcome)) "@en ; - skos:prefLabel "Comprises tender award outcome"@en . - -:concernsContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Concerns contract"@en . - -:concernsLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relates to Lot. (epo:ProcurementProcessInformation -> epo:Lot (+epo:concernsLot)) Relates to Lot. (epo:LotAwardDecision -> epo:Lot (+epo:concernsLot)) "@en ; - skos:prefLabel "Concerns lot"@en . - -:concernsMiniCompetition a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Concerns mini competition"@en . - -:concernsOriginatorRequest a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Concerns originator request"@en . - -:concernsProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relates to Procedure. (epo:ProcurementProcessInformation -> epo:Procedure (+epo:concernsProcedure)) "@en ; - skos:prefLabel "Concerns procedure"@en . - -:concernsReviewSummaryForLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Relates to Lot review summary. - -Additional information: -This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier. (epo:ReviewRequestSummary -> epo:Lot (+epo:concernsReviewSummaryForLot)) """@en ; - skos:prefLabel "Concerns review summary for lot"@en . - -:concernsTender a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Concerns tender"@en . - -:conformsToLegalBasis a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The Notice was designed in accordance with the given legal basis. - -Additional Information: -This Notice can be used for Procedures which do not have the same legal basis. -This holds for standard forms. (epo:Notice -> at-voc:legal-basis (+epo:conformsToLegalBasis)) """@en ; - skos:prefLabel "Conforms to legal basis"@en . - -:conformsToSpecificLegalBasis a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Conforms to specific legal basis"@en . - -:containsCandidate a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Contains candidate"@en . - -:containsModificationsOf a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ - -Additional information -This relation shall be used between Instances of the SAME type/class. - -The "modifying-instance" can be minimally instantiated, carrying the fields/information that override the fields in the "modified-instance". - -This means that the "modifying-instance" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. - (owl:Thing -> owl:Thing (+epo:containsModificationsOf)) """@en ; - skos:prefLabel "Contains modifications of"@en . - -:contextualisedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The place of the AgentInRole in the procurement is expressed by a ProcurementObject. (epo:AgentInRole -> epo:ProcurementObject (+epo:contextualisedBy)) "@en ; - skos:prefLabel "Contextualised by"@en . - -:definesBudgetProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ProcedureTerm has a BudgetProvider. (epo:ProcedureTerm -> epo:BudgetProvider (+epo:definesBudgetProvider)) "@en ; - skos:prefLabel "Defines budget provider"@en . - -:definesCatalogueProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating an AccessTerm has a CatalogueProvider. (epo:AccessTerm -> epo:CatalogueProvider (+epo:definesCatalogueProvider)) "@en ; - skos:prefLabel "Defines catalogue provider"@en . - -:definesCatalogueReceiver a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating an AccessTerm has a CatalogueReceiver. (epo:AccessTerm -> epo:CatalogueReceiver (+epo:definesCatalogueReceiver)) "@en ; - skos:prefLabel "Defines catalogue receiver"@en . - -:definesContractDuration a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ContractTerm has a Duration. (epo:ContractTerm -> epo:Duration (+epo:definesContractDuration)) "@en ; - skos:prefLabel "Defines contract duration"@en . - -:definesContractPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ContractTerm has a Period. (epo:ContractTerm -> epo:Period (+epo:definesContractPeriod)) "@en ; - skos:prefLabel "Defines contract period"@en . - -:definesInformationProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ProcedureTerm has an information provider. (epo:ProcedureTerm -> epo:AuxiliaryParty (+epo:definesInformationProvider)) "@en ; - skos:prefLabel "Defines information provider"@en . - -:definesLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ProcedureTerm has a LotGroup. (epo:ProcedureTerm -> epo:LotGroup (+epo:definesLotGroup)) "@en ; - skos:prefLabel "Defines lot group"@en . - -:definesMediator a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ProcedureTerm has a Mediator. (epo:ProcedureTerm -> epo:Mediator (+epo:definesMediator)) "@en ; - skos:prefLabel "Defines mediator"@en . - -:definesOfflineAccessProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating an AccessTerm has an OfflineAccessProvider. (epo:AccessTerm -> epo:OfflineAccessProvider (+epo:definesOfflineAccessProvider)) "@en ; - skos:prefLabel "Defines offline access provider"@en . - -:definesOpeningPlace a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The place where the tenders will be publicly opened. - -WG Approval 10-10-2019 (epo:OpeningTerm -> locn:Address (+epo:definesOpeningPlace)) """@en ; - skos:prefLabel "Defines opening place"@en . - -:definesParticipationRequestProcessor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor. (epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor (+epo:definesParticipationRequestProcessor)) "@en ; - skos:prefLabel "Defines participation request processor"@en . - -:definesParticipationRequestReceiver a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver. (epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver (+epo:definesParticipationRequestReceiver)) "@en ; - skos:prefLabel "Defines participation request receiver"@en . - -:definesPaymentExecutor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ContractTerm has a PaymentExecutor. (epo:ContractTerm -> epo:PaymentExecutor (+epo:definesPaymentExecutor)) "@en ; - skos:prefLabel "Defines payment executor"@en . - -:definesPlaceOfPerformance a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Relation indicating the place of performance of a Contract. - -WG approval 21/03/2023 (epo:ContractTerm -> dct:Location (+epo:definesPlaceOfPerformance)) """@en ; - skos:prefLabel "Defines place of performance"@en . - -:definesPrize a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a DesignContestRegimeTerm has a Prize. (epo:DesignContestRegimeTerm -> epo:Prize (+epo:definesPrize)) "@en ; - skos:prefLabel "Defines prize"@en . - -:definesProcurementProcedureInformationProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider. (epo:AccessTerm -> epo:ProcurementProcedureInformationProvider (+epo:definesProcurementProcedureInformationProvider)) "@en ; - skos:prefLabel "Defines procurement procedure information provider"@en . - -:definesSubcontractingTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ContractTerm has a SubcontractingTerm. (epo:ContractTerm -> epo:SubcontractTerm (+epo:definesSubcontractingTerm)) "@en ; - skos:prefLabel "Defines subcontracting term"@en . - -:definesTenderProcessor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a SubmissionTerm has a TenderProcessor. (epo:SubmissionTerm -> epo:TenderProcessor (+epo:definesTenderProcessor)) "@en ; - skos:prefLabel "Defines tender processor"@en . - -:definesTenderReceiver a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a SubmissionTerm has a TenderReceiver. (epo:SubmissionTerm -> epo:TenderReceiver (+epo:definesTenderReceiver)) "@en ; - skos:prefLabel "Defines tender receiver"@en . - -:delegatesAncillaryActivitiesTo a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Entrusts ancillary purchasing activities to ProcurementServiceProvider. - -Additional Information: -Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: - -(a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; - -(b) advice on the conduct or design of public procurement procedures; - -(c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned; (epo:Buyer -> epo:ProcurementServiceProvider (+epo:delegatesAncillaryActivitiesTo)) """@en ; - skos:prefLabel "Delegates ancillary activities to"@en . - -:describesContractModification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes contract modification"@en . - -:describesLotCompletion a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes lot completion"@en . - -:describesLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes lot group"@en . - -:describesMinimumLevelOfStandards a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes minimum level of standards"@en . - -:describesNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes notice"@en . - -:describesObjectiveParticipationRules a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes objective participation rules"@en . - -:describesProfession a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes profession"@en . - -:describesProfessionRelevantLaw a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes profession relevant law"@en . - -:describesResultNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes result notice"@en . - -:describesVerificationMethod a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes verification method"@en . - -:distributesOffer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Distributes offer"@en . - -:exposesChannel a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Exposes channel"@en . - -:exposesInvoiceeChannel a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Exposes invoicee channel"@en . - -:followsRulesSetBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Follows rules set by"@en . - -:foreseesConcession a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Foresees concession"@en . - -:foreseesContractSpecificTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Foresees contract specific term"@en . - -:foreseesProcurementObject a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Relation indicating the instance of a Procurement Object that is planned. - -Additional Information: -The properties of the Procurement Object that is foreseen should be read as foreseen properties. -For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. -For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy. (epo:PlannedProcurementPart -> epo:ProcurementObject (+epo:foreseesProcurementObject)) """@en ; - skos:prefLabel "Foresees procurement object"@en . - -:foreseesSubcontracting a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Foresees subcontracting"@en . - -:foreseesTechnique a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Foresees technique"@en . - -:fulfillsRequirement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The requirement to which the concept meets. -WG Approval 09/11/2021 - - (epo:GreenProcurement -> at-voc:environmental-impact (+epo:fulfillsRequirement)) The requirement to which the concept meets. -WG Approval 09/11/2021 - - (epo:InnovativeProcurement -> at-voc:innovative-acquisition (+epo:fulfillsRequirement)) The requirement to which the concept meets. -WG Approval 09/11/2021 - - (epo:SocialProcurement -> at-voc:social-objective (+epo:fulfillsRequirement)) """@en ; - skos:prefLabel "Fulfills requirement"@en . - -:fulfillsStrategicProcurement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Fulfills strategic procurement"@en . - -:hasAbnormallyLowTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. - -Additional Information -The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. - -WG Approval 28/07/2020 - - (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has abnormally low tenders"@en . - -:hasAcceleratedProcedureJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The reasons why the procedure is accelerated. - -Additional Information: -A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. - -WG Approval 09/06/2020 - - (epo:Procedure) """@en ; - skos:prefLabel "Has accelerated procedure justification"@en . - -:hasAccessURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Location where the resource can be accessed. - -WG approval 07/04/2022 (epo:Document) """@en ; - skos:prefLabel "Has access u r l"@en . - -:hasAccessibilityDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The date at which unpublished data shall be published. - -WG Approval 11/06/2020 (epo:ElementConfidentialityDescription) """@en ; - skos:prefLabel "Has accessibility date"@en . - -:hasActivityDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. - -However, in eForms there is the code "other" to cover undefined activities. For mapping to this eForms feature one could also use this property. - (epo:Buyer) """@en ; - skos:prefLabel "Has activity description"@en . - -:hasAdditionalClassification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has additional classification"@en . - -:hasAdditionalContractNature a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional type of acquisition taken into consideration in the contract. - -WG Approval 11/06/2020 - - (epo:ContractTerm -> at-voc:contract-nature (+epo:hasAdditionalContractNature)) """@en ; - skos:prefLabel "Has additional contract nature"@en . - -:hasAdditionalInformation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 (epo:ProcurementObject) Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 (epo:Notice) Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 - (epo:ElementChangeDescription) """@en ; - skos:prefLabel "Has additional information"@en . - -:hasAdditionalInformationDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The time limit for requesting further information. - -Additional information: - -This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. - -This corresponds in eForms to BT-13 Additional Information Deadline. - -WG Approval 09/06/2020 - (epo:AccessTerm) """@en ; - skos:prefLabel "Has additional information deadline"@en . - -:hasAdditionalNonAwardJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Further justification for the non award . - -Additional information: -This is generally used when the non award reason code is set to "Other". - -WG: 18/01/2022 (epo:AwardDecision) """@en ; - skos:prefLabel "Has additional non award justification"@en . - -:hasAddressURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has address u r l"@en . - -:hasAlias a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Acronym or alternative name of the Agent. -WG Approval 25/03/2021 (foaf:Agent) """@en ; - skos:prefLabel "Has alias"@en . - -:hasAllegedIrregularityType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This relation corresponds in eForms to BT-791 Review Irregularity Type - (epo:ReviewRequest -> at-voc:irregularity-type (+epo:hasAllegedIrregularityType)) """@en ; - skos:prefLabel "Has alleged irregularity type"@en . - -:hasAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The predetermined monetary value charged in addition to the price. - -WG approval 26/07/2022 (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) The predetermined monetary value charged in addition to the price. - -WG approval 26/07/2022 - - (epo-ord:TaxInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) """@en ; - skos:prefLabel "Has amount"@en . - -:hasAmountDueForPayment a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has amount due for payment"@en . - -:hasAmountValue a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The numeric value of the amount, including decimals. (epo:MonetaryValue) "@en ; - skos:prefLabel "Has amount value"@en . - -:hasApproximateFrameworkAgreementValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has approximate framework agreement value"@en . - -:hasAssociatedDocument a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has associated document"@en . - -:hasAwardCriteriaEvaluationFormula a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. - -Additional Information: -This corresponds in eForms to BT-543 Award Criteria Complicated. (epo:AwardEvaluationTerm) """@en ; - skos:prefLabel "Has award criteria evaluation formula"@en . - -:hasAwardCriteriaOrderJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The justification for only indicating the award criteria's order of importance, not their weighing. - -Additional Information: -This corresponds in eForms to BT-733 Award Criteria Order Justification. (epo:AwardEvaluationTerm) """@en ; - skos:prefLabel "Has award criteria order justification"@en . - -:hasAwardCriteriaStatedInProcurementDocuments a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has award criteria stated in procurement documents"@en . - -:hasAwardCriterionType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Category of award criterion. - - (epo:AwardCriterion -> at-voc:award-criterion-type (+epo:hasAwardCriterionType)) """@en ; - skos:prefLabel "Has award criterion type"@en . - -:hasAwardDateScheduled a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Planned date for the award decision. -WG Approval 09/11/2021 (epo:ProcessPlanningTerm) """@en ; - skos:prefLabel "Has award date scheduled"@en . - -:hasAwardDecisionDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The official date of the award decision. - -Additional Information: -This corresponds in eForms to BT-1451 Winner Decision Date. - -WG Approval 09/01/2020 - (epo:AwardDecision) """@en ; - skos:prefLabel "Has award decision date"@en . - -:hasAwardRank a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. - -Additional Information: -This corresponds in eForms to BT-171 Tender Rank. - (epo:TenderAwardOutcome) """@en ; - skos:prefLabel "Has award rank"@en . - -:hasAwardStatus a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Indicates whether the lot is awarded, not awarded or still open. -WG Approval 03/12/2019 - - (epo:AwardDecision -> at-voc:winner-selection-status (+epo:hasAwardStatus)) """@en ; - skos:prefLabel "Has award status"@en . - -:hasAwardedEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The estimated value that can be spent as provided by the Award Decision. - -Additional Information: -This property is used for framework agreements and dynamic purchasing systems. -Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. - -WG Approval 12/12/2019 - - (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasAwardedEstimatedValue)) """@en ; - skos:prefLabel "Has awarded estimated value"@en . - -:hasAwardedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The value of the procurement provided by the Award Decision. - -Additional Information: -Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. - -In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. - -WG Approval 10/12/2019 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasAwardedValue)) """@en ; - skos:prefLabel "Has awarded value"@en . - -:hasBargainPrice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. - -WG approval 23/05/2023 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasBargainPrice)) """@en ; - skos:prefLabel "Has bargain price"@en . - -:hasBaseQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The quantity at which the net monetary value applies. (epo-cat:Price -> epo:Quantity (+epo-cat:hasBaseQuantity)) "@en ; - skos:prefLabel "Has base quantity"@en . - -:hasBatchID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The identifier assigned to a specific batch of the produced Item. -WG Approval 16/05/2023 - (epo-cat:Batch -> adms:Identifier (+epo:hasBatchID)) """@en ; - skos:prefLabel "Has batch i d"@en . - -:hasBeginning a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date and time on which this period begins. (epo:Period) "@en ; - skos:prefLabel "Has beginning"@en . - -:hasBeneficialOwner a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. -Additional Information: -This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. -WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf)) """@en ; - skos:prefLabel "Has beneficial owner"@en . - -:hasBroadPlaceOfPerformance a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Geopolitical zone where the contract can be executed. - -Additional Information - -Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). - (epo:ContractTerm -> at-voc:other-place-service (+epo:hasBroadPlaceOfPerformance)) """@en ; - skos:prefLabel "Has broad place of performance"@en . - -:hasBusinessSize a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The category of the business depending on number of employees and turnover. - -Additional information: - -See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. - -WG Approval 28/05/2020 - - (epo:Business -> at-voc:economic-operator-size (+epo:hasBusinessSize)) """@en ; - skos:prefLabel "Has business size"@en . - -:hasBuyerCategoryDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A classification of buyers participating in a framework agreement. - -Additional Information: -Buyers that can use the Framework Agreement not mentioned by name. - -For example, the classification "all hospitals in the Tuscany region" is used instead of naming each individual buyer. - -This corresponds in eForms to BT-111 Framework Buyer Categories. - -WG Approval 2019-05-06 (epo:FrameworkAgreementTerm) """@en ; - skos:prefLabel "Has buyer category description"@en . - -:hasBuyerItemID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """This refers to the identifier for the specific instance of the produced concept. -WG Approval 16/05/2023 - (epo-cat:Item -> adms:Identifier (+epo:hasBuyerItemID)) """@en ; - skos:prefLabel "Has buyer item i d"@en . - -:hasBuyerLegalType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A category that indicates the right of an Organisation to play the role of a buyer. - -Additional Information: -The category also effects the rules that the buyer has to abide to within the public procurement procedure. -WG 07/09/2021 - - (org:Organization -> at-voc:buyer-legal-type (+epo:hasBuyerLegalType)) """@en ; - skos:prefLabel "Has buyer legal type"@en . - -:hasBuyerLegalTypeDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Self-explanatory text about the Buyer Legal Type. - -Additional information: -This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. - -WG Approval 06/09/2022 (org:Organization) """@en ; - skos:prefLabel "Has buyer legal type description"@en . - -:hasBuyerProfile a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Website address where the buyer publishes information on its procurement procedures and general information. - -Additional information: -This corresponds in the eForms to BT-508 Buyer Profile URL. - -WG approval 04/05/2018 - (epo:Buyer) """@en ; - skos:prefLabel "Has buyer profile"@en . - -:hasCalculationMethod a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Formula for obtaining values. - -Additional Information: -The possible values are monetary values, ranking scores, criterion weighting. - -WG Approval 25/05/2018 (epo:ConcessionEstimate) """@en ; - skos:prefLabel "Has calculation method"@en . - -:hasCandidateList a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has candidate list"@en . - -:hasCarrierConsignmentID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has carrier consignment i d"@en . - -:hasCatalogueLineValidity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has catalogue line validity"@en . - -:hasCertification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Relation to the proof of conformance. - -WG approval 30/05/2023 (foaf:Person -> epo-cat:Certificate (+epo:hasCertification)) Relation to the proof of conformance. - -WG approval 30/05/2023 (org:Organization -> epo-cat:Certificate (+epo:hasCertification)) """@en ; - skos:prefLabel "Has certification"@en . - -:hasChangeDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Explanatory text about the instance of the concept. - -WG Approval 30/09/2019 (epo:ElementChangeDescription) """@en ; - skos:prefLabel "Has change description"@en . - -:hasChangeJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Code explaining the change. - -WG Approval 5/11/2019 - (epo:ElementChangeDescription -> at-voc:change-corrig-justification (+epo:hasChangeJustification)) """@en ; - skos:prefLabel "Has change justification"@en . - -:hasChangeReasonDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Explanatory text about why the element is altered. - -Additional information: -This corresponds in eForms to BT-762 Change Reason Description. (epo:ElementChangeDescription) """@en ; - skos:prefLabel "Has change reason description"@en . - -:hasChargeableWeight a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has chargeable weight"@en . - -:hasCleanVehicles a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 - (epo:GreenProcurement) """@en ; - skos:prefLabel "Has clean vehicles"@en . - -:hasConcessionEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has concession estimated value"@en . - -:hasConditionVerificationMethod a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has condition verification method"@en . - -:hasConfidentialityJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A narrative explanation of why data is not published. - -Additional Information: -This element is generally used when the non-publication-justification code chosen is "other". - -WG Approval 09/11/2021 - (epo:ElementConfidentialityDescription) """@en ; - skos:prefLabel "Has confidentiality justification"@en . - -:hasConfirmedIrregularityType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewDecision -> at-voc:irregularity-type (+epo:hasConfirmedIrregularityType)) """@en ; - skos:prefLabel "Has confirmed irregularity type"@en . - -:hasConsigneeConsignmentID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has consignee consignment i d"@en . - -:hasConsignmentDeclaredStatisticsValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has consignment declared statistics value"@en . - -:hasConsignmentFreeOnBoardValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has consignment free on board value"@en . - -:hasConsignmentInvoiceValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Declared amount of the Consignment. - -Additional Information: - -This is a logistics information needed for logistics, security measures, customs check, etc. (epo-ful:Consignment -> epo:MonetaryValue (+epo-ful:hasConsignmentInvoiceValue)) """@en ; - skos:prefLabel "Has consignment invoice value"@en . - -:hasConstraint a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf cccev:hasRequirement ; - skos:prefLabel "Has constraint"@en . - -:hasContactName a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A short text by which a contact is known or referred to. - -WG Approval: 27/01/2022 (cpov:ContactPoint) """@en ; - skos:prefLabel "Has contact name"@en . - -:hasContactPointInRole a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has contact point in role"@en . - -:hasContractAmendment a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has contract amendment"@en . - -:hasContractConclusionDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The date the contract was signed by the last signatory party. - -Additional Information: -In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. -This concept is not to be confused with the date of completion/end of the contract. - -This corresponds in eForms to BT-145 Contract Conclusion Date. - -WG Approval 09/01/2020 (epo:Contract) """@en ; - skos:prefLabel "Has contract conclusion date"@en . - -:hasContractNatureType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Subject of the acquisition. - -WG Approval 11/06/2020 - - (epo:ContractTerm -> at-voc:contract-nature (+epo:hasContractNatureType)) """@en ; - skos:prefLabel "Has contract nature type"@en . - -:hasContractValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has contract value"@en . - -:hasCountryCode a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ - (locn:Address -> at-voc:country (+epo:hasCountryCode)) """@en ; - skos:prefLabel "Has country code"@en . - -:hasCountryOfBirth a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The country in which the Person was born. - (cpv:Person -> at-voc:country (+epo:hasCountryOfBirth)) """@en ; - skos:prefLabel "Has country of birth"@en . - -:hasCountryOfOrigin a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has country of origin"@en . - -:hasCrossBorderLaw a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The applicable law when buyers from different countries procure together within one procurement procedure. - -Additional Information: -This corresponds in eForms to BT-09 Cross Border Law. (epo:ProcedureTerm) """@en ; - skos:prefLabel "Has cross border law"@en . - -:hasCurrency a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The identifier of the currency as in the standard code list used. - - (epo:MonetaryValue -> at-voc:currency (+epo:hasCurrency)) """@en ; - skos:prefLabel "Has currency"@en . - -:hasCurrencyCodeListAgencyID a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Identifier of the agency that maintains the currency code list used. -WG approval 13/04/2021 (epo:MonetaryValue) """@en ; - skos:prefLabel "Has currency code list agency i d"@en . - -:hasCurrencyCodeListAgencyName a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Name of the agency that maintains the currency code list used. -WG approval 13/04/2021 (epo:MonetaryValue) """@en ; - skos:prefLabel "Has currency code list agency name"@en . - -:hasCurrencyCodeListID a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Concept scheme URI used for the currency code list. -WG approval 13/04/2021 (epo:MonetaryValue) """@en ; - skos:prefLabel "Has currency code list i d"@en . - -:hasDPSScope a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Explanation as to whether a dps is used and by whom. - -Additional Information: -This corresponds in eForms to BT-766 Dynamic Purchasing System. -WG Approval 09/11/2021 - (epo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage (+epo:hasDPSScope)) """@en ; - skos:prefLabel "Has d p s scope"@en . - -:hasDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The deadline by which the security clearance must be submitted to the buyer. - -WG Approval 12/09/2019 - - (epo:SecurityClearanceTerm) """@en ; - skos:prefLabel "Has deadline"@en . - -:hasDecisionDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The date of the review decision. - -Additional information: -This attribute corresponds to the BT-787 Review Date in eForms. - (epo:ReviewDecision) """@en ; - skos:prefLabel "Has decision date"@en . - -:hasDeclaredStatisticalValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has declared statistical value"@en . - -:hasDeliveryLocation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has delivery location"@en . - -:hasDeliveryPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has delivery period"@en . - -:hasDespatchedQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Quantity despatched for delivered. (epo-ful:DespatchLine -> epo:Quantity (+epo-ful:hasDespatchedQuantity)) "@en ; - skos:prefLabel "Has despatched quantity"@en . - -:hasDirectAwardJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. - -WG Approval 28/05/2020 - (epo:DirectAwardTerm -> at-voc:direct-award-justification (+epo:hasDirectAwardJustification)) """@en ; - skos:prefLabel "Has direct award justification"@en . - -:hasDispatchDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Date of transmission of a record to an organisation. - -WG Approval 12/05/2020 (epo:Document) """@en ; - skos:prefLabel "Has dispatch date"@en . - -:hasDocumentRestrictionJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """An explanation about the reasons why some procurement documents are restricted. - -Additional Information: -This corresponds in eForms to BT-707 Documents Restricted Justification. - -WG Approval 09/03/2021 - (epo:AccessTerm -> at-voc:communication-justification (+epo:hasDocumentRestrictionJustification)) """@en ; - skos:prefLabel "Has document restriction justification"@en . - -:hasDocumentStatus a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "https://test-docs.peppol.eu/logistics/transport-execution/codelist/DocumentStatusCode/ (epo:Document -> at-voc-new:document-status (+epo:hasDocumentStatus)) "@en ; - skos:prefLabel "Has document status"@en . - -:hasDocumentType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ - -https://docs.peppol.eu/poacc/upgrade-3/2022-Q4/codelist/UNCL1001_T01/ (epo:Document -> at-voc-new:document-type (+epo:hasDocumentType)) """@en ; - skos:prefLabel "Has document type"@en . - -:hasDurationExtensionJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The explanation of the reason why the framework agreement has an extended duration. - -Additional Information: -This corresponds in eForms to BT-109 Framework Duration Justification. -The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. - -Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. - -WG Approval 26/09/2019 (epo:FrameworkAgreementTerm) """@en ; - skos:prefLabel "Has duration extension justification"@en . - -:hasEAuctionURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The internet address of the electronic auction. - -Additional Information: - -This corresponds in eForms to BT-123 Electronic Auction URL. (epo:SubmissionTerm) """@en ; - skos:prefLabel "Has e auction u r l"@en . - -:hasECataloguePermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The extent to which electronic catalogues may be used in tenders. - -WG Approval 03/10/2019 - (epo:SubmissionTerm -> at-voc:permission (+epo:hasECataloguePermission)) """@en ; - skos:prefLabel "Has e catalogue permission"@en . - -:hasEEAReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. - -WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has e e a received tenders"@en . - -:hasEFormsSubtype a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has e forms subtype"@en . - -:hasEInvoicing a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Electronic means will be used for invoicing in the post-award process. - -Additional Information: -This attribute is used for standard form mappings. - -WG Approval 12/09/2019 - (epo:ContractTerm) """@en ; - skos:prefLabel "Has e invoicing"@en . - -:hasEInvoicingPermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has e invoicing permission"@en . - -:hasEOrdering a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Electronic means will be used for requesting and purchasing in the post-award process. - -WG Approval 12/09/2019 - - (epo:ContractTerm) """@en ; - skos:prefLabel "Has e ordering"@en . - -:hasEPayment a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Electronic means must be used for paying. -WG Approval 09/11/2021 - (epo:ContractTerm) """@en ; - skos:prefLabel "Has e payment"@en . - -:hasESenderDispatchDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. - -Additional Information: -Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. - -WG approval 20/06/2023 (epo:Notice) """@en ; - skos:prefLabel "Has e sender dispatch date"@en . - -:hasESubmissionPermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The requirements as to what extent electronic submission is allowed. - -WG Approval 03/10/2019 - - (epo:SubmissionTerm -> at-voc:permission (+epo:hasESubmissionPermission)) """@en ; - skos:prefLabel "Has e submission permission"@en . - -:hasEUReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The amount of tenders received from economic operators in other EU countries other than the country of the buyer. (epo:SubmissionStatisticalInformation) "@en ; - skos:prefLabel "Has e u received tenders"@en . - -:hasElectronicDigest a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has electronic digest"@en . - -:hasElectronicSignature a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has electronic signature"@en . - -:hasElectronicSubmission a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Transmission of tenders is possible by electronic means of communication. (epo:Tender) "@en ; - skos:prefLabel "Has electronic submission"@en . - -:hasElectronicTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Electronic Tender Lots received. - -WG Approval 28/07/2020 - (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has electronic tenders"@en . - -:hasElementChange a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :hasElementDescription ; - skos:prefLabel "Has element change"@en . - -:hasElementConfidentiality a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :hasElementDescription ; - skos:definition "Relation indication that the publication provision applies to a given field of a document. (epo:PublicationProvision -> epo:ElementConfidentialityDescription (+epo:hasElementConfidentiality)) "@en ; - skos:prefLabel "Has element confidentiality"@en . - -:hasElementModification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :hasElementDescription ; - skos:prefLabel "Has element modification"@en . - -:hasElementReference a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ReviewObject) Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementChangeDescription) Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. - (epo:ElementModificationDescription) """@en ; - skos:prefLabel "Has element reference"@en . - -:hasEnd a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date and time at which this period ends. (epo:Period) "@en ; - skos:prefLabel "Has end"@en . - -:hasEndpointIdentifier a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has endpoint identifier"@en . - -:hasEntryIntoForceDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The date on which the contract enters into force. - -Additional information: - -This is generally the date on which the fulfillment of the contract begins. - -This corresponds in eForms to - -WG approval 05/11/2019 (epo:Contract) """@en ; - skos:prefLabel "Has entry into force date"@en . - -:hasEstimatedBuyerConcessionRevenue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. - -Additional Information: -For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. - -This corresponds to BT-160 in eForms. - -WG Approval 07/01/2020 (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedBuyerConcessionRevenue)) """@en ; - skos:prefLabel "Has estimated buyer concession revenue"@en . - -:hasEstimatedContractNoticePublicationDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Foreseen date for publication of Contract Notice. - -Additional information: -This corresponds in eForms BT-127 Future Notice. - - (epo:ProcessPlanningTerm) """@en ; - skos:prefLabel "Has estimated contract notice publication date"@en . - -:hasEstimatedDeliveryPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has estimated delivery period"@en . - -:hasEstimatedDuration a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Relation indicating a Contract has an estimated Duration. - -Additional Information - -When the Lot uses a Technique the contract estimated duration applies to the Technique. - (epo:Contract -> epo:Duration (+epo:hasEstimatedDuration)) """@en ; - skos:prefLabel "Has estimated duration"@en . - -:hasEstimatedInvitationToExpressInterestDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The estimated date of dispatch of the invitations to confirm interest. - -Additional Information: -This corresponds in eForms to BT-631 Dispatch Invitation Interest. (epo:MultipleStageProcedureTerm) """@en ; - skos:prefLabel "Has estimated invitation to express interest date"@en . - -:hasEstimatedInvitationToTenderDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. - -Additional Information: -This corresponds in eForms to BT-130 Dispatch Invitation Tender. - -WG Approval 01/10/2019 (epo:MultipleStageProcedureTerm) """@en ; - skos:prefLabel "Has estimated invitation to tender date"@en . - -:hasEstimatedPercentage a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The estimated proportion foreseen to be subcontracted. - -WG Approval 07/01/2020 (epo:SubcontractingEstimate) """@en ; - skos:prefLabel "Has estimated percentage"@en . - -:hasEstimatedTenderInvitationDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The planned date for the dispatch of the invitations to submit tenders. -WG Approval 09/11/2021 (epo:ProcessPlanningTerm) """@en ; - skos:prefLabel "Has estimated tender invitation date"@en . - -:hasEstimatedTotalSubcontracts a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The estimated amount of work to be subcontracted in the contract resulting from the lot. -WG Approval 09/11/2021 (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has estimated total subcontracts"@en . - -:hasEstimatedUserConcessionRevenue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The estimated revenue coming from the use of the concession. - -Additional Information: -Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. - -This corresponds to BT-162 in eForms. - (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedUserConcessionRevenue)) """@en ; - skos:prefLabel "Has estimated user concession revenue"@en . - -:hasEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A forecast of the value of the procurement before competition. - -Additional Information: -Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. -The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. -See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. - -In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. - -This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). - -WG Approval 05/12/2019 - - (epo:ProcurementElement -> epo:MonetaryValue (+epo:hasEstimatedValue)) """@en ; - skos:prefLabel "Has estimated value"@en . - -:hasEvaluationMember a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has evaluation member"@en . - -:hasExpectedDeliveryTime a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The expected amount of time between the order and delivery of an item. - -WG approval 26/07/2022 (epo-cat:Price -> epo:Duration (+epo-cat:hasExpectedDeliveryTime)) """@en ; - skos:prefLabel "Has expected delivery time"@en . - -:hasExternalSpecification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """URI reference to external item information or specifications, e.g. web address. - (epo-cat:Item -> epo:Document (+epo-cat:hasExternalSpecification)) """@en ; - skos:prefLabel "Has external specification"@en . - -:hasFax a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The fax number used to reach a person or an organisation. (cpov:ContactPoint) "@en ; - skos:prefLabel "Has fax"@en . - -:hasFinancialOfferValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The value offered by the Tenderer for a Lot. - -Additional Information: -This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. - -This corresponds to BT-720 in eForms. (epo:Tender -> epo:MonetaryValue (+epo:hasFinancialOfferValue)) """@en ; - skos:prefLabel "Has financial offer value"@en . - -:hasFixedValue a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed. (epo:AwardCriterion) "@en ; - skos:prefLabel "Has fixed value"@en . - -:hasFixedValueType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The method to interpret the fixed value as pertaining to a total or unit. - -WG Approval 17/09/2019 - - (epo:AwardCriterion -> at-voc:number-fixed (+epo:hasFixedValueType)) """@en ; - skos:prefLabel "Has fixed value type"@en . - -:hasFollowupContract a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. - -WG Approval 29/08/2019 (epo:DesignContestRegimeTerm) """@en ; - skos:prefLabel "Has followup contract"@en . - -:hasFollowupContractInformation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). - -WG Approval 03/09/2019 (epo:DesignContestRegimeTerm) """@en ; - skos:prefLabel "Has followup contract information"@en . - -:hasFormNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has form number"@en . - -:hasFormType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A categorisation of the steps in which the Notice is used. - -WG Approval 12/05/2020 - - (epo:Notice -> at-voc:form-type (+epo:hasFormType)) """@en ; - skos:prefLabel "Has form type"@en . - -:hasFormula a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. - -Additional Information: -This corresponds in eForms to BT-543. (epo:ProcurementCriterion) """@en ; - skos:prefLabel "Has formula"@en . - -:hasFrameworkAgreementEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "This refers to BT-660 in eForms. (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasFrameworkAgreementEstimatedValue)) "@en ; - skos:prefLabel "Has framework agreement estimated value"@en . - -:hasFrameworkAgreementMaximumValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has framework agreement maximum value"@en . - -:hasFrameworkAgreementType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The form of framework agreement used in a procurement procedure. - -Addition information: - -A concept to distinguish the different types of framework agreement, which are: -1. Framework agreement without reopening of competition, -2. Framework agreement with reopening of competition, or -3. Framework agreement partly without reopening of competition. - -WG Approval 19/09/2019 - - (epo:FrameworkAgreementTerm -> at-voc:framework-agreement (+epo:hasFrameworkAgreementType)) """@en ; - skos:prefLabel "Has framework agreement type"@en . - -:hasFreightForwarderConsignmentID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has freight forwarder consignment i d"@en . - -:hasFundProgramme a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has fund programme"@en . - -:hasGrossVolume a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has gross volume"@en . - -:hasGrossWeight a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has gross weight"@en . - -:hasGroupFrameworkAgreementMaximumValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "This corresponds to BT-156 in the eForms. (epo:LotGroupAwardInformation -> epo:MonetaryValue (+epo:hasGroupFrameworkAgreementMaximumValue)) "@en ; - skos:prefLabel "Has group framework agreement maximum value"@en . - -:hasGroupLotEvaluationMethod a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Description of how lots and groups of lots are evaluated against one another in the procedure. - - - - (epo:ProcedureTerm) """@en ; - skos:prefLabel "Has group lot evaluation method"@en . - -:hasGroupType a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Form of collaboration agreement between organisations. - -Additional Information: -This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. - -WG Approval 09/11/2021 (epo:OrganisationGroup) """@en ; - skos:prefLabel "Has group type"@en . - -:hasGuaranteeDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Information on the financial commitment required from the economic operator. - -Additional Information: -1. This information may include the amount and the way of delivering of the guarantee -2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. -3. Usual modalities are bonds, cheques, loans, other. - -WG Approval 21/07/20 - (epo:SubmissionTerm) """@en ; - skos:prefLabel "Has guarantee description"@en . - -:hasHeight a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has height"@en . - -:hasHighestReceivedTenderValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Amount of the Tender with the highest value. - -Additional Information -The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. - - -WG Approval 12/12/2019 - - - (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasHighestReceivedTenderValue)) """@en ; - skos:prefLabel "Has highest received tender value"@en . - -:hasInadmissibleTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. - -Additional Information: -Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. - -WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has inadmissible tenders"@en . - -:hasInstanceReference a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The URI of a given class that is being referred to. (epo:ElementConfidentialityDescription) "@en ; - skos:prefLabel "Has instance reference"@en . - -:hasInternalIdentifier a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has internal identifier"@en . - -:hasInternetAddress a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The main web page used by the instance of the concept. - -WG Approval 01/06/2023 - (org:Organization) The main web page used by the instance of the concept. - -WG Approval 01/06/2023 - - (cpov:ContactPoint) """@en ; - skos:prefLabel "Has internet address"@en . - -:hasIrregularityType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type (epo:ReviewIrregularitySummary -> at-voc:irregularity-type (+epo:hasIrregularityType)) """@en ; - skos:prefLabel "Has irregularity type"@en . - -:hasItemCountryOfOrigin a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The source country of the product or service. - -Additional Information: - -The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. - -WG Approval 07/01/2020 - -The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country (epo:Tender -> at-voc:country (+epo:hasItemCountryOfOrigin)) """@en ; - skos:prefLabel "Has item country of origin"@en . - -:hasItemStandardID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The identifier for the instance of the concept based on a standard scheme. - -Additional information: -For example the GTIN scheme (Global Trade Item Number). - -WG Approval 24/02/2022 - (epo-cat:Item -> adms:Identifier (+epo:hasItemStandardID)) """@en ; - skos:prefLabel "Has item standard i d"@en . - -:hasJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """An explanation about the reasons for using the concept. -WG Approval 5/11/2019 - (epo:DirectAwardTerm) """@en ; - skos:prefLabel "Has justification"@en . - -:hasLanguage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Language in which the submitted information is to be expressed. - -WG Approval 21/07/2020 - - (epo:SubmissionTerm -> at-voc:language (+epo:hasLanguage)) """@en ; - skos:prefLabel "Has language"@en . - -:hasLateSubmissionInformationDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A narrative text explaining the content of the economic operator information that can be submitted late. - -Additional Information -This does not apply to requests for clarifications. - (epo:SubmissionTerm) """@en ; - skos:prefLabel "Has late submission information description"@en . - -:hasLateSubmissionPermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Whether economic operator-related information can be supplemented even after the submission deadline. - -Additional Information -This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. - -WG Approval 21/07/2020 - (epo:SubmissionTerm -> at-voc:missing-info-submission (+epo:hasLateSubmissionPermission)) """@en ; - skos:prefLabel "Has late submission permission"@en . - -:hasLaunchFrameworkAgreementMaximumValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has launch framework agreement maximum value"@en . - -:hasLaunchGroupFrameworkAgreementMaximumValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has launch group framework agreement maximum value"@en . - -:hasLegalBasis a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The legal basis under which the procurement procedure takes place. - -Additional Information: -For example European Directives or Regulations, national laws etc. -The recommended code list is the example for the legal basis at the European level. - -WG 04/04/2023 - - (epo:ProcurementObject -> at-voc:legal-basis (+epo:hasLegalBasis)) """@en ; - skos:prefLabel "Has legal basis"@en . - -:hasLegalBasisDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has legal basis description"@en . - -:hasLegalFormRequirement a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The legal form to be taken by a Contractor. - -Additional Information: -Generally, this is defined to cover the case where an Organisation Group is involved. -Note that the codelist provided at national level should be used. (epo:ContractTerm) """@en ; - skos:prefLabel "Has legal form requirement"@en . - -:hasLegalFormType a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The classification of an Organisation according to legislation. - -Additional Information: -Generally, this is defined for Tenderers who want to submit as an Organisation Group. -Note that the codelist provided at national level should be used. - (org:Organization) """@en ; - skos:prefLabel "Has legal form type"@en . - -:hasLegalIdentifier a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has legal identifier"@en . - -:hasLegalName a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The officially registered name of an organisation. - -WG Approval 10/01/2023 (org:Organization) """@en ; - skos:prefLabel "Has legal name"@en . - -:hasLegalRegime a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has legal regime"@en . - -:hasLength a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has length"@en . - -:hasLoadingLength a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has loading length"@en . - -:hasLongTitle a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has long title"@en . - -:hasLotAwardCombination a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The contracting authority reserves the right to award contracts combining lots or groups of lots. - -Additional Information: -This property contains information about the Lots concerned. -This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 23/08/2022 - (epo:ProcedureTerm) """@en ; - skos:prefLabel "Has lot award combination"@en . - -:hasLotReference a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has lot reference"@en . - -:hasLowestReceivedTenderValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Amount of the Tender with the lowest value. - -Additional Information -The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. - -WG Approval 12/12/2019 - - (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasLowestReceivedTenderValue)) """@en ; - skos:prefLabel "Has lowest received tender value"@en . - -:hasMainActivity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The principal sectoral area in which an organisation operates. - -Additional information: - -The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. - -The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). - -WG Approval 05/05/2020 - - (org:Organization -> at-voc:main-activity (+epo:hasMainActivity)) """@en ; - skos:prefLabel "Has main activity"@en . - -:hasMainActivityDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Self-explanatory text about the Main Activity . - -Additional information: -This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. - -WG Approval 06/09/2022 - (org:Organization) """@en ; - skos:prefLabel "Has main activity description"@en . - -:hasMainClassification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has main classification"@en . - -:hasMainFeature a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Main features of the procedure and information about where the full rules for the procedure can be found. - -Additional Information: -This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds. (epo:Procedure) """@en ; - skos:prefLabel "Has main feature"@en . - -:hasManufacturerID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The manufacturer's identifier for the item. - (epo-cat:Manufacturer -> adms:Identifier (+epo:hasManufacturerID)) """@en ; - skos:prefLabel "Has manufacturer i d"@en . - -:hasManufacturerItemID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """This refers to the general identifier for the concept as defined by the manufacturer. - - -WG Approval 16/05/2023 - - (epo-cat:Item -> adms:Identifier (+epo:hasManufacturerItemID)) """@en ; - skos:prefLabel "Has manufacturer item i d"@en . - -:hasMaximumFrameworkAgreementAwardedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. - -Additional information: - -The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. - -The Framework Agreements in a CAN are to be traced back and added to provide this value. - -This corresponds to the BT-118 in eForms. - -WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasMaximumFrameworkAgreementAwardedValue)) """@en ; - skos:prefLabel "Has maximum framework agreement awarded value"@en . - -:hasMaximumLotSubmissionAllowed a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The total number of lots for which one Tenderer can submit Tenders. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 12/12/2018 - - (epo:ProcedureTerm) """@en ; - skos:prefLabel "Has maximum lot submission allowed"@en . - -:hasMaximumNumberOfCandidates a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Maximum number of candidates to be invited for the second stage of the procedure. - -WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) """@en ; - skos:prefLabel "Has maximum number of candidates"@en . - -:hasMaximumNumberOfLotsToBeAwarded a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The maximum number of lots for which contract(s) can be awarded to one tenderer. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG Approval 22/08/2019 (epo:ProcedureTerm) """@en ; - skos:prefLabel "Has maximum number of lots to be awarded"@en . - -:hasMaximumNumberOfRenewals a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The maximum number of times the contract can be renewed. - -Additional Information - -By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. -For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. - -PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. - (epo:ContractTerm) """@en ; - skos:prefLabel "Has maximum number of renewals"@en . - -:hasMaximumOrderQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The maximum number of orderable units that can be ordered according to details provided in the catalogue line, such as price. - (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMaximumOrderQuantity)) """@en ; - skos:prefLabel "Has maximum order quantity"@en . - -:hasMaximumParticipantsNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The maximum number of participants in the framework agreement. - -Additional Information: -Maximum number of tenderers who may be awarded a contract within the framework agreement. - -The number is a positive integer. - -This corresponds in eForms to BT-113 Framework Maximum Participants Number. - -WG Approval 2019-02-05 (epo:FrameworkAgreementTerm) """@en ; - skos:prefLabel "Has maximum participants number"@en . - -:hasMaximumShare a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The maximum proportion of something to be distributed. - -Additional Information: -In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. - -WG Approval 17/09/2019 - - (epo:SubcontractTerm) """@en ; - skos:prefLabel "Has maximum share"@en . - -:hasMaximumTemperature a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has maximum temperature"@en . - -:hasMediumTenderPerLots a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Tenders from medium-sized enterprise. - -Additional Information: - -See Commission Recommendation 2003/361/EC. - (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has medium tender per lots"@en . - -:hasMember a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has member"@en . - -:hasMinimumNumberOfCandidates a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Minimum number of candidates to be invited for the second stage of the procedure. - -WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) """@en ; - skos:prefLabel "Has minimum number of candidates"@en . - -:hasMinimumQuantityGuaranteedForDelivery a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The minimum quantity of an item that is guaranteed by the seller to be delivered. - - (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMinimumQuantityGuaranteedForDelivery)) """@en ; - skos:prefLabel "Has minimum quantity guaranteed for delivery"@en . - -:hasMinimumShare a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The minimum proportion of something to be distributed. - -Additional Information: -In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. - -WG Approval 17/09/2019 (epo:SubcontractTerm) """@en ; - skos:prefLabel "Has minimum share"@en . - -:hasMinimumSubcontractorsProposedObligation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The minimum percentage of the contract value that the contractor must subcontract. - -Additional information: -This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - -WG Approval 09/11/2021 (epo:SubcontractTerm) """@en ; - skos:prefLabel "Has minimum subcontractors proposed obligation"@en . - -:hasMinimumTemperature a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has minimum temperature"@en . - -:hasModificationDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """An explanatory text about this context. - -Additional Information - -This corresponds in Standard forms to Field VII.2.1 in F20 -This corresponds in eForms to BT-202 . - -WG Approval 5/11/2019 (epo:ElementModificationDescription) """@en ; - skos:prefLabel "Has modification description"@en . - -:hasModificationJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Explanation of why a contract was modified. -WG Approval 09/11/2021 - -The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification - -Additional Information - -This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - -This corresponds in eForms to BT-200. - - (epo:ElementModificationDescription -> at-voc:modification-justification (+epo:hasModificationJustification)) Explanation of why a contract was modified. - -WG Approval 09/11/2021 - -The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification - -Additional Information - -This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - -This corresponds in eForms to BT-200. - - - (epo:AmendedContract -> at-voc:modification-justification (+epo:hasModificationJustification)) """@en ; - skos:prefLabel "Has modification justification"@en . - -:hasModificationReasonDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """An explanation about the reasons for using the concept. - -Additional Information -This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. - -This corresponds in eForms to BT-201 . - -WG Approval 5/11/2019 (epo:ElementModificationDescription) """@en ; - skos:prefLabel "Has modification reason description"@en . - -:hasNationalProcedureRules a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has national procedure rules"@en . - -:hasNationality a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ - (cpv:Person -> at-voc:country (+epo:hasNationality)) """@en ; - skos:prefLabel "Has nationality"@en . - -:hasNetMonetaryValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has net monetary value"@en . - -:hasNetQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The net quantity of the item that is contained in each consumable unit, excluding any packaging materials. - (epo-cat:Item -> epo:Quantity (+epo-cat:hasNetQuantity)) """@en ; - skos:prefLabel "Has net quantity"@en . - -:hasNetVolume a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has net volume"@en . - -:hasNetWeight a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has net weight"@en . - -:hasNoNegotiationNecessary a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. - -Additional information: -See Article 29(4) of Directive 2014/24/EU. - (epo:MultipleStageProcedureTerm) """@en ; - skos:prefLabel "Has no negotiation necessary"@en . - -:hasNonAccessibilityCriterionJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Reason for not applying accessibility criteria. - -Additional information: -This corresponds in eForma to BT-755 Accessibility Justification. - -WG Approval 05/03/2019 (epo:StrategicProcurement) """@en ; - skos:prefLabel "Has non accessibility criterion justification"@en . - -:hasNonAwardJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """On hold; Enumeration. - - - (epo:AwardDecision -> at-voc:non-award-justification (+epo:hasNonAwardJustification)) """@en ; - skos:prefLabel "Has non award justification"@en . - -:hasNonAwardedContractNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The number the contract would have had if it had been awarded. - -Additional information: - -This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. - -WG agreement: 06/09/2022 - (epo:LotAwardDecision) """@en ; - skos:prefLabel "Has non awarded contract number"@en . - -:hasNonAwardedContractTitle a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The title the contract would have had if it had been awarded. - -Additional information: - -This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. - -WG agreement: 06/09/2022 (epo:LotAwardDecision) """@en ; - skos:prefLabel "Has non awarded contract title"@en . - -:hasNonEEAReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The amount of tenders received from economic operators in non-EEA countries. - -WG Approval 12/12/2019 15:20:36 (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has non e e a received tenders"@en . - -:hasNonEUReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The amount of tenders received from economic operators in non-EU countries. - (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has non e u received tenders"@en . - -:hasNonElectronicSubmissionDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Textual explanation of how non-electronic information is to be presented. - -WG Approval 21/07/2020 - - (epo:SubmissionTerm) """@en ; - skos:prefLabel "Has non electronic submission description"@en . - -:hasNonElectronicSubmissionJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ -Reason for not accepting electronic information. - -WG Approval 21/07/2020 - (epo:SubmissionTerm -> at-voc:communication-justification (+epo:hasNonElectronicSubmissionJustification)) """@en ; - skos:prefLabel "Has non electronic submission justification"@en . - -:hasNonPublicationJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The reason why data is not published. -WG Approval 11/06/2020 - - (epo:ElementConfidentialityDescription -> at-voc:non-publication-justification (+epo:hasNonPublicationJustification)) """@en ; - skos:prefLabel "Has non publication justification"@en . - -:hasNoticePublicationNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has notice publication number"@en . - -:hasNoticeType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has notice type"@en . - -:hasNotificationContentType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A categorisation of templates for sets of Procurement information to be conveyed in Notices. - -WG Approval 12/05/2020 (epo:Notice -> epo:notification-phases-content-types (+epo:hasNotificationContentType)) """@en ; - skos:prefLabel "Has notification content type"@en . - -:hasNumberOfReviewRequests a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number of requests the buyer received to review any of its decisions. (epo:ReviewRequest) "@en ; - skos:prefLabel "Has number of review requests"@en . - -:hasNumberOfTenderersInvited a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Number of economic operators invited to tender. - -Additional Information -This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. - -WG Approval 01/12/2020 - - (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has number of tenderers invited"@en . - -:hasNutsCode a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has nuts code"@en . - -:hasOJSIssueNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has o j s issue number"@en . - -:hasOJSType a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has o j s type"@en . - -:hasOfficialLanguage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. - -WG Approval 03/10/2019 - - (epo:Document -> at-voc:language (+epo:hasOfficialLanguage)) """@en ; - skos:prefLabel "Has official language"@en . - -:hasOpeningDateTime a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Date and time for the opening of tenders. - -WG Approval 12/03/2019 - - (epo:OpeningTerm) """@en ; - skos:prefLabel "Has opening date time"@en . - -:hasOpeningDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Further information about the opening of tenders. - -Additional Information -For example, who may participate in the opening and whether any authorization is needed. - -WG Approval 12/03/2019 (epo:OpeningTerm) """@en ; - skos:prefLabel "Has opening description"@en . - -:hasOpeningURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The identifier of the address of the Opening of Tenders. -WG Approval 09/11/2021 (epo:OpeningTerm) """@en ; - skos:prefLabel "Has opening u r l"@en . - -:hasOperatorLicenceID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has operator licence i d"@en . - -:hasOptions a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid). (epo:ContractTerm) "@en ; - skos:prefLabel "Has options"@en . - -:hasOptionsDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The motivation and details about additional purchases that the buyer may undertake while the contract is valid. - -WG Approval 09/04/2019 (epo:ContractTerm) """@en ; - skos:prefLabel "Has options description"@en . - -:hasOrderabableUnitFactorRate a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has orderabable unit factor rate"@en . - -:hasOrganisationUnitName a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The name of a subpart of an organisation. - -Additional Information: -E.g. the relevant department of a large organisation. - -We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well. (org:Organization) """@en ; - skos:prefLabel "Has organisation unit name"@en . - -:hasOtherCountriesReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has other countries received tenders"@en . - -:hasOutstandingQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has outstanding quantity"@en . - -:hasOverallCostAwardCriteriaPonderation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The weighting given to cost. - -Additional Information: -This weighting covers usually all cost criteria against price or quality criteria. (epo:AwardEvaluationTerm) """@en ; - skos:prefLabel "Has overall cost award criteria ponderation"@en . - -:hasOverallPriceAwardCriteriaPonderation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The weighting given to price. - -Additional Information: -This weighting covers usually all price criteria against cost or quality criteria. (epo:AwardEvaluationTerm) """@en ; - skos:prefLabel "Has overall price award criteria ponderation"@en . - -:hasOverallQualityAwardCriteriaPonderation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The weighting given to quality. - -Additional Information: -This weighting covers usually all quality criteria against price or cost criteria. (epo:AwardEvaluationTerm) """@en ; - skos:prefLabel "Has overall quality award criteria ponderation"@en . - -:hasParticipationPayment a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Details on payments to participants -WG Approval 09/11/2021 (epo:DesignContestRegimeTerm) """@en ; - skos:prefLabel "Has participation payment"@en . - -:hasPaymentArrangement a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Information about financial clauses that will govern some economic aspects of the execution of the contract. - -Additional Information: These clauses usually refer to financial and payment provisions. - -This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. - -WG Pending of discussion with eForms (epo:ContractTerm) """@en ; - skos:prefLabel "Has payment arrangement"@en . - -:hasPaymentValueDiscrepancyJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has payment value discrepancy justification"@en . - -:hasPerformanceConditions a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The particular conditions and additional information related to the execution of the contract. - -Additional Information: - -For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. - -WG approval 15-01-2019 (epo:ContractTerm) """@en ; - skos:prefLabel "Has performance conditions"@en . - -:hasPerformingStaffQualificationInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ -Additional information: - -This relation corresponds in eForms to BT-79. (epo:ProcurementCriterion -> at-voc:requirement-stage (+epo:hasPerformingStaffQualificationInformation)) """@en ; - skos:prefLabel "Has performing staff qualification information"@en . - -:hasPlaceOfPerformanceAdditionalInformation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Further details on the location of the execution of the contract. - -WG Approval 30/07/2019 (epo:ContractTerm) """@en ; - skos:prefLabel "Has place of performance additional information"@en . - -:hasPlannedDuration a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has planned duration"@en . - -:hasPlannedPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has planned period"@en . - -:hasPreferredPublicationDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The date the buyer would like to have the record made publicly available. - -Additional Information: -This corresponds in eForms to BT-738 Notice Publication Date Preferred. - -WG Approval 12/05/2020 (epo:PublicationProvision) """@en ; - skos:prefLabel "Has preferred publication date"@en . - -:hasPrepaidAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has prepaid amount"@en . - -:hasPreviousVersionOfElementReference a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Reference to the class instance in the previous version of the notice, which was changed. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. - (epo:ElementChangeDescription) """@en ; - skos:prefLabel "Has previous version of element reference"@en . - -:hasPriceValidity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has price validity"@en . - -:hasPrimaryContactPoint a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has primary contact point"@en . - -:hasPrizeRank a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The position of the prize (e.g. first place, second place) in a design contest list of prizes. - -WG Approval 29/08/2019 - (epo:Prize) """@en ; - skos:prefLabel "Has prize rank"@en . - -:hasPrizeValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. - -Additional Information: -This corresponds to BT-644 in eForms. - -WG Approval 29/08/2019 - - (epo:Prize -> epo:MonetaryValue (+epo:hasPrizeValue)) """@en ; - skos:prefLabel "Has prize value"@en . - -:hasProcedureType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Identification of the Procedure used. - -WG Approval 09/06/2020 - (epo:Procedure -> at-voc:procurement-procedure-type (+epo:hasProcedureType)) """@en ; - skos:prefLabel "Has procedure type"@en . - -:hasProcurementClassification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has procurement classification"@en . - -:hasProcurementDocumentChangeDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The date and time of the change. - -Additional information: -This corresponds in eForms to BT-719 Change Procurement Documents Date - -WG Approval 5/11/2019 - (epo:ElementChangeDescription) """@en ; - skos:prefLabel "Has procurement document change date"@en . - -:hasProcurementHighestReceivedTenderValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The highest received tender value for the procurement. - -Additional Information: -This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementHighestReceivedTenderValue)) """@en ; - skos:prefLabel "Has procurement highest received tender value"@en . - -:hasProcurementLowestReceivedTenderValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The lowest received tender value for the procurement. - -Additional Information: -This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementLowestReceivedTenderValue)) """@en ; - skos:prefLabel "Has procurement lowest received tender value"@en . - -:hasProcurementScopeDividedIntoLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has procurement scope divided into lot"@en . - -:hasPropertyReference a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The URI of a given attribute (property) that is being referred to. (epo:ElementConfidentialityDescription) "@en ; - skos:prefLabel "Has property reference"@en . - -:hasPublicAccessURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Web page where the procurement documents can be downloaded. - -Additional Information: -This corresponds in the eForms to BT-15 Documents URL. - -WG Approval 09/03/2021 - (epo:AccessTerm) """@en ; - skos:prefLabel "Has public access u r l"@en . - -:hasPublicationDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Date of formal public issuance of the document. - -WG approval 20/06/2023 (epo:Document) """@en ; - skos:prefLabel "Has publication date"@en . - -:hasPurpose a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a procurement part has a puropse. (epo:ProcurementObject -> epo:Purpose (+epo:hasPurpose)) "@en ; - skos:prefLabel "Has purpose"@en . - -:hasQualificationCondition a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has qualification condition"@en . - -:hasQualificationSystemDuration a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has qualification system duration"@en . - -:hasQualificationSystemRenewalDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has qualification system renewal description"@en . - -:hasQualifiedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Qualified value of the property, which is defined in a classification scheme. - -Additional Information: -For example, the (0173-1#02-AAA026#007) drilling diameter of an item has value of 12 inches. - -WG approval 28/07/2022 (epo-cat:ItemProperty -> epo:Quantity (+epo-cat:hasQualifiedValue)) """@en ; - skos:prefLabel "Has qualified value"@en . - -:hasQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has quantity"@en . - -:hasQuantityThreshold a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has quantity threshold"@en . - -:hasQuantityValue a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The numeric value of the quantity, including decimals. (epo:Quantity) "@en ; - skos:prefLabel "Has quantity value"@en . - -:hasReceiptDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The time limit for receiving submissions. - -Additional Information -This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. -This attribute should be used for standard forms mappings. - -WG Approval 21/07/2020 - (epo:SubmissionTerm) """@en ; - skos:prefLabel "Has receipt deadline"@en . - -:hasReceiptExpressionDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Time limit for receipt of expressions of interest. - -Pending of review by the WG - - (epo:SubmissionTerm) """@en ; - skos:prefLabel "Has receipt expression deadline"@en . - -:hasReceiptParticipationRequestDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has receipt participation request deadline"@en . - -:hasReceiptPreliminaryMarketConsultationDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has receipt preliminary market consultation deadline"@en . - -:hasReceiptTenderDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has receipt tender deadline"@en . - -:hasReceivedMicroTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The amount of tenders received from a micro enterprise. - -Additional Information: - -See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has received micro tenders"@en . - -:hasReceivedParticipationRequests a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The amount of applications to participate from economic operators. - -WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has received participation requests"@en . - -:hasReceivedSmallTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Tenders from small enterprise. - -Additional Information: - -See Commission Recommendation 2003/361/EC. - - (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has received small tenders"@en . - -:hasReceivedSubmissionType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has received submission type"@en . - -:hasReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The total amount of tenders received. - -WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has received tenders"@en . - -:hasReceptionDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Notes: Date when a record is acknowledged by an organisation. - -WG Approval 12/05/2020 (epo:Document) """@en ; - skos:prefLabel "Has reception date"@en . - -:hasRecurrenceDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Any additional information about the recurrence of the Procurement. - -Additional Information: -For example estimated timing of the Procedure. - -This corresponds in eForms to BT-95 Recurrence Description. - -(WG approval 2019-01-16) - (epo:ProcurementObject) """@en ; - skos:prefLabel "Has recurrence description"@en . - -:hasRegistrationCountry a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has registration country"@en . - -:hasRemedyValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This relation corresponds in eForms to BT-793 Review Remedy Value. (epo:ReviewDecision -> epo:MonetaryValue (+epo:hasRemedyValue)) """@en ; - skos:prefLabel "Has remedy value"@en . - -:hasRenewalDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Any other information about the renewal(s). - -WG approval 16/04/2019 (epo:ContractTerm) """@en ; - skos:prefLabel "Has renewal description"@en . - -:hasRequestDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The date when the review request was submitted. - -Additional information: -This attribute corresponds to the BT-787 Review Date in eForms. - (epo:ReviewRequest) """@en ; - skos:prefLabel "Has request date"@en . - -:hasReservedExecution a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has reserved execution"@en . - -:hasReservedProcurement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. - -Additional information: -This property corresponds in eForms to the BT-71 -WG Approval 09/11/2021 - (epo:ParticipationCondition -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. - -Additional information: -This property corresponds in eForms to the BT-71 -WG Approval 09/11/2021 - (epo:ParticipationConditionsSummary -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) """@en ; - skos:prefLabel "Has reserved procurement"@en . - -:hasRestrictedAccessURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The internet address with information on accessing the restricted (part of the) procurement document. - -Additional Information: -This corresponds in eForms to BT-615 Documents Restricted URL. - (epo:AccessTerm) """@en ; - skos:prefLabel "Has restricted access u r l"@en . - -:hasReviewBodyType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has review body type"@en . - -:hasReviewDecisionType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This relation corresponds in eForms to BT-790 Review Decision Type. (epo:ReviewDecision -> at-voc:review-decision-type (+epo:hasReviewDecisionType)) """@en ; - skos:prefLabel "Has review decision type"@en . - -:hasReviewIrregularityCount a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The number of requests for a given irregularity. - -Additional information: -This attribute corresponds in eForms to BT-635 Buyer Review Requests Count. (epo:ReviewIrregularitySummary) """@en ; - skos:prefLabel "Has review irregularity count"@en . - -:hasReviewIrregularitySummary a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This relation corresponds in eForms to BG-613 Buyer Review Requests (epo:ReviewRequestSummary -> epo:ReviewIrregularitySummary (+epo:hasReviewIrregularitySummary)) """@en ; - skos:prefLabel "Has review irregularity summary"@en . - -:hasReviewRequestFee a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This relation corresponds in eForms to BT-795 Review Request Fee. (epo:ReviewRequest -> epo:MonetaryValue (+epo:hasReviewRequestFee)) """@en ; - skos:prefLabel "Has review request fee"@en . - -:hasReviewURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The internet address of the documents concerning the review instance. - -Additional information: -This attribute corresponds in eForms to BT-794 Review URL. - (epo:ReviewObject) """@en ; - skos:prefLabel "Has review u r l"@en . - -:hasRoundingAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has rounding amount"@en . - -:hasSMEReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The amount of tenders received from micro, small and medium-sized enterprises. - -Additional Information: - -See Commission Recommendation 2003/361/EC. -The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. - -WG Approval 05/03/2020 - (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has s m e received tenders"@en . - -:hasScheme a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The name of the identification scheme. (adms:Identifier) "@en ; - skos:prefLabel "Has scheme"@en . - -:hasSchemeVersion a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The version of the identification scheme. (adms:Identifier) "@en ; - skos:prefLabel "Has scheme version"@en . - -:hasSelectionCriteriaStatedInProcurementDocuments a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has selection criteria stated in procurement documents"@en . - -:hasSelectionCriteriaUsage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ -Additional Information: -This corresponds in eForms to BT-748 Selection Criteria Used. (epo:SelectionCriterion -> at-voc:usage (+epo:hasSelectionCriteriaUsage)) """@en ; - skos:prefLabel "Has selection criteria usage"@en . - -:hasSelectionCriterionType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The classification of the selection criteria. - - -Additional Information: - -This corresponds in eForms to BT-747 Selection Criteria Type. - -WG Approval 09/11/2021 - (epo:SelectionCriterion -> at-voc:selection-criterion (+epo:hasSelectionCriterionType)) """@en ; - skos:prefLabel "Has selection criterion type"@en . - -:hasSellerItemID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ The general identifier for the concept as defined by the seller. - -WG Approval 16/05/2023 - (epo-cat:Item -> adms:Identifier (+epo:hasSellerItemID)) """@en ; - skos:prefLabel "Has seller item i d"@en . - -:hasSerialID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The identifier assigned to the specific instance of the produced concept. -WG Approval 16/05/2023 - (epo-cat:Item -> adms:Identifier (+epo:hasSerialID)) """@en ; - skos:prefLabel "Has serial i d"@en . - -:hasServiceReservedToParticularProfession a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has service reserved to particular profession"@en . - -:hasStartDate a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has start date"@en . - -:hasStrategicProcurementDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Self-explanatory text about a concept. - (epo:StrategicProcurement) """@en ; - skos:prefLabel "Has strategic procurement description"@en . - -:hasSubcontractingEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The estimated value of a single subcontract. - -This relates to BT-553 in eForms. - -WG Approval 01/09/2020 - - (epo:SubcontractingEstimate -> epo:MonetaryValue (+epo:hasSubcontractingEstimatedValue)) """@en ; - skos:prefLabel "Has subcontracting estimated value"@en . - -:hasSubcontractingInvolved a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """List of Subcontractors and the subject matter they cover are required. - -Additional Information: -The tenderer will ned to supply this information in the tender. - -WG Approval 28/02/2019 (epo:SubcontractTerm) """@en ; - skos:prefLabel "Has subcontracting involved"@en . - -:hasSubcontractingObligation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The requirement the tender must meet with regard to subcontracting parts of the contract. -WG Approval 09/11/2021 - - (epo:SubcontractTerm -> at-voc:subcontracting-obligation (+epo:hasSubcontractingObligation)) """@en ; - skos:prefLabel "Has subcontracting obligation"@en . - -:hasSubcontractorsProposedAboveObligation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The maximum percentage of the contract value that the contractor must subcontract. - -Additional information: -This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - -WG Approval 09/11/2021 (epo:SubcontractTerm) """@en ; - skos:prefLabel "Has subcontractors proposed above obligation"@en . - -:hasSubjectMatter a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Description of the share of the contract that is to be subcontracted. - -Additional infromation: -This can be an aggregate of several subcontracts. - -WG Approval 09/11/2021 (epo:SubcontractingEstimate) """@en ; - skos:prefLabel "Has subject matter"@en . - -:hasSubmissionURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ -Additional Information: -This corresponds to the eForms BT-18 Submission URL. - -This corresponds in eForms to BT-509 Organisation eDelivery Gateway. (epo:SubmissionTerm) """@en ; - skos:prefLabel "Has submission u r l"@en . - -:hasSuccessiveReduction a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. - -Additional information: -This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. -WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) """@en ; - skos:prefLabel "Has successive reduction"@en . - -:hasTaxIdentifier a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has tax identifier"@en . - -:hasTaxInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has tax information"@en . - -:hasTenderSubcontractingInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The information about subcontracting that must be indicated in the tender. - -WG Approval 10/10/2019 - - (epo:SubmissionTerm -> at-voc:subcontracting-indication (+epo:hasTenderSubcontractingInformation)) """@en ; - skos:prefLabel "Has tender subcontracting information"@en . - -:hasTenderValidityPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The relation indicating until when a tender instance is applicable. - (epo:SubmissionTerm -> epo:Period (+epo:hasTenderValidityPeriod)) """@en ; - skos:prefLabel "Has tender validity period"@en . - -:hasThresholdType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The method to interpret the threshold value as minimum or a maximum. - -WG Approval 17/09/2019 - (cccev:Constraint -> at-voc:number-threshold (+epo:hasThresholdType)) """@en ; - skos:prefLabel "Has threshold type"@en . - -:hasThresholdValue a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The cut-off level for a given concept. - -Additional Information: -This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold). (cccev:Constraint) """@en ; - skos:prefLabel "Has threshold value"@en . - -:hasTimePeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ - - (epo:Period -> at-voc:timeperiod (+epo:hasTimePeriod)) """@en ; - skos:prefLabel "Has time period"@en . - -:hasTotalAllowanceAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total allowance amount"@en . - -:hasTotalAwardedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The awarded value of all lots announced in this notice, including options and renewals. - -Additional information: -The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. - -The values of the individual lots announced in a CAN are to be traced back and added to provide this value. - -This corresponds to the BT-161 in eForms. - -WG Approval 03/12/2019 - (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasTotalAwardedValue)) """@en ; - skos:prefLabel "Has total awarded value"@en . - -:hasTotalChargeAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total charge amount"@en . - -:hasTotalGoodsItemQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total goods item quantity"@en . - -:hasTotalLineAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total line amount"@en . - -:hasTotalNumberOfComplainants a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. - -Additional information: -This attribute corresponds in eForms to BT-712 Buyer Review Complainants - -WG Approval 11/04/2019 (epo:ReviewRequestSummary) """@en ; - skos:prefLabel "Has total number of complainants"@en . - -:hasTotalQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The number of units required. - -Additional Information: -The quantity needs to go along with the unit. - - - - (epo:Purpose -> epo:Quantity (+epo:hasTotalQuantity)) """@en ; - skos:prefLabel "Has total quantity"@en . - -:hasTotalTaxExclusiveAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total tax exclusive amount"@en . - -:hasTotalTaxInclusiveAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total tax inclusive amount"@en . - -:hasTotalValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total value"@en . - -:hasTotalVehicles a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information - -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 - (epo:GreenProcurement) """@en ; - skos:prefLabel "Has total vehicles"@en . - -:hasTraceID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has trace i d"@en . - -:hasTrackingID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has tracking i d"@en . - -:hasTransportHandlingUnitQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has transport handling unit quantity"@en . - -:hasURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The identifier of a resource. - -Additional Information - -For example: - -1. The URL of the system from where to access the procurement documents; -2. The URL of the system for the submission of tender documents; -3. The URL of the system from where to download a tool to communicate with the Buyer; -4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) -5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; - -WG Approval 30/09/2019 (epo:Fund) """@en ; - skos:prefLabel "Has u r l"@en . - -:hasUUID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A universally unique identifier for an instance of this document. - -WG Approval 12/05/2020 (epo:Document -> adms:Identifier (+epo:hasUUID)) """@en ; - skos:prefLabel "Has u u i d"@en . - -:hasUnitCode a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has unit code"@en . - -:hasUnitDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A narrative explanation defining the units of items being counted - -Additional information: This could be for example individual items or pack or two. - -WG Approval 09/11/2021 (epo:Quantity) """@en ; - skos:prefLabel "Has unit description"@en . - -:hasUnofficialLanguage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. - -WG Approval 03/10/2019 - (epo:Document -> at-voc:language (+epo:hasUnofficialLanguage)) """@en ; - skos:prefLabel "Has unofficial language"@en . - -:hasUnverifiedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). - -WG Approval 28/07/2020 - (epo:SubmissionStatisticalInformation) """@en ; - skos:prefLabel "Has unverified tenders"@en . - -:hasUsage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage - (epo:Technique -> at-voc:usage (+epo:hasUsage)) """@en ; - skos:prefLabel "Has usage"@en . - -:hasValidityPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The relation indicating until when a given instance of a concept is applicable. - -WG approval 30/05/2023 - (epo:Technique -> epo:Period (+epo:hasValidityPeriod)) The relation indicating until when a given instance of a concept is applicable. - -WG approval 30/05/2023 (epo-cat:Certificate -> epo:Period (+epo:hasValidityPeriod)) """@en ; - skos:prefLabel "Has validity period"@en . - -:hasVariantPermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The obligation or possibility for tenderers to submit variants or not. - -Additional Information: - -Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. - -eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. - -Additional Information: - -Further conditions for submitting variant tenders are in the procurement documents. - (epo:SubmissionTerm -> at-voc:permission (+epo:hasVariantPermission)) """@en ; - skos:prefLabel "Has variant permission"@en . - -:hasVehicleID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has vehicle i d"@en . - -:hasVehicleSegmentID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has vehicle segment i d"@en . - -:hasVersion a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A number that identifies a specific state of a document. - -WG approval: 18/11/2021 - (epo:Document) """@en ; - skos:prefLabel "Has version"@en . - -:hasWeightValueType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """No definition. Waiting on CCCEV alignment. - - - (epo:ProcurementCriterion -> at-voc:number-weight (+epo:hasWeightValueType)) """@en ; - skos:prefLabel "Has weight value type"@en . - -:hasWidth a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has width"@en . - -:hasWithdrawalDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The date and time when the request for review was withdrawn. - -Additional information: -This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date. (epo:ReviewRequest) """@en ; - skos:prefLabel "Has withdrawal date"@en . - -:hasWithdrawalReason a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The explanation for withdrawing the request for review. - -Additional information: -This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons (epo:ReviewRequest) """@en ; - skos:prefLabel "Has withdrawal reason"@en . - -:hasZeroEmissionVehicles a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information - -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 - (epo:GreenProcurement) """@en ; - skos:prefLabel "Has zero emission vehicles"@en . - -:implementsContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Implements contract"@en . - -:includesAccessibilityCriterion a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Explanation as to whether accessibility Criterion are used or not. -WG Approval 09/11/2021 - - (epo:StrategicProcurement -> at-voc:accessibility (+epo:includesAccessibilityCriterion)) """@en ; - skos:prefLabel "Includes accessibility criterion"@en . - -:includesTender a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This corresponds in eForms to BT-3202 Contract Tender Identifier. - (epo:Contract -> epo:Tender (+epo:includesTender)) """@en ; - skos:prefLabel "Includes tender"@en . - -:indicatesAwardToWinner a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Reveals the winner to whom the tender award outcome is attributed. (epo:TenderAwardOutcome -> epo:Winner (+epo:indicatesAwardToWinner)) "@en ; - skos:prefLabel "Indicates award to winner"@en . - -:indicatesInvoiceeContactPoint a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Indicates invoicee contact point"@en . - -:indicatesPerformingStaffInformationRequirement a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Indicates performing staff information requirement"@en . - -:involvesProcurementDocument a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Involves procurement document"@en . - -:isAccelerated a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Statement about the fact that the procedure will be reduced due to a state of urgency. - -Additional Information - -This modifies the time limit for the receipt of requests to participate or the receipt of tenders. - -WG Approval 20/08/2019 - (epo:Procedure) """@en ; - skos:prefLabel "Is accelerated"@en . - -:isAdvancedElectronicSignatureRequired a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. - - - -The submitted information is required to be signed electronically. - -Additional Information: - -Signature can be defined as "data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. -For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. - -WG Approval 21/07/2020 - (epo:SubmissionTerm) """@en ; - skos:prefLabel "Is advanced electronic signature required"@en . - -:isAppointedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is appointed by"@en . - -:isAssignedForEvaluationOf a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is assigned for evaluation of"@en . - -:isAwardedByCPB a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Procedure is awarded by a Central Purchasing Body. - - (epo:ProcedureTerm) """@en ; - skos:prefLabel "Is awarded by c p b"@en . - -:isBasedOnImplementingRegulation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Indicates under which regulation a notice is created. - -WG Acceptance 06/09/2022 (epo:Notice -> at-voc:legal-basis (+epo:isBasedOnImplementingRegulation)) """@en ; - skos:prefLabel "Is based on implementing regulation"@en . - -:isBeneficialOwnerOf a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. -Additional Information: -This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. -WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf)) """@en ; - skos:prefLabel "Is beneficial owner of"@en . - -:isCalculatedOn a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. - - (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:TaxInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) """@en ; - skos:prefLabel "Is calculated on"@en . - -:isCompetitionTerminated a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """No further contracts will be awarded in this procedure. - -Additional Information: -This can be instantiated in the post award phase. - -PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. - -This corresponds in eForms to BT-756 PIN Competition Termination. (epo:ProcurementProcessInformation) """@en ; - skos:prefLabel "Is competition terminated"@en . - -:isContractingEntity a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Role of entities, which: - -(a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. - -(b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. - -Additional Information - -The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. -For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. - -WG Approval 28/04/2020 - (epo:Buyer) """@en ; - skos:prefLabel "Is contracting entity"@en . - -:isCoveredByGPA a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Specifies whether the Agreement on Government Procurement (GPA) applies. - -Additional information: -The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. - -This corresponds in the e Forms to BT-115 GPA Coverage. - -WG Approval 15/10/2019 - - (epo:ProcurementObject) """@en ; - skos:prefLabel "Is covered by g p a"@en . - -:isDPSTerminated a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """End of the Dynamic Purchase System (DPS). - -Additional Information: This property can be used in the contract award notice even if no contracts are awarded. - -WG Approval 22/11/2019 - (epo:ProcurementProcessInformation) """@en ; - skos:prefLabel "Is d p s terminated"@en . - -:isDesignContest a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """A competition which enables the buyer to acquire a plan or design via a jury. - -Additional information: -Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering - -The contest may include or not the award of prizes; - -WG approval 04-02-2021 (epo:Procedure) """@en ; - skos:prefLabel "Is design contest"@en . - -:isEUInstitution a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is e u institution"@en . - -:isExecutedByProcurementServiceProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is executed by procurement service provider"@en . - -:isFundedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Funding is provided either completely or partially by a Fund. - -Additional information: -This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) -Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. - - (epo:ProcurementObject -> epo:Fund (+epo:isFundedBy)) """@en ; - skos:prefLabel "Is funded by"@en . - -:isGuaranteeRequired a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The submitted information must include a financial commitment to be used in case of default. - -Additional Information: -See the additional information provided in the definition of the 'Guarantee Description' element. - -WG Approval 21/07/20 - - (epo:SubmissionTerm) """@en ; - skos:prefLabel "Is guarantee required"@en . - -:isJointProcurement a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Multiple buyers procure together within the same procedure. - -Addition Information: -In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . (epo:Procedure) """@en ; - skos:prefLabel "Is joint procurement"@en . - -:isJuryDecisionBinding a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Indicates whether the procuring entity is bound to apply the decision of the jury. (epo:DesignContestRegimeTerm) "@en ; - skos:prefLabel "Is jury decision binding"@en . - -:isListedCompany a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange -rules or through law or enforceable means), which impose requirements to ensure adequate transparency of -beneficial ownership. - -Additional Information: - -In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. - -WG Approval 21/11/2019 (epo:Business) """@en ; - skos:prefLabel "Is listed company"@en . - -:isMultipleTenderSubmissionAllowed a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Tenderers may submit more than one competing tenders. - -WG Approval 10/10/2019 - - (epo:SubmissionTerm) """@en ; - skos:prefLabel "Is multiple tender submission allowed"@en . - -:isNonDisclosureAgreementRequired a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is non disclosure agreement required"@en . - -:isOneLotOnlyAllowed a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Indicates whether tenders may be submitted for only one Lot. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 23/08/2022 - - (epo:ProcedureTerm) """@en ; - skos:prefLabel "Is one lot only allowed"@en . - -:isOwnedByAgent a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is owned by agent"@en . - -:isProcurementDocumentChanged a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """One or more procurement documents have been changed. - -Additional information: -This corresponds in eForms to BT-718 Change Procurement Documents - -WG Approval 05/11/2019 (epo:ElementChangeDescription) """@en ; - skos:prefLabel "Is procurement document changed"@en . - -:isProcurementDocumentRestricted a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The access to certain procurement documents is restricted. - -Additional Information: -This corresponds in eForms to BT-14 Documents Restricted. - -WG Approval 10/10/2019 (epo:AccessTerm) """@en ; - skos:prefLabel "Is procurement document restricted"@en . - -:isRecurrent a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The Procurement being notified is likely to be included in another procedure in the foreseeable future. - -Additional Information: - -For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. - -This corresponds in eForms to BT-94 Recurrence. - -WG Approval 12/05/2020 - (epo:ProcurementObject) """@en ; - skos:prefLabel "Is recurrent"@en . - -:isRenewalIndicator a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Indicates whether the contract is subject to a renewal clause. -WG Approval 09/11/2021 (epo:ContractTerm) """@en ; - skos:prefLabel "Is renewal indicator"@en . - -:isResponsibilityOfBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :involvesBuyer ; - skos:definition """The buyer in charge of the procedure. - -Additional Information: -In case there are multiple buyers, it may be the case that one or more buyers are in charge of the procedure. - (epo:Procedure -> epo:Buyer (+epo:isResponsibilityOfBuyer)) """@en ; - skos:prefLabel "Is responsibility of buyer"@en . - -:isSMESuitable a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The Lot is suitable for small and medium enterprises (SMEs). - -Additional Information - -This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. - -For example, number of employees and turnover are applicable to the definition of an SME. - -WG Approval 15/10/2019 - (epo:ProcurementObject) """@en ; - skos:prefLabel "Is s m e suitable"@en . - -:isSecurityClearanceRequired a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is security clearance required"@en . - -:isSubjectToContractSpecificTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is subject to contract specific term"@en . - -:isSubjectToGrouping a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is subject to grouping"@en . - -:isSubjectToLotSpecificTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :isSubjectToTerm ; - skos:prefLabel "Is subject to lot specific term"@en . - -:isSubjectToProcedureSpecificTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :isSubjectToTerm ; - skos:prefLabel "Is subject to procedure specific term"@en . - -:isSubmissionForAllLotsAllowed a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Indicates whether tenders may be submitted for all Lots. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) - -WG approval 23/08/2022 - (epo:ProcedureTerm) """@en ; - skos:prefLabel "Is submission for all lots allowed"@en . - -:isSubmitedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Relation indicating the submission of a tender by an economic operator. -WG approval 18/05/2021 (epo:Tender -> epo:Tenderer (+epo:isSubmitedBy)) """@en ; - skos:prefLabel "Is submited by"@en . - -:isSubmittedForLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is submitted for lot"@en . - -:isSubmittedForLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is submitted for lot group"@en . - -:isSubordinatedToContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is subordinated to contract"@en . - -:isSupportedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is supported by"@en . - -:isToBeRelaunched a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Indicator of whether the procurement object is to be relaunched. - -Additional information: -This can be instantiated in the post award phase. - -This corresponds in eForms to BT-634 Procurement Relaunch. - -WG Approval: 18/01/2022 - (epo:ProcurementProcessInformation) """@en ; - skos:prefLabel "Is to be relaunched"@en . - -:isUsedForCandidateRestriction a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. - -Additional Information: -This property is only used if a maximum number of candidates was foreseen in the procedure. -This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite (epo:SelectionCriterion) """@en ; - skos:prefLabel "Is used for candidate restriction"@en . - -:isUsingEUFunds a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The procurement foresees funding by the Union. - -Additional Information: -The funding may cover the whole procurement or part of the procurement. - -For example the European Structural and Investment Funds or grants awarded by the European Union. - - (epo:ProcurementObject) """@en ; - skos:prefLabel "Is using e u funds"@en . - -:isVariant a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. - -Additional Information: - -The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. -The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. - -WG Approval 29/05/2019 - - (epo:Tender) """@en ; - skos:prefLabel "Is variant"@en . - -:isWithdrawn a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The review request was withdrawn. - -Additional information: -This attribute corresponds in eForms to BT-796 Review Request Withdrawn. (epo:ReviewRequest) """@en ; - skos:prefLabel "Is withdrawn"@en . - -:leadBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Lead by"@en . - -:legal-regime a skos:ConceptScheme ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Legal-regime"@en . - -:needsToBeATenderer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The Winner must be a Tenderer. (epo:Winner -> epo:Tenderer (+epo:needsToBeATenderer)) "@en ; - skos:prefLabel "Needs to be a tenderer"@en . - -:needsToBeAWinner a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """The Contractor must be a Winner. - (epo:Contractor -> epo:Winner (+epo:needsToBeAWinner)) """@en ; - skos:prefLabel "Needs to be a winner"@en . - -:notification-phases-content-types a skos:ConceptScheme ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Notification-phases-content-types"@en . - -:ownsSystem a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Owns system"@en . - -:playedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Played by"@en . - -:providesContractTotalPaymentValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional Information: -This corresponds to BT-779 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPaymentValue)) """@en ; - skos:prefLabel "Provides contract total payment value"@en . - -:providesContractTotalPenaltyValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ -Additional Information: -This corresponds to BT-782 in eForms. - (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPenaltyValue)) """@en ; - skos:prefLabel "Provides contract total penalty value"@en . - -:providesRulingOnRemedy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "States the measures to be taken after a review procedure. (epo:ReviewDecision -> at-voc:remedy-type (+epo:providesRulingOnRemedy)) "@en ; - skos:prefLabel "Provides ruling on remedy"@en . - -:refersToAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to award decision"@en . - -:refersToContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to contract"@en . - -:refersToContractToBeModified a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to contract to be modified"@en . - -:refersToLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to lot"@en . - -:refersToLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to lot group"@en . - -:refersToLotGroupAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to lot group award information"@en . - -:refersToNonPublishedElement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to non published element"@en . - -:refersToNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to notice"@en . - -:refersToNoticeAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to notice award information"@en . - -:refersToOriginalNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to original notice"@en . - -:refersToPlannedPart a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to planned part"@en . - -:refersToPrevious a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to previous"@en . - -:refersToPreviousNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """ -Additional information: -This corresponds in eForms to BT-758 Change Notice Version Identifier. (epo:NoticeChange -> epo:Notice (+epo:refersToPreviousNotice)) """@en ; - skos:prefLabel "Refers to previous notice"@en . - -:refersToPreviousProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Reference to a previous procedure. - -Additional Information: -In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. - -This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier (epo:DirectAwardTerm -> epo:Procedure (+epo:refersToPreviousProcedure)) """@en ; - skos:prefLabel "Refers to previous procedure"@en . - -:refersToPreviousProcedureLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Reference to one or more Lots in a previous procedure. - -Additional Information: -In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. - -This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier - -WG Approval 22/11/2019 14:33:55 (epo:DirectAwardTerm -> epo:Lot (+epo:refersToPreviousProcedureLot)) """@en ; - skos:prefLabel "Refers to previous procedure lot"@en . - -:refersToPreviousReview a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This relation corresponds in eForms to BT-785 "Review Previous Identifier". (epo:ReviewObject -> epo:ReviewObject (+epo:refersToPreviousReview)) """@en ; - skos:prefLabel "Refers to previous review"@en . - -:refersToProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to procedure"@en . - -:refersToProject a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to project"@en . - -:refersToRole a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to role"@en . - -:requestsRemedyType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Additional information: -This relation corresponds in eForms to BT-792 Review Remedy Type (epo:ReviewRequest -> at-voc:remedy-type (+epo:requestsRemedyType)) """@en ; - skos:prefLabel "Requests remedy type"@en . - -:resolvesReviewRequest a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Resolves review request"@en . - -:resultsFromLotAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Results from lot award decision"@en . - -:resultsFromMiniCompetitionAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Results from mini competition award decision"@en . - -:resultsInDynamicPurchasingSystem a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Results in dynamic purchasing system"@en . - -:setsGroupingContextForLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Sets grouping context for lot"@en . - -:signedByBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Signed by buyer"@en . - -:signedByContractor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Signed by contractor"@en . - -:signsAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Signs award decision"@en . - -:specifiesAwardCriterion a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies award criterion"@en . - -:specifiesBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies buyer"@en . - -:specifiesCatalogueProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies catalogue provider"@en . - -:specifiesCatalogueReceiver a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies catalogue receiver"@en . - -:specifiesDeliverable a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies deliverable"@en . - -:specifiesDeliveryAgreementLocation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies delivery agreement location"@en . - -:specifiesPlaceOfDelivery a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies place of delivery"@en . - -:specifiesPlaceOfDespatch a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies place of despatch"@en . - -:specifiesProcurementCriteriaSummary a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies procurement criteria summary"@en . - -:specifiesProcurementCriterion a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies procurement criterion"@en . - -:specifiesSubcontractors a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies subcontractors"@en . - -:substantiatesExclusionGround a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Substantiates exclusion ground"@en . - -:summarisesInformationForAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition """Relates to submission for the given competition, either at Lot level or Mini-Competition level. - -WG approval 30/05/2023 (epo:SubmissionStatisticalInformation -> epo:AwardDecision (+epo:summarisesInformationForAwardDecision)) """@en ; - skos:prefLabel "Summarises information for award decision"@en . - -:usesCandidateList a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Uses candidate list"@en . - -:usesChannel a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Uses channel"@en . - -:usesTechnique a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Uses technique"@en . - -cccev:Constraint a owl:Class ; - rdfs:subClassOf cccev:Requirement ; - skos:definition """Limitation applied to an Information Concept. - -Additional Information: -Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context."""@en ; - skos:prefLabel "Constraint"@en . - -cccev:ContactPoint a owl:Class ; - skos:definition """Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. - -Additional information: -This class represents the contact information for a Public Service, Channel, Public Organisation, etc. -The Contact Point could be a role, email address, telephone number, etc. - -WG approval 5/11/2019"""@en ; - skos:prefLabel "Contact point"@en . - -cccev:Evidence a owl:Class ; - skos:definition """Proof that a Requirement is met. - -"""@en ; - skos:prefLabel "Evidence"@en . - -cccev:InformationConcept a owl:Class ; - skos:definition "Piece of information that the Evidence provides or the Requirement needs."@en ; - skos:prefLabel "Information concept"@en . - -cccev:Person a owl:Class ; - rdfs:subClassOf foaf:Person ; - skos:definition """A individual human being who may be dead or alive, but not imaginary. -"""@en ; - skos:prefLabel "Person"@en . - -cccev:PublicOrganisation a owl:Class ; - rdfs:subClassOf org:Organization ; - skos:definition """An Organisation that is defined as being part of the public sector by a legal framework at any level. - -Additional information: -A body governed by public law: -- (a) established for the specific Purpose of meeting needs in the general interest -- (b) having legal personality; -- (c) financed, for the most part by the State, or regional or local authorities. - -Examples of Public Organisations are municipality, international public body, ministry, others. - -WG Approval 28/04/2020"""@en ; - skos:prefLabel "Public organisation"@en . - -cccev:address a owl:ObjectProperty ; - skos:definition """Associates any Resource with the corresponding Address. - -Additional Information: -Asserting the address relationship implies that the Resource has an Address. (org:Organization -> locn:Address (+cv:address)) """@en ; - skos:prefLabel "Address"@en . - -cccev:bias a owl:DatatypeProperty ; - skos:definition """Parameter used to adjust the evaluation of the Criterion. - -Additional Information: -The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the "presence of local preferences distorting international specialisation and resource allocation". When quantified, this systematic error can be removed. (cccev:Criterion) """@en ; - skos:prefLabel "Bias"@en . - -cccev:birthDate a owl:DatatypeProperty ; - skos:definition "The point in time on which the Person was born. (cpv:Person) "@en ; - skos:prefLabel "Birth date"@en . - -cccev:confidentialityLevelType a owl:ObjectProperty ; - skos:definition """Security classification assigned to an Evidence e.g. classified, sensitive, public. - -Additional Information: - -Classifications should be defined by an organisation/country as an outcome of a security assessment. - (cccev:Evidence -> at-voc:confidentiality-level (+cccev:confidentialityLevelType)) """@en ; - skos:prefLabel "Confidentiality level type"@en . - -cccev:constrains a owl:ObjectProperty ; - skos:definition """Information Concept about which a Constraint expresses a limitation. - -Additional Information: -Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation. (cccev:Constraint -> cccev:InformationConcept (+cccev:constrains)) """@en ; - skos:prefLabel "Constrains"@en . - -cccev:coordinates a owl:DatatypeProperty ; - skos:definition "The coordinate list. (locn:Geometry) "@en ; - skos:prefLabel "Coordinates"@en . - -cccev:email a owl:DatatypeProperty ; - skos:definition """The email of the Organisation. - - (cpov:ContactPoint) """@en ; - skos:prefLabel "Email"@en . - -cccev:latitude a owl:DatatypeProperty ; - skos:definition "The latitude. (locn:Geometry) "@en ; - skos:prefLabel "Latitude"@en . - -cccev:longitude a owl:DatatypeProperty ; - skos:definition "The longitude. (locn:Geometry) "@en ; - skos:prefLabel "Longitude"@en . - -cccev:registeredAddress a owl:ObjectProperty ; - skos:definition """The registered address relationship links a Resource with the legally registered Address. - -Additional Information: -It is the address to which formal communications can be sent, such as the postal address. (cpv:Person -> locn:Address (+cv:registeredAddress)) The registered address relationship links a Resource with the legally registered Address. - -Additional Information: -It is the address to which formal communications can be sent, such as the postal address. - (org:Organization -> locn:Address (+cv:registeredAddress)) """@en ; - skos:prefLabel "Registered address"@en . - -cccev:supportsConcept a owl:ObjectProperty ; - skos:definition """Information Concept providing facts found/inferred from the Evidence. - -Additional Information: -Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as "I am older that 18 years" or "this is a FairTrade product". (cccev:Evidence -> cccev:InformationConcept (+cccev:supportsConcept)) """@en ; - skos:prefLabel "Supports concept"@en . - -cccev:supportsRequirement a owl:ObjectProperty ; - skos:definition "Requirement for which the Evidence provides proof. (cccev:Evidence -> cccev:Requirement (+cccev:supportsRequirement)) "@en ; - skos:prefLabel "Supports requirement"@en . - -cccev:telephone a owl:DatatypeProperty ; - skos:definition """A telephone number through which the Contact Point can be contacted. - (cpov:ContactPoint) """@en ; - skos:prefLabel "Telephone"@en . - -cccev:weight a owl:DatatypeProperty ; - skos:definition """Relative importance of the Criterion. - -Additional Information: -The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1. (cccev:Criterion) """@en ; - skos:prefLabel "Weight"@en . - -cccev:weightingConsiderationDescription a owl:DatatypeProperty ; - skos:definition """Explanation of how the weighting of a Criterion is to be used. - -Additional Information: -This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process. (cccev:Criterion) """@en ; - skos:prefLabel "Weighting consideration description"@en . - -at-voc:EU-programme a skos:ConceptScheme ; - skos:definition "The EU programme authority table (AT) is a controlled vocabulary providing the list of programmes created and coordinated by the European Union and financially supported by the European Union or, in a few cases, by the contributions from the Member States. It has been developed specifically for the EU Budget as open linked data project. It indicates the authority code and start-use date of each concept and gives labels in all official EU languages."@en ; - skos:prefLabel "E u-programme"@en . - -at-voc:accessibility a skos:ConceptScheme ; - skos:definition "This table provides a list of options for the use of accessibility Criteria for Person with disabilities in the technical specifications within the domain of Public Procurement."@en ; - skos:prefLabel "Accessibility"@en . - -at-voc:applicability a skos:ConceptScheme ; - skos:definition "This table provides a list of the options pertinent to be chosen for a matter concerning the applicability of predefined fields. It is designed for but not restricted to the context of public procurement."@en ; - skos:prefLabel "Applicability"@en . - -at-voc:award-criterion-type a skos:ConceptScheme ; - skos:definition "This table provides the list of rules to be taken into account for the Award Decisions within the in public Procurement Procedures. The initial values are those foreseen in the public procurement directives of 2014 (Directives 2014/23/EU, 2014/24/EU and 2014/25/EU)."@en ; - skos:prefLabel "Award-criterion-type"@en . - -at-voc:buyer-legal-type a skos:ConceptScheme ; - skos:definition """This table provides a list of the type of Procuring Authorities within the domain of public procurement according to legislation. -"""@en ; - skos:prefLabel "Buyer-legal-type"@en . - -at-voc:change-corrig-justification a skos:ConceptScheme ; - skos:definition "This table provides the codes and values used in case of justification of corrections applied to a Notice within the context of Public Procurement."@en ; - skos:prefLabel "Change-corrig-justification"@en . - -at-voc:communication-justification a skos:ConceptScheme ; - skos:definition "This table provides the justification for restricting access rights to resources within the context of Public Procurement"@en ; - skos:prefLabel "Communication-justification"@en . - -at-voc:confidentiality-level a skos:ConceptScheme ; - skos:definition """The Confidentiality level authority table is a controlled vocabulary used to define the information confidentiality levels according to the European Commission Security Notice ‘Information assessment and classification’, C(2019) 1903 final, 5.3.2019. - - -"""@en ; - skos:prefLabel "Confidentiality-level"@en . - -at-voc:contract-nature a skos:ConceptScheme ; - skos:definition "This table provides a list of different types of subjects and goods that can be acquired by means of a public Contract such as works, supplies and services by one or more Contracting Authorities from Economic Operators."@en ; - skos:prefLabel "Contract-nature"@en . - -at-voc:country a skos:ConceptScheme ; - skos:definition """The Country authority table is a controlled vocabulary that lists concepts associated with names of countries and territories. - -Its main scope is to support documentary metadata activities. - -The concepts included are correlated with the ISO 3166 international standard. ISO 3166-1 contains a two-letter code which is recommended as the general purpose code, a three-letter code which has better mnenomic properties and a numeric-3 code which can be useful if script independence of the codes is important. The authority code relies on the ISO 3166-1/alpha-3 positions. If an authority code is needed for a country without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic or numeric. - -A country code comparison is provided between ISO codes, IANA codes (Internet Country-code Top-level Domains) and TIR (Transport International par la Route) Vehicle system codes. - -"""@en ; - skos:prefLabel "Country"@en . - -at-voc:cpv a skos:ConceptScheme ; - skos:definition "To support an effective Single Market, the Commission encourages suppliers and Contracting Authorities/Entities to adopt best practice and use electronic communication and information technology to provide all the relevant information, so as to ensure best value for money in Public Procurement."@en ; - skos:prefLabel "Cpv"@en . - -at-voc:criterion a skos:ConceptScheme ; - skos:definition "This table provides Criteria used for Public Procurement Procedures."@en ; - skos:prefLabel "Criterion"@en . - -at-voc:currency a skos:ConceptScheme ; - skos:definition """The Currency authority table is a controlled vocabulary that lists concepts associated with currencies and currency subunits. - -The concepts included are correlated with the ISO 4217 international standard. - -"""@en ; - skos:prefLabel "Currency"@en . - -at-voc:direct-award-justification a skos:ConceptScheme ; - skos:definition "This table provides the list of reasons for using a Procedure which allows awarding Contracts directly without the Requirement of publishing a call for competition in the Official Journal of the European Union."@en ; - skos:prefLabel "Direct-award-justification"@en . - -at-voc:dps-usage a skos:ConceptScheme ; - skos:definition "This table provides a list wether a dynamic purchasing system is involved in a Procurement and, in case of central purchasing bodies, whether it can be used by buyers not listed in the Notice of the Official Journal of the European Union."@en ; - skos:prefLabel "Dps-usage"@en . - -at-voc:economic-operator-size a skos:ConceptScheme ; - skos:definition """This table provides the different categories in which the Tenderers to whom a Contract can be awarded are classified, according to their size (using as Criteria the number of employees). -"""@en ; - skos:prefLabel "Economic-operator-size"@en . - -at-voc:environmental-impact a skos:ConceptScheme ; - skos:definition "This table provides the information about whether a Procurement includes a process to procure goods, services and works with a reduced Environmental Impact throughout their life cycle."@en ; - skos:prefLabel "Environmental-impact"@en . - -at-voc:form-type a skos:ConceptScheme ; - skos:definition """This table provides the codes and values used for the type of forms published on TED. - -"""@en ; - skos:prefLabel "Form-type"@en . - -at-voc:framework-agreement a skos:ConceptScheme ; - skos:definition "This table provides the list of codes to distinguish the different type Framework Agreement involved in a Tender."@en ; - skos:prefLabel "Framework-agreement"@en . - -at-voc:innovative-acquisition a skos:ConceptScheme ; - skos:definition "This table provides the codes and values used for innovative works, supplies or services being bought."@en ; - skos:prefLabel "Innovative-acquisition"@en . - -at-voc:irregularity-type a skos:ConceptScheme ; - skos:definition "This code list refers generally to the types of irregularities described in Section 2 of the Annex to the Commission Decision C(2019) 3452."@en ; - skos:prefLabel "Irregularity-type"@en . - -at-voc:language a skos:ConceptScheme ; - skos:definition """The Language authority table is a controlled vocabulary that lists concepts associated with languages. - -Its main scope is to support activities associated with publication process. - -The concepts included are correlated with the ISO 639 international standard. This standard is issued in several parts: - -ISO 639-1 contains strictly two alphabetic letters (alpha-2), - -ISO 639-2/B (B = bibliographic) is used for bibliographic purpose (alpha-3), - -ISO 639-2/T (T = terminology) is used for technical purpose (alpha-3), - -ISO 639-3 covers all the languages and macro-languages of the world (alpha-3); the values are compliant with ISO 639-2/T. - -If an authority code is needed for a language without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic. - -"""@en ; - skos:prefLabel "Language"@en . - -at-voc:legal-basis a skos:ConceptScheme ; - skos:definition """This table provides the legal basis based on the legal acts used for a given Public Procurement Procedure. The table is provided by the Publications Office. -"""@en ; - skos:prefLabel "Legal-basis"@en . - -at-voc:main-activity a skos:ConceptScheme ; - skos:definition """This table provides the list of main activities of the Buyers. - -The codes associated with Contracting Authorities are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. - -The codes associated with contracting entities are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14)."""@en ; - skos:prefLabel "Main-activity"@en . - -at-voc:measurement-unit a skos:ConceptScheme ; - skos:definition "The Measurement unit authority table is a controlled vocabulary listing units of measurement with their authority codes. The labels and symbols are given in all official EU languages. If available, the codes are based on the code list recommendation N°. 20 \"Codes for Units of Measure Used in International Trade\" (as revised periodically) maintained and published by UNECE through its Center for Trade Facilitation and Electronic Business (UN/CEFACT). The Measurement unit authority table is maintained by the Publications Office of the European Union on the EU Vocabularies website."@en ; - skos:prefLabel "Measurement-unit"@en . - -at-voc:missing-info-submission a skos:ConceptScheme ; - skos:definition "This table provides the list of codes indicating wether Tenderer-related information (complete or partial) can be supplemented even after the submission deadline."@en ; - skos:prefLabel "Missing-info-submission"@en . - -at-voc:modification-justification a skos:ConceptScheme ; - skos:definition """This table provides the main reasons for modifying a Contract within the domain of Public Procurement. - -"""@en ; - skos:prefLabel "Modification-justification"@en . - -at-voc:non-award-justification a skos:ConceptScheme ; - skos:definition "This table provides the list of reasons of the Buyer for not choosing a Winner in the Procurement Procedure."@en ; - skos:prefLabel "Non-award-justification"@en . - -at-voc:non-publication-justification a skos:ConceptScheme ; - skos:definition "This table provides codes and values for the main reasons for not immediately publishing a Notice within the context of Public Procurement."@en ; - skos:prefLabel "Non-publication-justification"@en . - -at-voc:notice-type a skos:ConceptScheme ; - skos:definition "This table provides a list of Public Procurement Notices according to procurement legislation published once a project is approved."@en ; - skos:prefLabel "Notice-type"@en . - -at-voc:number-fixed a skos:ConceptScheme ; - skos:definition "This table provides the codes linked to fix values within the context of Public Procurement."@en ; - skos:prefLabel "Number-fixed"@en . - -at-voc:number-threshold a skos:ConceptScheme ; - skos:definition "This table provides the codes linked to the type of threshold values within the context of Public Procurement."@en ; - skos:prefLabel "Number-threshold"@en . - -at-voc:number-weight a skos:ConceptScheme ; - skos:definition "This table provides the codes linked to the type of weight values used in Award Criteria within the context of Public Procurement."@en ; - skos:prefLabel "Number-weight"@en . - -at-voc:nuts a skos:ConceptScheme ; - skos:definition "The NUTS classification (Nomenclature of territorial units for statistics) is a hierarchical system for dividing up the economic territory of the EU and the UK. The NUTS 2021 compiles the versions 2010, 2013, 2016 and 2021 of the NUTS classification as well as the Statistical Regions for countries that do not belong to the EU such as candidate countries, potential candidates or countries belonging to the EFTA (European Free Trade Association)."@en ; - skos:prefLabel "Nuts"@en . - -at-voc:other-place-service a skos:ConceptScheme ; - skos:definition """This table provides the broad geopolitical areas linked to the Location of works and the place of performance or delivery within the context of Public Procurement. - -"""@en ; - skos:prefLabel "Other-place-service"@en . - -at-voc:permission a skos:ConceptScheme ; - skos:definition "This table provides the codes linked to the different values of permission and/or obligation. "@en ; - skos:prefLabel "Permission"@en . - -at-voc:procurement-procedure-type a skos:ConceptScheme ; - skos:definition """This table provides a list of activities leading to the conclusion of public Contracts used in Public Procurement according to the legislation. - -"""@en ; - skos:prefLabel "Procurement-procedure-type"@en . - -at-voc:received-submission-type a skos:ConceptScheme ; - skos:definition "This table provides the list of relevant categories used to classify Tenders or requests to participate received within the context of Public Procurement."@en ; - skos:prefLabel "Received-submission-type"@en . - -at-voc:remedy-type a skos:ConceptScheme ; - skos:definition "This table describes the measures taken following a Review."@en ; - skos:prefLabel "Remedy-type"@en . - -at-voc:requirement-stage a skos:ConceptScheme ; - skos:definition "This table describes when and whether a given Requirement must be provided in a Procedure."@en ; - skos:prefLabel "Requirement-stage"@en . - -at-voc:reserved-procurement a skos:ConceptScheme ; - skos:definition "This table provides the values used to indicate wether the participation in the Procurement is reserved for specific Organisations."@en ; - skos:prefLabel "Reserved-procurement"@en . - -at-voc:review-body-type a skos:ConceptScheme ; - skos:definition "This table covers the list of organisations providing the review of a given procedure."@en ; - skos:prefLabel "Review-body-type"@en . - -at-voc:review-decision-type a skos:ConceptScheme ; - skos:definition "This table describes the decision made a review body."@en ; - skos:prefLabel "Review-decision-type"@en . - -at-voc:selection-criterion a skos:ConceptScheme ; - skos:definition "This table provides the list of conditions that are concerned for evaluation purposes. In the domain of Public Procurement, Selection Criteria are normally based on a specific legal framework. This codelist is a subset of the ESPD codelist CriterionTaxonomy. "@en ; - skos:prefLabel "Selection-criterion"@en . - -at-voc:social-objective a skos:ConceptScheme ; - skos:definition "This table provides the values linked to any social objective promoted by the technical specifications, Award Criteria, Selection Criteria or Contract performance conditions included in a Procurement."@en ; - skos:prefLabel "Social-objective"@en . - -at-voc:subcontracting-indication a skos:ConceptScheme ; - skos:definition "This table provides the list of codes and values used to indicate information regarding the share of parts of a Contract to third parties. The share may refer to the portion of work, services or supplies and/or to the subject matter being subcontracted."@en ; - skos:prefLabel "Subcontracting-indication"@en . - -at-voc:subcontracting-obligation a skos:ConceptScheme ; - skos:definition "This table provides the list of codes and values used for the obligation of the Economic Operator of sharing parts of the original Contract to third parties. The share may refer to the portion of work, services or supplies."@en ; - skos:prefLabel "Subcontracting-obligation"@en . - -at-voc:timeperiod a skos:ConceptScheme ; - skos:definition """The Time-period authority table is a controlled vocabulary which lists the periods of time in the 24 official languages of the EU. It enumerates the names of the seasons, months, weekdays and the main units of time when the issues are published. It also contains concepts for ‘unlimited’ or ‘unknown’ time periods. - -"""@en ; - skos:prefLabel "Timeperiod"@en . - -at-voc:usage a skos:ConceptScheme ; - skos:definition "This table provides the list of codes and values indicating the application of Criteria or other concepts and information."@en ; - skos:prefLabel "Usage"@en . - -at-voc:winner-selection-status a skos:ConceptScheme ; - skos:definition "This table provides the list of codes and values used to indicate whether a tenderer was chosen to be awarded with a Contract and wether the competition is open."@en ; - skos:prefLabel "Winner-selection-status"@en . - -dcterms:Location a owl:Class ; - skos:definition "An identifiable geographic place or named place."@en ; - skos:prefLabel "Location"@en . - -dcterms:alternative a owl:DatatypeProperty ; - skos:definition """Any name by which an individual is known other than their full name. -WG 09/11/2021 (cpv:Person) """@en ; - skos:prefLabel "Alternative"@en . - -dcterms:description a owl:DatatypeProperty ; - skos:definition """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:ProcurementElement) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:System) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:AgentInRole) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (cpov:ContactPoint) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (cv:Channel) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - (epo:NonDisclosureAgreementTerm) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:SecurityClearanceTerm) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:SubcontractTerm) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (cccev:InformationConcept) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (cccev:Requirement) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:Technique) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:SubcontractingEstimate) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:ElectronicSignature) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - (epo:Document) An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 (epo:Fund) """@en ; - skos:prefLabel "Description"@en . - -dcterms:issued a owl:DatatypeProperty ; - skos:definition """Date of formal issuance of the resource. - -Additional information: -This is generally used for modules other than eNotice. -The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. -Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. - -WG approval 26/01/2023 (epo:Document) """@en ; - skos:prefLabel "Issued"@en . - -dcterms:title a owl:DatatypeProperty ; - skos:definition """A name given to the resource. - -WG approval 30/05/2023 (epo:ProcurementElement) A name given to the resource. - -WG approval 30/05/2023 (foaf:Agent) A name given to the resource. - -WG approval 30/05/2023 - (epo:AgentInRole) A name given to the resource. - -WG approval 30/05/2023 - - (epo:Document) A name given to the resource. - -WG approval 30/05/2023 - (epo:Fund) """@en ; - skos:prefLabel "Title"@en . - -dcterms:type a owl:ObjectProperty ; - skos:definition "Category to which the Requirement belongs. (cccev:Criterion -> at-voc:criterion (+dct:type)) "@en ; - skos:prefLabel "Type"@en . - -rdf:PlainLiteral a rdfs:Datatype ; - skos:prefLabel "Plain literal"@en . - -xsd:anyURI a rdfs:Datatype ; - skos:prefLabel "Any u r i"@en . - -xsd:boolean a rdfs:Datatype ; - skos:prefLabel "Boolean"@en . - -xsd:date a rdfs:Datatype ; - skos:prefLabel "Date"@en . - -xsd:dateTime a rdfs:Datatype ; - skos:prefLabel "Date time"@en . - -xsd:decimal a rdfs:Datatype ; - skos:prefLabel "Decimal"@en . - -xsd:integer a rdfs:Datatype ; - skos:prefLabel "Integer"@en . - -owl:Thing a owl:Class ; - skos:definition """Any individual in the domain of discourse is a Thing. - - -Additional Information: - -The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing."""@en ; - skos:prefLabel "Thing"@en . - -skos:notation a owl:DatatypeProperty ; - skos:definition "The literal identifying an entity, like a person or an object. (adms:Identifier) "@en ; - skos:prefLabel "Notation"@en . - -skos:prefLabel a owl:DatatypeProperty ; - skos:definition """The preferred lexical label for a resource, in a given language. - -WG approval 30/05/2023 - - (cccev:InformationConcept) The preferred lexical label for a resource, in a given language. - -WG approval 30/05/2023 (cccev:Requirement) """@en ; - skos:prefLabel "Pref label"@en . - -time:TemporalUnit a skos:ConceptScheme ; - skos:definition """standard duration, which provides the scale factor for a time extent, or the granularity or precision for a time position. -"""@en ; - skos:prefLabel "Temporal unit"@en . - -time:numericDuration a owl:DatatypeProperty ; - skos:definition "Value of a temporal extent expressed as a number. (epo:SpecificDuration) "@en ; - skos:prefLabel "Numeric duration"@en . - -time:unitType a owl:ObjectProperty ; - skos:prefLabel "Unit type"@en . - -adms:Identifier a owl:Class ; - skos:definition "A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information."@en ; - skos:prefLabel "Identifier"@en . - -adms:identifier a owl:ObjectProperty ; - skos:definition """A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 - - (epo:Project -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 (epo:LotGroup -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 - (epo:ProcurementElement -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (foaf:Agent -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (dct:Location -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (cccev:InformationConcept -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Document -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Fund -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:Consignment -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:ShipmentInformation -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-cat:Line -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:AbstractContainer -> adms:Identifier (+adms:identifier)) """@en ; - skos:prefLabel "Identifier"@en . - -adms:schemaAgency a owl:DatatypeProperty ; - skos:definition "The name of the agency that issued the identifier. (adms:Identifier) "@en ; - skos:prefLabel "Schema agency"@en . - -locn:Address a owl:Class ; - skos:definition """The particulars of the place where a Person or an Organisation is located. - -WG Approval 28/04/2020 - -Additional Information: -An "Address Representation" as conceptually defined by the INSPIRE Address Representation data type: "Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.". - - -The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. - - -This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - -- full address (the complete address as a formatted string) -- addressID (a unique identifier for the address) -The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. - -The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL."""@en ; - skos:prefLabel "Address"@en . - -locn:Geometry a owl:Class ; - skos:definition """The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. - -Additional Information: -This class defines the notion of "Geometry" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats."""@en ; - skos:prefLabel "Geometry"@en . - -locn:address a owl:ObjectProperty ; - skos:prefLabel "Address"@en . - -locn:addressArea a owl:DatatypeProperty ; - skos:definition """The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. - -Additional Information: -This would typically be part of a city, a neighbourhood or village, e.g. Montmartre. (locn:Address) """@en ; - skos:prefLabel "Address area"@en . - -locn:addressID a owl:ObjectProperty ; - skos:definition """A globally unique identifier for each instance of an Address. - -Additional Information: -The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. - -The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. - -Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. - -To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID. (locn:Address -> adms:Identifier (+locn:addressID)) """@en ; - skos:prefLabel "Address i d"@en . - -locn:adminUnitL1 a owl:DatatypeProperty ; - skos:definition """The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. - -Additional Information: -Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this. (locn:Address) """@en ; - skos:prefLabel "Admin unit l1"@en . - -locn:adminUnitL2 a owl:DatatypeProperty ; - skos:definition """The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. - -Additional Information: -Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" in the ATU controlled vocabulary. - (locn:Address) """@en ; - skos:prefLabel "Admin unit l2"@en . - -locn:fullAddress a owl:DatatypeProperty ; - skos:definition """The complete address written as a formatted string. - -Additional Information: -Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is "Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France". (locn:Address) """@en ; - skos:prefLabel "Full address"@en . - -locn:geographicIdentifier a owl:ObjectProperty ; - skos:definition """A URI that identifies the Location. - -Additional Information: -GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. - -Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. - -The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - -- http://dbpedia.org/resource/ISO_3166-1:GR -- http://dbpedia.org/resource/ISO_3166-1:GB -even when the geographic name is given as EL or UK. - -The use of a URIs has added advantages: - -- it can be used by automated systems to look up additional data (linked data); -- a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. - (dct:Location -> adms:Identifier (+locn:geographicIdentifier)) """@en ; - skos:prefLabel "Geographic identifier"@en . - -locn:geographicName a owl:DatatypeProperty ; - skos:definition """A textual description for a Location. - -Additional Information: -The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. - -A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - -- "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) -- "Athína"@gr-Latn (the standard Romanisation of the endonym) -- "Athens"@en (the English language exonym) -INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. - -The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - -- use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; -- use 'EL' in preference to the ISO 3166 code GR for Greece. -Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code. (dct:Location) """@en ; - skos:prefLabel "Geographic name"@en . - -locn:geometry a owl:ObjectProperty ; - skos:prefLabel "Geometry"@en . - -locn:locatorDesignator a owl:DatatypeProperty ; - skos:definition """A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. - -Additional Information: -In simpler terms, this is the building number, apartment number, etc. For an address such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17". (locn:Address) """@en ; - skos:prefLabel "Locator designator"@en . - -locn:locatorName a owl:DatatypeProperty ; - skos:definition """Proper noun(s) applied to the real world entity identified by the locator. - -Additional Information: -The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. - -The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator. (locn:Address) """@en ; - skos:prefLabel "Locator name"@en . - -locn:postCode a owl:DatatypeProperty ; - skos:definition """The post/zip code of an address. (INSPIRE's definition is "A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.") - -Additional Information: -Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example "75000". (locn:Address) """@en ; - skos:prefLabel "Post code"@en . - -locn:postName a owl:DatatypeProperty ; - skos:definition "The key postal division of the address, usually the city. (INSPIRE's definition is \"One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, \"Paris\". (locn:Address) "@en ; - skos:prefLabel "Post name"@en . - -locn:thoroughfare a owl:DatatypeProperty ; - skos:definition """An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. - -Additional Information: -For example, "Avenue des Champs-Élysées". (locn:Address) """@en ; - skos:prefLabel "Thoroughfare"@en . - -person:birthName a owl:DatatypeProperty ; - skos:definition """Family name of the Person given upon their birth. -WG Approval 09/11/2021 (cpv:Person) """@en ; - skos:prefLabel "Birth name"@en . - -person:patronymicName a owl:DatatypeProperty ; - skos:definition """Name based on the given name of the Person's father. -WG Approval 09/11/2021 (cpv:Person) """@en ; - skos:prefLabel "Patronymic name"@en . - -person:placeOfBirth a owl:ObjectProperty ; - skos:definition "The Location where the Person was born. (cpv:Person -> dct:Location (+person:placeOfBirth)) "@en ; - skos:prefLabel "Place of birth"@en . - -person:placeOfDeath a owl:ObjectProperty ; - skos:definition "The Location where the Person died. (cpv:Person -> dct:Location (+person:placeOfDeath)) "@en ; - skos:prefLabel "Place of death"@en . - -foaf:familyName a owl:DatatypeProperty ; - skos:definition """The hereditary surname of a family. - (cpv:Person) """@en ; - skos:prefLabel "Family name"@en . - -foaf:givenName a owl:DatatypeProperty ; - skos:definition """The name(s) that identify the Person within a family with a common surname. - (cpv:Person) """@en ; - skos:prefLabel "Given name"@en . - -foaf:name a owl:DatatypeProperty ; - skos:definition "The complete name of the Person as one string. (cpv:Person) "@en ; - skos:prefLabel "Name"@en . - -:involvesBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Involves buyer"@en . - -cccev:Channel a owl:Class ; - skos:definition """A medium through which Agents interact. - -Additional Information -Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. - -Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. -Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. - -See also Directive recitals 53 to 56. - -WG approval 2023-02-14"""@en ; - skos:prefLabel "Channel"@en . - -cccev:Criterion a owl:Class ; - rdfs:subClassOf cccev:Requirement ; - skos:definition """Condition for evaluation or assessment. - -Additional Information: -In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service."""@en ; - skos:prefLabel "Criterion"@en . - -cccev:hasRequirement a owl:ObjectProperty ; - skos:definition "A more specific Requirement that is part of the Requirement. (cccev:Requirement -> cccev:Requirement (+cccev:hasRequirement)) "@en ; - skos:prefLabel "Has requirement"@en . - -foaf:Person a owl:Class ; - rdfs:subClassOf foaf:Agent ; - skos:definition "The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF."@en ; - skos:prefLabel "Person"@en . - -:AwardDecision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """Resolution of the Buyer as to the result of the Procurement Procedure. - -WG approval 14/11/2018"""@en ; - skos:prefLabel "Award decision"@en . - -:Buyer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition """A Role of an Agent that awards a Contract and/or purchases items. - -Additional information: -In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. -In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. -In Post-Award the buyer generally refers to the purchaser of items."""@en ; - skos:prefLabel "Buyer"@en . - -:CentralPurchasingBody a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Buyer ; - skos:definition """Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. - -Additional Information: -In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. -Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; - -WG approval 05/08/2021"""@en ; - skos:prefLabel "Central purchasing body"@en . - -:ContractSpecificTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Term ; - skos:definition "Gathering class for conditions and stipulations related to a contract in the Post-Award Phase."@en ; - skos:prefLabel "Contract specific term"@en . - -:Duration a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "The length of time in which a concept occurs."@en ; - skos:prefLabel "Duration"@en . - -:Estimate a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "An approximate calculation or a judgement of the value, number, Quantity or extent of something."@en ; - skos:prefLabel "Estimate"@en . - -:EvaluationTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition """Conditions and stipulations defining particularities of the Tender evaluation. - -(WG approval 23/11/2018) - - -"""@en ; - skos:prefLabel "Evaluation term"@en . - -:ProcurementElement a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """Gathering class for critical/central elements in the Procurement Process. - -TODO: add definition -Additional information: -Alias: ProcurementComponent"""@en ; - skos:prefLabel "Procurement element"@en . - -:ProcurementObject a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementElement ; - skos:definition """The whole or a division of goods, services or works to be procured. - -Additional Information: -Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. -In a sense, such an "object" can constitute the "object of a Contract". -To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.). - -Note: -Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and "purpose" properties. """@en ; - skos:prefLabel "Procurement object"@en . - -:QualificationCriteriaSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriteriaSummary ; - skos:prefLabel "Qualification criteria summary"@en . - -:QualificationCriterion a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriterion ; - skos:definition """Criterion used in the first stage of procurement. - -WG approval 30/05/2023"""@en ; - skos:prefLabel "Qualification criterion"@en . - -:ReviewObject a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """Information about a Review Request or a Review Decision. - -Additional information: -This class corresponds to the BG-714 Review in eForms. - -"""@en ; - skos:prefLabel "Review object"@en . - -:isSubjectToTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is subject to term"@en . - -:AgentInRole a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """Relative concept that ties an Agent to a part they play in a given Situational Context. - -Additional information: -The classification of roles is based is based on the degree of involvement into the Procurement Process: -- Primary (Procurement) Pole is directly involved in the Procurement Process; -- Secondary (Procurement sub-) Role is secondary to the Procurement Process -- Tertiary (Related) Role is not involved in the Procurement Process."""@en ; - skos:prefLabel "Agent in role"@en . - -:AuxiliaryParty a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AgentInRole ; - skos:definition "Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it."@en ; - skos:prefLabel "Auxiliary party"@en . - -:ContextSpecificDescription a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """A description concerning a Procurement Object or a Notice in a specific Situation Context. - -Additional Information: -The description has its own identity (+I) but is dependent (+D) on the concerned Entity. - -We say that ContextSpecificDescription *concerns* an Entity. -"""@en ; - skos:prefLabel "Context specific description"@en . - -:ContextualProjection a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """Projection of an Entity and all of its properties that hold in a given Situation Context. - -Additional Information: -The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) - -We say that ContextualProjection *describes* an Entity. - -Adaptation of ContextSlices pattern encoding a 4D view. -http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices"""@en ; - skos:prefLabel "Contextual projection"@en . - -:ElementDescription a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Description about a specific resource."@en ; - skos:prefLabel "Element description"@en . - -:NoticeDescription a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Descriptions about the notice publishing, or providing evolutions of resources."@en ; - skos:prefLabel "Notice description"@en . - -:ProcurementCriteriaSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf cccev:Requirement ; - skos:definition "WG approval 24/01/2023"@en ; - skos:prefLabel "Procurement criteria summary"@en . - -:ProcurementCriterion a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf cccev:Criterion ; - skos:definition """A criterion specific to Procurement. - -Additional Information: - -This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). - -WG Approval 23/04/2020"""@en ; - skos:prefLabel "Procurement criterion"@en . - -:SelectionCriteriaSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :QualificationCriteriaSummary ; - skos:prefLabel "Selection criteria summary"@en . - -:StatisticalInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextSpecificDescription ; - skos:definition """Statistical data on the Procedure and the Lot. - -Additional Information - -At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. -Therefore this class is temporal and should cease to exist in fully electronic Procurement. -The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). - -Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. - -WG Approval 12/12/2019 -"""@en ; - skos:prefLabel "Statistical information"@en . - -:StrategicProcurement a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """Public Procurement that contributes to achieving pressing policy goals. - -Additional Information: -Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. - -This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. - -Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on "background information". - -WG Approval 10/03/2020"""@en ; - skos:prefLabel "Strategic procurement"@en . - -:Technique a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """Method used for conducting Procurement Procedures. - -Addtional information: -This corresponds in eForms to BG-706 Techniques. - -Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). - -WG Approval 19/09/2019 -"""@en ; - skos:prefLabel "Technique"@en . - -:hasElementDescription a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has element description"@en . - -cccev:Requirement a owl:Class ; - skos:definition """Condition or prerequisite that is to be proven by Evidence. - -Additional Information: -Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. -To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. -To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification."""@en ; - skos:prefLabel "Requirement"@en . - -org:Organization a owl:Class ; - rdfs:subClassOf foaf:Agent ; - skos:definition """A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. - -(WG approval 23/11/2018). -"""@en ; - skos:prefLabel "Organization"@en . - -foaf:Agent a owl:Class ; - skos:definition """A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. - -WG Approval 28/04/2020"""@en ; - skos:prefLabel "Agent"@en . - -:Contract a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition """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 ; - skos:prefLabel "Contract"@en . - -:Term a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A governing condition or stipulation."@en ; - skos:prefLabel "Term"@en . - -:ProcedureSpecificTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Term ; - skos:definition "Gathering class for conditions and stipulations related to a Procedure."@en ; - skos:prefLabel "Procedure specific term"@en . - -:OfferingParty a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AgentInRole ; - skos:definition """The Role of an Agent that acts on the Economic Operator side during a Procurement Process. - -Additional information: -As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances."""@en ; - skos:prefLabel "Offering party"@en . - -:LotSpecificTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Term ; - skos:definition "Gathering class for conditions and stipulations related to a Lot."@en ; - skos:prefLabel "Lot specific term"@en . - -:Document a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition """A set of interrelated Business Information representing the Business facts and associated metadata. -The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. - -WG Approval 23/05/2019 -"""@en ; - skos:prefLabel "Document"@en . - -:AcquiringParty a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AgentInRole ; - skos:definition """The Role of an Agent that acts on the buying side of a Procurement Process. -"""@en ; - skos:prefLabel "Acquiring party"@en . - -:core a owl:Ontology ; - cc:attributionName "European Union" ; - cc:attributionURL ; - dcterms:abstract "This artefact provides the ontology core specification." ; - dcterms:created ""^^xsd:date ; - dcterms:description "This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused."@en ; - dcterms:issued "2023-07-11"^^xsd:date ; - dcterms:license ; - dcterms:rights "The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated." ; - dcterms:title "eProcurement Ontology - core"@en ; - bibo:status "Semantic Specification Realease" ; - vann:preferredNamespacePrefix "epo" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:seeAlso , - , - , - ; - owl:imports cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "3.1.0" ; - owl:versionIRI :core-4.0.0 ; - owl:versionInfo "4.0.0" ; - skos:changeNote "This version is automatically generated from demo_ontology_CM.xml on 2023-07-11" . - diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM-restrictions.rdf b/implementation/demo_ontology/owl_ontology/demo_ontology_CM-restrictions.rdf deleted file mode 100644 index 1c10fe6..0000000 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM-restrictions.rdf +++ /dev/null @@ -1,8447 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology - core - This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused. - This artefact provides the ontology extention with restrictions and inference-relaated specification. - This version is automatically generated from demo_ontology_CM.xml on - 2023-07-11 - - - - - - 2023-07-11 - 4.0.0 - 3.1.0 - - Semantic Specification Realease - 3.1.0 - http://data.europa.eu/a4g/ontology# - epo - The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated. - - European Union - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM-restrictions.ttl b/implementation/demo_ontology/owl_ontology/demo_ontology_CM-restrictions.ttl deleted file mode 100644 index 9f3c92d..0000000 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM-restrictions.ttl +++ /dev/null @@ -1,3615 +0,0 @@ -@prefix : . -@prefix adms: . -@prefix at-voc: . -@prefix bibo: . -@prefix cc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix locn: . -@prefix org: . -@prefix owl: . -@prefix person: . -@prefix rdf: . -@prefix rdfs: . -@prefix skos: . -@prefix time: . -@prefix vann: . -@prefix xsd: . - -:agreedByBuyer rdfs:domain :ShipmentAgreement ; - rdfs:range :Buyer . - -:announcesAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :AwardDecision . - -:announcesCompletionOfContract rdfs:domain :CompletionNotice ; - rdfs:range :Contract . - -:announcesContract rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] ; - rdfs:range :Contract . - -:announcesExclusionGround rdfs:domain :ESPDRequest ; - rdfs:range :ExclusionGround . - -:announcesLot rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :Lot . - -:announcesLotGroup rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompetitionNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :LotGroup . - -:announcesLotGroupAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] ; - rdfs:range :LotGroupAwardInformation . - -:announcesNonPublishedElement rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :PublicationProvision . - -:announcesNoticeAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] ; - rdfs:range :NoticeAwardInformation . - -:announcesPlannedProcurementPart rdfs:domain :PlanningNotice ; - rdfs:range :PlannedProcurementPart . - -:announcesProcedure rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :Procedure . - -:announcesReviewObject rdfs:domain :CompletionNotice ; - rdfs:range :ReviewObject . - -:announcesRole rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ContractModificationNotice :PlanningNotice :CompetitionNotice :CompletionNotice ) ], - :ResultNotice ; - rdfs:range :AgentInRole . - -:announcesSelectionCriteria rdfs:domain :ESPDRequest ; - rdfs:range :SelectionCriterion . - -:answersAwardCriteria rdfs:domain [ a owl:Class ; - owl:unionOf ( :FinancialOffer :TechnicalOffer ) ] ; - rdfs:range :AwardCriterion . - -:answersExclusionGround rdfs:domain :ESPDResponse ; - rdfs:range :ExclusionGround . - -:answersSelectionCriteria rdfs:domain :ESPDResponse ; - rdfs:range :SelectionCriterion . - -:associatedWith a owl:AsymmetricProperty ; - rdfs:domain :Document ; - rdfs:range :Document . - -:bindsBuyer rdfs:domain :Contract ; - rdfs:range :Buyer . - -:bindsContractor rdfs:domain :Contract ; - rdfs:range :Contractor . - -:comprisesLotAwardDecision rdfs:domain :AwardDecision ; - rdfs:range :LotAwardDecision . - -:comprisesMiniCompetitionAwardDecision rdfs:domain :AwardDecision ; - rdfs:range :MiniCompetitionAwardDecision . - -:comprisesTenderAwardOutcome rdfs:domain :AwardDecision ; - rdfs:range :TenderAwardOutcome . - -:concernsContract rdfs:domain :ContractInformation ; - rdfs:range :Contract . - -:concernsOriginatorRequest rdfs:domain :OriginatorInformation ; - rdfs:range :OriginatorRequest . - -:conformsToLegalBasis rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:conformsToSpecificLegalBasis rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:containsCandidate rdfs:domain :SelectedCandidateList ; - rdfs:range :Candidate . - -:contextualisedBy rdfs:domain :AgentInRole ; - rdfs:range :ProcurementObject . - -:core-restriction a owl:Ontology ; - cc:attributionName "European Union" ; - cc:attributionURL ; - dcterms:abstract "This artefact provides the ontology extention with restrictions and inference-relaated specification." ; - dcterms:created ""^^xsd:date ; - dcterms:description "This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused."@en ; - dcterms:issued "2023-07-11"^^xsd:date ; - dcterms:license ; - dcterms:rights "The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated." ; - dcterms:title "eProcurement Ontology - core"@en ; - bibo:status "Semantic Specification Realease" ; - vann:preferredNamespacePrefix "epo" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:seeAlso , - , - , - ; - owl:imports :core, - cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "3.1.0" ; - owl:versionIRI :core-restriction-4.0.0 ; - owl:versionInfo "4.0.0" ; - skos:changeNote """This version is automatically generated from demo_ontology_CM.xml on - 2023-07-11""" . - -:definesCatalogueProvider rdfs:domain :AccessTerm ; - rdfs:range :CatalogueProvider . - -:definesCatalogueReceiver rdfs:domain :AccessTerm ; - rdfs:range :CatalogueReceiver . - -:definesInformationProvider rdfs:domain :ProcedureTerm ; - rdfs:range :AuxiliaryParty . - -:definesLotGroup rdfs:domain :ProcedureTerm ; - rdfs:range :LotGroup . - -:definesPlaceOfPerformance rdfs:domain :ContractTerm ; - rdfs:range dcterms:Location . - -:definesPrize rdfs:domain :DesignContestRegimeTerm ; - rdfs:range :Prize . - -:delegatesAncillaryActivitiesTo rdfs:domain :Buyer ; - rdfs:range :ProcurementServiceProvider . - -:describesContractModification rdfs:domain :ContractModificationNotice ; - rdfs:range :ContractModification . - -:describesResultNotice rdf:domain :NoticeAwardInformation ; - rdfs:range [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] . - -:distributesOffer rdfs:domain :OfferIssuer ; - rdfs:range :Offer . - -:exposesChannel rdfs:domain :AgentInRole ; - rdfs:range cccev:Channel . - -:exposesInvoiceeChannel rdfs:domain :Buyer ; - rdfs:range cccev:Channel . - -:foreseesContractSpecificTerm rdfs:domain :ProcurementObject ; - rdfs:range :ContractSpecificTerm . - -:foreseesSubcontracting rdfs:domain :Tender ; - rdfs:range :SubcontractingEstimate . - -:foreseesTechnique rdfs:domain :PlannedProcurementPart ; - rdfs:range :Technique . - -:fulfillsRequirement rdfs:domain [ a owl:Class ; - owl:unionOf ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) ] ; - rdfs:range skos:Concept . - -:fulfillsStrategicProcurement rdfs:domain :ProcurementObject ; - rdfs:range :StrategicProcurement . - -:hasAcceleratedProcedureJustification rdfs:domain :Procedure ; - rdfs:range rdf:PlainLiteral . - -:hasAccessURL rdfs:domain :Document ; - rdfs:range xsd:anyURI . - -:hasActivityDescription rdfs:domain :Buyer ; - rdfs:range rdf:PlainLiteral . - -:hasAdditionalClassification rdfs:domain :Purpose ; - rdfs:range skos:Concept . - -:hasAdditionalContractNature rdfs:domain :ContractTerm ; - rdfs:range skos:Concept . - -:hasAlias rdfs:domain foaf:Agent ; - rdfs:range rdf:PlainLiteral . - -:hasAllegedIrregularityType rdfs:domain :ReviewRequest ; - rdfs:range skos:Concept . - -:hasAmount rdfs:domain [ a owl:Class ; - owl:unionOf ( :AllowanceChargeInformation :TaxInformation ) ] ; - rdfs:range :MonetaryValue . - -:hasAmountDueForPayment rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasAssociatedDocument rdfs:domain [ a owl:Class ; - owl:unionOf ( :DespatchAdvice :DespatchLine ) ] ; - rdfs:range :Document . - -:hasAwardCriteriaEvaluationFormula rdfs:domain :AwardEvaluationTerm ; - rdfs:range rdf:PlainLiteral . - -:hasAwardCriterionType rdfs:domain :AwardCriterion ; - rdfs:range skos:Concept . - -:hasAwardStatus rdfs:domain :AwardDecision ; - rdfs:range skos:Concept . - -:hasBaseQuantity rdfs:domain :Price ; - rdfs:range :Quantity . - -:hasBatchID rdfs:domain :Batch ; - rdfs:range adms:Identifier . - -:hasBeneficialOwner rdfs:domain :Business ; - rdfs:range cccev:Person ; - owl:inverseOf :isBeneficialOwnerOf . - -:hasBroadPlaceOfPerformance rdfs:domain :ContractTerm ; - rdfs:range skos:Concept . - -:hasBusinessSize rdfs:domain :Business ; - rdfs:range skos:Concept . - -:hasBuyerCategoryDescription rdfs:domain :FrameworkAgreementTerm ; - rdfs:range rdf:PlainLiteral . - -:hasBuyerItemID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasBuyerLegalType rdfs:domain org:Organization ; - rdfs:range skos:Concept . - -:hasCandidateList rdfs:domain :DynamicPurchasingSystem ; - rdfs:range :SelectedCandidateList . - -:hasCarrierConsignmentID rdfs:domain :Consignment ; - rdfs:range adms:Identifier . - -:hasCatalogueLineValidity rdfs:domain :CatalogueLine ; - rdfs:range :Period . - -:hasCertification rdfs:domain [ a owl:Class ; - owl:unionOf ( foaf:Person org:Organization ) ] ; - rdfs:range :Certificate . - -:hasChangeDescription rdfs:domain :ElementChangeDescription ; - rdfs:range rdf:PlainLiteral . - -:hasChangeJustification rdfs:domain :ElementChangeDescription ; - rdfs:range skos:Concept . - -:hasChangeReasonDescription rdfs:domain :ElementChangeDescription ; - rdfs:range rdf:PlainLiteral . - -:hasChargeableWeight rdfs:domain :Consignment ; - rdfs:range :Quantity . - -:hasConditionVerificationMethod rdfs:domain :QualificationCriteriaSummary ; - rdfs:range rdf:PlainLiteral . - -:hasConfirmedIrregularityType rdfs:domain :ReviewDecision ; - rdfs:range skos:Concept . - -:hasConsigneeConsignmentID rdfs:domain :Consignment ; - rdfs:range adms:Identifier . - -:hasConsignmentDeclaredStatisticsValue rdfs:domain :Consignment ; - rdfs:range :MonetaryValue . - -:hasConsignmentFreeOnBoardValue rdfs:domain :Consignment ; - rdfs:range :MonetaryValue . - -:hasConsignmentInvoiceValue rdfs:domain :Consignment ; - rdfs:range :MonetaryValue . - -:hasConstraint rdfs:domain :ProcurementCriterion ; - rdfs:range cccev:Constraint . - -:hasContactPointInRole rdfs:domain :AgentInRole ; - rdfs:range cccev:ContactPoint . - -:hasContractAmendment rdfs:domain :Contract ; - rdfs:range :AmendedContract . - -:hasContractNatureType rdfs:domain :ContractTerm ; - rdfs:range skos:Concept . - -:hasCountryCode rdfs:domain [ a owl:Class ; - owl:unionOf ( dcterms:Location locn:Address ) ] ; - rdfs:range skos:Concept . - -:hasCountryOfBirth rdfs:domain cccev:Person ; - rdfs:range skos:Concept . - -:hasCountryOfOrigin rdfs:domain :Item ; - rdfs:range skos:Concept . - -:hasCrossBorderLaw rdfs:domain :ProcedureTerm ; - rdfs:range rdf:PlainLiteral . - -:hasCurrency rdfs:domain :MonetaryValue ; - rdfs:range skos:Concept . - -:hasCurrencyCodeListAgencyID rdfs:domain :MonetaryValue ; - rdfs:range rdf:PlainLiteral . - -:hasCurrencyCodeListAgencyName rdfs:domain :MonetaryValue ; - rdfs:range rdf:PlainLiteral . - -:hasCurrencyCodeListID rdfs:domain :MonetaryValue ; - rdfs:range rdf:PlainLiteral . - -:hasDPSScope rdfs:domain :DynamicPurchaseSystemTechnique ; - rdfs:range skos:Concept . - -:hasDeclaredStatisticalValue rdfs:domain :GoodsItem ; - rdfs:range :MonetaryValue . - -:hasDeliveryLocation rdfs:domain :Price ; - rdfs:range dcterms:Location . - -:hasDeliveryPeriod rdfs:domain :DeliveryInformation ; - rdfs:range :Period . - -:hasDespatchedQuantity rdfs:domain :DespatchLine ; - rdfs:range :Quantity . - -:hasDirectAwardJustification rdfs:domain :DirectAwardTerm ; - rdfs:range skos:Concept . - -:hasDocumentRestrictionJustification rdfs:domain :AccessTerm ; - rdfs:range skos:Concept . - -:hasDocumentStatus rdfs:domain :Document ; - rdfs:range skos:Concept . - -:hasDocumentType rdfs:domain :Document ; - rdfs:range skos:Concept . - -:hasECataloguePermission rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasEInvoicingPermission rdfs:domain :ContractTerm ; - rdfs:range skos:Concept . - -:hasESubmissionPermission rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasElectronicDigest a owl:AsymmetricProperty ; - rdfs:domain :Document ; - rdfs:range :Document . - -:hasElectronicSignature rdfs:domain :Document ; - rdfs:range :ElectronicSignature . - -:hasElementDescription rdfs:domain :NoticeDescription ; - rdfs:range :ElementDescription . - -:hasEndpointIdentifier rdfs:domain cccev:Channel ; - rdfs:range adms:Identifier . - -:hasEstimatedDeliveryPeriod rdfs:domain :ShipmentInformation ; - rdfs:range :Period . - -:hasEvaluationMember rdfs:domain :EvaluationBoard ; - rdfs:range :JuryMember . - -:hasExpectedDeliveryTime rdfs:domain :Price ; - rdfs:range :Duration . - -:hasExternalSpecification rdfs:domain :Item ; - rdfs:range :Document . - -:hasFax rdfs:domain cccev:ContactPoint ; - rdfs:range rdf:PlainLiteral . - -:hasFixedValueType rdfs:domain :AwardCriterion ; - rdfs:range skos:Concept . - -:hasFollowupContractInformation rdfs:domain :DesignContestRegimeTerm ; - rdfs:range rdf:PlainLiteral . - -:hasFormType rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:hasFrameworkAgreementType rdfs:domain :FrameworkAgreementTerm ; - rdfs:range skos:Concept . - -:hasFreightForwarderConsignmentID rdfs:domain :Consignment ; - rdfs:range adms:Identifier . - -:hasFundProgramme rdfs:domain :Fund ; - rdfs:range skos:Concept . - -:hasGrossVolume rdfs:domain [ a owl:Class ; - owl:unionOf ( :AbstractContainer :Consignment ) ] ; - rdfs:range :Quantity . - -:hasGrossWeight rdfs:domain [ a owl:Class ; - owl:unionOf ( :AbstractContainer :Consignment ) ] ; - rdfs:range :Quantity . - -:hasGroupLotEvaluationMethod rdfs:domain :ProcedureTerm ; - rdfs:range rdf:PlainLiteral . - -:hasGroupType rdfs:domain :OrganisationGroup ; - rdfs:range rdf:PlainLiteral . - -:hasGuaranteeDescription rdfs:domain :SubmissionTerm ; - rdfs:range rdf:PlainLiteral . - -:hasHeight rdfs:domain :AbstractContainer ; - rdfs:range :Quantity . - -:hasInternalIdentifier rdfs:domain :ProcurementElement ; - rdfs:range adms:Identifier . - -:hasIrregularityType rdfs:domain :ReviewIrregularitySummary ; - rdfs:range skos:Concept . - -:hasItemCountryOfOrigin rdfs:domain :Tender ; - rdfs:range skos:Concept . - -:hasItemStandardID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasJustification rdfs:domain :DirectAwardTerm ; - rdfs:range rdf:PlainLiteral . - -:hasLanguage rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasLateSubmissionInformationDescription rdfs:domain :SubmissionTerm ; - rdfs:range rdf:PlainLiteral . - -:hasLateSubmissionPermission rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasLegalBasis rdfs:domain :ProcurementObject ; - rdfs:range skos:Concept . - -:hasLegalBasisDescription rdfs:domain :ProcurementObject ; - rdfs:range rdf:PlainLiteral . - -:hasLegalIdentifier rdfs:domain org:Organization ; - rdfs:range adms:Identifier . - -:hasLegalName rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasLegalRegime rdfs:domain :ProcurementObject ; - rdfs:range skos:Concept . - -:hasLength rdfs:domain :AbstractContainer ; - rdfs:range :Quantity . - -:hasLoadingLength rdfs:domain :Consignment ; - rdfs:range :Quantity . - -:hasMainActivity rdfs:domain org:Organization ; - rdfs:range skos:Concept . - -:hasMainClassification rdfs:domain :Purpose ; - rdfs:range skos:Concept . - -:hasMainFeature rdfs:domain :Procedure ; - rdfs:range rdf:PlainLiteral . - -:hasManufacturerID rdfs:domain :Manufacturer ; - rdfs:range adms:Identifier . - -:hasManufacturerItemID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasMaximumOrderQuantity rdfs:domain :CatalogueLine ; - rdfs:range :Quantity . - -:hasMaximumTemperature rdfs:domain :TemperatureSpecification ; - rdfs:range :Quantity . - -:hasMinimumQuantityGuaranteedForDelivery rdfs:domain :CatalogueLine ; - rdfs:range :Quantity . - -:hasMinimumTemperature rdfs:domain :TemperatureSpecification ; - rdfs:range :Quantity . - -:hasModificationDescription rdfs:domain :ElementModificationDescription ; - rdfs:range rdf:PlainLiteral . - -:hasModificationJustification rdfs:domain [ a owl:Class ; - owl:unionOf ( :ElementModificationDescription :AmendedContract ) ] ; - rdfs:range skos:Concept . - -:hasModificationReasonDescription rdfs:domain :ElementModificationDescription ; - rdfs:range rdf:PlainLiteral . - -:hasNationalProcedureRules rdfs:domain :ProcedureTerm ; - rdfs:range xsd:anyURI . - -:hasNationality rdfs:domain cccev:Person ; - rdfs:range skos:Concept . - -:hasNetMonetaryValue rdfs:domain :Price ; - rdfs:range :MonetaryValue . - -:hasNetQuantity rdfs:domain :Item ; - rdfs:range :Quantity . - -:hasNetVolume rdfs:domain :AbstractContainer ; - rdfs:range :Quantity . - -:hasNetWeight rdfs:domain [ a owl:Class ; - owl:unionOf ( :AbstractContainer :Consignment ) ] ; - rdfs:range :Quantity . - -:hasNonAccessibilityCriterionJustification rdfs:domain :StrategicProcurement ; - rdfs:range rdf:PlainLiteral . - -:hasNonAwardJustification rdfs:domain :AwardDecision ; - rdfs:range skos:Concept . - -:hasNonElectronicSubmissionDescription rdfs:domain :SubmissionTerm ; - rdfs:range rdf:PlainLiteral . - -:hasNonElectronicSubmissionJustification rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasNonPublicationJustification rdfs:domain :ElementConfidentialityDescription ; - rdfs:range skos:Concept . - -:hasNoticeType rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:hasNotificationContentType rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:hasNutsCode rdfs:domain [ a owl:Class ; - owl:unionOf ( dcterms:Location locn:Address ) ] ; - rdfs:range skos:Concept . - -:hasOfficialLanguage rdfs:domain :Document ; - rdfs:range skos:Concept . - -:hasOpeningDescription rdfs:domain :OpeningTerm ; - rdfs:range rdf:PlainLiteral . - -:hasOperatorLicenceID rdfs:domain :TransportMeansOperator ; - rdfs:range adms:Identifier . - -:hasOptionsDescription rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasOrderabableUnitFactorRate rdfs:domain :Price ; - rdfs:range :Quantity . - -:hasOutstandingQuantity rdfs:domain :DespatchLine ; - rdfs:range :Quantity . - -:hasPaymentArrangement rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasPerformanceConditions rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasPerformingStaffQualificationInformation rdfs:domain :ProcurementCriterion ; - rdfs:range skos:Concept . - -:hasPlaceOfPerformanceAdditionalInformation rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasPrepaidAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasPriceValidity rdfs:domain :Price ; - rdfs:range :Period . - -:hasPrimaryContactPoint rdfs:domain org:Organization ; - rdfs:range cccev:ContactPoint . - -:hasProcedureType rdfs:domain :Procedure ; - rdfs:range skos:Concept . - -:hasProcurementClassification rdfs:domain :Contract ; - rdfs:range skos:Concept . - -:hasQualificationCondition rdfs:domain :QualificationCriteriaSummary ; - rdfs:range rdf:PlainLiteral . - -:hasQualifiedValue rdfs:domain :ItemProperty ; - rdfs:range :Quantity . - -:hasQuantity rdfs:domain [ a owl:Class ; - owl:unionOf ( :OrderLine :Deliverable ) ] ; - rdfs:range :Quantity . - -:hasQuantityThreshold rdfs:domain :Price ; - rdfs:range :Quantity . - -:hasReceivedSubmissionType rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range skos:Concept . - -:hasRegistrationCountry rdfs:domain org:Organization ; - rdfs:range skos:Concept . - -:hasRenewalDescription rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasReservedProcurement rdfs:domain [ a owl:Class ; - owl:unionOf ( :ParticipationCondition :ParticipationConditionsSummary ) ] ; - rdfs:range skos:Concept . - -:hasReviewBodyType rdfs:domain :Reviewer ; - rdfs:range skos:Concept . - -:hasReviewDecisionType rdfs:domain :ReviewDecision ; - rdfs:range skos:Concept . - -:hasReviewIrregularitySummary rdfs:domain :ReviewRequestSummary ; - rdfs:range :ReviewIrregularitySummary . - -:hasRoundingAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasScheme rdfs:domain adms:Identifier ; - rdfs:range rdf:PlainLiteral . - -:hasSchemeVersion rdfs:domain adms:Identifier ; - rdfs:range rdf:PlainLiteral . - -:hasSelectionCriteriaUsage rdfs:domain :SelectionCriterion ; - rdfs:range skos:Concept . - -:hasSelectionCriterionType rdfs:domain :SelectionCriterion ; - rdfs:range skos:Concept . - -:hasSellerItemID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasSerialID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasStrategicProcurementDescription rdfs:domain :StrategicProcurement ; - rdfs:range rdf:PlainLiteral . - -:hasSubcontractingObligation rdfs:domain :SubcontractTerm ; - rdfs:range skos:Concept . - -:hasSubjectMatter rdfs:domain :SubcontractingEstimate ; - rdfs:range rdf:PlainLiteral . - -:hasSubmissionURL rdfs:domain :SubmissionTerm ; - rdfs:range xsd:anyURI . - -:hasTaxIdentifier rdfs:domain org:Organization ; - rdfs:range adms:Identifier . - -:hasTaxInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :Tender :Contract ) ] ; - rdfs:range :TaxInformation . - -:hasTenderSubcontractingInformation rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasThresholdType rdfs:domain cccev:Constraint ; - rdfs:range skos:Concept . - -:hasTimePeriod rdfs:domain :Period ; - rdfs:range skos:Concept . - -:hasTotalAllowanceAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTotalChargeAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTotalGoodsItemQuantity rdfs:domain [ a owl:Class ; - owl:unionOf ( :AbstractContainer :Consignment ) ] ; - rdfs:range :Quantity . - -:hasTotalLineAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTotalTaxExclusiveAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTotalTaxInclusiveAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTraceID rdfs:domain :GoodsItem ; - rdfs:range adms:Identifier . - -:hasTrackingID rdfs:domain :DeliveryInformation ; - rdfs:range adms:Identifier . - -:hasTransportHandlingUnitQuantity rdfs:domain :Consignment ; - rdfs:range :Quantity . - -:hasUnitCode rdfs:domain :Quantity ; - rdfs:range skos:Concept . - -:hasUnitDescription rdfs:domain :Quantity ; - rdfs:range rdf:PlainLiteral . - -:hasUnofficialLanguage rdfs:domain :Document ; - rdfs:range skos:Concept . - -:hasUsage rdfs:domain :Technique ; - rdfs:range skos:Concept . - -:hasVariantPermission rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasVehicleID rdfs:domain :TransportMeans ; - rdfs:range adms:Identifier . - -:hasVehicleSegmentID rdfs:domain :TransportMeans ; - rdfs:range adms:Identifier . - -:hasWeightValueType rdfs:domain :ProcurementCriterion ; - rdfs:range skos:Concept . - -:hasWidth rdfs:domain :AbstractContainer ; - rdfs:range :Quantity . - -:implementsContract rdfs:domain :OrderResponse ; - rdfs:range :Contract . - -:includesAccessibilityCriterion rdfs:domain :StrategicProcurement ; - rdfs:range skos:Concept . - -:includesTender rdfs:domain :Contract ; - rdfs:range :Tender . - -:indicatesInvoiceeContactPoint rdfs:domain :Buyer ; - rdfs:range cccev:ContactPoint . - -:involvesBuyer rdfs:domain :Procedure ; - rdfs:range :Buyer . - -:isAppointedBy rdfs:domain :EvaluationBoard ; - rdfs:range :Buyer . - -:isAssignedForEvaluationOf rdfs:domain :EvaluationBoard ; - rdfs:range :Lot . - -:isBasedOnImplementingRegulation rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:isCalculatedOn rdfs:domain [ a owl:Class ; - owl:unionOf ( :AllowanceChargeInformation :TaxInformation ) ] ; - rdfs:range :MonetaryValue . - -:isFundedBy rdfs:domain :ProcurementObject ; - rdfs:range :Fund . - -:isResponsibilityOfBuyer rdfs:domain :Procedure ; - rdfs:range :Buyer . - -:isSubjectToContractSpecificTerm rdfs:domain :Contract ; - rdfs:range :ContractSpecificTerm . - -:isSubjectToLotSpecificTerm rdfs:domain :Lot ; - rdfs:range :LotSpecificTerm . - -:isSubjectToTerm rdfs:domain :ProcurementObject ; - rdfs:range :Term . - -:isSubordinatedToContract rdfs:domain :Catalogue ; - rdfs:range :Contract . - -:isSupportedBy rdf:domain :Tender ; - rdfs:range [ a owl:Class ; - owl:unionOf ( :TechnicalOffer :ESPDResponse :FinancialOffer ) ] . - -:providesRulingOnRemedy rdfs:domain :ReviewDecision ; - rdfs:range skos:Concept . - -:refersToAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; - rdfs:range :AwardDecision . - -:refersToContractToBeModified rdfs:domain :ContractModificationNotice ; - rdfs:range :Contract . - -:refersToLotGroup rdfs:domain [ a owl:Class ; - owl:unionOf ( :ContractModificationNotice :ResultNotice :CompletionNotice ) ] ; - rdfs:range :LotGroup . - -:refersToLotGroupAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; - rdfs:range :LotGroupAwardInformation . - -:refersToNonPublishedElement rdfs:domain :CompletionNotice ; - rdfs:range :PublicationProvision . - -:refersToNoticeAwardInformation rdfs:domain :CompletionNotice ; - rdfs:range :NoticeAwardInformation . - -:refersToPlannedPart rdfs:domain :AccessTerm ; - rdfs:range :PlannedProcurementPart . - -:refersToPrevious a owl:AsymmetricProperty ; - rdfs:domain :Document ; - rdfs:range :Document . - -:refersToPreviousProcedureLot rdfs:domain :DirectAwardTerm ; - rdfs:range :Lot . - -:refersToProject rdfs:domain :Order ; - rdfs:range :Project . - -:refersToRole rdfs:domain :CompletionNotice, - :ResultNotice ; - rdfs:range :AgentInRole . - -:requestsRemedyType rdfs:domain :ReviewRequest ; - rdfs:range skos:Concept . - -:resultsFromLotAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectContract :FrameworkAgreement ) ] ; - rdfs:range :LotAwardDecision . - -:signedByBuyer rdfs:domain :Contract ; - rdfs:range :Buyer . - -:signedByContractor rdfs:domain :Contract ; - rdfs:range :Contractor . - -:signsAwardDecision rdfs:domain :Buyer ; - rdfs:range :AwardDecision . - -:specifiesAwardCriterion rdfs:domain :MiniCompetition ; - rdfs:range :AwardCriterion . - -:specifiesBuyer rdfs:domain [ a owl:Class ; - owl:unionOf ( :Catalogue :Order ) ], - :OrderResponse ; - rdfs:range :Buyer . - -:specifiesCatalogueProvider rdfs:domain :Catalogue ; - rdfs:range :CatalogueProvider . - -:specifiesCatalogueReceiver rdfs:domain :Catalogue ; - rdfs:range :CatalogueReceiver . - -:specifiesDeliverable rdfs:domain :Contract ; - rdfs:range :Deliverable . - -:specifiesDeliveryAgreementLocation rdfs:domain :DeliveryAgreement ; - rdfs:range dcterms:Location . - -:specifiesPlaceOfDelivery rdfs:domain :DeliveryInformation ; - rdfs:range dcterms:Location . - -:specifiesPlaceOfDespatch rdfs:domain :ShipmentInformation ; - rdfs:range dcterms:Location . - -:specifiesProcurementCriteriaSummary rdfs:domain :Procedure ; - rdfs:range :ProcurementCriteriaSummary . - -:specifiesProcurementCriterion rdfs:domain [ a owl:Class ; - owl:unionOf ( :Lot :LotGroup ) ] ; - rdfs:range :ProcurementCriterion . - -:specifiesSubcontractors rdfs:domain :Tender ; - rdfs:range :Subcontractor . - -:usesChannel rdfs:domain :ProcurementElement ; - rdfs:range cccev:Channel . - -:usesTechnique rdfs:domain :ProcurementObject ; - rdfs:range :Technique . - -cccev:confidentialityLevelType rdfs:domain cccev:Evidence ; - rdfs:range skos:Concept . - -cccev:constrains rdfs:domain cccev:Constraint ; - rdfs:range cccev:InformationConcept . - -cccev:coordinates rdfs:domain locn:Geometry ; - rdfs:range rdf:PlainLiteral . - -cccev:hasRequirement a owl:AsymmetricProperty ; - rdfs:domain cccev:Requirement ; - rdfs:range cccev:Requirement . - -cccev:latitude rdfs:domain locn:Geometry ; - rdfs:range rdf:PlainLiteral . - -cccev:longitude rdfs:domain locn:Geometry ; - rdfs:range rdf:PlainLiteral . - -cccev:supportsConcept rdfs:domain cccev:Evidence ; - rdfs:range cccev:InformationConcept . - -cccev:supportsRequirement rdfs:domain cccev:Evidence ; - rdfs:range cccev:Requirement . - -cccev:telephone rdfs:domain cccev:ContactPoint ; - rdfs:range rdf:PlainLiteral . - -dcterms:alternative rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -dcterms:type rdfs:domain cccev:Criterion ; - rdfs:range skos:Concept . - -time:unitType rdfs:domain :SpecificDuration ; - rdfs:range skos:Concept . - -adms:schemaAgency rdfs:domain adms:Identifier ; - rdfs:range rdf:PlainLiteral . - -locn:postCode rdfs:domain locn:Address ; - rdfs:range rdf:PlainLiteral . - -locn:postName rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:thoroughfare rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -person:birthName rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -person:patronymicName rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -foaf:familyName rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -foaf:givenName rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -foaf:name rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -:actsOnBehalfOf rdfs:domain :ProcurementServiceProvider ; - rdfs:range :Buyer . - -:comprisesTender rdfs:domain :TenderGroup ; - rdfs:range :Tender . - -:concernsMiniCompetition rdfs:domain :MiniCompetitionAwardDecision ; - rdfs:range :MiniCompetition . - -:concernsProcedure rdfs:domain :ProcurementProcessInformation ; - rdfs:range :Procedure . - -:concernsReviewSummaryForLot a owl:FunctionalProperty ; - rdfs:domain :ReviewRequestSummary ; - rdfs:range :Lot . - -:concernsTender a owl:FunctionalProperty ; - rdfs:domain :TenderAwardOutcome ; - rdfs:range :Tender . - -:containsModificationsOf a owl:AsymmetricProperty ; - rdfs:domain owl:Thing ; - rdfs:range owl:Thing . - -:definesBudgetProvider rdfs:domain :ProcedureTerm ; - rdfs:range :BudgetProvider . - -:definesContractDuration rdfs:domain :ContractTerm ; - rdfs:range :Duration . - -:definesContractPeriod rdfs:domain :ContractTerm ; - rdfs:range :Period . - -:definesMediator rdfs:domain :ProcedureTerm ; - rdfs:range :Mediator . - -:definesOfflineAccessProvider rdfs:domain :AccessTerm ; - rdfs:range :OfflineAccessProvider . - -:definesOpeningPlace rdfs:domain :OpeningTerm ; - rdfs:range locn:Address . - -:definesParticipationRequestProcessor rdfs:domain :ParticipationRequestTerm ; - rdfs:range :ParticipationRequestProcessor . - -:definesParticipationRequestReceiver rdfs:domain :ParticipationRequestTerm ; - rdfs:range :ParticipationRequestReceiver . - -:definesPaymentExecutor rdfs:domain :ContractTerm ; - rdfs:range :PaymentExecutor . - -:definesProcurementProcedureInformationProvider rdfs:domain :AccessTerm ; - rdfs:range :ProcurementProcedureInformationProvider . - -:definesSubcontractingTerm rdfs:domain :ContractTerm ; - rdfs:range :SubcontractTerm . - -:definesTenderProcessor rdfs:domain :SubmissionTerm ; - rdfs:range :TenderProcessor . - -:definesTenderReceiver rdfs:domain :SubmissionTerm ; - rdfs:range :TenderReceiver . - -:describesLotCompletion a owl:FunctionalProperty ; - rdfs:domain :ContractLotCompletionInformation ; - rdfs:range :Lot . - -:describesLotGroup a owl:FunctionalProperty ; - rdfs:domain :LotGroupAwardInformation ; - rdfs:range :LotGroup . - -:describesMinimumLevelOfStandards rdfs:domain :SelectionCriteriaSummary ; - rdfs:range rdf:PlainLiteral . - -:describesNotice a owl:FunctionalProperty ; - rdfs:domain :NoticeDescription ; - rdfs:range :Notice . - -:describesObjectiveParticipationRules rdfs:domain :ParticipationConditionsSummary ; - rdfs:range rdf:PlainLiteral . - -:describesProfession rdfs:domain :ProfessionalSuitabilitySummary ; - rdfs:range rdf:PlainLiteral . - -:describesProfessionRelevantLaw rdfs:domain :ProfessionalSuitabilitySummary ; - rdfs:range rdf:PlainLiteral . - -:describesVerificationMethod rdfs:domain :ParticipationConditionsSummary ; - rdfs:range rdf:PlainLiteral . - -:followsRulesSetBy rdfs:domain :MiniCompetition ; - rdfs:range :FrameworkAgreement . - -:foreseesProcurementObject rdfs:domain :PlannedProcurementPart ; - rdfs:range :ProcurementObject . - -:hasAbnormallyLowTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasAccessibilityDate rdfs:domain :ElementConfidentialityDescription ; - rdfs:range xsd:date . - -:hasAdditionalInformationDeadline rdfs:domain :AccessTerm ; - rdfs:range xsd:dateTime . - -:hasAdditionalNonAwardJustification rdfs:domain :AwardDecision ; - rdfs:range rdf:PlainLiteral . - -:hasAddressURL rdfs:domain cccev:Channel ; - rdfs:range xsd:anyURI . - -:hasAmountValue a owl:FunctionalProperty ; - rdfs:domain :MonetaryValue ; - rdfs:range xsd:decimal . - -:hasAwardCriteriaOrderJustification rdfs:domain :AwardEvaluationTerm ; - rdfs:range rdf:PlainLiteral . - -:hasAwardCriteriaStatedInProcurementDocuments a owl:FunctionalProperty ; - rdfs:domain :AwardCriterion ; - rdfs:range xsd:boolean . - -:hasAwardDateScheduled rdfs:domain :ProcessPlanningTerm ; - rdfs:range xsd:date . - -:hasAwardDecisionDate rdfs:domain :AwardDecision ; - rdfs:range xsd:dateTime . - -:hasAwardRank rdfs:domain :TenderAwardOutcome ; - rdfs:range xsd:integer . - -:hasAwardedEstimatedValue rdfs:domain :LotAwardDecision ; - rdfs:range :MonetaryValue . - -:hasAwardedValue rdfs:domain :AwardDecision ; - rdfs:range :MonetaryValue . - -:hasBargainPrice rdfs:domain :AwardDecision ; - rdfs:range :MonetaryValue . - -:hasBeginning rdfs:domain :Period ; - rdfs:range xsd:dateTime . - -:hasBuyerLegalTypeDescription rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasBuyerProfile rdfs:domain :Buyer ; - rdfs:range xsd:anyURI . - -:hasCalculationMethod rdfs:domain :ConcessionEstimate ; - rdfs:range rdf:PlainLiteral . - -:hasCleanVehicles rdfs:domain :GreenProcurement ; - rdfs:range xsd:integer . - -:hasConcessionEstimatedValue rdfs:domain :ConcessionEstimate ; - rdfs:range :MonetaryValue . - -:hasConfidentialityJustification rdfs:domain :ElementConfidentialityDescription ; - rdfs:range rdf:PlainLiteral . - -:hasContactName rdfs:domain cccev:ContactPoint ; - rdfs:range rdf:PlainLiteral . - -:hasContractConclusionDate rdfs:domain :Contract ; - rdfs:range xsd:date . - -:hasContractValue rdfs:domain :Contract ; - rdfs:range :MonetaryValue . - -:hasDeadline rdfs:domain :SecurityClearanceTerm ; - rdfs:range xsd:dateTime . - -:hasDecisionDate rdfs:domain :ReviewDecision ; - rdfs:range xsd:date . - -:hasDispatchDate rdfs:domain :Document ; - rdfs:range xsd:date . - -:hasDurationExtensionJustification rdfs:domain :FrameworkAgreementTerm ; - rdfs:range rdf:PlainLiteral . - -:hasEAuctionURL rdfs:domain :SubmissionTerm ; - rdfs:range xsd:anyURI . - -:hasEEAReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasEFormsSubtype rdfs:domain :Notice ; - rdfs:range xsd:integer . - -:hasEInvoicing rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:hasEOrdering rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:hasEPayment rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:hasESenderDispatchDate rdfs:domain :Notice ; - rdfs:range xsd:dateTime . - -:hasEUReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasElectronicSubmission rdfs:domain :Tender ; - rdfs:range xsd:boolean . - -:hasElectronicTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasElementChange rdfs:domain :NoticeChange ; - rdfs:range :ElementChangeDescription . - -:hasElementConfidentiality rdfs:domain :PublicationProvision ; - rdfs:range :ElementConfidentialityDescription . - -:hasElementModification rdfs:domain :ContractModification ; - rdfs:range :ElementModificationDescription . - -:hasEnd rdfs:domain :Period ; - rdfs:range xsd:dateTime . - -:hasEntryIntoForceDate rdfs:domain :Contract ; - rdfs:range xsd:date . - -:hasEstimatedBuyerConcessionRevenue rdfs:domain :ConcessionEstimate ; - rdfs:range :MonetaryValue . - -:hasEstimatedContractNoticePublicationDate rdfs:domain :ProcessPlanningTerm ; - rdfs:range xsd:date . - -:hasEstimatedDuration rdfs:domain :Contract ; - rdfs:range :Duration . - -:hasEstimatedInvitationToExpressInterestDate rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:date . - -:hasEstimatedInvitationToTenderDate rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:date . - -:hasEstimatedPercentage rdfs:domain :SubcontractingEstimate ; - rdfs:range xsd:decimal . - -:hasEstimatedTenderInvitationDate rdfs:domain :ProcessPlanningTerm ; - rdfs:range xsd:date . - -:hasEstimatedTotalSubcontracts rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasEstimatedUserConcessionRevenue rdfs:domain :ConcessionEstimate ; - rdfs:range :MonetaryValue . - -:hasEstimatedValue rdfs:domain :ProcurementElement ; - rdfs:range :MonetaryValue . - -:hasFinancialOfferValue rdfs:domain :Tender ; - rdfs:range :MonetaryValue . - -:hasFixedValue rdfs:domain :AwardCriterion ; - rdfs:range xsd:decimal . - -:hasFollowupContract rdfs:domain :DesignContestRegimeTerm ; - rdfs:range xsd:boolean . - -:hasFormNumber rdfs:domain :Notice ; - rdfs:range xsd:integer . - -:hasFormula rdfs:domain :ProcurementCriterion ; - rdfs:range rdf:PlainLiteral . - -:hasFrameworkAgreementEstimatedValue rdfs:domain :LotAwardDecision ; - rdfs:range :MonetaryValue . - -:hasFrameworkAgreementMaximumValue rdfs:domain :LotAwardDecision ; - rdfs:range :MonetaryValue . - -:hasGroupFrameworkAgreementMaximumValue rdfs:domain :LotGroupAwardInformation ; - rdfs:range :MonetaryValue . - -:hasHighestReceivedTenderValue rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range :MonetaryValue . - -:hasInadmissibleTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasInstanceReference a owl:FunctionalProperty ; - rdfs:domain :ElementConfidentialityDescription ; - rdfs:range xsd:anyURI . - -:hasInternetAddress rdfs:domain [ a owl:Class ; - owl:unionOf ( org:Organization cccev:ContactPoint ) ] ; - rdfs:range xsd:anyURI . - -:hasLaunchFrameworkAgreementMaximumValue rdfs:domain :FrameworkAgreementTerm ; - rdfs:range :MonetaryValue . - -:hasLaunchGroupFrameworkAgreementMaximumValue rdfs:domain :FrameworkAgreementTerm ; - rdfs:range :MonetaryValue . - -:hasLegalFormRequirement rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasLegalFormType rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasLongTitle rdfs:domain :Notice ; - rdfs:range rdf:PlainLiteral . - -:hasLotAwardCombination rdfs:domain :ProcedureTerm ; - rdfs:range rdf:PlainLiteral . - -:hasLotReference rdfs:domain :Contract ; - rdfs:range :Lot . - -:hasLowestReceivedTenderValue rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range :MonetaryValue . - -:hasMainActivityDescription rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasMaximumFrameworkAgreementAwardedValue rdfs:domain :NoticeAwardInformation ; - rdfs:range :MonetaryValue . - -:hasMaximumLotSubmissionAllowed rdfs:domain :ProcedureTerm ; - rdfs:range xsd:integer . - -:hasMaximumNumberOfCandidates rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:integer . - -:hasMaximumNumberOfLotsToBeAwarded rdfs:domain :ProcedureTerm ; - rdfs:range xsd:integer . - -:hasMaximumNumberOfRenewals rdfs:domain :ContractTerm ; - rdfs:range xsd:integer . - -:hasMaximumParticipantsNumber rdfs:domain :FrameworkAgreementTerm ; - rdfs:range xsd:integer . - -:hasMaximumShare rdfs:domain :SubcontractTerm ; - rdfs:range xsd:decimal . - -:hasMediumTenderPerLots rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasMember rdfs:domain :OrganisationGroup ; - rdfs:range org:Organization . - -:hasMinimumNumberOfCandidates rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:integer . - -:hasMinimumShare rdfs:domain :SubcontractTerm ; - rdfs:range xsd:decimal . - -:hasMinimumSubcontractorsProposedObligation rdfs:domain :SubcontractTerm ; - rdfs:range xsd:decimal . - -:hasNoNegotiationNecessary rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:boolean . - -:hasNonAwardedContractNumber rdfs:domain :LotAwardDecision ; - rdfs:range rdf:PlainLiteral . - -:hasNonAwardedContractTitle rdfs:domain :LotAwardDecision ; - rdfs:range rdf:PlainLiteral . - -:hasNonEEAReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasNonEUReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasNoticePublicationNumber rdfs:domain :Notice ; - rdfs:range rdf:PlainLiteral . - -:hasNumberOfReviewRequests a owl:FunctionalProperty ; - rdfs:domain :ReviewRequest ; - rdfs:range xsd:integer . - -:hasNumberOfTenderersInvited rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasOJSIssueNumber rdfs:domain :Notice ; - rdfs:range xsd:integer . - -:hasOJSType rdfs:domain :Notice ; - rdfs:range rdf:PlainLiteral . - -:hasOpeningDateTime a owl:FunctionalProperty ; - rdfs:domain :OpeningTerm ; - rdfs:range xsd:dateTime . - -:hasOpeningURL rdfs:domain :OpeningTerm ; - rdfs:range xsd:anyURI . - -:hasOptions rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:hasOrganisationUnitName rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasOtherCountriesReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasOverallCostAwardCriteriaPonderation rdfs:domain :AwardEvaluationTerm ; - rdfs:range xsd:decimal . - -:hasOverallPriceAwardCriteriaPonderation rdfs:domain :AwardEvaluationTerm ; - rdfs:range xsd:decimal . - -:hasOverallQualityAwardCriteriaPonderation rdfs:domain :AwardEvaluationTerm ; - rdfs:range xsd:decimal . - -:hasParticipationPayment rdfs:domain :DesignContestRegimeTerm ; - rdfs:range rdf:PlainLiteral . - -:hasPaymentValueDiscrepancyJustification rdfs:domain :ContractLotCompletionInformation ; - rdfs:range rdf:PlainLiteral . - -:hasPlannedDuration rdfs:domain :PlannedProcurementPart ; - rdfs:range :Duration . - -:hasPlannedPeriod rdfs:domain :PlannedProcurementPart ; - rdfs:range :Period . - -:hasPreferredPublicationDate rdfs:domain :PublicationProvision ; - rdfs:range xsd:date . - -:hasPreviousVersionOfElementReference rdfs:domain :ElementChangeDescription ; - rdfs:range xsd:anyURI . - -:hasPrizeRank rdfs:domain :Prize ; - rdfs:range xsd:integer . - -:hasPrizeValue rdfs:domain :Prize ; - rdfs:range :MonetaryValue . - -:hasProcurementDocumentChangeDate rdfs:domain :ElementChangeDescription ; - rdfs:range xsd:date . - -:hasProcurementHighestReceivedTenderValue rdfs:domain :NoticeAwardInformation ; - rdfs:range :MonetaryValue . - -:hasProcurementLowestReceivedTenderValue rdfs:domain :NoticeAwardInformation ; - rdfs:range :MonetaryValue . - -:hasProcurementScopeDividedIntoLot rdfs:domain :Procedure ; - rdfs:range :Lot . - -:hasPropertyReference a owl:FunctionalProperty ; - rdfs:domain :ElementConfidentialityDescription ; - rdfs:range xsd:anyURI . - -:hasPublicAccessURL rdfs:domain :AccessTerm ; - rdfs:range xsd:anyURI . - -:hasPublicationDate rdfs:domain :Document ; - rdfs:range xsd:date . - -:hasPurpose rdfs:domain :ProcurementObject ; - rdfs:range :Purpose . - -:hasQualificationSystemDuration rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range :Duration . - -:hasQualificationSystemRenewalDescription rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range rdf:PlainLiteral . - -:hasQuantityValue a owl:FunctionalProperty ; - rdfs:domain :Quantity ; - rdfs:range xsd:decimal . - -:hasReceiptDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceiptExpressionDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceiptParticipationRequestDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceiptPreliminaryMarketConsultationDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceiptTenderDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceivedMicroTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasReceivedParticipationRequests rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasReceivedSmallTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasReceptionDate rdfs:domain :Document ; - rdfs:range xsd:date . - -:hasRecurrenceDescription rdfs:domain :ProcurementObject ; - rdfs:range rdf:PlainLiteral . - -:hasRemedyValue rdfs:domain :ReviewDecision ; - rdfs:range :MonetaryValue . - -:hasRequestDate rdfs:domain :ReviewRequest ; - rdfs:range xsd:date . - -:hasReservedExecution rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean, - skos:Concept . - -:hasRestrictedAccessURL rdfs:domain :AccessTerm ; - rdfs:range xsd:anyURI . - -:hasReviewIrregularityCount a owl:FunctionalProperty ; - rdfs:domain :ReviewIrregularitySummary ; - rdfs:range xsd:integer . - -:hasReviewRequestFee rdfs:domain :ReviewRequest ; - rdfs:range :MonetaryValue . - -:hasReviewURL rdfs:domain :ReviewObject ; - rdfs:range xsd:anyURI . - -:hasSMEReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasSelectionCriteriaStatedInProcurementDocuments rdfs:domain :SelectionCriteriaSummary ; - rdfs:range xsd:boolean . - -:hasServiceReservedToParticularProfession rdfs:domain :ProfessionalSuitabilitySummary ; - rdfs:range xsd:boolean . - -:hasStartDate rdfs:domain :SelectedCandidateList ; - rdfs:range :Period . - -:hasSubcontractingEstimatedValue rdfs:domain :SubcontractingEstimate ; - rdfs:range :MonetaryValue . - -:hasSubcontractingInvolved rdfs:domain :SubcontractTerm ; - rdfs:range xsd:boolean . - -:hasSubcontractorsProposedAboveObligation rdfs:domain :SubcontractTerm ; - rdfs:range xsd:decimal . - -:hasSuccessiveReduction rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:boolean . - -:hasTenderValidityPeriod rdfs:domain :SubmissionTerm ; - rdfs:range :Period . - -:hasThresholdValue a owl:FunctionalProperty ; - rdfs:domain cccev:Constraint ; - rdfs:range xsd:decimal . - -:hasTotalAwardedValue rdfs:domain :NoticeAwardInformation ; - rdfs:range :MonetaryValue . - -:hasTotalNumberOfComplainants rdfs:domain :ReviewRequestSummary ; - rdfs:range xsd:integer . - -:hasTotalQuantity rdfs:domain :Purpose ; - rdfs:range :Quantity . - -:hasTotalValue a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :TenderGroup :Deliverable ) ] ; - rdfs:range :MonetaryValue . - -:hasTotalVehicles rdfs:domain :GreenProcurement ; - rdfs:range xsd:integer . - -:hasURL rdfs:domain :Fund ; - rdfs:range xsd:anyURI . - -:hasUUID rdfs:domain :Document ; - rdfs:range adms:Identifier . - -:hasUnverifiedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasValidityPeriod rdfs:domain [ a owl:Class ; - owl:unionOf ( :Technique :Certificate ) ] ; - rdfs:range :Period . - -:hasVersion rdfs:domain :Document ; - rdfs:range rdf:PlainLiteral . - -:hasWithdrawalDate rdfs:domain :ReviewRequest ; - rdfs:range xsd:date . - -:hasWithdrawalReason rdfs:domain :ReviewRequest ; - rdfs:range rdf:PlainLiteral . - -:hasZeroEmissionVehicles rdfs:domain :GreenProcurement ; - rdfs:range xsd:integer . - -:indicatesAwardToWinner rdfs:domain :TenderAwardOutcome ; - rdfs:range :Winner . - -:indicatesPerformingStaffInformationRequirement rdfs:domain :ProcurementCriteriaSummary ; - rdfs:range xsd:boolean . - -:involvesProcurementDocument a owl:FunctionalProperty ; - rdfs:domain :AccessTerm ; - rdfs:range :ProcurementDocument . - -:isAccelerated rdfs:domain :Procedure ; - rdfs:range xsd:boolean . - -:isAdvancedElectronicSignatureRequired rdfs:domain :SubmissionTerm ; - rdfs:range xsd:boolean . - -:isAwardedByCPB rdfs:domain :ProcedureTerm ; - rdfs:range xsd:boolean . - -:isBeneficialOwnerOf rdfs:domain cccev:Person ; - rdfs:range :Business . - -:isCompetitionTerminated rdfs:domain :ProcurementProcessInformation ; - rdfs:range xsd:boolean . - -:isContractingEntity rdfs:domain :Buyer ; - rdfs:range xsd:boolean . - -:isCoveredByGPA rdfs:domain :ProcurementObject ; - rdfs:range xsd:boolean . - -:isDPSTerminated rdfs:domain :ProcurementProcessInformation ; - rdfs:range xsd:boolean . - -:isDesignContest rdfs:domain :Procedure ; - rdfs:range xsd:boolean . - -:isEUInstitution rdfs:domain :Notice ; - rdfs:range xsd:boolean . - -:isExecutedByProcurementServiceProvider rdfs:domain :Procedure ; - rdfs:range :ProcurementServiceProvider . - -:isGuaranteeRequired rdfs:domain :SubmissionTerm ; - rdfs:range xsd:boolean . - -:isJointProcurement rdfs:domain :Procedure ; - rdfs:range xsd:boolean . - -:isJuryDecisionBinding rdfs:domain :DesignContestRegimeTerm ; - rdfs:range xsd:boolean . - -:isListedCompany rdfs:domain :Business ; - rdfs:range xsd:boolean . - -:isMultipleTenderSubmissionAllowed rdfs:domain :SubmissionTerm ; - rdfs:range xsd:boolean . - -:isNonDisclosureAgreementRequired rdfs:domain :NonDisclosureAgreementTerm ; - rdfs:range xsd:boolean . - -:isOneLotOnlyAllowed rdfs:domain :ProcedureTerm ; - rdfs:range xsd:boolean . - -:isOwnedByAgent rdfs:domain :System ; - rdfs:range foaf:Agent ; - owl:inverseOf :ownsSystem . - -:isProcurementDocumentChanged rdfs:domain :ElementChangeDescription ; - rdfs:range xsd:boolean . - -:isProcurementDocumentRestricted rdfs:domain :AccessTerm ; - rdfs:range xsd:boolean . - -:isRecurrent rdfs:domain :ProcurementObject ; - rdfs:range xsd:boolean . - -:isRenewalIndicator rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:isSMESuitable rdfs:domain :ProcurementObject ; - rdfs:range xsd:boolean . - -:isSecurityClearanceRequired rdfs:domain :SecurityClearanceTerm ; - rdfs:range xsd:boolean . - -:isSubjectToGrouping rdfs:domain :Tender ; - rdfs:range :LotGroup . - -:isSubjectToProcedureSpecificTerm rdfs:domain :Procedure ; - rdfs:range :ProcedureSpecificTerm . - -:isSubmissionForAllLotsAllowed rdfs:domain :ProcedureTerm ; - rdfs:range xsd:boolean . - -:isSubmitedBy rdfs:domain :Tender ; - rdfs:range :Tenderer . - -:isSubmittedForLot a owl:FunctionalProperty ; - rdfs:domain :Tender ; - rdfs:range :Lot . - -:isSubmittedForLotGroup a owl:FunctionalProperty ; - rdfs:domain :TenderGroup ; - rdfs:range :LotGroup . - -:isToBeRelaunched rdfs:domain :ProcurementProcessInformation ; - rdfs:range xsd:boolean . - -:isUsedForCandidateRestriction rdfs:domain :SelectionCriterion ; - rdfs:range xsd:boolean . - -:isUsingEUFunds rdfs:domain :ProcurementObject ; - rdfs:range xsd:boolean . - -:isVariant rdfs:domain :Tender ; - rdfs:range xsd:boolean . - -:isWithdrawn rdfs:domain :ReviewRequest ; - rdfs:range xsd:boolean . - -:leadBy rdfs:domain :OrganisationGroup ; - rdfs:range org:Organization . - -:legal-regime a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue :legal-regime ; - owl:onProperty skos:inScheme ] . - -:needsToBeATenderer rdfs:domain :Winner ; - rdfs:range :Tenderer . - -:needsToBeAWinner rdfs:domain :Contractor ; - rdfs:range :Winner . - -:notification-phases-content-types a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue :notification-phases-content-types ; - owl:onProperty skos:inScheme ] . - -:ownsSystem rdfs:domain foaf:Agent ; - rdfs:range :System . - -:providesContractTotalPaymentValue rdfs:domain :ContractLotCompletionInformation ; - rdfs:range :MonetaryValue . - -:providesContractTotalPenaltyValue rdfs:domain :ContractLotCompletionInformation ; - rdfs:range :MonetaryValue . - -:refersToContract a owl:FunctionalProperty ; - rdfs:domain :ContractLotCompletionInformation ; - rdfs:range :Contract . - -:refersToLot rdfs:domain [ a owl:Class ; - owl:unionOf ( :Notice :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; - rdfs:range :Lot . - -:refersToNotice a owl:AsymmetricProperty ; - rdfs:domain :Notice ; - rdfs:range :Notice . - -:refersToOriginalNotice rdfs:domain :ContractModification ; - rdfs:range :Notice . - -:refersToPreviousNotice rdfs:domain :NoticeChange ; - rdfs:range :Notice . - -:refersToPreviousProcedure rdfs:domain :DirectAwardTerm ; - rdfs:range :Procedure . - -:refersToPreviousReview a owl:AsymmetricProperty ; - rdfs:domain :ReviewObject ; - rdfs:range :ReviewObject . - -:refersToProcedure a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :ContractModificationNotice :CompletionNotice :Notice ) ] ; - rdfs:range :Procedure . - -:resolvesReviewRequest a owl:FunctionalProperty ; - rdfs:domain :ReviewDecision ; - rdfs:range :ReviewRequest . - -:resultsFromMiniCompetitionAwardDecision rdfs:domain :PurchaseContract ; - rdfs:range :MiniCompetitionAwardDecision . - -:resultsInDynamicPurchasingSystem a owl:FunctionalProperty ; - rdfs:domain :DynamicPurchaseSystemTechnique ; - rdfs:range :DynamicPurchasingSystem . - -:setsGroupingContextForLot rdfs:domain :LotGroup ; - rdfs:range :Lot . - -:substantiatesExclusionGround rdfs:domain :Tenderer ; - rdfs:range :ExclusionGround . - -:summarisesInformationForAwardDecision a owl:FunctionalProperty ; - rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range :AwardDecision . - -:usesCandidateList rdfs:domain :MiniCompetition ; - rdfs:range :SelectedCandidateList . - -cccev:address rdfs:domain [ a owl:Class ; - owl:unionOf ( org:Organization cccev:ContactPoint ) ] ; - rdfs:range locn:Address . - -cccev:bias rdfs:domain cccev:Criterion ; - rdfs:range xsd:decimal . - -cccev:birthDate rdfs:domain cccev:Person ; - rdfs:range xsd:date . - -cccev:email rdfs:domain cccev:ContactPoint ; - rdfs:range rdf:PlainLiteral . - -cccev:weight rdfs:domain cccev:Criterion ; - rdfs:range xsd:decimal . - -cccev:weightingConsiderationDescription rdfs:domain cccev:Criterion ; - rdfs:range rdf:PlainLiteral . - -at-voc:EU-programme a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:EU-programme ; - owl:onProperty skos:inScheme ] . - -at-voc:accessibility a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:accessibility ; - owl:onProperty skos:inScheme ] . - -at-voc:applicability a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:applicability ; - owl:onProperty skos:inScheme ] . - -at-voc:award-criterion-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:award-criterion-type ; - owl:onProperty skos:inScheme ] . - -at-voc:buyer-legal-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:buyer-legal-type ; - owl:onProperty skos:inScheme ] . - -at-voc:change-corrig-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:change-corrig-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:communication-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:communication-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:confidentiality-level a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:confidentiality-level ; - owl:onProperty skos:inScheme ] . - -at-voc:contract-nature a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:contract-nature ; - owl:onProperty skos:inScheme ] . - -at-voc:country a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:country ; - owl:onProperty skos:inScheme ] . - -at-voc:cpv a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:cpv ; - owl:onProperty skos:inScheme ] . - -at-voc:criterion a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:criterion ; - owl:onProperty skos:inScheme ] . - -at-voc:currency a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:currency ; - owl:onProperty skos:inScheme ] . - -at-voc:direct-award-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:direct-award-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:dps-usage a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:dps-usage ; - owl:onProperty skos:inScheme ] . - -at-voc:economic-operator-size a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:economic-operator-size ; - owl:onProperty skos:inScheme ] . - -at-voc:environmental-impact a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:environmental-impact ; - owl:onProperty skos:inScheme ] . - -at-voc:form-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:form-type ; - owl:onProperty skos:inScheme ] . - -at-voc:framework-agreement a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:framework-agreement ; - owl:onProperty skos:inScheme ] . - -at-voc:innovative-acquisition a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:innovative-acquisition ; - owl:onProperty skos:inScheme ] . - -at-voc:irregularity-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:irregularity-type ; - owl:onProperty skos:inScheme ] . - -at-voc:language a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:language ; - owl:onProperty skos:inScheme ] . - -at-voc:legal-basis a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:legal-basis ; - owl:onProperty skos:inScheme ] . - -at-voc:main-activity a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:main-activity ; - owl:onProperty skos:inScheme ] . - -at-voc:measurement-unit a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:measurement-unit ; - owl:onProperty skos:inScheme ] . - -at-voc:missing-info-submission a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:missing-info-submission ; - owl:onProperty skos:inScheme ] . - -at-voc:modification-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:modification-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:non-award-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:non-award-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:non-publication-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:non-publication-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:notice-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:notice-type ; - owl:onProperty skos:inScheme ] . - -at-voc:number-fixed a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:number-fixed ; - owl:onProperty skos:inScheme ] . - -at-voc:number-threshold a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:number-threshold ; - owl:onProperty skos:inScheme ] . - -at-voc:number-weight a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:number-weight ; - owl:onProperty skos:inScheme ] . - -at-voc:nuts a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:nuts ; - owl:onProperty skos:inScheme ] . - -at-voc:other-place-service a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:other-place-service ; - owl:onProperty skos:inScheme ] . - -at-voc:permission a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:permission ; - owl:onProperty skos:inScheme ] . - -at-voc:procurement-procedure-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:procurement-procedure-type ; - owl:onProperty skos:inScheme ] . - -at-voc:received-submission-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:received-submission-type ; - owl:onProperty skos:inScheme ] . - -at-voc:remedy-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:remedy-type ; - owl:onProperty skos:inScheme ] . - -at-voc:requirement-stage a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:requirement-stage ; - owl:onProperty skos:inScheme ] . - -at-voc:reserved-procurement a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:reserved-procurement ; - owl:onProperty skos:inScheme ] . - -at-voc:review-body-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:review-body-type ; - owl:onProperty skos:inScheme ] . - -at-voc:review-decision-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:review-decision-type ; - owl:onProperty skos:inScheme ] . - -at-voc:selection-criterion a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:selection-criterion ; - owl:onProperty skos:inScheme ] . - -at-voc:social-objective a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:social-objective ; - owl:onProperty skos:inScheme ] . - -at-voc:subcontracting-indication a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:subcontracting-indication ; - owl:onProperty skos:inScheme ] . - -at-voc:subcontracting-obligation a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:subcontracting-obligation ; - owl:onProperty skos:inScheme ] . - -at-voc:timeperiod a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:timeperiod ; - owl:onProperty skos:inScheme ] . - -at-voc:usage a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:usage ; - owl:onProperty skos:inScheme ] . - -at-voc:winner-selection-status a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:winner-selection-status ; - owl:onProperty skos:inScheme ] . - -dcterms:issued rdfs:domain :Document ; - rdfs:range xsd:dateTime . - -dcterms:title rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementElement foaf:Agent :AgentInRole :Document :Fund ) ] ; - rdfs:range rdf:PlainLiteral . - -skos:notation a owl:FunctionalProperty ; - rdfs:domain adms:Identifier ; - rdfs:range rdf:PlainLiteral . - -skos:prefLabel rdfs:domain [ a owl:Class ; - owl:unionOf ( cccev:InformationConcept cccev:Requirement ) ] ; - rdfs:range rdf:PlainLiteral . - -time:TemporalUnit a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue time:TemporalUnit ; - owl:onProperty skos:inScheme ] . - -time:numericDuration a owl:FunctionalProperty ; - rdfs:domain :SpecificDuration ; - rdfs:range xsd:decimal . - -locn:address rdfs:domain dcterms:Location ; - rdfs:range locn:Address . - -locn:addressArea rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:addressID rdfs:domain locn:Address ; - rdfs:range adms:Identifier . - -locn:adminUnitL1 rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:adminUnitL2 rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:fullAddress rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:geographicIdentifier rdfs:domain dcterms:Location ; - rdfs:range adms:Identifier . - -locn:geographicName rdfs:domain dcterms:Location ; - rdfs:range rdf:langString . - -locn:geometry rdfs:domain dcterms:Location ; - rdfs:range locn:Geometry . - -locn:locatorDesignator rdfs:domain locn:Address ; - rdfs:range rdf:PlainLiteral . - -locn:locatorName rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -person:placeOfBirth rdfs:domain cccev:Person ; - rdfs:range dcterms:Location . - -person:placeOfDeath rdfs:domain cccev:Person ; - rdfs:range dcterms:Location . - -:ElectronicSignature a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty dcterms:description ] . - -:NoticeDescription rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :describesNotice ] . - -:Project rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . - -:concernsLot a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementProcessInformation :LotAwardDecision ) ] ; - rdfs:range :Lot . - -:foreseesConcession rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementObject :Tender ) ] ; - rdfs:range :ConcessionEstimate . - -:hasAdditionalInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementObject :Notice :ElementChangeDescription ) ] ; - rdfs:range rdf:PlainLiteral . - -:hasApproximateFrameworkAgreementValue rdfs:domain [ a owl:Class ; - owl:unionOf ( :LotAwardDecision :NoticeAwardInformation ) ] ; - rdfs:range :MonetaryValue . - -:hasElementReference rdfs:domain [ a owl:Class ; - owl:unionOf ( :ReviewObject :ElementChangeDescription :ElementModificationDescription ) ] ; - rdfs:range xsd:anyURI . - -:playedBy a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :AgentInRole :TransportMeansOperator :JuryMember ) ] ; - rdfs:range [ a owl:Class ; - owl:unionOf ( foaf:Agent foaf:Person ) ] . - -cccev:registeredAddress rdfs:domain [ a owl:Class ; - owl:unionOf ( cccev:Person org:Organization ) ] ; - rdfs:range locn:Address . - -owl:Thing rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :containsModificationsOf ] . - -:Prize rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPrizeRank ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPrizeValue ] . - -:TenderGroup rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :comprisesTender ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :isSubmittedForLotGroup ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasTotalValue ] . - -:MiniCompetition rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :usesCandidateList ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :followsRulesSetBy ] . - -:Purpose rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalQuantity ] . - -:SelectedCandidateList rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasStartDate ] . - -:SelectionCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesMinimumLevelOfStandards ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSelectionCriteriaStatedInProcurementDocuments ] . - -:SpecificDuration rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty time:numericDuration ] . - -:DynamicPurchaseSystemTechnique rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :resultsInDynamicPurchasingSystem ] . - -:MiniCompetitionAwardDecision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :concernsMiniCompetition ] . - -:NoticeChange rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToPreviousNotice ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasElementChange ] . - -:ProcurementCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :indicatesPerformingStaffInformationRequirement ] . - -:ProcurementCriterion rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFormula ] . - -:PurchaseContract rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :resultsFromMiniCompetitionAwardDecision ] . - -:Technique a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasValidityPeriod ] . - -cccev:InformationConcept a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . - -cccev:Requirement a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty skos:prefLabel ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:description ] . - -dcterms:description rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementElement :System :AgentInRole cccev:ContactPoint cccev:Channel :NonDisclosureAgreementTerm :SecurityClearanceTerm :SubcontractTerm cccev:InformationConcept cccev:Requirement :Technique :SubcontractingEstimate :ElectronicSignature :Document :Fund ) ] ; - rdfs:range rdf:PlainLiteral . - -:ContractModification rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToOriginalNotice ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasElementModification ] . - -:Fund a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasURL ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . - -:OrganisationGroup rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasMember ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :leadBy ] . - -:ParticipationConditionsSummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesObjectiveParticipationRules ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesVerificationMethod ] . - -:ProcurementElement a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty adms:identifier ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedValue ] . - -:ProfessionalSuitabilitySummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasServiceReservedToParticularProfession ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesProfessionRelevantLaw ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesProfession ] . - -:ReviewIrregularitySummary rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasReviewIrregularityCount ] . - -:ReviewRequestSummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalNumberOfComplainants ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :concernsReviewSummaryForLot ] . - -:System a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isOwnedByAgent ] . - -cccev:Channel a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAddressURL ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:description ] . - -adms:identifier a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :Project :LotGroup :ProcurementElement foaf:Agent dcterms:Location cccev:InformationConcept :Document :Fund :Consignment :TransportEquipment :ShipmentStage :TransportEquipmentSeal :ShipmentInformation :Line :AbstractContainer ) ] ; - rdfs:range adms:Identifier . - -foaf:Agent a owl:Class . - -:AwardEvaluationTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOverallCostAwardCriteriaPonderation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOverallPriceAwardCriteriaPonderation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardCriteriaOrderJustification ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOverallQualityAwardCriteriaPonderation ] . - -:Business rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isListedCompany ] . - -:ConcessionEstimate rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedBuyerConcessionRevenue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasConcessionEstimatedValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedUserConcessionRevenue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasCalculationMethod ] . - -:GreenProcurement rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalVehicles ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasZeroEmissionVehicles ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasCleanVehicles ] . - -:LotGroupAwardInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasGroupFrameworkAgreementMaximumValue ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :describesLotGroup ] . - -:ProcessPlanningTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedContractNoticePublicationDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardDateScheduled ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedTenderInvitationDate ] . - -:PublicationProvision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPreferredPublicationDate ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasElementConfidentiality ] . - -:SelectionCriterion rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isUsedForCandidateRestriction ] . - -:SubcontractingEstimate a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedPercentage ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSubcontractingEstimatedValue ] . - -:TenderAwardOutcome rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :concernsTender ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :indicatesAwardToWinner ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardRank ] . - -cccev:Constraint rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasThresholdValue ] . - -cccev:Criterion rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:weight ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:weightingConsiderationDescription ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:bias ] . - -:AgentInRole a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :playedBy ] . - -:ContractLotCompletionInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :providesContractTotalPaymentValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPaymentValueDiscrepancyJustification ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :describesLotCompletion ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :refersToContract ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :providesContractTotalPenaltyValue ] . - -:ElementModificationDescription a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasElementReference ] . - -:PlannedProcurementPart rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :foreseesProcurementObject ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPlannedDuration ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPlannedPeriod ] . - -:ProcurementProcessInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isCompetitionTerminated ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :concernsProcedure ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isToBeRelaunched ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isDPSTerminated ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :concernsLot ] . - -:ReviewDecision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasDecisionDate ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :resolvesReviewRequest ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasRemedyValue ] . - -:AwardCriterion rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFixedValue ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasAwardCriteriaStatedInProcurementDocuments ] . - -:DirectAwardTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToPreviousProcedure ] . - -:ElementConfidentialityDescription rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAccessibilityDate ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasInstanceReference ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasPropertyReference ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasConfidentialityJustification ] . - -:LotGroup rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :setsGroupingContextForLot ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . - -:SubcontractTerm a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSubcontractingInvolved ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumShare ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMinimumSubcontractorsProposedObligation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSubcontractorsProposedAboveObligation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMinimumShare ] . - -cccev:ContactPoint a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:address ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:email ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasContactName ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasInternetAddress ] . - -:LotAwardDecision rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :concernsLot ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNonAwardedContractNumber ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardedEstimatedValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNonAwardedContractTitle ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFrameworkAgreementMaximumValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasApproximateFrameworkAgreementValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFrameworkAgreementEstimatedValue ] . - -:NoticeAwardInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumFrameworkAgreementAwardedValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasApproximateFrameworkAgreementValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasProcurementLowestReceivedTenderValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasProcurementHighestReceivedTenderValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalAwardedValue ] . - -:ReviewRequest rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasWithdrawalReason ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReviewRequestFee ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasRequestDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasWithdrawalDate ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasNumberOfReviewRequests ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isWithdrawn ] . - -:Contractor rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :needsToBeAWinner ] . - -:ElementChangeDescription a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPreviousVersionOfElementReference ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasProcurementDocumentChangeDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalInformation ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasElementReference ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isProcurementDocumentChanged ] . - -:NonDisclosureAgreementTerm a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isNonDisclosureAgreementRequired ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:description ] . - -:ParticipationRequestTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesParticipationRequestProcessor ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesParticipationRequestReceiver ] . - -:Period rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEnd ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasBeginning ] . - -:Tenderer rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :substantiatesExclusionGround ] . - -:Winner rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :needsToBeATenderer ] . - -:SecurityClearanceTerm a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSecurityClearanceRequired ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasDeadline ] . - -:OpeningTerm rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasOpeningDateTime ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesOpeningPlace ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOpeningURL ] . - -cccev:Person rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty person:placeOfDeath ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:birthDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:registeredAddress ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty person:placeOfBirth ] . - -dcterms:Location rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:geographicIdentifier ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:geometry ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:geographicName ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:address ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . - -:DesignContestRegimeTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFollowupContract ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isJuryDecisionBinding ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasParticipationPayment ] . - -:ReviewObject a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToPreviousReview ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReviewURL ] . - -locn:Address rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:fullAddress ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:locatorDesignator ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:locatorName ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:addressArea ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:addressID ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:adminUnitL2 ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:adminUnitL1 ] . - -:JuryMember rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :playedBy ] . - -:MultipleStageProcedureTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedInvitationToTenderDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNoNegotiationNecessary ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedInvitationToExpressInterestDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasQualificationSystemRenewalDescription ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMinimumNumberOfCandidates ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumNumberOfCandidates ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasQualificationSystemDuration ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSuccessiveReduction ] . - -:Procedure rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isDesignContest ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasProcurementScopeDividedIntoLot ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :isSubjectToProcedureSpecificTerm ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isAccelerated ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isJointProcurement ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isExecutedByProcurementServiceProvider ] . - -:ProcedureTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLotAwardCombination ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isAwardedByCPB ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumNumberOfLotsToBeAwarded ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumLotSubmissionAllowed ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSubmissionForAllLotsAllowed ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesMediator ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesBudgetProvider ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isOneLotOnlyAllowed ] . - -:ProcurementServiceProvider rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :actsOnBehalfOf ] . - -:ProcurementObject a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasRecurrenceDescription ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isRecurrent ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isUsingEUFunds ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isCoveredByGPA ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSMESuitable ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPurpose ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :foreseesConcession ] . - -org:Organization a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOrganisationUnitName ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:registeredAddress ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMainActivityDescription ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLegalFormType ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasBuyerLegalTypeDescription ] . - -:FrameworkAgreementTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasDurationExtensionJustification ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLaunchFrameworkAgreementMaximumValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumParticipantsNumber ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLaunchGroupFrameworkAgreementMaximumValue ] . - -:Document a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:title ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:issued ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPublicationDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:description ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasVersion ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasUUID ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceptionDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasDispatchDate ] . - -:AwardDecision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasBargainPrice ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalNonAwardJustification ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardDecisionDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardedValue ] . - -:ContractTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesPaymentExecutor ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLegalFormRequirement ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesContractDuration ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesContractPeriod ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumNumberOfRenewals ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReservedExecution ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEInvoicing ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEPayment ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEOrdering ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isRenewalIndicator ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesSubcontractingTerm ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOptions ] . - -:SubmissionStatisticalInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNonEUReceivedTenders ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :summarisesInformationForAwardDecision ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNumberOfTenderersInvited ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedTotalSubcontracts ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceivedSmallTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAbnormallyLowTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceivedMicroTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasElectronicTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLowestReceivedTenderValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOtherCountriesReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasUnverifiedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceivedParticipationRequests ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNonEEAReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEEAReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSMEReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMediumTenderPerLots ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasInadmissibleTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasHighestReceivedTenderValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEUReceivedTenders ] . - -:AccessTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalInformationDeadline ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :involvesProcurementDocument ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isProcurementDocumentRestricted ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesProcurementProcedureInformationProvider ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesOfflineAccessProvider ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPublicAccessURL ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasRestrictedAccessURL ] . - -:Tender rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFinancialOfferValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSubjectToGrouping ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isVariant ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :foreseesConcession ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :isSubmittedForLot ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasElectronicSubmission ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSubmitedBy ] . - -:Quantity rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasQuantityValue ] . - -adms:Identifier rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty skos:notation ] . - -:Buyer rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isContractingEntity ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasBuyerProfile ] . - -:Contract rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasContractConclusionDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasContractValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedDuration ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEntryIntoForceDate ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasLotReference ] . - -:Notice a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :refersToLot ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToNotice ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalInformation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOJSType ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLongTitle ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isEUInstitution ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasESenderDispatchDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEFormsSubtype ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNoticePublicationNumber ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOJSIssueNumber ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :refersToProcedure ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFormNumber ] . - -:SubmissionTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptParticipationRequestDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptTenderDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isAdvancedElectronicSignatureRequired ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesTenderReceiver ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptExpressionDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTenderValidityPeriod ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isGuaranteeRequired ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEAuctionURL ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptPreliminaryMarketConsultationDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isMultipleTenderSubmissionAllowed ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesTenderProcessor ] . - -:MonetaryValue rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasAmountValue ] . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . - -[] a ; - owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . - -[] a ; - owl:members ( :SubcontractingEstimate :ConcessionEstimate ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . - -[] a ; - owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . - -[] a ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . - -[] a ; - owl:members ( :AwardEvaluationTerm :SelectionEvaluationTerm ) . - -[] a ; - owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . - -[] a ; - owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . - -[] a ; - owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . - -[] a ; - owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . - -[] a ; - owl:members ( :IndefiniteDuration :SpecificDuration ) . - -[] a ; - owl:members ( :AcquiringCentralPurchasingBody :AwardingCentralPurchasingBody ) . - -[] a ; - owl:members ( :AcquiringCentralPurchasingBody :AwardingCentralPurchasingBody ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :ProcurementObject :PlannedProcurementPart ) . - -[] a ; - owl:members ( :ExclusionGround :SelectionCriterion ) . - -[] a ; - owl:members ( :SubcontractTerm :ContractTerm ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a ; - owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . - -[] a ; - owl:members ( :ExclusionGroundsSummary :SelectionCriteriaSummary ) . - -[] a ; - owl:members ( :ExclusionGround :SelectionCriterion ) . - -[] a ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . - -[] a ; - owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . - -[] a ; - owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . - -[] a ; - owl:members ( :System org:Organization foaf:Person ) . - -[] a ; - owl:members ( :ReviewDecision :ReviewRequest ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a ; - owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . - -[] a ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . - -[] a ; - owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :LeadBuyer :CentralPurchasingBody ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :SubcontractingEstimate :ConcessionEstimate ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . - -[] a ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - -[] a ; - owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . - -[] a ; - owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . - -[] a ; - owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :ProcurementObject :PlannedProcurementPart ) . - -[] a ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :System org:Organization foaf:Person ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :Procedure :Lot ) . - -[] a ; - owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a ; - owl:members ( :MiniCompetitionAwardDecision :LotAwardDecision ) . - -[] a ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a ; - owl:members ( :Procedure :Lot ) . - -[] a ; - owl:members ( :AwardEvaluationTerm :SelectionEvaluationTerm ) . - -[] a ; - owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . - -[] a ; - owl:members ( :ExclusionGroundsSummary :SelectionCriteriaSummary ) . - -[] a ; - owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . - -[] a ; - owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - -[] a ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a ; - owl:members ( :ReviewDecision :ReviewRequest ) . - -[] a ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a ; - owl:members ( :MiniCompetitionAwardDecision :LotAwardDecision ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . - -[] a ; - owl:members ( :SubcontractTerm :ContractTerm ) . - -[] a ; - owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . - -[] a ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a ; - owl:members ( :System org:Organization foaf:Person ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :IndefiniteDuration :SpecificDuration ) . - -[] a ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . - -[] a ; - owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . - -[] a ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a ; - owl:members ( :LeadBuyer :CentralPurchasingBody ) . - -[] a ; - owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . - -[] a ; - owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . - -[] a ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a ; - owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . - -[] a ; - owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . - diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf deleted file mode 100644 index 50bddcd..0000000 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf +++ /dev/null @@ -1,9583 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology - core - The eProcurement Ontology core describes the concepts and properties representing the European Public Procurement domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact. - http://publications.europa.eu/resource/authority/corporate-body/PUBL - This version is automatically generated from demo_ontology_CM.xml on 2023-11-01 - - - - - 2023-11-01 - 2021-06-01 - 4.0.0 - 3.1.0 - - http://data.europa.eu/a4g/ontology#core-3.1.0 - http://data.europa.eu/a4g/ontology# - epo - © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). - - - - Dynamic purchasing system - - - An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. WG approval 23/05/2023 - - - - - - - Mini competition - - - A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. Additional Information: It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. WG approval 30/05/2023 - - - - - - - Mini competition award decision - - - Result concerning the Mini-Competition attributed by the Awarder. - - - - - - - Selected candidate list - - - Record of Candidates admitted to take part in award phases of procurements. WG approval 30/05/2023 - - - - - - - Project - - - A collaborative enterprise that is carefully planned to achieve a particular aim. - - - - - - - Procurement object - - - The whole or a division of goods, services or works to be procured. Additional Information: Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. In a sense, such an "object" can constitute the "object of a Contract". To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (<i>The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.</i>). Note: Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and "purpose" properties. - - - - - - - Lot - - - A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. WG approval 12/09/2018 - - - - - - - Planned procurement part - - - A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. WG Approval 20/06/2019 - - - - - - - Procedure - - - A legally defined set of administrative activities conducted to conclude one or more Contracts. Additional Information The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). WG Approval 20/08/2019 - - - - - - this is a note - - - this is a french label - - - this is a romanina - - - - Lot group - - - Combination of several Lots to conduct comparative assessment of the Tenders. Additional Information: The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. Pending of discussion with eForms Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined. - - - - - - - Procurement element - - - Gathering class for critical/central elements in the Procurement Process. TODO: add definition Additional information: Alias: ProcurementComponent - - - - - - - Purpose - - - The description of the objectives related to a Procurement. Additional information: The description of the objectives includes the Subject Matter and Quantities. The quantification of the objectives related to a procurement. To be re-reviewed by the WG the soonest. (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) The old definition read as follows: The description of the objectives related to a procurement. (WG approval 05/12/2018) - - - - - - - Tender group - - - Specific Offer in response to a Lot Group. Additional Information: This class is generally used to provide the Monetary Value in response to a Lot Group. - - - - - - - Public organisation - - - An Organisation that is defined as being part of the public sector by a legal framework at any level. Additional information: A body governed by public law: - (a) established for the specific Purpose of meeting needs in the general interest - (b) having legal personality; - (c) financed, for the most part by the State, or regional or local authorities. Examples of Public Organisations are municipality, international public body, ministry, others. WG Approval 28/04/2020 - - - - Person - - - A individual human being who may be dead or alive, but not imaginary. - - - - Ad hoc channel - - - Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023 - - - - - - - Business - - - A private law company registered in a national registry. WG Approval 28/04/2020 - - - - - - - Organisation group - - - Agreed collaboration of several Organisations. Additional Information: This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. WG approval 15/04/2021 - - - - - - - System - - - Software application used for performing Procurement activities. WG Approval 28/04/2020 - - - - - - - Agent - - - A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. WG Approval 28/04/2020 - - - - Person - - - The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF. - - - - Organization - - - A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. (WG approval 23/11/2018). - - - - Acquiring central purchasing body - - - Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021 - - - - - - - Acquiring party - - - The Role of an Agent that acts on the buying side of a Procurement Process. - - - - - - - Agent in role - - - Relative concept that ties an Agent to a part they play in a given Situational Context. Additional information: The classification of roles is based is based on the degree of involvement into the Procurement Process: - Primary (Procurement) Pole is directly involved in the Procurement Process; - Secondary (Procurement sub-) Role is secondary to the Procurement Process - Tertiary (Related) Role is not involved in the Procurement Process. - - - - - - - Auxiliary party - - - Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it. - - - - - - - Awarder - - - A Role of an Agent that signs the Award Decision. - - - - - - - Awarding central purchasing body - - - Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. Additional Information: In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021 - - - - - - - Budget provider - - - A role of an agent whose Budget is used to pay for the Contract. - - - - - - - Buyer - - - A Role of an Agent that awards a Contract and/or purchases items. Additional information: In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. In Post-Award the buyer generally refers to the purchaser of items. - - - - - - - Candidate - - - The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. WG approval 30/05/2023 - - - - - - - Catalogue provider - - - A Role of an Agent compiling and supplying a Catalogue. Additional Information: The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. WG Approval 28/01/2021 - - - - - - - Catalogue receiver - - - A Role of an Agent processing a Catalogue. Additional Information: The Catalogue Receiver may not only receive it but also validate it, process it, etc. The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. WG Approval 28/01/2021 - - - - - - - Central purchasing body - - - Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. Additional Information: In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; WG approval 05/08/2021 - - - - - - - Contractor - - - The Role of an Agent that has signed a Contract with a Buyer. WG approval 08/11/2022 - - - - - - - Employment information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions. - - - - - - - Environmental protection information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection. - - - - - - - Jury member - - - - - - - Lead buyer - - - A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. WG agreement: 2022-11-22 - - - - - - - Mediator - - - A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. WG approval 20/04/2021 - - - - - - - Offering party - - - The Role of an Agent that acts on the Economic Operator side during a Procurement Process. Additional information: As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances. - - - - - - - Offer issuer - - - The Role of an Agent that distributes an Offer. WG approval 09/02/2023 - - - - - - - Offline access provider - - - A Role of an Agent responsible for providing offline access to the Procurement Documents. - - - - - - - Other entity - - - Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria. - - - - - - - Participation request processor - - - A Role of an Agent responsible for processing Requests To Participate. - - - - - - - Participation request receiver - - - A Role of an Agent responsible for receiving Requests To Participate. - - - - - - - Payment executor - - - A Role of an Agent responsible for executing the Payment. - - - - - - - Procurement procedure information provider - - - A Role of an Agent responsible for providing additional information about the Procurement Procedure. - - - - - - - Procurement service provider - - - Role of a public or private body which offers ancillary purchasing activities on the market. Additional information "Ancillary Purchasing Activities" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; (b) advice on the conduct or design of public Procurement Procedures; (c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. WG Approval 24/03/2020 - - - - - - - Reviewer - - - Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. Additional Information: Any Organisation or Person may request a review of a Procurement Procedure. WG approval: 20/04/2021 - - - - - - - Review procedure information provider - - - A Role of an Agent who is providing more information on the time limits for review Procedures. - - - - - - - Review requester - - - Role of an Agent who requests the review of a (Procurement) Procedure. WG Approval 23/10/2021 - - - - - - - Subcontractor - - - A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. Additional information For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. When modelling ESPD we well analyze whether we need or not a Role named "relied upon". WG approval 05/08/2021 - - - - - - - Tax information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes. - - - - - - - Tenderer - - - A Role of an Agent that has submitted a Tender. Additional Information: A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. WG approval 05/08/2021 - - - - - - - Tender processor - - - A Role of an Agent responsible for processing Tenders. - - - - - - - Tender receiver - - - A Role of an Agent responsible for receiving Tenders. - - - - - - - Winner - - - A Role of an Agent to whom a Lot is awarded. WG approval 05/08/2021 (revised 26/10/2021) - - - - - - - Contact point - - - Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. Additional information: This class represents the contact information for a Public Service, Channel, Public Organisation, etc. The Contact Point could be a role, email address, telephone number, etc. WG approval 5/11/2019 - - - - Channel - - - A medium through which Agents interact. Additional Information Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. See also Directive recitals 53 to 56. WG approval 2023-02-14 - - - - Location - - - An identifiable geographic place or named place. - - - - Address - - - The particulars of the place where a Person or an Organisation is located. WG Approval 28/04/2020 Additional Information: An "Address Representation" as conceptually defined by the INSPIRE Address Representation data type: "Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.". The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - full address (the complete address as a formatted string) - addressID (a unique identifier for the address) The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL. - - - - Geometry - - - The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. Additional Information: This class defines the notion of "Geometry" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats. - - - - Contract specific term - - - Gathering class for conditions and stipulations related to a contract in the Post-Award Phase. - - - - - - - Lot specific term - - - Gathering class for conditions and stipulations related to a Lot. - - - - - - - Procedure specific term - - - Gathering class for conditions and stipulations related to a Procedure. - - - - - - - Process planning term - - - Conditions and stipulations defining particularities of the unfolding of the Procurement Process. - - - - - - - Term - - - A governing condition or stipulation. - - - - - - - Participation request term - - - Conditions and stipulations defining particularities of requesting participation in a Procedure. - - - - - - - Access term - - - Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021 - - - - - - - Non disclosure agreement term - - - Conditions and stipulations - - - - - - - Opening term - - - Conditions and stipulations defining particularities of the opening of Tenders. Additional Information: The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. WG Approval 15/04/2021 - - - - - - - Security clearance term - - - Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. Additional information: This corresponds in eForms to BT-578, BT-78, BT-732 . WG approval 20/06/2023 - - - - - - - Direct award term - - - Conditions and stipulations defining particularities of the award of a Contract without prior publication. Addtional Information: Direct award may refer to a previous Procedure and/or specific Lot(s). It may also refer to other justified situations whereby there is no previous Procedure. See Directive 2014/24/EU Article 32. WG Approval 22/11/2019 - - - - - - - Procedure term - - - Conditions and stipulations defining particularities of the Procedure. (WG approval 23/11/2018) - - - - - - - Submission term - - - Conditions and stipulations defining particularities of submitting Documents to the Buyer. Additional Information: These Documents can be Tenders, Request To Participate and expressions of interest. WG Approval 14/07/2020 - - - - - - - Contract term - - - Conditions and stipulations defining particularities of the Post Award Phase. (WG approval 23/11/2018) - - - - - - - Design contest regime term - - - Conditions and stipulations defining particularities of a Design Contest. WG approval: 04-02-2021 - - - - - - - Framework agreement term - - - Conditions and stipulations defining particularities in a Framework Agreement. - - - - - - - Multiple stage procedure term - - - Conditions and stipulations defining particularities of Procedures carried out in several steps Additional Information: Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. WG Approval 15/04/2021 - - - - - - - Prize - - - A reward given in a Contest. WG approval: 15/04/2021 - - - - - - - Subcontract term - - - A concept to describe the main information regarding the share of parts of the Contract to third parties. - - - - - - - Award evaluation term - - - Conditions and stipulations defining particularities of the evaluation of Award Criteria. - - - - - - - Evaluation term - - - Conditions and stipulations defining particularities of the Tender evaluation. (WG approval 23/11/2018) - - - - - - - Selection evaluation term - - - Conditions and stipulations defining particularities of the evaluation of Selection Criteria. - - - - - - - Constraint - - - Limitation applied to an Information Concept. Additional Information: Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context. - - - - Criterion - - - Condition for evaluation or assessment. Additional Information: In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service. - - - - Evidence - - - Proof that a Requirement is met. - - - - Information concept - - - Piece of information that the Evidence provides or the Requirement needs. - - - - Requirement - - - Condition or prerequisite that is to be proven by Evidence. Additional Information: Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification. - - - - Award criteria summary - - - - - - - Award criterion - - - Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018 - - - - - - - Economic standing summary - - - - - - - Exclusion ground - - - Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. Additional Information: This corresponds in eForms to BG-701 Exclusion Grounds. WG approval 31/10/2018 - - - - - - - Exclusion grounds summary - - - - - - - Participation condition - - - Criterion that describes a Requirement to take part in a procurement. WG approval 30/05/2023 - - - - - - - Participation conditions summary - - - - - - - Procurement criteria summary - - - WG approval 24/01/2023 - - - - - - - Procurement criterion - - - A criterion specific to Procurement. Additional Information: This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). WG Approval 23/04/2020 - - - - - - - Professional suitability summary - - - - - - - Qualification criteria summary - - - - - - - Qualification criterion - - - Criterion used in the first stage of procurement. WG approval 30/05/2023 - - - - - - - Selection criteria summary - - - - - - - Selection criterion - - - Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. Additional Information: Selection criteria may relate to: (a) suitability to pursue the professional activity; (b) economic and financial standing; (c) technical and professional ability WG approval 31/10/2018 - - - - - - - Technical ability summary - - - - - - - Green procurement - - - Approach whereby Buyers seek to procure with a reduced Environmental Impact. Additional Information: The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf An instance of the class GreenProcurement is represented in eForms with the code "env-imp" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf - - - - - - - Innovative procurement - - - An instance of the class InnovativeProcurement is represented in eForms with the code "inn-pur" defined in the codelist Strategic-Procurement. Research (21/01/2020): Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions Additional Information: ‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; See: Directive 2014/24 Articles: 2, 26 (3), 31, 67 (2.a) Question: Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement? - - - - - - - Social procurement - - - An instance of the class SocialProcurement is represented in eForms with the code "soc-obj" defined in the codelist Strategic-Procurement. Research (21/01/2020): Socially Responsible Public Procurement (SRPP): ‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en See Article 18 and Annex X Directive 2014/24. - - - - - - - Strategic procurement - - - Public Procurement that contributes to achieving pressing policy goals. Additional Information: Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on "background information". WG Approval 10/03/2020 - - - - - - - Dynamic purchase system technique - - - A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. WG approval 23/05/2023 - - - - - - - E auction technique - - - A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. Additional Information: This corresponds in eForms to BT-767 Electronic Auction . WG approval 20/07/2018 - - - - - - - Framework agreement technique - - - Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. WG approval 18/05/2021 - - - - - - - Technique - - - Method used for conducting Procurement Procedures. Addtional information: This corresponds in eForms to BG-706 Techniques. Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). WG Approval 19/09/2019 - - - - - - - Context specific description - - - A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity. - - - - - - - Contextual projection - - - Projection of an Entity and all of its properties that hold in a given Situation Context. Additional Information: The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) We say that ContextualProjection *describes* an Entity. Adaptation of ContextSlices pattern encoding a 4D view. http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices - - - - - - - Estimate - - - An approximate calculation or a judgement of the value, number, Quantity or extent of something. - - - - - - - Procurement process information - - - Information about the temporal unfolding or succession of Procurement Objects. - - - - - - - Statistical information - - - Statistical data on the Procedure and the Lot. Additional Information At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. Therefore this class is temporal and should cease to exist in fully electronic Procurement. The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. WG Approval 12/12/2019 - - - - - - - Concession estimate - - - - - - - Subcontracting estimate - - - Information on the approximation of the foreseen Subcontracting. - - - - - - - Lot award decision - - - Result concerning the Lot attributed by the Awarder. - - - - - - - Lot group award information - - - Award information related to a given Group of Lots. - - - - - - - Notice award information - - - Information about an Award Notice. - - - - - - - Tender award outcome - - - Result concerning the Tender attributed by the Awarder. - - - - - - - Review irregularity summary - - - Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). Additional information: This class corresponds in eForms to BG-613 Buyer Review Requests. - - - - - - - Review request summary - - - Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. Additional information: This class corresponds in eForms to BG-612 Buyer Review Summary. - - - - - - - Submission statistical information - - - Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 - - - - - - - Contract lot completion information - - - Information related to a given Lot at the end of the procurement. - - - - - - - Electronic signature - - - - - - - Originator request - - - Document in which the Originator describes his needs. WG approval 09/02/2023 - - - - - - - Tender - - - Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. (WG approval 03/05/2022) - - - - - - - Offer - - - Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. Additional information: A quotation is considered to be an Offer in the eProcurement Ontology. WG approval 09/02/2023 - - - - - - - Procurement document - - - Document produced or referred to by the Buyer to describe or determine elements of the Procurement. Additional information: Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. WG Approval 23/05/2019 17:08:30 - - - - - - - Notice - - - Document published by the Buyer about market opportunities and results. WG Approval 23/05/2019 - - - - - - - Document - - - A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019 - - - - - - - Award decision - - - Resolution of the Buyer as to the result of the Procurement Procedure. WG approval 14/11/2018 - - - - - - - Request for participation - - - Application of an Economic Operator to be included in a Procurement Procedure. WG approval: 20/04/2021 - - - - - - - Expression of interest - - - Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. WG approval 13/04/2021 - - - - - - - Request for clarification - - - A demand for elucidation of received information. Additional Information: Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. WG approval 20/04/2021 - - - - - - - Direct contract - - - - - - - Concession contract - - - A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. WG Approval 24/05/2022 - - - - - - - Purchase contract - - - A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract. - - - - - - - Fund - - - A financial resource used to support the Procurement. Additional Information: In the context of EU, Funds can be divided into programmes, actions and projects. Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. WG Approved 14/05/2019 - - - - - - - Framework agreement - - - An agreement between one or more Contracting Authorities and one or more Economic Operators. Additional Information: When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. WG approval 18/05/2021 - - - - - - - Contract - - - A voluntary, deliberate, and legally binding agreement between two or more competent parties. Additional information: This includes Concession Contracts. (WG approval 01/06/2018) - - - - - - - Review decision - - - Information about Review Decisions. - - - - - - - Review object - - - Information about a Review Request or a Review Decision. Additional information: This class corresponds to the BG-714 Review in eForms. - - - - - - - Review request - - - Information about requests to review procedures. - - - - - - - Contract modification - - - An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer. - - - - - - - Element change description - - - Information about a specific field to be changed with regard to a previous Notice. - - - - - - - Element confidentiality description - - - Information about a specific field not intended for publication. Additional Information: In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided. - - - - - - - Element description - - - Description about a specific resource. - - - - - - - Element modification description - - - Information about a specific field to be changed with regard to the Modification Of a Contract. - - - - - - - Notice change - - - Information about a corrigendum in a Notice. - - - - - - - Notice description - - - Descriptions about the notice publishing, or providing evolutions of resources. - - - - - - - Publication provision - - - Information about fields not intended for publication. Additional Information: The non-published information may become available at a later date and may differ from one element to another within a given Document. Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. WG Approval 16/05/2019 - - - - - - - Identifier - - - A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. - - - - Duration - - - The length of time in which a concept occurs. - - - - - - - Indefinite duration - - - - - - - Monetary value - - - A number of monetary units specified using a given unit of currency. Additional information: In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. WG approval 13/04/2021 - - - - - - - Period - - - A time interval or a Duration. (WG approval 28/04/2020) - - - - - - - Quantity - - - A counted number of non-monetary units possibly including fractions. - - - - - - - Specific duration - - - - - - - Thing - - - Any individual in the domain of discourse is a Thing. Additional Information: The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing. - - - - Accessibility - - - This table provides a list of options for the use of accessibility Criteria for Person with disabilities in the technical specifications within the domain of Public Procurement. - - - - Applicability - - - This table provides a list of the options pertinent to be chosen for a matter concerning the applicability of predefined fields. It is designed for but not restricted to the context of public procurement. - - - - Award-criterion-type - - - This table provides the list of rules to be taken into account for the Award Decisions within the in public Procurement Procedures. The initial values are those foreseen in the public procurement directives of 2014 (Directives 2014/23/EU, 2014/24/EU and 2014/25/EU). - - - - Buyer-legal-type - - - This table provides a list of the type of Procuring Authorities within the domain of public procurement according to legislation. - - - - Change-corrig-justification - - - This table provides the codes and values used in case of justification of corrections applied to a Notice within the context of Public Procurement. - - - - Communication-justification - - - This table provides the justification for restricting access rights to resources within the context of Public Procurement - - - - Confidentiality-level - - - The Confidentiality level authority table is a controlled vocabulary used to define the information confidentiality levels according to the European Commission Security Notice ‘Information assessment and classification’, C(2019) 1903 final, 5.3.2019. - - - - Contract-nature - - - This table provides a list of different types of subjects and goods that can be acquired by means of a public Contract such as works, supplies and services by one or more Contracting Authorities from Economic Operators. - - - - Country - - - The Country authority table is a controlled vocabulary that lists concepts associated with names of countries and territories. Its main scope is to support documentary metadata activities. The concepts included are correlated with the ISO 3166 international standard. ISO 3166-1 contains a two-letter code which is recommended as the general purpose code, a three-letter code which has better mnenomic properties and a numeric-3 code which can be useful if script independence of the codes is important. The authority code relies on the ISO 3166-1/alpha-3 positions. If an authority code is needed for a country without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic or numeric. A country code comparison is provided between ISO codes, IANA codes (Internet Country-code Top-level Domains) and TIR (Transport International par la Route) Vehicle system codes. - - - - Cpv - - - To support an effective Single Market, the Commission encourages suppliers and Contracting Authorities/Entities to adopt best practice and use electronic communication and information technology to provide all the relevant information, so as to ensure best value for money in Public Procurement. - - - - Criterion - - - This table provides Criteria used for Public Procurement Procedures. - - - - Currency - - - The Currency authority table is a controlled vocabulary that lists concepts associated with currencies and currency subunits. The concepts included are correlated with the ISO 4217 international standard. - - - - Direct-award-justification - - - This table provides the list of reasons for using a Procedure which allows awarding Contracts directly without the Requirement of publishing a call for competition in the Official Journal of the European Union. - - - - Dps-usage - - - This table provides a list wether a dynamic purchasing system is involved in a Procurement and, in case of central purchasing bodies, whether it can be used by buyers not listed in the Notice of the Official Journal of the European Union. - - - - Economic-operator-size - - - This table provides the different categories in which the Tenderers to whom a Contract can be awarded are classified, according to their size (using as Criteria the number of employees). - - - - Environmental-impact - - - This table provides the information about whether a Procurement includes a process to procure goods, services and works with a reduced Environmental Impact throughout their life cycle. - - - - E u-programme - - - The EU programme authority table (AT) is a controlled vocabulary providing the list of programmes created and coordinated by the European Union and financially supported by the European Union or, in a few cases, by the contributions from the Member States. It has been developed specifically for the EU Budget as open linked data project. It indicates the authority code and start-use date of each concept and gives labels in all official EU languages. - - - - Form-type - - - This table provides the codes and values used for the type of forms published on TED. - - - - Framework-agreement - - - This table provides the list of codes to distinguish the different type Framework Agreement involved in a Tender. - - - - Innovative-acquisition - - - This table provides the codes and values used for innovative works, supplies or services being bought. - - - - Irregularity-type - - - This code list refers generally to the types of irregularities described in Section 2 of the Annex to the Commission Decision C(2019) 3452. - - - - Language - - - The Language authority table is a controlled vocabulary that lists concepts associated with languages. Its main scope is to support activities associated with publication process. The concepts included are correlated with the ISO 639 international standard. This standard is issued in several parts: ISO 639-1 contains strictly two alphabetic letters (alpha-2), ISO 639-2/B (B = bibliographic) is used for bibliographic purpose (alpha-3), ISO 639-2/T (T = terminology) is used for technical purpose (alpha-3), ISO 639-3 covers all the languages and macro-languages of the world (alpha-3); the values are compliant with ISO 639-2/T. If an authority code is needed for a language without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic. - - - - Legal-basis - - - This table provides the legal basis based on the legal acts used for a given Public Procurement Procedure. The table is provided by the Publications Office. - - - - Main-activity - - - This table provides the list of main activities of the Buyers. The codes associated with Contracting Authorities are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The codes associated with contracting entities are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). - - - - Measurement-unit - - - The Measurement unit authority table is a controlled vocabulary listing units of measurement with their authority codes. The labels and symbols are given in all official EU languages. If available, the codes are based on the code list recommendation N&#176;. 20 "Codes for Units of Measure Used in International Trade" (as revised periodically) maintained and published by UNECE through its Center for Trade Facilitation and Electronic Business (UN/CEFACT). The Measurement unit authority table is maintained by the Publications Office of the European Union on the EU Vocabularies website. - - - - Missing-info-submission - - - This table provides the list of codes indicating wether Tenderer-related information (complete or partial) can be supplemented even after the submission deadline. - - - - Modification-justification - - - This table provides the main reasons for modifying a Contract within the domain of Public Procurement. - - - - Non-award-justification - - - This table provides the list of reasons of the Buyer for not choosing a Winner in the Procurement Procedure. - - - - Non-publication-justification - - - This table provides codes and values for the main reasons for not immediately publishing a Notice within the context of Public Procurement. - - - - Notice-type - - - This table provides a list of Public Procurement Notices according to procurement legislation published once a project is approved. - - - - Number-fixed - - - This table provides the codes linked to fix values within the context of Public Procurement. - - - - Number-threshold - - - This table provides the codes linked to the type of threshold values within the context of Public Procurement. - - - - Number-weight - - - This table provides the codes linked to the type of weight values used in Award Criteria within the context of Public Procurement. - - - - Nuts - - - The NUTS classification (Nomenclature of territorial units for statistics) is a hierarchical system for dividing up the economic territory of the EU and the UK. The NUTS 2021 compiles the versions 2010, 2013, 2016 and 2021 of the NUTS classification as well as the Statistical Regions for countries that do not belong to the EU such as candidate countries, potential candidates or countries belonging to the EFTA (European Free Trade Association). - - - - Other-place-service - - - This table provides the broad geopolitical areas linked to the Location of works and the place of performance or delivery within the context of Public Procurement. - - - - Permission - - - This table provides the codes linked to the different values of permission and/or obligation. - - - - Procurement-procedure-type - - - This table provides a list of activities leading to the conclusion of public Contracts used in Public Procurement according to the legislation. - - - - Received-submission-type - - - This table provides the list of relevant categories used to classify Tenders or requests to participate received within the context of Public Procurement. - - - - Remedy-type - - - This table describes the measures taken following a Review. - - - - Requirement-stage - - - This table describes when and whether a given Requirement must be provided in a Procedure. - - - - Reserved-procurement - - - This table provides the values used to indicate wether the participation in the Procurement is reserved for specific Organisations. - - - - Review-body-type - - - This table covers the list of organisations providing the review of a given procedure. - - - - Review-decision-type - - - This table describes the decision made a review body. - - - - Selection-criterion - - - This table provides the list of conditions that are concerned for evaluation purposes. In the domain of Public Procurement, Selection Criteria are normally based on a specific legal framework. This codelist is a subset of the ESPD codelist CriterionTaxonomy. - - - - Social-objective - - - This table provides the values linked to any social objective promoted by the technical specifications, Award Criteria, Selection Criteria or Contract performance conditions included in a Procurement. - - - - Subcontracting-indication - - - This table provides the list of codes and values used to indicate information regarding the share of parts of a Contract to third parties. The share may refer to the portion of work, services or supplies and/or to the subject matter being subcontracted. - - - - Subcontracting-obligation - - - This table provides the list of codes and values used for the obligation of the Economic Operator of sharing parts of the original Contract to third parties. The share may refer to the portion of work, services or supplies. - - - - Timeperiod - - - The Time-period authority table is a controlled vocabulary which lists the periods of time in the 24 official languages of the EU. It enumerates the names of the seasons, months, weekdays and the main units of time when the issues are published. It also contains concepts for ‘unlimited’ or ‘unknown’ time periods. - - - - Usage - - - This table provides the list of codes and values indicating the application of Criteria or other concepts and information. - - - - Winner-selection-status - - - This table provides the list of codes and values used to indicate whether a tenderer was chosen to be awarded with a Contract and wether the competition is open. - - - - Legal-regime - - - - - - - Notification-phases-content-types - - - - - - - Temporal unit - - - standard duration, which provides the scale factor for a time extent, or the granularity or precision for a time position. - - - - Plain literal - - - - Any u r i - - - - Boolean - - - - Date - - - - Date time - - - - Decimal - - - - Integer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) - - - When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions. - - - This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping - - - In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria. - - - In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) - - - Check definitions for all concepts and relations. - - - Check definitions for all concepts and relations. - - - Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract. - - - Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. - - - Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. - - - Proposal to omit this link until we bring tax into ePO core because this does not appear in the data - - - <b>Procedure/ PlannedProcurementPart / Lot</b> are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the "process" description and "whole procurement subject matter". TODO: revise this definition. TODO: specify that all procedures have al least one lot. - - - should this be moved to document? - - - if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject. - - - there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..* - - - In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. - - - In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. - - - A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023 - - - based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure - - - BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision. - - - Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms). - - - Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. - - - Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. - - - To be decided if this should stay in the core or in the Offer module - - - What are the entities that can be reviewed? - - - This does not work in practice. - - - Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms. - - - - Has candidate list - - - - - - - Results in dynamic purchasing system - - - - - - - Uses candidate list - - - - - - - Specifies award criterion - - - - - - - Follows rules set by - - - - - - - Concerns mini competition - - - - - - - Comprises mini competition award decision - - - - - - - Results from mini competition award decision - - - - - - - Contains candidate - - - - - - - Has start date - - - - - - - Identifier - - - A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:Project -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:LotGroup -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:ProcurementElement -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (foaf:Agent -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (dct:Location -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (cccev:InformationConcept -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Document -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Fund -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:Consignment -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:ShipmentInformation -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-cat:Line -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:AbstractContainer -> adms:Identifier (+adms:identifier)) - - - - Refers to project - - - - - - - Has purpose - - - Relation indicating a procurement part has a puropse. (epo:ProcurementObject -> epo:Purpose (+epo:hasPurpose)) - - - - - - - Is funded by - - - Funding is provided either completely or partially by a Fund. Additional information: This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. (epo:ProcurementObject -> epo:Fund (+epo:isFundedBy)) - - - - - - - Has legal basis - - - The legal basis under which the procurement procedure takes place. Additional Information: For example European Directives or Regulations, national laws etc. The recommended code list is the example for the legal basis at the European level. WG 04/04/2023 (epo:ProcurementObject -> at-voc:legal-basis (+epo:hasLegalBasis)) - - - - - - - Is subject to term - - - - - - - Fulfills strategic procurement - - - - - - - Foresees concession - - - - - - - Uses technique - - - - - - - Foresees contract specific term - - - - - - - Has legal regime - - - - - - - Contextualised by - - - The place of the AgentInRole in the procurement is expressed by a ProcurementObject. (epo:AgentInRole -> epo:ProcurementObject (+epo:contextualisedBy)) - - - - - - - Foresees procurement object - - - Relation indicating the instance of a Procurement Object that is planned. Additional Information: The properties of the Procurement Object that is foreseen should be read as foreseen properties. For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy. (epo:PlannedProcurementPart -> epo:ProcurementObject (+epo:foreseesProcurementObject)) - - - - - - - Specifies procurement criterion - - - - - - - Is subject to lot specific term - - - - - - - Has lot reference - - - - - - - Sets grouping context for lot - - - - - - - Refers to lot - - - - - - - Refers to previous procedure lot - - - Reference to one or more Lots in a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier WG Approval 22/11/2019 14:33:55 (epo:DirectAwardTerm -> epo:Lot (+epo:refersToPreviousProcedureLot)) - - - - - - - Announces lot - - - - - - - Is assigned for evaluation of - - - - - - - Is submitted for lot - - - - - - - Concerns review summary for lot - - - Relates to Lot review summary. Additional information: This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier. (epo:ReviewRequestSummary -> epo:Lot (+epo:concernsReviewSummaryForLot)) - - - - - - - Describes lot completion - - - - - - - Concerns lot - - - Relates to Lot. (epo:ProcurementProcessInformation -> epo:Lot (+epo:concernsLot)) Relates to Lot. (epo:LotAwardDecision -> epo:Lot (+epo:concernsLot)) - - - - - - - Has procurement scope divided into lot - - - - - - - Foresees technique - - - - - - - Has planned period - - - - - - - Has planned duration - - - - - - - Announces planned procurement part - - - - - - - Refers to planned part - - - - - - - Has procedure type - - - Identification of the Procedure used. WG Approval 09/06/2020 (epo:Procedure -> at-voc:procurement-procedure-type (+epo:hasProcedureType)) - - - - - - - Is subject to procedure specific term - - - - - - - Is executed by procurement service provider - - - - - - - Involves buyer - - - - - - - Is responsibility of buyer - - - The buyer in charge of the procedure. Additional Information: In case there are multiple buyers, it may be the case that one or more buyers are in charge of the procedure. (epo:Procedure -> epo:Buyer (+epo:isResponsibilityOfBuyer)) - - - - - - - Specifies procurement criteria summary - - - - - - - Refers to previous procedure - - - Reference to a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier (epo:DirectAwardTerm -> epo:Procedure (+epo:refersToPreviousProcedure)) - - - - - - - Refers to procedure - - - - - - - Concerns procedure - - - Relates to Procedure. (epo:ProcurementProcessInformation -> epo:Procedure (+epo:concernsProcedure)) - - - - - - - Announces procedure - - - - - - - Refers to lot group - - - - - - - Defines lot group - - - Relation indicating a ProcedureTerm has a LotGroup. (epo:ProcedureTerm -> epo:LotGroup (+epo:definesLotGroup)) - - - - - - - Describes lot group - - - - - - - Is subject to grouping - - - - - - - Announces lot group - - - - - - - Is submitted for lot group - - - - - - - Uses channel - - - - - - - Has internal identifier - - - - - - - Has estimated value - - - A forecast of the value of the procurement before competition. Additional Information: Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). <b> </b><b>WG Approval 05/12/2019</b> (epo:ProcurementElement -> epo:MonetaryValue (+epo:hasEstimatedValue)) - - - - - - - Has total quantity - - - The number of units required. Additional Information: The quantity needs to go along with the unit. (epo:Purpose -> epo:Quantity (+epo:hasTotalQuantity)) - - - - - - - Has main classification - - - - - - - Has additional classification - - - - - - - Comprises tender - - - Incorporates Tender. (epo:TenderGroup -> epo:Tender (+epo:comprisesTender)) - - - - - - - Has total value - - - - - - - Registered address - - - The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. (cpv:Person -> locn:Address (+cv:registeredAddress)) The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. (org:Organization -> locn:Address (+cv:registeredAddress)) - - - - Has nationality - - - (cpv:Person -> at-voc:country (+epo:hasNationality)) - - - - - - - Has country of birth - - - The country in which the Person was born. (cpv:Person -> at-voc:country (+epo:hasCountryOfBirth)) - - - - - - - Place of birth - - - The Location where the Person was born. (cpv:Person -> dct:Location (+person:placeOfBirth)) - - - - Place of death - - - The Location where the Person died. (cpv:Person -> dct:Location (+person:placeOfDeath)) - - - - Is beneficial owner of - - - A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf)) - - - - - - - Has beneficial owner - - - A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf)) - - - - - - - Has business size - - - The category of the business depending on number of employees and turnover. Additional information: See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. WG Approval 28/05/2020 (epo:Business -> at-voc:economic-operator-size (+epo:hasBusinessSize)) - - - - - - - Has member - - - - - - - Lead by - - - - - - - Owns system - - - - - - - Is owned by agent - - - - - - - Played by - - - - - - - Has certification - - - Relation to the proof of conformance. WG approval 30/05/2023 (foaf:Person -> epo-cat:Certificate (+epo:hasCertification)) Relation to the proof of conformance. WG approval 30/05/2023 (org:Organization -> epo-cat:Certificate (+epo:hasCertification)) - - - - - - - Has legal identifier - - - - - - - Has main activity - - - The principal sectoral area in which an organisation operates. Additional information: The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). WG Approval 05/05/2020 (org:Organization -> at-voc:main-activity (+epo:hasMainActivity)) - - - - - - - Has registration country - - - - - - - Address - - - Associates any Resource with the corresponding Address. Additional Information: Asserting the address relationship implies that the Resource has an Address. (org:Organization -> locn:Address (+cv:address)) - - - - Has primary contact point - - - - - - - Has buyer legal type - - - A category that indicates the right of an Organisation to play the role of a buyer. Additional Information: The category also effects the rules that the buyer has to abide to within the public procurement procedure. WG 07/09/2021 (org:Organization -> at-voc:buyer-legal-type (+epo:hasBuyerLegalType)) - - - - - - - Has tax identifier - - - - - - - Exposes channel - - - - - - - Has contact point in role - - - - - - - Refers to role - - - - - - - Announces role - - - - - - - Announces role - - - - - - - Refers to role - - - - - - - Defines information provider - - - Relation indicating a ProcedureTerm has an information provider. (epo:ProcedureTerm -> epo:AuxiliaryParty (+epo:definesInformationProvider)) - - - - - - - Defines budget provider - - - Relation indicating a ProcedureTerm has a BudgetProvider. (epo:ProcedureTerm -> epo:BudgetProvider (+epo:definesBudgetProvider)) - - - - - - - Signs award decision - - - - - - - Indicates invoicee contact point - - - - - - - Exposes invoicee channel - - - - - - - Delegates ancillary activities to - - - Entrusts ancillary purchasing activities to ProcurementServiceProvider. Additional Information: Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; (b) advice on the conduct or design of public procurement procedures; (c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned; (epo:Buyer -> epo:ProcurementServiceProvider (+epo:delegatesAncillaryActivitiesTo)) - - - - - - - Binds buyer - - - Provides legal constraint on the Buyer. (epo:Contract -> epo:Buyer (+epo:bindsBuyer)) - - - - - - - Acts on behalf of - - - Represents. (epo:ProcurementServiceProvider -> epo:Buyer (+epo:actsOnBehalfOf)) - - - - - - - Is appointed by - - - - - - - Agreed by buyer - - - - - - - Specifies buyer - - - - - - - Specifies buyer - - - - - - - Signed by buyer - - - - - - - Defines catalogue provider - - - Relation indicating an AccessTerm has a CatalogueProvider. (epo:AccessTerm -> epo:CatalogueProvider (+epo:definesCatalogueProvider)) - - - - - - - Specifies catalogue provider - - - - - - - Specifies catalogue receiver - - - - - - - Defines catalogue receiver - - - Relation indicating an AccessTerm has a CatalogueReceiver. (epo:AccessTerm -> epo:CatalogueReceiver (+epo:definesCatalogueReceiver)) - - - - - - - Needs to be a winner - - - The Contractor must be a Winner. (epo:Contractor -> epo:Winner (+epo:needsToBeAWinner)) - - - - - - - Signed by contractor - - - - - - - Binds contractor - - - Provides legal constraint on the Contractor. (epo:Contract -> epo:Contractor (+epo:bindsContractor)) - - - - - - - Has evaluation member - - - - - - - Defines mediator - - - Relation indicating a ProcedureTerm has a Mediator. (epo:ProcedureTerm -> epo:Mediator (+epo:definesMediator)) - - - - - - - Distributes offer - - - - - - - Defines offline access provider - - - Relation indicating an AccessTerm has an OfflineAccessProvider. (epo:AccessTerm -> epo:OfflineAccessProvider (+epo:definesOfflineAccessProvider)) - - - - - - - Defines participation request processor - - - Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor. (epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor (+epo:definesParticipationRequestProcessor)) - - - - - - - Defines participation request receiver - - - Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver. (epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver (+epo:definesParticipationRequestReceiver)) - - - - - - - Defines payment executor - - - Relation indicating a ContractTerm has a PaymentExecutor. (epo:ContractTerm -> epo:PaymentExecutor (+epo:definesPaymentExecutor)) - - - - - - - Defines procurement procedure information provider - - - Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider. (epo:AccessTerm -> epo:ProcurementProcedureInformationProvider (+epo:definesProcurementProcedureInformationProvider)) - - - - - - - Has review body type - - - - - - - Specifies subcontractors - - - - - - - Substantiates exclusion ground - - - - - - - Needs to be a tenderer - - - The Winner must be a Tenderer. (epo:Winner -> epo:Tenderer (+epo:needsToBeATenderer)) - - - - - - - Is submited by - - - Relation indicating the submission of a tender by an economic operator. WG approval 18/05/2021 (epo:Tender -> epo:Tenderer (+epo:isSubmitedBy)) - - - - - - - Defines tender processor - - - Relation indicating a SubmissionTerm has a TenderProcessor. (epo:SubmissionTerm -> epo:TenderProcessor (+epo:definesTenderProcessor)) - - - - - - - Defines tender receiver - - - Relation indicating a SubmissionTerm has a TenderReceiver. (epo:SubmissionTerm -> epo:TenderReceiver (+epo:definesTenderReceiver)) - - - - - - - Indicates award to winner - - - Reveals the winner to whom the tender award outcome is attributed. (epo:TenderAwardOutcome -> epo:Winner (+epo:indicatesAwardToWinner)) - - - - - - - Has endpoint identifier - - - - - - - Has country code - - - (locn:Address -> at-voc:country (+epo:hasCountryCode)) - - - - - - - Has nuts code - - - - - - - Geographic identifier - - - A URI that identifies the Location. Additional Information: GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - http://dbpedia.org/resource/ISO_3166-1:GR - http://dbpedia.org/resource/ISO_3166-1:GB even when the geographic name is given as EL or UK. The use of a URIs has added advantages: - it can be used by automated systems to look up additional data (linked data); - a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. (dct:Location -> adms:Identifier (+locn:geographicIdentifier)) - - - - Geometry - - - - Address - - - - Specifies place of despatch - - - - - - - Specifies delivery agreement location - - - - - - - Has delivery location - - - - - - - Specifies place of delivery - - - - - - - Defines place of performance - - - Relation indicating the place of performance of a Contract. WG approval 21/03/2023 (epo:ContractTerm -> dct:Location (+epo:definesPlaceOfPerformance)) - - - - - - - Address i d - - - A globally unique identifier for each instance of an Address. Additional Information: The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID. (locn:Address -> adms:Identifier (+locn:addressID)) - - - - Defines opening place - - - The place where the tenders will be publicly opened. WG Approval 10-10-2019 (epo:OpeningTerm -> locn:Address (+epo:definesOpeningPlace)) - - - - - - - Is subject to contract specific term - - - - - - - Involves procurement document - - - - - - - Has document restriction justification - - - An explanation about the reasons why some procurement documents are restricted. Additional Information: This corresponds in eForms to BT-707 Documents Restricted Justification. WG Approval 09/03/2021 (epo:AccessTerm -> at-voc:communication-justification (+epo:hasDocumentRestrictionJustification)) - - - - - - - Has direct award justification - - - List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. WG Approval 28/05/2020 (epo:DirectAwardTerm -> at-voc:direct-award-justification (+epo:hasDirectAwardJustification)) - - - - - - - Has late submission permission - - - Whether economic operator-related information can be supplemented even after the submission deadline. Additional Information This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:missing-info-submission (+epo:hasLateSubmissionPermission)) - - - - - - - Has non electronic submission justification - - - Reason for not accepting electronic information. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:communication-justification (+epo:hasNonElectronicSubmissionJustification)) - - - - - - - Has variant permission - - - The obligation or possibility for tenderers to submit variants or not. Additional Information: Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. Additional Information: Further conditions for submitting variant tenders are in the procurement documents. (epo:SubmissionTerm -> at-voc:permission (+epo:hasVariantPermission)) - - - - - - - Has e submission permission - - - The requirements as to what extent electronic submission is allowed. WG Approval 03/10/2019 (epo:SubmissionTerm -> at-voc:permission (+epo:hasESubmissionPermission)) - - - - - - - Has tender subcontracting information - - - The information about subcontracting that must be indicated in the tender. WG Approval 10/10/2019 (epo:SubmissionTerm -> at-voc:subcontracting-indication (+epo:hasTenderSubcontractingInformation)) - - - - - - - Has e catalogue permission - - - The extent to which electronic catalogues may be used in tenders. WG Approval 03/10/2019 (epo:SubmissionTerm -> at-voc:permission (+epo:hasECataloguePermission)) - - - - - - - Has tender validity period - - - The relation indicating until when a tender instance is applicable. (epo:SubmissionTerm -> epo:Period (+epo:hasTenderValidityPeriod)) - - - - - - - Has language - - - Language in which the submitted information is to be expressed. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:language (+epo:hasLanguage)) - - - - - - - Has broad place of performance - - - Geopolitical zone where the contract can be executed. Additional Information Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). (epo:ContractTerm -> at-voc:other-place-service (+epo:hasBroadPlaceOfPerformance)) - - - - - - - Defines contract duration - - - Relation indicating a ContractTerm has a Duration. (epo:ContractTerm -> epo:Duration (+epo:definesContractDuration)) - - - - - - - Has e invoicing permission - - - - - - - Has reserved execution - - - - - - - Has contract nature type - - - Subject of the acquisition. WG Approval 11/06/2020 (epo:ContractTerm -> at-voc:contract-nature (+epo:hasContractNatureType)) - - - - - - - Has additional contract nature - - - Additional type of acquisition taken into consideration in the contract. WG Approval 11/06/2020 (epo:ContractTerm -> at-voc:contract-nature (+epo:hasAdditionalContractNature)) - - - - - - - Defines subcontracting term - - - Relation indicating a ContractTerm has a SubcontractingTerm. (epo:ContractTerm -> epo:SubcontractTerm (+epo:definesSubcontractingTerm)) - - - - - - - Defines contract period - - - Relation indicating a ContractTerm has a Period. (epo:ContractTerm -> epo:Period (+epo:definesContractPeriod)) - - - - - - - Defines prize - - - Relation indicating a DesignContestRegimeTerm has a Prize. (epo:DesignContestRegimeTerm -> epo:Prize (+epo:definesPrize)) - - - - - - - Has launch framework agreement maximum value - - - - - - - Has framework agreement type - - - The form of framework agreement used in a procurement procedure. Addition information: A concept to distinguish the different types of framework agreement, which are: 1. Framework agreement without reopening of competition, 2. Framework agreement with reopening of competition, or 3. Framework agreement partly without reopening of competition. WG Approval 19/09/2019 (epo:FrameworkAgreementTerm -> at-voc:framework-agreement (+epo:hasFrameworkAgreementType)) - - - - - - - Has launch group framework agreement maximum value - - - - - - - Has qualification system duration - - - - - - - Has prize value - - - The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. Additional Information: This corresponds to BT-644 in eForms. WG Approval 29/08/2019 (epo:Prize -> epo:MonetaryValue (+epo:hasPrizeValue)) - - - - - - - Has subcontracting obligation - - - The requirement the tender must meet with regard to subcontracting parts of the contract. WG Approval 09/11/2021 (epo:SubcontractTerm -> at-voc:subcontracting-obligation (+epo:hasSubcontractingObligation)) - - - - - - - Constrains - - - Information Concept about which a Constraint expresses a limitation. Additional Information: Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation. (cccev:Constraint -> cccev:InformationConcept (+cccev:constrains)) - - - - Has threshold type - - - The method to interpret the threshold value as minimum or a maximum. WG Approval 17/09/2019 (cccev:Constraint -> at-voc:number-threshold (+epo:hasThresholdType)) - - - - - - - Has constraint - - - - - - - Type - - - Category to which the Requirement belongs. (cccev:Criterion -> at-voc:criterion (+dct:type)) - - - - Supports requirement - - - Requirement for which the Evidence provides proof. (cccev:Evidence -> cccev:Requirement (+cccev:supportsRequirement)) - - - - Supports concept - - - Information Concept providing facts found/inferred from the Evidence. Additional Information: Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as "I am older that 18 years" or "this is a FairTrade product". (cccev:Evidence -> cccev:InformationConcept (+cccev:supportsConcept)) - - - - Confidentiality level type - - - Security classification assigned to an Evidence e.g. classified, sensitive, public. Additional Information: Classifications should be defined by an organisation/country as an outcome of a security assessment. (cccev:Evidence -> at-voc:confidentiality-level (+cccev:confidentialityLevelType)) - - - - Has requirement - - - A more specific Requirement that is part of the Requirement. (cccev:Requirement -> cccev:Requirement (+cccev:hasRequirement)) - - - - Has award criterion type - - - Category of award criterion. (epo:AwardCriterion -> at-voc:award-criterion-type (+epo:hasAwardCriterionType)) - - - - - - - Has fixed value type - - - The method to interpret the fixed value as pertaining to a total or unit. WG Approval 17/09/2019 (epo:AwardCriterion -> at-voc:number-fixed (+epo:hasFixedValueType)) - - - - - - - Answers award criteria - - - - - - - Answers exclusion ground - - - - - - - Announces exclusion ground - - - - - - - Has reserved procurement - - - Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 (epo:ParticipationCondition -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 (epo:ParticipationConditionsSummary -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) - - - - - - - Has weight value type - - - No definition. Waiting on CCCEV alignment. (epo:ProcurementCriterion -> at-voc:number-weight (+epo:hasWeightValueType)) - - - - - - - Has performing staff qualification information - - - Additional information: This relation corresponds in eForms to BT-79. (epo:ProcurementCriterion -> at-voc:requirement-stage (+epo:hasPerformingStaffQualificationInformation)) - - - - - - - Has selection criteria usage - - - Additional Information: This corresponds in eForms to BT-748 Selection Criteria Used. (epo:SelectionCriterion -> at-voc:usage (+epo:hasSelectionCriteriaUsage)) - - - - - - - Has selection criterion type - - - The classification of the selection criteria. Additional Information: This corresponds in eForms to BT-747 Selection Criteria Type. WG Approval 09/11/2021 (epo:SelectionCriterion -> at-voc:selection-criterion (+epo:hasSelectionCriterionType)) - - - - - - - Announces selection criteria - - - - - - - Answers selection criteria - - - - - - - Fulfills requirement - - - The requirement to which the concept meets. WG Approval 09/11/2021 (epo:GreenProcurement -> at-voc:environmental-impact (+epo:fulfillsRequirement)) The requirement to which the concept meets. WG Approval 09/11/2021 (epo:InnovativeProcurement -> at-voc:innovative-acquisition (+epo:fulfillsRequirement)) The requirement to which the concept meets. WG Approval 09/11/2021 (epo:SocialProcurement -> at-voc:social-objective (+epo:fulfillsRequirement)) - - - - - - - Includes accessibility criterion - - - Explanation as to whether accessibility Criterion are used or not. WG Approval 09/11/2021 (epo:StrategicProcurement -> at-voc:accessibility (+epo:includesAccessibilityCriterion)) - - - - - - - Has d p s scope - - - Explanation as to whether a dps is used and by whom. Additional Information: This corresponds in eForms to BT-766 Dynamic Purchasing System. WG Approval 09/11/2021 (epo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage (+epo:hasDPSScope)) - - - - - - - Has usage - - - The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage (epo:Technique -> at-voc:usage (+epo:hasUsage)) - - - - - - - Has validity period - - - The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 (epo:Technique -> epo:Period (+epo:hasValidityPeriod)) The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 (epo-cat:Certificate -> epo:Period (+epo:hasValidityPeriod)) - - - - - - - Has concession estimated value - - - - - - - Has estimated user concession revenue - - - The estimated revenue coming from the use of the concession. Additional Information: Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. This corresponds to BT-162 in eForms. (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedUserConcessionRevenue)) - - - - - - - Has estimated buyer concession revenue - - - The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. <u>Additional Information:</u> For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. This corresponds to BT-160 in eForms. WG Approval 07/01/2020 (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedBuyerConcessionRevenue)) - - - - - - - Has subcontracting estimated value - - - The estimated value of a single subcontract. This relates to BT-553 in eForms. WG Approval 01/09/2020 (epo:SubcontractingEstimate -> epo:MonetaryValue (+epo:hasSubcontractingEstimatedValue)) - - - - - - - Foresees subcontracting - - - - - - - Has awarded estimated value - - - The estimated value that can be spent as provided by the Award Decision. <u>Additional Information</u>: This property is used for framework agreements and dynamic purchasing systems. Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. WG Approval 12/12/2019 (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasAwardedEstimatedValue)) - - - - - - - Has framework agreement maximum value - - - - - - - Has framework agreement estimated value - - - This refers to BT-660 in eForms. (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasFrameworkAgreementEstimatedValue)) - - - - - - - Has approximate framework agreement value - - - - - - - Results from lot award decision - - - - - - - Comprises lot award decision - - - Incorporates LotAwardOutcome. (epo:AwardDecision -> epo:LotAwardDecision (+epo:comprisesLotAwardDecision)) - - - - - - - Has group framework agreement maximum value - - - This corresponds to BT-156 in the eForms. (epo:LotGroupAwardInformation -> epo:MonetaryValue (+epo:hasGroupFrameworkAgreementMaximumValue)) - - - - - - - Announces lot group award information - - - - - - - Refers to lot group award information - - - - - - - Has maximum framework agreement awarded value - - - The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. Additional information: The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. The Framework Agreements in a CAN are to be traced back and added to provide this value. This corresponds to the BT-118 in eForms. WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasMaximumFrameworkAgreementAwardedValue)) - - - - - - - Describes result notice - - - - - - - Has procurement highest received tender value - - - The highest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementHighestReceivedTenderValue)) - - - - - - - Has procurement lowest received tender value - - - The lowest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementLowestReceivedTenderValue)) - - - - - - - Has total awarded value - - - The awarded value of all lots announced in this notice, including options and renewals. Additional information: The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. The values of the individual lots announced in a CAN are to be traced back and added to provide this value. This corresponds to the BT-161 in eForms. WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasTotalAwardedValue)) - - - - - - - Announces notice award information - - - - - - - Refers to notice award information - - - - - - - Concerns tender - - - - - - - Comprises tender award outcome - - - Incorporates TenderAwardOutcome. (epo:AwardDecision -> epo:TenderAwardOutcome (+epo:comprisesTenderAwardOutcome)) - - - - - - - Has irregularity type - - - Additional information: This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type (epo:ReviewIrregularitySummary -> at-voc:irregularity-type (+epo:hasIrregularityType)) - - - - - - - Has review irregularity summary - - - Additional information: This relation corresponds in eForms to BG-613 Buyer Review Requests (epo:ReviewRequestSummary -> epo:ReviewIrregularitySummary (+epo:hasReviewIrregularitySummary)) - - - - - - - Has highest received tender value - - - Amount of the Tender with the highest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasHighestReceivedTenderValue)) - - - - - - - Has received submission type - - - - - - - Has lowest received tender value - - - Amount of the Tender with the lowest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasLowestReceivedTenderValue)) - - - - - - - Summarises information for award decision - - - Relates to submission for the given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 (epo:SubmissionStatisticalInformation -> epo:AwardDecision (+epo:summarisesInformationForAwardDecision)) - - - - - - - Refers to contract - - - - - - - Provides contract total penalty value - - - Additional Information: This corresponds to BT-782 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPenaltyValue)) - - - - - - - Provides contract total payment value - - - Additional Information: This corresponds to BT-779 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPaymentValue)) - - - - - - - Has electronic signature - - - - - - - Concerns originator request - - - - - - - Has tax information - - - - - - - Is supported by - - - - - - - Has item country of origin - - - The source country of the product or service. Additional Information: The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. WG Approval 07/01/2020 The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country (epo:Tender -> at-voc:country (+epo:hasItemCountryOfOrigin)) - - - - - - - Has financial offer value - - - The value offered by the Tenderer for a Lot. Additional Information: This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. This corresponds to BT-720 in eForms. (epo:Tender -> epo:MonetaryValue (+epo:hasFinancialOfferValue)) - - - - - - - Includes tender - - - Additional information: This corresponds in eForms to BT-3202 Contract Tender Identifier. (epo:Contract -> epo:Tender (+epo:includesTender)) - - - - - - - Is based on implementing regulation - - - Indicates under which regulation a notice is created. WG Acceptance 06/09/2022 (epo:Notice -> at-voc:legal-basis (+epo:isBasedOnImplementingRegulation)) - - - - - - - Conforms to legal basis - - - The Notice was designed in accordance with the given legal basis. Additional Information: This Notice can be used for Procedures which do not have the same legal basis. This holds for standard forms. (epo:Notice -> at-voc:legal-basis (+epo:conformsToLegalBasis)) - - - - - - - Has notice type - - - - - - - Refers to notice - - - - - - - Has notification content type - - - A categorisation of templates for sets of Procurement information to be conveyed in Notices. WG Approval 12/05/2020 (epo:Notice -> epo:notification-phases-content-types (+epo:hasNotificationContentType)) - - - - - - - Conforms to specific legal basis - - - - - - - Has form type - - - A categorisation of the steps in which the Notice is used. WG Approval 12/05/2020 (epo:Notice -> at-voc:form-type (+epo:hasFormType)) - - - - - - - Describes notice - - - - - - - Refers to previous notice - - - Additional information: This corresponds in eForms to BT-758 Change Notice Version Identifier. (epo:NoticeChange -> epo:Notice (+epo:refersToPreviousNotice)) - - - - - - - Refers to original notice - - - - - - - Has u u i d - - - A universally unique identifier for an instance of this document. WG Approval 12/05/2020 (epo:Document -> adms:Identifier (+epo:hasUUID)) - - - - - - - Has document status - - - https://test-docs.peppol.eu/logistics/transport-execution/codelist/DocumentStatusCode/ (epo:Document -> at-voc-new:document-status (+epo:hasDocumentStatus)) - - - - - - - Has document type - - - https://docs.peppol.eu/poacc/upgrade-3/2022-Q4/codelist/UNCL1001_T01/ (epo:Document -> at-voc-new:document-type (+epo:hasDocumentType)) - - - - - - - Associated with - - - The document to which a document is associated. WGM 01/03/2022 (epo:Document -> epo:Document (+epo:associatedWith)) - - - - - - - Has official language - - - The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. WG Approval 03/10/2019 (epo:Document -> at-voc:language (+epo:hasOfficialLanguage)) - - - - - - - Has electronic digest - - - - - - - Has unofficial language - - - The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. WG Approval 03/10/2019 (epo:Document -> at-voc:language (+epo:hasUnofficialLanguage)) - - - - - - - Refers to previous - - - - - - - Has associated document - - - - - - - Has external specification - - - URI reference to external item information or specifications, e.g. web address. (epo-cat:Item -> epo:Document (+epo-cat:hasExternalSpecification)) - - - - - - - Has award status - - - Indicates whether the lot is awarded, not awarded or still open. WG Approval 03/12/2019 (epo:AwardDecision -> at-voc:winner-selection-status (+epo:hasAwardStatus)) - - - - - - - Has awarded value - - - The value of the procurement provided by the Award Decision. Additional Information: Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. WG Approval 10/12/2019 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasAwardedValue)) - - - - - - - Has non award justification - - - On hold; Enumeration. (epo:AwardDecision -> at-voc:non-award-justification (+epo:hasNonAwardJustification)) - - - - - - - Has bargain price - - - The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. WG approval 23/05/2023 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasBargainPrice)) - - - - - - - Refers to award decision - - - - - - - Announces award decision - - - - - - - Has fund programme - - - - - - - Specifies deliverable - - - - - - - Has contract value - - - - - - - Has contract amendment - - - - - - - Has estimated duration - - - Relation indicating a Contract has an estimated Duration. Additional Information When the Lot uses a Technique the contract estimated duration applies to the Technique. (epo:Contract -> epo:Duration (+epo:hasEstimatedDuration)) - - - - - - - Has procurement classification - - - - - - - Announces completion of contract - - - - - - - Refers to contract to be modified - - - - - - - Announces contract - - - - - - - Concerns contract - - - - - - - Is subordinated to contract - - - - - - - Implements contract - - - - - - - Resolves review request - - - - - - - Provides ruling on remedy - - - States the measures to be taken after a review procedure. (epo:ReviewDecision -> at-voc:remedy-type (+epo:providesRulingOnRemedy)) - - - - - - - Has remedy value - - - Additional information: This relation corresponds in eForms to BT-793 Review Remedy Value. (epo:ReviewDecision -> epo:MonetaryValue (+epo:hasRemedyValue)) - - - - - - - Has confirmed irregularity type - - - Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewDecision -> at-voc:irregularity-type (+epo:hasConfirmedIrregularityType)) - - - - - - - Has review decision type - - - Additional information: This relation corresponds in eForms to BT-790 Review Decision Type. (epo:ReviewDecision -> at-voc:review-decision-type (+epo:hasReviewDecisionType)) - - - - - - - Refers to previous review - - - Additional information: This relation corresponds in eForms to BT-785 "Review Previous Identifier". (epo:ReviewObject -> epo:ReviewObject (+epo:refersToPreviousReview)) - - - - - - - Announces review object - - - - - - - Has alleged irregularity type - - - Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewRequest -> at-voc:irregularity-type (+epo:hasAllegedIrregularityType)) - - - - - - - Has review request fee - - - Additional information: This relation corresponds in eForms to BT-795 Review Request Fee. (epo:ReviewRequest -> epo:MonetaryValue (+epo:hasReviewRequestFee)) - - - - - - - Requests remedy type - - - Additional information: This relation corresponds in eForms to BT-792 Review Remedy Type (epo:ReviewRequest -> at-voc:remedy-type (+epo:requestsRemedyType)) - - - - - - - Has element modification - - - - - - - Describes contract modification - - - - - - - Has change justification - - - Code explaining the change. WG Approval 5/11/2019 (epo:ElementChangeDescription -> at-voc:change-corrig-justification (+epo:hasChangeJustification)) - - - - - - - Has element change - - - - - - - Has non publication justification - - - The reason why data is not published. WG Approval 11/06/2020 (epo:ElementConfidentialityDescription -> at-voc:non-publication-justification (+epo:hasNonPublicationJustification)) - - - - - - - Has element confidentiality - - - Relation indication that the publication provision applies to a given field of a document. (epo:PublicationProvision -> epo:ElementConfidentialityDescription (+epo:hasElementConfidentiality)) - - - - - - - Has element description - - - - - - - Has modification justification - - - Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. (epo:ElementModificationDescription -> at-voc:modification-justification (+epo:hasModificationJustification)) Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. (epo:AmendedContract -> at-voc:modification-justification (+epo:hasModificationJustification)) - - - - - - - Announces non published element - - - Relation indicating which parts of a document are not published. Additional Information: For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement)) - - - - - - - Refers to non published element - - - - - - - Has operator licence i d - - - - - - - Has item standard i d - - - The identifier for the instance of the concept based on a standard scheme. Additional information: For example the GTIN scheme (Global Trade Item Number). WG Approval 24/02/2022 (epo-cat:Item -> adms:Identifier (+epo:hasItemStandardID)) - - - - - - - Has manufacturer i d - - - The manufacturer's identifier for the item. (epo-cat:Manufacturer -> adms:Identifier (+epo:hasManufacturerID)) - - - - - - - Has trace i d - - - - - - - Has vehicle segment i d - - - - - - - Has freight forwarder consignment i d - - - - - - - Has seller item i d - - - The general identifier for the concept as defined by the seller. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasSellerItemID)) - - - - - - - Has carrier consignment i d - - - - - - - Has vehicle i d - - - - - - - Has batch i d - - - The identifier assigned to a specific batch of the produced Item. WG Approval 16/05/2023 (epo-cat:Batch -> adms:Identifier (+epo:hasBatchID)) - - - - - - - Has serial i d - - - The identifier assigned to the specific instance of the produced concept. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasSerialID)) - - - - - - - Has manufacturer item i d - - - This refers to the general identifier for the concept as defined by the manufacturer. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasManufacturerItemID)) - - - - - - - Has buyer item i d - - - This refers to the identifier for the specific instance of the produced concept. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasBuyerItemID)) - - - - - - - Has tracking i d - - - - - - - Has consignee consignment i d - - - - - - - Has expected delivery time - - - The expected amount of time between the order and delivery of an item. WG approval 26/07/2022 (epo-cat:Price -> epo:Duration (+epo-cat:hasExpectedDeliveryTime)) - - - - - - - Has currency - - - The identifier of the currency as in the standard code list used. (epo:MonetaryValue -> at-voc:currency (+epo:hasCurrency)) - - - - - - - Is calculated on - - - The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:TaxInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) - - - - - - - Has total tax inclusive amount - - - - - - - Has total tax exclusive amount - - - - - - - Has consignment invoice value - - - Declared amount of the Consignment. Additional Information: This is a logistics information needed for logistics, security measures, customs check, etc. (epo-ful:Consignment -> epo:MonetaryValue (+epo-ful:hasConsignmentInvoiceValue)) - - - - - - - Has consignment free on board value - - - - - - - Has amount - - - The predetermined monetary value charged in addition to the price. WG approval 26/07/2022 (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) The predetermined monetary value charged in addition to the price. WG approval 26/07/2022 (epo-ord:TaxInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) - - - - - - - Has consignment declared statistics value - - - - - - - Has net monetary value - - - - - - - Has total line amount - - - - - - - Has total allowance amount - - - - - - - Has declared statistical value - - - - - - - Has rounding amount - - - - - - - Has prepaid amount - - - - - - - Has amount due for payment - - - - - - - Has total charge amount - - - - - - - Has time period - - - (epo:Period -> at-voc:timeperiod (+epo:hasTimePeriod)) - - - - - - - Has estimated delivery period - - - - - - - Has price validity - - - - - - - Has catalogue line validity - - - - - - - Has delivery period - - - - - - - Has unit code - - - - - - - Has gross weight - - - - - - - Has net weight - - - - - - - Has quantity - - - - - - - Has length - - - - - - - Has quantity threshold - - - - - - - Has gross volume - - - - - - - Has net quantity - - - The net quantity of the item that is contained in each consumable unit, excluding any packaging materials. (epo-cat:Item -> epo:Quantity (+epo-cat:hasNetQuantity)) - - - - - - - Has chargeable weight - - - - - - - Has transport handling unit quantity - - - - - - - Has despatched quantity - - - Quantity despatched for delivered. (epo-ful:DespatchLine -> epo:Quantity (+epo-ful:hasDespatchedQuantity)) - - - - - - - Has loading length - - - - - - - Has width - - - - - - - Has height - - - - - - - Has outstanding quantity - - - - - - - Has base quantity - - - The quantity at which the net monetary value applies. (epo-cat:Price -> epo:Quantity (+epo-cat:hasBaseQuantity)) - - - - - - - Has orderabable unit factor rate - - - - - - - Has maximum temperature - - - - - - - Has qualified value - - - Qualified value of the property, which is defined in a classification scheme. Additional Information: For example, the (0173-1#02-AAA026#007) drilling diameter of an item has value of 12 inches. WG approval 28/07/2022 (epo-cat:ItemProperty -> epo:Quantity (+epo-cat:hasQualifiedValue)) - - - - - - - Has total goods item quantity - - - - - - - Has minimum quantity guaranteed for delivery - - - The minimum quantity of an item that is guaranteed by the seller to be delivered. (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMinimumQuantityGuaranteedForDelivery)) - - - - - - - Has maximum order quantity - - - The maximum number of orderable units that can be ordered according to details provided in the catalogue line, such as price. (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMaximumOrderQuantity)) - - - - - - - Has minimum temperature - - - - - - - Has net volume - - - - - - - Unit type - - - - Contains modifications of - - - Additional information This relation shall be used between Instances of the SAME type/class. The "modifying-instance" can be minimally instantiated, carrying the fields/information that override the fields in the "modified-instance". This means that the "modifying-instance" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. (owl:Thing -> owl:Thing (+epo:containsModificationsOf)) - - - - - - - Has country of origin - - - - - - - Is s m e suitable - - - The Lot is suitable for small and medium enterprises (SMEs). Additional Information This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. For example, number of employees and turnover are applicable to the definition of an SME. WG Approval 15/10/2019 (epo:ProcurementObject) - - - - - - - Has additional information - - - Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:ProcurementObject) Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:Notice) Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:ElementChangeDescription) - - - - - - - Is using e u funds - - - The procurement foresees funding by the Union. Additional Information: The funding may cover the whole procurement or part of the procurement. For example the European Structural and Investment Funds or grants awarded by the European Union. (epo:ProcurementObject) - - - - - - - Is covered by g p a - - - Specifies whether the Agreement on Government Procurement (GPA) applies. Additional information: The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. This corresponds in the e Forms to BT-115 GPA Coverage. WG Approval 15/10/2019 (epo:ProcurementObject) - - - - - - - Is recurrent - - - The Procurement being notified is likely to be included in another procedure in the foreseeable future. Additional Information: For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. This corresponds in eForms to BT-94 Recurrence. WG Approval 12/05/2020 (epo:ProcurementObject) - - - - - - - Has recurrence description - - - Any additional information about the recurrence of the Procurement. Additional Information: For example estimated timing of the Procedure. This corresponds in eForms to BT-95 Recurrence Description. (WG approval 2019-01-16) (epo:ProcurementObject) - - - - - - - Has legal basis description - - - - - - - Is accelerated - - - Statement about the fact that the procedure will be reduced due to a state of urgency. Additional Information This modifies the time limit for the receipt of requests to participate or the receipt of tenders. WG Approval 20/08/2019 (epo:Procedure) - - - - - - - Has accelerated procedure justification - - - The reasons why the procedure is accelerated. Additional Information: A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. WG Approval 09/06/2020 (epo:Procedure) - - - - - - - Has main feature - - - Main features of the procedure and information about where the full rules for the procedure can be found. Additional Information: This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds. (epo:Procedure) - - - - - - - Is joint procurement - - - Multiple buyers procure together within the same procedure. Addition Information: In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . (epo:Procedure) - - - - - - - Is design contest - - - A competition which enables the buyer to acquire a plan or design via a jury. Additional information: Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering The contest may include or not the award of prizes; WG approval 04-02-2021 (epo:Procedure) - - - - - - - Title - - - A name given to the resource. WG approval 30/05/2023 (epo:ProcurementElement) A name given to the resource. WG approval 30/05/2023 (foaf:Agent) A name given to the resource. WG approval 30/05/2023 (epo:AgentInRole) A name given to the resource. WG approval 30/05/2023 (epo:Document) A name given to the resource. WG approval 30/05/2023 (epo:Fund) - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:ProcurementElement) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:System) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:AgentInRole) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cpov:ContactPoint) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cv:Channel) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:NonDisclosureAgreementTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SecurityClearanceTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SubcontractTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cccev:InformationConcept) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cccev:Requirement) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Technique) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SubcontractingEstimate) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:ElectronicSignature) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Document) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Fund) - - - - Name - - - The complete name of the Person as one string. (cpv:Person) - - - - Family name - - - The hereditary surname of a family. (cpv:Person) - - - - Given name - - - The name(s) that identify the Person within a family with a common surname. (cpv:Person) - - - - Patronymic name - - - Name based on the given name of the Person's father. WG Approval 09/11/2021 (cpv:Person) - - - - Alternative - - - Any name by which an individual is known other than their full name. WG 09/11/2021 (cpv:Person) - - - - Birth name - - - Family name of the Person given upon their birth. WG Approval 09/11/2021 (cpv:Person) - - - - Birth date - - - The point in time on which the Person was born. (cpv:Person) - - - - Is listed company - - - Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange rules or through law or enforceable means), which impose requirements to ensure adequate transparency of beneficial ownership. <u>Additional Information:</u> In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. WG Approval 21/11/2019 (epo:Business) - - - - - - - Has group type - - - Form of collaboration agreement between organisations. Additional Information: This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. WG Approval 09/11/2021 (epo:OrganisationGroup) - - - - - - - Has alias - - - Acronym or alternative name of the Agent. WG Approval 25/03/2021 (foaf:Agent) - - - - - - - Has legal name - - - The officially registered name of an organisation. WG Approval 10/01/2023 (org:Organization) - - - - - - - Has organisation unit name - - - The name of a subpart of an organisation. Additional Information: E.g. the relevant department of a large organisation. We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well. (org:Organization) - - - - - - - Has buyer legal type description - - - Self-explanatory text about the Buyer Legal Type. Additional information: This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 (org:Organization) - - - - - - - Has legal form type - - - The classification of an Organisation according to legislation. Additional Information: Generally, this is defined for Tenderers who want to submit as an Organisation Group. Note that the codelist provided at national level should be used. (org:Organization) - - - - - - - Has main activity description - - - Self-explanatory text about the Main Activity . Additional information: This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 (org:Organization) - - - - - - - Has internet address - - - The main web page used by the instance of the concept. WG Approval 01/06/2023 (org:Organization) The main web page used by the instance of the concept. WG Approval 01/06/2023 (cpov:ContactPoint) - - - - - - - Is contracting entity - - - Role of entities, which: (a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. (b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. Additional Information The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. WG Approval 28/04/2020 (epo:Buyer) - - - - - - - Has activity description - - - In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. However, in eForms there is the code "other" to cover undefined activities. For mapping to this eForms feature one could also use this property. (epo:Buyer) - - - - - - - Has buyer profile - - - Website address where the buyer publishes information on its procurement procedures and general information. Additional information: This corresponds in the eForms to BT-508 Buyer Profile URL. WG approval 04/05/2018 (epo:Buyer) - - - - - - - Has fax - - - The fax number used to reach a person or an organisation. (cpov:ContactPoint) - - - - - - - Telephone - - - A telephone number through which the Contact Point can be contacted. (cpov:ContactPoint) - - - - Email - - - The email of the Organisation. (cpov:ContactPoint) - - - - Has contact name - - - A short text by which a contact is known or referred to. WG Approval: 27/01/2022 (cpov:ContactPoint) - - - - - - - Has address u r l - - - - - - - Geographic name - - - A textual description for a Location. Additional Information: The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) - "Athens"@en (the English language exonym) INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - use 'EL' in preference to the ISO 3166 code GR for Greece. Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code. (dct:Location) - - - - Post name - - - The key postal division of the address, usually the city. (INSPIRE's definition is "One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, "Paris". (locn:Address) - - - - Address area - - - The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. Additional Information: This would typically be part of a city, a neighbourhood or village, e.g. Montmartre. (locn:Address) - - - - Locator name - - - Proper noun(s) applied to the real world entity identified by the locator. Additional Information: The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator. (locn:Address) - - - - Admin unit l2 - - - The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. Additional Information: Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" in the ATU controlled vocabulary. (locn:Address) - - - - Full address - - - The complete address written as a formatted string. Additional Information: Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is "Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France". (locn:Address) - - - - Locator designator - - - A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. Additional Information: In simpler terms, this is the building number, apartment number, etc. For an address such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17". (locn:Address) - - - - Admin unit l1 - - - The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. Additional Information: Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this. (locn:Address) - - - - Post code - - - The post/zip code of an address. (INSPIRE's definition is "A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.") Additional Information: Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example "75000". (locn:Address) - - - - Thoroughfare - - - An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. Additional Information: For example, "Avenue des Champs-&#201;lys&#233;es". (locn:Address) - - - - Coordinates - - - The coordinate list. (locn:Geometry) - - - - Longitude - - - The longitude. (locn:Geometry) - - - - Latitude - - - The latitude. (locn:Geometry) - - - - Has estimated contract notice publication date - - - Foreseen date for publication of Contract Notice. Additional information: This corresponds in eForms BT-127 Future Notice. (epo:ProcessPlanningTerm) - - - - - - - Has estimated tender invitation date - - - The planned date for the dispatch of the invitations to submit tenders. WG Approval 09/11/2021 (epo:ProcessPlanningTerm) - - - - - - - Has award date scheduled - - - Planned date for the award decision. WG Approval 09/11/2021 (epo:ProcessPlanningTerm) - - - - - - - Is procurement document restricted - - - The access to certain procurement documents is restricted. Additional Information: This corresponds in eForms to BT-14 Documents Restricted. WG Approval 10/10/2019 (epo:AccessTerm) - - - - - - - Has restricted access u r l - - - The internet address with information on accessing the restricted (part of the) procurement document. Additional Information: This corresponds in eForms to BT-615 Documents Restricted URL. (epo:AccessTerm) - - - - - - - Has additional information deadline - - - The time limit for requesting further information. Additional information: This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. This corresponds in eForms to BT-13 Additional Information Deadline. WG Approval 09/06/2020 (epo:AccessTerm) - - - - - - - Has public access u r l - - - Web page where the procurement documents can be downloaded. Additional Information: This corresponds in the eForms to BT-15 Documents URL. WG Approval 09/03/2021 (epo:AccessTerm) - - - - - - - Is non disclosure agreement required - - - - - - - Has opening date time - - - Date and time for the opening of tenders. WG Approval 12/03/2019 (epo:OpeningTerm) - - - - - - - Has opening description - - - Further information about the opening of tenders. Additional Information For example, who may participate in the opening and whether any authorization is needed. WG Approval 12/03/2019 (epo:OpeningTerm) - - - - - - - Has opening u r l - - - The identifier of the address of the Opening of Tenders. WG Approval 09/11/2021 (epo:OpeningTerm) - - - - - - - Has deadline - - - The deadline by which the security clearance must be submitted to the buyer. WG Approval 12/09/2019 (epo:SecurityClearanceTerm) - - - - - - - Is security clearance required - - - - - - - Has justification - - - An explanation about the reasons for using the concept. WG Approval 5/11/2019 (epo:DirectAwardTerm) - - - - - - - Is submission for all lots allowed - - - Indicates whether tenders may be submitted for all Lots. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) WG approval 23/08/2022 (epo:ProcedureTerm) - - - - - - - Has cross border law - - - The applicable law when buyers from different countries procure together within one procurement procedure. Additional Information: This corresponds in eForms to BT-09 Cross Border Law. (epo:ProcedureTerm) - - - - - - - Is one lot only allowed - - - Indicates whether tenders may be submitted for only one Lot. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 (epo:ProcedureTerm) - - - - - - - Has group lot evaluation method - - - Description of how lots and groups of lots are evaluated against one another in the procedure. (epo:ProcedureTerm) - - - - - - - Is awarded by c p b - - - Procedure is awarded by a Central Purchasing Body. (epo:ProcedureTerm) - - - - - - - Has maximum lot submission allowed - - - The total number of lots for which one Tenderer can submit Tenders. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 12/12/2018 (epo:ProcedureTerm) - - - - - - - Has lot award combination - - - The contracting authority reserves the right to award contracts combining lots or groups of lots. Additional Information: This property contains information about the Lots concerned. This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 (epo:ProcedureTerm) - - - - - - - Has maximum number of lots to be awarded - - - The maximum number of lots for which contract(s) can be awarded to one tenderer. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG Approval 22/08/2019 (epo:ProcedureTerm) - - - - - - - Has national procedure rules - - - - - - - Has e auction u r l - - - The internet address of the electronic auction. Additional Information: This corresponds in eForms to BT-123 Electronic Auction URL. (epo:SubmissionTerm) - - - - - - - Has receipt deadline - - - The time limit for receiving submissions. Additional Information This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. This attribute should be used for standard forms mappings. WG Approval 21/07/2020 (epo:SubmissionTerm) - - - - - - - Has receipt expression deadline - - - Time limit for receipt of expressions of interest. Pending of review by the WG (epo:SubmissionTerm) - - - - - - - Is guarantee required - - - The submitted information must include a financial commitment to be used in case of default. Additional Information: See the additional information provided in the definition of the 'Guarantee Description' element. WG Approval 21/07/20 (epo:SubmissionTerm) - - - - - - - Has guarantee description - - - Information on the financial commitment required from the economic operator. Additional Information: 1. This information may include the amount and the way of delivering of the guarantee 2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. 3. Usual modalities are bonds, cheques, loans, other. WG Approval 21/07/20 (epo:SubmissionTerm) - - - - - - - Has submission u r l - - - Additional Information: This corresponds to the eForms BT-18 Submission URL. This corresponds in eForms to BT-509 Organisation eDelivery Gateway. (epo:SubmissionTerm) - - - - - - - Has non electronic submission description - - - Textual explanation of how non-electronic information is to be presented. WG Approval 21/07/2020 (epo:SubmissionTerm) - - - - - - - Has receipt preliminary market consultation deadline - - - - - - - Is advanced electronic signature required - - - Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. The submitted information is required to be signed electronically. Additional Information: Signature can be defined as "data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. WG Approval 21/07/2020 (epo:SubmissionTerm) - - - - - - - Has receipt participation request deadline - - - - - - - Is multiple tender submission allowed - - - Tenderers may submit more than one competing tenders. WG Approval 10/10/2019 (epo:SubmissionTerm) - - - - - - - Has receipt tender deadline - - - - - - - Has late submission information description - - - A narrative text explaining the content of the economic operator information that can be submitted late. Additional Information This does not apply to requests for clarifications. (epo:SubmissionTerm) - - - - - - - Has e ordering - - - Electronic means will be used for requesting and purchasing in the post-award process. WG Approval 12/09/2019 (epo:ContractTerm) - - - - - - - Has e payment - - - Electronic means must be used for paying. WG Approval 09/11/2021 (epo:ContractTerm) - - - - - - - Has options - - - The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid). (epo:ContractTerm) - - - - - - - Has e invoicing - - - Electronic means will be used for invoicing in the post-award process. Additional Information: This attribute is used for standard form mappings. WG Approval 12/09/2019 (epo:ContractTerm) - - - - - - - Is renewal indicator - - - Indicates whether the contract is subject to a renewal clause. WG Approval 09/11/2021 (epo:ContractTerm) - - - - - - - Has maximum number of renewals - - - The maximum number of times the contract can be renewed. Additional Information By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. (epo:ContractTerm) - - - - - - - Has options description - - - The motivation and details about additional purchases that the buyer may undertake while the contract is valid. WG Approval 09/04/2019 (epo:ContractTerm) - - - - - - - Has renewal description - - - Any other information about the renewal(s). WG approval 16/04/2019 (epo:ContractTerm) - - - - - - - Has payment arrangement - - - Information about financial clauses that will govern some economic aspects of the execution of the contract. Additional Information: These clauses usually refer to financial and payment provisions. This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. WG Pending of discussion with eForms (epo:ContractTerm) - - - - - - - Has legal form requirement - - - The legal form to be taken by a Contractor. Additional Information: Generally, this is defined to cover the case where an Organisation Group is involved. Note that the codelist provided at national level should be used. (epo:ContractTerm) - - - - - - - Has place of performance additional information - - - Further details on the location of the execution of the contract. WG Approval 30/07/2019 (epo:ContractTerm) - - - - - - - Has performance conditions - - - The particular conditions and additional information related to the execution of the contract. Additional Information: For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. WG approval 15-01-2019 (epo:ContractTerm) - - - - - - - Is jury decision binding - - - Indicates whether the procuring entity is bound to apply the decision of the jury. (epo:DesignContestRegimeTerm) - - - - - - - Has participation payment - - - Details on payments to participants WG Approval 09/11/2021 (epo:DesignContestRegimeTerm) - - - - - - - Has followup contract - - - Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. WG Approval 29/08/2019 (epo:DesignContestRegimeTerm) - - - - - - - Has followup contract information - - - Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). WG Approval 03/09/2019 (epo:DesignContestRegimeTerm) - - - - - - - Has maximum participants number - - - The maximum number of participants in the framework agreement. Additional Information: Maximum number of tenderers who may be awarded a contract within the framework agreement. The number is a positive integer. This corresponds in eForms to BT-113 Framework Maximum Participants Number. WG Approval 2019-02-05 (epo:FrameworkAgreementTerm) - - - - - - - Has buyer category description - - - A classification of buyers participating in a framework agreement. Additional Information: Buyers that can use the Framework Agreement not mentioned by name. For example, the classification "all hospitals in the Tuscany region" is used instead of naming each individual buyer. This corresponds in eForms to BT-111 Framework Buyer Categories. WG Approval 2019-05-06 (epo:FrameworkAgreementTerm) - - - - - - - Has duration extension justification - - - The explanation of the reason why the framework agreement has an extended duration. Additional Information: This corresponds in eForms to BT-109 Framework Duration Justification. The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. WG Approval 26/09/2019 (epo:FrameworkAgreementTerm) - - - - - - - Has maximum number of candidates - - - Maximum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) - - - - - - - Has successive reduction - - - The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. Additional information: This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) - - - - - - - Has minimum number of candidates - - - Minimum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) - - - - - - - Has estimated invitation to tender date - - - The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. Additional Information: This corresponds in eForms to BT-130 Dispatch Invitation Tender. WG Approval 01/10/2019 (epo:MultipleStageProcedureTerm) - - - - - - - Has no negotiation necessary - - - The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. Additional information: See Article 29(4) of Directive 2014/24/EU. (epo:MultipleStageProcedureTerm) - - - - - - - Has estimated invitation to express interest date - - - The estimated date of dispatch of the invitations to confirm interest. Additional Information: This corresponds in eForms to BT-631 Dispatch Invitation Interest. (epo:MultipleStageProcedureTerm) - - - - - - - Has qualification system renewal description - - - - - - - Has prize rank - - - The position of the prize (e.g. first place, second place) in a design contest list of prizes. WG Approval 29/08/2019 (epo:Prize) - - - - - - - Has maximum share - - - The maximum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 (epo:SubcontractTerm) - - - - - - - Has minimum share - - - The minimum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 (epo:SubcontractTerm) - - - - - - - Has subcontracting involved - - - List of Subcontractors and the subject matter they cover are required. Additional Information: The tenderer will ned to supply this information in the tender. WG Approval 28/02/2019 (epo:SubcontractTerm) - - - - - - - Has minimum subcontractors proposed obligation - - - The minimum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 (epo:SubcontractTerm) - - - - - - - Has subcontractors proposed above obligation - - - The maximum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 (epo:SubcontractTerm) - - - - - - - Has award criteria evaluation formula - - - The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543 Award Criteria Complicated. (epo:AwardEvaluationTerm) - - - - - - - Has overall quality award criteria ponderation - - - The weighting given to quality. Additional Information: This weighting covers usually all quality criteria against price or cost criteria. (epo:AwardEvaluationTerm) - - - - - - - Has overall price award criteria ponderation - - - The weighting given to price. Additional Information: This weighting covers usually all price criteria against cost or quality criteria. (epo:AwardEvaluationTerm) - - - - - - - Has award criteria order justification - - - The justification for only indicating the award criteria's order of importance, not their weighing. Additional Information: This corresponds in eForms to BT-733 Award Criteria Order Justification. (epo:AwardEvaluationTerm) - - - - - - - Has overall cost award criteria ponderation - - - The weighting given to cost. Additional Information: This weighting covers usually all cost criteria against price or quality criteria. (epo:AwardEvaluationTerm) - - - - - - - Has threshold value - - - The cut-off level for a given concept. Additional Information: This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold). (cccev:Constraint) - - - - - - - Bias - - - Parameter used to adjust the evaluation of the Criterion. Additional Information: The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the "presence of local preferences distorting international specialisation and resource allocation". When quantified, this systematic error can be removed. (cccev:Criterion) - - - - Weight - - - Relative importance of the Criterion. Additional Information: The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1. (cccev:Criterion) - - - - Weighting consideration description - - - Explanation of how the weighting of a Criterion is to be used. Additional Information: This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process. (cccev:Criterion) - - - - Pref label - - - The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 (cccev:InformationConcept) The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 (cccev:Requirement) - - - - Has award criteria stated in procurement documents - - - - - - - Has fixed value - - - This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed. (epo:AwardCriterion) - - - - - - - Describes objective participation rules - - - - - - - Describes verification method - - - - - - - Indicates performing staff information requirement - - - - - - - Has formula - - - The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543. (epo:ProcurementCriterion) - - - - - - - Describes profession relevant law - - - - - - - Has service reserved to particular profession - - - - - - - Describes profession - - - - - - - Has qualification condition - - - - - - - Has condition verification method - - - - - - - Has selection criteria stated in procurement documents - - - - - - - Describes minimum level of standards - - - - - - - Is used for candidate restriction - - - The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. Additional Information: This property is only used if a maximum number of candidates was foreseen in the procedure. This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite (epo:SelectionCriterion) - - - - - - - Has total vehicles - - - The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement) - - - - - - - Has zero emission vehicles - - - The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement) - - - - - - - Has clean vehicles - - - The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement) - - - - - - - Has non accessibility criterion justification - - - Reason for not applying accessibility criteria. Additional information: This corresponds in eForma to BT-755 Accessibility Justification. WG Approval 05/03/2019 (epo:StrategicProcurement) - - - - - - - Has strategic procurement description - - - Self-explanatory text about a concept. (epo:StrategicProcurement) - - - - - - - Is to be relaunched - - - Indicator of whether the procurement object is to be relaunched. Additional information: This can be instantiated in the post award phase. This corresponds in eForms to BT-634 Procurement Relaunch. WG Approval: 18/01/2022 (epo:ProcurementProcessInformation) - - - - - - - Is competition terminated - - - No further contracts will be awarded in this procedure. Additional Information: This can be instantiated in the post award phase. PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. This corresponds in eForms to BT-756 PIN Competition Termination. (epo:ProcurementProcessInformation) - - - - - - - Is d p s terminated - - - End of the Dynamic Purchase System (DPS). Additional Information: This property can be used in the contract award notice even if no contracts are awarded. WG Approval 22/11/2019 (epo:ProcurementProcessInformation) - - - - - - - Has calculation method - - - Formula for obtaining values. Additional Information: The possible values are monetary values, ranking scores, criterion weighting. WG Approval 25/05/2018 (epo:ConcessionEstimate) - - - - - - - Has estimated percentage - - - The estimated proportion foreseen to be subcontracted. WG Approval 07/01/2020 (epo:SubcontractingEstimate) - - - - - - - Has subject matter - - - Description of the share of the contract that is to be subcontracted. Additional infromation: This can be an aggregate of several subcontracts. WG Approval 09/11/2021 (epo:SubcontractingEstimate) - - - - - - - Has non awarded contract title - - - The title the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 (epo:LotAwardDecision) - - - - - - - Has non awarded contract number - - - The number the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 (epo:LotAwardDecision) - - - - - - - Has award rank - - - The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. Additional Information: This corresponds in eForms to BT-171 Tender Rank. (epo:TenderAwardOutcome) - - - - - - - Has review irregularity count - - - The number of requests for a given irregularity. Additional information: This attribute corresponds in eForms to BT-635 Buyer Review Requests Count. (epo:ReviewIrregularitySummary) - - - - - - - Has total number of complainants - - - The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. Additional information: This attribute corresponds in eForms to BT-712 Buyer Review Complainants WG Approval 11/04/2019 (epo:ReviewRequestSummary) - - - - - - - Has e e a received tenders - - - The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) - - - - - - - Has received participation requests - - - The amount of applications to participate from economic operators. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) - - - - - - - Has non e e a received tenders - - - The amount of tenders received from economic operators in non-EEA countries. WG Approval 12/12/2019 15:20:36 (epo:SubmissionStatisticalInformation) - - - - - - - Has s m e received tenders - - - The amount of tenders received from micro, small and medium-sized enterprises. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. WG Approval 05/03/2020 (epo:SubmissionStatisticalInformation) - - - - - - - Has received micro tenders - - - The amount of tenders received from a micro enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation) - - - - - - - Has received small tenders - - - Tenders from small enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation) - - - - - - - Has medium tender per lots - - - Tenders from medium-sized enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation) - - - - - - - Has received tenders - - - The total amount of tenders received. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) - - - - - - - Has inadmissible tenders - - - Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. <u>Additional Information: </u> Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) - - - - - - - Has abnormally low tenders - - - Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. Additional Information The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation) - - - - - - - Has non e u received tenders - - - The amount of tenders received from economic operators in non-EU countries. (epo:SubmissionStatisticalInformation) - - - - - - - Has unverified tenders - - - Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation) - - - - - - - Has electronic tenders - - - Electronic Tender Lots received. WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation) - - - - - - - Has e u received tenders - - - The amount of tenders received from economic operators in other EU countries other than the country of the buyer. (epo:SubmissionStatisticalInformation) - - - - - - - Has other countries received tenders - - - - - - - Has estimated total subcontracts - - - The estimated amount of work to be subcontracted in the contract resulting from the lot. WG Approval 09/11/2021 (epo:SubmissionStatisticalInformation) - - - - - - - Has number of tenderers invited - - - Number of economic operators invited to tender. Additional Information This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. WG Approval 01/12/2020 (epo:SubmissionStatisticalInformation) - - - - - - - Has payment value discrepancy justification - - - - - - - Has electronic submission - - - Transmission of tenders is possible by electronic means of communication. (epo:Tender) - - - - - - - Is variant - - - Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. Additional Information: The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. WG Approval 29/05/2019 (epo:Tender) - - - - - - - Has o j s issue number - - - - - - - Has o j s type - - - - - - - Has long title - - - - - - - Has notice publication number - - - - - - - Has form number - - - - - - - Has e forms subtype - - - - - - - Is e u institution - - - - - - - Has e sender dispatch date - - - The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. Additional Information: Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. WG approval 20/06/2023 (epo:Notice) - - - - - - - Has publication date - - - Date of formal public issuance of the document. WG approval 20/06/2023 (epo:Document) - - - - - - - Has reception date - - - Notes: Date when a record is acknowledged by an organisation. WG Approval 12/05/2020 (epo:Document) - - - - - - - Has dispatch date - - - Date of transmission of a record to an organisation. WG Approval 12/05/2020 (epo:Document) - - - - - - - Issued - - - Date of formal issuance of the resource. Additional information: This is generally used for modules other than eNotice. The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. WG approval 26/01/2023 (epo:Document) - - - - Has access u r l - - - Location where the resource can be accessed. WG approval 07/04/2022 (epo:Document) - - - - - - - Has version - - - A number that identifies a specific state of a document. WG approval: 18/11/2021 (epo:Document) - - - - - - - Has award decision date - - - The official date of the award decision. Additional Information: This corresponds in eForms to BT-1451 Winner Decision Date. WG Approval 09/01/2020 (epo:AwardDecision) - - - - - - - Has additional non award justification - - - Further justification for the non award . Additional information: This is generally used when the non award reason code is set to "Other". WG: 18/01/2022 (epo:AwardDecision) - - - - - - - Has u r l - - - The identifier of a resource. Additional Information For example: 1. The URL of the system from where to access the procurement documents; 2. The URL of the system for the submission of tender documents; 3. The URL of the system from where to download a tool to communicate with the Buyer; 4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) 5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; WG Approval 30/09/2019 (epo:Fund) - - - - - - - Has contract conclusion date - - - The date the contract was signed by the last signatory party. <u>Additional Information:</u> In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. This concept is not to be confused with the date of completion/end of the contract. This corresponds in eForms to BT-145 Contract Conclusion Date. WG Approval 09/01/2020 (epo:Contract) - - - - - - - Has entry into force date - - - The date on which the contract enters into force. Additional information: This is generally the date on which the fulfillment of the contract begins. This corresponds in eForms to WG approval 05/11/2019 (epo:Contract) - - - - - - - Has decision date - - - The date of the review decision. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. (epo:ReviewDecision) - - - - - - - Has element reference - - - Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ReviewObject) Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementChangeDescription) Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementModificationDescription) - - - - - - - Has review u r l - - - The internet address of the documents concerning the review instance. Additional information: This attribute corresponds in eForms to BT-794 Review URL. (epo:ReviewObject) - - - - - - - Has number of review requests - - - The number of requests the buyer received to review any of its decisions. (epo:ReviewRequest) - - - - - - - Is withdrawn - - - The review request was withdrawn. Additional information: This attribute corresponds in eForms to BT-796 Review Request Withdrawn. (epo:ReviewRequest) - - - - - - - Has withdrawal date - - - The date and time when the request for review was withdrawn. Additional information: This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date. (epo:ReviewRequest) - - - - - - - Has withdrawal reason - - - The explanation for withdrawing the request for review. Additional information: This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons (epo:ReviewRequest) - - - - - - - Has request date - - - The date when the review request was submitted. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. (epo:ReviewRequest) - - - - - - - Has previous version of element reference - - - Reference to the class instance in the previous version of the notice, which was changed. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. (epo:ElementChangeDescription) - - - - - - - Has change description - - - Explanatory text about the instance of the concept. WG Approval 30/09/2019 (epo:ElementChangeDescription) - - - - - - - Has change reason description - - - Explanatory text about why the element is altered. Additional information: This corresponds in eForms to BT-762 Change Reason Description. (epo:ElementChangeDescription) - - - - - - - Is procurement document changed - - - One or more procurement documents have been changed. Additional information: This corresponds in eForms to BT-718 Change Procurement Documents WG Approval 05/11/2019 (epo:ElementChangeDescription) - - - - - - - Has procurement document change date - - - The date and time of the change. Additional information: This corresponds in eForms to BT-719 Change Procurement Documents Date WG Approval 5/11/2019 (epo:ElementChangeDescription) - - - - - - - Has instance reference - - - The URI of a given class that is being referred to. (epo:ElementConfidentialityDescription) - - - - - - - Has property reference - - - The URI of a given attribute (property) that is being referred to. (epo:ElementConfidentialityDescription) - - - - - - - Has accessibility date - - - The date at which unpublished data shall be published. WG Approval 11/06/2020 (epo:ElementConfidentialityDescription) - - - - - - - Has confidentiality justification - - - A narrative explanation of why data is not published. Additional Information: This element is generally used when the non-publication-justification code chosen is "other". WG Approval 09/11/2021 (epo:ElementConfidentialityDescription) - - - - - - - Has modification description - - - An explanatory text about this context. Additional Information This corresponds in Standard forms to Field VII.2.1 in F20 This corresponds in eForms to BT-202 . WG Approval 5/11/2019 (epo:ElementModificationDescription) - - - - - - - Has modification reason description - - - An explanation about the reasons for using the concept. Additional Information This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. This corresponds in eForms to BT-201 . WG Approval 5/11/2019 (epo:ElementModificationDescription) - - - - - - - Has preferred publication date - - - The date the buyer would like to have the record made publicly available. Additional Information: This corresponds in eForms to BT-738 Notice Publication Date Preferred. WG Approval 12/05/2020 (epo:PublicationProvision) - - - - - - - Notation - - - The literal identifying an entity, like a person or an object. (adms:Identifier) - - - - Schema agency - - - The name of the agency that issued the identifier. (adms:Identifier) - - - - Has scheme - - - The name of the identification scheme. (adms:Identifier) - - - - - - - Has scheme version - - - The version of the identification scheme. (adms:Identifier) - - - - - - - Has amount value - - - The numeric value of the amount, including decimals. (epo:MonetaryValue) - - - - - - - Has currency code list agency i d - - - Identifier of the agency that maintains the currency code list used. WG approval 13/04/2021 (epo:MonetaryValue) - - - - - - - Has currency code list agency name - - - Name of the agency that maintains the currency code list used. WG approval 13/04/2021 (epo:MonetaryValue) - - - - - - - Has currency code list i d - - - Concept scheme URI used for the currency code list. WG approval 13/04/2021 (epo:MonetaryValue) - - - - - - - Has beginning - - - The date and time on which this period begins. (epo:Period) - - - - - - - Has end - - - The date and time at which this period ends. (epo:Period) - - - - - - - Has quantity value - - - The numeric value of the quantity, including decimals. (epo:Quantity) - - - - - - - Has unit description - - - A narrative explanation defining the units of items being counted Additional information: This could be for example individual items or pack or two. WG Approval 09/11/2021 (epo:Quantity) - - - - - - - Numeric duration - - - Value of a temporal extent expressed as a number. (epo:SpecificDuration) - - diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl deleted file mode 100644 index 19b67bd..0000000 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl +++ /dev/null @@ -1,3885 +0,0 @@ -@prefix : . -@prefix adms: . -@prefix at-voc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix locn: . -@prefix org: . -@prefix owl: . -@prefix person: . -@prefix rdf: . -@prefix rdfs: . -@prefix skos: . -@prefix time: . -@prefix vann: . -@prefix xsd: . - -:AccessTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm, - :ProcedureSpecificTerm ; - skos:definition "Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021"@en ; - skos:prefLabel "Access term"@en . - -:AcquiringCentralPurchasingBody a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :CentralPurchasingBody ; - skos:definition "Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021"@en ; - skos:prefLabel "Acquiring central purchasing body"@en . - -:AdHocChannel a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf cccev:Channel ; - skos:definition "Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023"@en ; - skos:prefLabel "Ad hoc channel"@en . - -:AwardCriteriaSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriteriaSummary ; - skos:prefLabel "Award criteria summary"@en . - -:AwardCriterion a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriterion ; - skos:definition "Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018"@en ; - skos:prefLabel "Award criterion"@en . - -:AwardEvaluationTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :EvaluationTerm ; - skos:definition "Conditions and stipulations defining particularities of the evaluation of Award Criteria."@en ; - skos:prefLabel "Award evaluation term"@en . - -:Awarder a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent that signs the Award Decision."@en ; - skos:editorialNote "BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision."@en ; - skos:prefLabel "Awarder"@en . - -:AwardingCentralPurchasingBody a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :CentralPurchasingBody ; - skos:definition "Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. Additional Information: In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021"@en ; - skos:prefLabel "Awarding central purchasing body"@en . - -:BudgetProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A role of an agent whose Budget is used to pay for the Contract."@en ; - skos:prefLabel "Budget provider"@en . - -:Business a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf org:Organization ; - skos:definition "A private law company registered in a national registry. WG Approval 28/04/2020"@en ; - skos:editorialNote "In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business."@en ; - skos:prefLabel "Business"@en . - -:Candidate a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. WG approval 30/05/2023"@en ; - skos:prefLabel "Candidate"@en . - -:CatalogueProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "A Role of an Agent compiling and supplying a Catalogue. Additional Information: The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. WG Approval 28/01/2021"@en ; - skos:prefLabel "Catalogue provider"@en . - -:CatalogueReceiver a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent processing a Catalogue. Additional Information: The Catalogue Receiver may not only receive it but also validate it, process it, etc. The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. WG Approval 28/01/2021"@en ; - skos:prefLabel "Catalogue receiver"@en . - -:ConcessionContract a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Contract ; - skos:definition "A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. WG Approval 24/05/2022"@en ; - skos:prefLabel "Concession contract"@en . - -:ConcessionEstimate a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Estimate ; - skos:prefLabel "Concession estimate"@en . - -:ContractLotCompletionInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextualProjection ; - skos:definition "Information related to a given Lot at the end of the procurement."@en ; - skos:prefLabel "Contract lot completion information"@en . - -:ContractModification a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :NoticeDescription ; - skos:definition "An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer."@en ; - skos:prefLabel "Contract modification"@en . - -:ContractTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContractSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of the Post Award Phase. (WG approval 23/11/2018)"@en ; - skos:prefLabel "Contract term"@en . - -:Contractor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "The Role of an Agent that has signed a Contract with a Buyer. WG approval 08/11/2022"@en ; - skos:prefLabel "Contractor"@en . - -:DesignContestRegimeTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of a Design Contest. WG approval: 04-02-2021"@en ; - skos:prefLabel "Design contest regime term"@en . - -:DirectAwardTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcedureSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of the award of a Contract without prior publication. Addtional Information: Direct award may refer to a previous Procedure and/or specific Lot(s). It may also refer to other justified situations whereby there is no previous Procedure. See Directive 2014/24/EU Article 32. WG Approval 22/11/2019"@en ; - skos:prefLabel "Direct award term"@en . - -:DirectContract a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Contract ; - skos:prefLabel "Direct contract"@en . - -:DynamicPurchaseSystemTechnique a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Technique ; - skos:definition "A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. WG approval 23/05/2023"@en ; - skos:prefLabel "Dynamic purchase system technique"@en . - -:DynamicPurchasingSystem a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. WG approval 23/05/2023"@en ; - skos:prefLabel "Dynamic purchasing system"@en . - -:EAuctionTechnique a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Technique ; - skos:definition "A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. Additional Information: This corresponds in eForms to BT-767 Electronic Auction . WG approval 20/07/2018"@en ; - skos:prefLabel "E auction technique"@en . - -:EconomicStandingSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :SelectionCriteriaSummary ; - skos:prefLabel "Economic standing summary"@en . - -:ElectronicSignature a owl:Class ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Electronic signature"@en . - -:ElementChangeDescription a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ElementDescription ; - skos:definition "Information about a specific field to be changed with regard to a previous Notice."@en ; - skos:editorialNote "Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms."@en ; - skos:prefLabel "Element change description"@en . - -:ElementConfidentialityDescription a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ElementDescription ; - skos:definition "Information about a specific field not intended for publication. Additional Information: In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided."@en ; - skos:editorialNote "This does not work in practice."@en ; - skos:prefLabel "Element confidentiality description"@en . - -:ElementModificationDescription a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ElementDescription ; - skos:definition "Information about a specific field to be changed with regard to the Modification Of a Contract."@en ; - skos:prefLabel "Element modification description"@en . - -:EmploymentInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AuxiliaryParty ; - skos:definition "A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions."@en ; - skos:prefLabel "Employment information provider"@en . - -:EnvironmentalProtectionInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AuxiliaryParty ; - skos:definition "A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection."@en ; - skos:prefLabel "Environmental protection information provider"@en . - -:ExclusionGround a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :QualificationCriterion ; - skos:definition "Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. Additional Information: This corresponds in eForms to BG-701 Exclusion Grounds. WG approval 31/10/2018"@en ; - skos:prefLabel "Exclusion ground"@en . - -:ExclusionGroundsSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :QualificationCriteriaSummary ; - skos:prefLabel "Exclusion grounds summary"@en . - -:ExpressionOfInterest a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. WG approval 13/04/2021"@en ; - skos:prefLabel "Expression of interest"@en . - -:FrameworkAgreement a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Contract ; - skos:definition "An agreement between one or more Contracting Authorities and one or more Economic Operators. Additional Information: When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. WG approval 18/05/2021"@en ; - skos:prefLabel "Framework agreement"@en . - -:FrameworkAgreementTechnique a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Technique ; - skos:definition "Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. WG approval 18/05/2021"@en ; - skos:prefLabel "Framework agreement technique"@en . - -:FrameworkAgreementTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm, - :ProcedureSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities in a Framework Agreement."@en ; - skos:prefLabel "Framework agreement term"@en . - -:Fund a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A financial resource used to support the Procurement. Additional Information: In the context of EU, Funds can be divided into programmes, actions and projects. Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. WG Approved 14/05/2019"@en ; - skos:prefLabel "Fund"@en . - -:GreenProcurement a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StrategicProcurement ; - skos:definition "Approach whereby Buyers seek to procure with a reduced Environmental Impact. Additional Information: The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf An instance of the class GreenProcurement is represented in eForms with the code \"env-imp\" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf"@en ; - skos:prefLabel "Green procurement"@en . - -:IndefiniteDuration a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Duration ; - skos:prefLabel "Indefinite duration"@en . - -:InnovativeProcurement a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StrategicProcurement ; - skos:definition "An instance of the class InnovativeProcurement is represented in eForms with the code \"inn-pur\" defined in the codelist Strategic-Procurement. Research (21/01/2020): Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions Additional Information: ‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; See: Directive 2014/24 Articles: 2, 26 (3), 31, 67 (2.a) Question: Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?"@en ; - skos:prefLabel "Innovative procurement"@en . - -:JuryMember a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:prefLabel "Jury member"@en . - -:LeadBuyer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Buyer ; - skos:definition "A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. WG agreement: 2022-11-22"@en ; - skos:prefLabel "Lead buyer"@en . - -:Lot a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementObject ; - skos:definition "A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. WG approval 12/09/2018"@en ; - skos:prefLabel "Lot"@en . - -:LotAwardDecision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AwardDecision ; - skos:definition "Result concerning the Lot attributed by the Awarder."@en ; - skos:prefLabel "Lot award decision"@en . - -:LotGroup a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Combination of several Lots to conduct comparative assessment of the Tenders. Additional Information: The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. Pending of discussion with eForms Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined."@en ; - skos:prefLabel "Lot group"@en . - -:LotGroupAwardInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextualProjection ; - skos:definition "Award information related to a given Group of Lots."@en ; - skos:prefLabel "Lot group award information"@en . - -:Mediator a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. WG approval 20/04/2021"@en ; - skos:prefLabel "Mediator"@en . - -:MiniCompetition a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. Additional Information: It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. WG approval 30/05/2023"@en ; - skos:prefLabel "Mini competition"@en . - -:MiniCompetitionAwardDecision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AwardDecision ; - skos:definition "Result concerning the Mini-Competition attributed by the Awarder."@en ; - skos:prefLabel "Mini competition award decision"@en . - -:MonetaryValue a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A number of monetary units specified using a given unit of currency. Additional information: In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. WG approval 13/04/2021"@en ; - skos:prefLabel "Monetary value"@en . - -:MultipleStageProcedureTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of Procedures carried out in several steps Additional Information: Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. WG Approval 15/04/2021"@en ; - skos:prefLabel "Multiple stage procedure term"@en . - -:NonDisclosureAgreementTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition "Conditions and stipulations"@en ; - skos:prefLabel "Non disclosure agreement term"@en . - -:Notice a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "Document published by the Buyer about market opportunities and results. WG Approval 23/05/2019"@en ; - skos:prefLabel "Notice"@en . - -:NoticeAwardInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextSpecificDescription ; - skos:definition "Information about an Award Notice."@en ; - skos:prefLabel "Notice award information"@en . - -:NoticeChange a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :NoticeDescription ; - skos:definition "Information about a corrigendum in a Notice."@en ; - skos:prefLabel "Notice change"@en . - -:Offer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. Additional information: A quotation is considered to be an Offer in the eProcurement Ontology. WG approval 09/02/2023"@en ; - skos:editorialNote "To be decided if this should stay in the core or in the Offer module"@en ; - skos:prefLabel "Offer"@en . - -:OfferIssuer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "The Role of an Agent that distributes an Offer. WG approval 09/02/2023"@en ; - skos:prefLabel "Offer issuer"@en . - -:OfflineAccessProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for providing offline access to the Procurement Documents."@en ; - skos:prefLabel "Offline access provider"@en . - -:OpeningTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of the opening of Tenders. Additional Information: The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. WG Approval 15/04/2021"@en ; - skos:prefLabel "Opening term"@en . - -:OrganisationGroup a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf org:Organization ; - skos:definition "Agreed collaboration of several Organisations. Additional Information: This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. WG approval 15/04/2021"@en ; - skos:prefLabel "Organisation group"@en . - -:OriginatorRequest a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "Document in which the Originator describes his needs. WG approval 09/02/2023"@en ; - skos:prefLabel "Originator request"@en . - -:OtherEntity a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria."@en ; - skos:prefLabel "Other entity"@en . - -:ParticipationCondition a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriterion ; - skos:definition "Criterion that describes a Requirement to take part in a procurement. WG approval 30/05/2023"@en ; - skos:prefLabel "Participation condition"@en . - -:ParticipationConditionsSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriteriaSummary ; - skos:prefLabel "Participation conditions summary"@en . - -:ParticipationRequestProcessor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for processing Requests To Participate."@en ; - skos:prefLabel "Participation request processor"@en . - -:ParticipationRequestReceiver a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for receiving Requests To Participate."@en ; - skos:prefLabel "Participation request receiver"@en . - -:ParticipationRequestTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of requesting participation in a Procedure."@en ; - skos:prefLabel "Participation request term"@en . - -:PaymentExecutor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for executing the Payment."@en ; - skos:prefLabel "Payment executor"@en . - -:Period a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A time interval or a Duration. (WG approval 28/04/2020)"@en ; - skos:prefLabel "Period"@en . - -:PlannedProcurementPart a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementElement ; - skos:definition "A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. WG Approval 20/06/2019"@en ; - skos:editorialNote "if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject."@en ; - skos:prefLabel "Planned procurement part"@en . - -:Prize a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A reward given in a Contest. WG approval: 15/04/2021"@en ; - skos:prefLabel "Prize"@en . - -:Procedure a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementObject ; - skos:Label "this is a french label"@fr ; - skos:definition "A legally defined set of administrative activities conducted to conclude one or more Contracts. Additional Information The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). WG Approval 20/08/2019"@en ; - skos:editorialNote "this is a note"@en ; - skos:prefLabel "Procedure"@en, - "this is a romanina"@ro . - -:ProcedureTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcedureSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of the Procedure. (WG approval 23/11/2018)"@en ; - skos:prefLabel "Procedure term"@en . - -:ProcessPlanningTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Term ; - skos:definition "Conditions and stipulations defining particularities of the unfolding of the Procurement Process."@en ; - skos:prefLabel "Process planning term"@en . - -:ProcurementDocument a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "Document produced or referred to by the Buyer to describe or determine elements of the Procurement. Additional information: Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. WG Approval 23/05/2019 17:08:30"@en ; - skos:prefLabel "Procurement document"@en . - -:ProcurementProcedureInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for providing additional information about the Procurement Procedure."@en ; - skos:prefLabel "Procurement procedure information provider"@en . - -:ProcurementProcessInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextSpecificDescription ; - skos:definition "Information about the temporal unfolding or succession of Procurement Objects."@en ; - skos:prefLabel "Procurement process information"@en . - -:ProcurementServiceProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "Role of a public or private body which offers ancillary purchasing activities on the market. Additional information \"Ancillary Purchasing Activities\" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; (b) advice on the conduct or design of public Procurement Procedures; (c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. WG Approval 24/03/2020"@en ; - skos:prefLabel "Procurement service provider"@en . - -:ProfessionalSuitabilitySummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :SelectionCriteriaSummary ; - skos:prefLabel "Professional suitability summary"@en . - -:Project a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A collaborative enterprise that is carefully planned to achieve a particular aim."@en ; - skos:prefLabel "Project"@en . - -:PublicationProvision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :NoticeDescription ; - skos:definition "Information about fields not intended for publication. Additional Information: The non-published information may become available at a later date and may differ from one element to another within a given Document. Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. WG Approval 16/05/2019"@en ; - skos:prefLabel "Publication provision"@en . - -:PurchaseContract a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Contract ; - skos:definition "A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract."@en ; - skos:prefLabel "Purchase contract"@en . - -:Purpose a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "The description of the objectives related to a Procurement. Additional information: The description of the objectives includes the Subject Matter and Quantities. The quantification of the objectives related to a procurement. To be re-reviewed by the WG the soonest. (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) The old definition read as follows: The description of the objectives related to a procurement. (WG approval 05/12/2018)"@en ; - skos:prefLabel "Purpose"@en . - -:Quantity a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A counted number of non-monetary units possibly including fractions."@en ; - skos:prefLabel "Quantity"@en . - -:RequestForClarification a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "A demand for elucidation of received information. Additional Information: Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. WG approval 20/04/2021"@en ; - skos:prefLabel "Request for clarification"@en . - -:RequestForParticipation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "Application of an Economic Operator to be included in a Procurement Procedure. WG approval: 20/04/2021"@en ; - skos:prefLabel "Request for participation"@en . - -:ReviewDecision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ReviewObject ; - skos:definition "Information about Review Decisions."@en ; - skos:prefLabel "Review decision"@en . - -:ReviewIrregularitySummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StatisticalInformation ; - skos:definition "Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). Additional information: This class corresponds in eForms to BG-613 Buyer Review Requests."@en ; - skos:prefLabel "Review irregularity summary"@en . - -:ReviewProcedureInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent who is providing more information on the time limits for review Procedures."@en ; - skos:prefLabel "Review procedure information provider"@en . - -:ReviewRequest a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ReviewObject ; - skos:definition "Information about requests to review procedures."@en ; - skos:prefLabel "Review request"@en . - -:ReviewRequestSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StatisticalInformation ; - skos:definition "Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. Additional information: This class corresponds in eForms to BG-612 Buyer Review Summary."@en ; - skos:prefLabel "Review request summary"@en . - -:ReviewRequester a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "Role of an Agent who requests the review of a (Procurement) Procedure. WG Approval 23/10/2021"@en ; - skos:prefLabel "Review requester"@en . - -:Reviewer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. Additional Information: Any Organisation or Person may request a review of a Procurement Procedure. WG approval: 20/04/2021"@en ; - skos:prefLabel "Reviewer"@en . - -:SecurityClearanceTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition "Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. Additional information: This corresponds in eForms to BT-578, BT-78, BT-732 . WG approval 20/06/2023"@en ; - skos:prefLabel "Security clearance term"@en . - -:SelectedCandidateList a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Record of Candidates admitted to take part in award phases of procurements. WG approval 30/05/2023"@en ; - skos:prefLabel "Selected candidate list"@en . - -:SelectionCriterion a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :QualificationCriterion ; - skos:definition "Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. Additional Information: Selection criteria may relate to: (a) suitability to pursue the professional activity; (b) economic and financial standing; (c) technical and professional ability WG approval 31/10/2018"@en ; - skos:prefLabel "Selection criterion"@en . - -:SelectionEvaluationTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :EvaluationTerm ; - skos:definition "Conditions and stipulations defining particularities of the evaluation of Selection Criteria."@en ; - skos:prefLabel "Selection evaluation term"@en . - -:SocialProcurement a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StrategicProcurement ; - skos:definition "An instance of the class SocialProcurement is represented in eForms with the code \"soc-obj\" defined in the codelist Strategic-Procurement. Research (21/01/2020): Socially Responsible Public Procurement (SRPP): ‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en See Article 18 and Annex X Directive 2014/24."@en ; - skos:prefLabel "Social procurement"@en . - -:SpecificDuration a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Duration ; - skos:prefLabel "Specific duration"@en . - -:SubcontractTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContractSpecificTerm ; - skos:definition "A concept to describe the main information regarding the share of parts of the Contract to third parties."@en ; - skos:prefLabel "Subcontract term"@en . - -:SubcontractingEstimate a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Estimate ; - skos:definition "Information on the approximation of the foreseen Subcontracting."@en ; - skos:prefLabel "Subcontracting estimate"@en . - -:Subcontractor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. Additional information For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. When modelling ESPD we well analyze whether we need or not a Role named \"relied upon\". WG approval 05/08/2021"@en ; - skos:prefLabel "Subcontractor"@en . - -:SubmissionStatisticalInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :StatisticalInformation ; - skos:definition "Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023"@en ; - skos:editorialNote "Check definitions for all concepts and relations."@en ; - skos:prefLabel "Submission statistical information"@en . - -:SubmissionTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm, - :ProcedureSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of submitting Documents to the Buyer. Additional Information: These Documents can be Tenders, Request To Participate and expressions of interest. WG Approval 14/07/2020"@en ; - skos:prefLabel "Submission term"@en . - -:System a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf foaf:Agent ; - skos:definition "Software application used for performing Procurement activities. WG Approval 28/04/2020"@en ; - skos:prefLabel "System"@en . - -:TaxInformationProvider a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AuxiliaryParty ; - skos:definition "A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes."@en ; - skos:prefLabel "Tax information provider"@en . - -:TechnicalAbilitySummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :SelectionCriteriaSummary ; - skos:prefLabel "Technical ability summary"@en . - -:Tender a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. (WG approval 03/05/2022)"@en ; - skos:prefLabel "Tender"@en . - -:TenderAwardOutcome a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextualProjection ; - skos:definition "Result concerning the Tender attributed by the Awarder."@en ; - skos:prefLabel "Tender award outcome"@en . - -:TenderGroup a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Specific Offer in response to a Lot Group. Additional Information: This class is generally used to provide the Monetary Value in response to a Lot Group."@en ; - skos:editorialNote "should this be moved to document?"@en ; - skos:prefLabel "Tender group"@en . - -:TenderProcessor a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for processing Tenders."@en ; - skos:prefLabel "Tender processor"@en . - -:TenderReceiver a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent responsible for receiving Tenders."@en ; - skos:prefLabel "Tender receiver"@en . - -:Tenderer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "A Role of an Agent that has submitted a Tender. Additional Information: A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. WG approval 05/08/2021"@en ; - skos:prefLabel "Tenderer"@en . - -:Winner a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :OfferingParty ; - skos:definition "A Role of an Agent to whom a Lot is awarded. WG approval 05/08/2021 (revised 26/10/2021)"@en ; - skos:prefLabel "Winner"@en . - -:actsOnBehalfOf a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Represents. (epo:ProcurementServiceProvider -> epo:Buyer (+epo:actsOnBehalfOf))"@en ; - skos:prefLabel "Acts on behalf of"@en . - -:agreedByBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Agreed by buyer"@en . - -:announcesAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces award decision"@en . - -:announcesCompletionOfContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces completion of contract"@en . - -:announcesContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces contract"@en . - -:announcesExclusionGround a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces exclusion ground"@en . - -:announcesLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces lot"@en . - -:announcesLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces lot group"@en . - -:announcesLotGroupAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces lot group award information"@en . - -:announcesNonPublishedElement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating which parts of a document are not published. Additional Information: For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement))"@en ; - skos:prefLabel "Announces non published element"@en . - -:announcesNoticeAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces notice award information"@en . - -:announcesPlannedProcurementPart a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces planned procurement part"@en . - -:announcesProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces procedure"@en . - -:announcesReviewObject a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces review object"@en . - -:announcesRole a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces role"@en . - -:announcesSelectionCriteria a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Announces selection criteria"@en . - -:answersAwardCriteria a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Answers award criteria"@en . - -:answersExclusionGround a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Answers exclusion ground"@en . - -:answersSelectionCriteria a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Answers selection criteria"@en . - -:associatedWith a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The document to which a document is associated. WGM 01/03/2022 (epo:Document -> epo:Document (+epo:associatedWith))"@en ; - skos:prefLabel "Associated with"@en . - -:bindsBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Provides legal constraint on the Buyer. (epo:Contract -> epo:Buyer (+epo:bindsBuyer))"@en ; - skos:prefLabel "Binds buyer"@en . - -:bindsContractor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Provides legal constraint on the Contractor. (epo:Contract -> epo:Contractor (+epo:bindsContractor))"@en ; - skos:prefLabel "Binds contractor"@en . - -:comprisesLotAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Incorporates LotAwardOutcome. (epo:AwardDecision -> epo:LotAwardDecision (+epo:comprisesLotAwardDecision))"@en ; - skos:prefLabel "Comprises lot award decision"@en . - -:comprisesMiniCompetitionAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Comprises mini competition award decision"@en . - -:comprisesTender a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Incorporates Tender. (epo:TenderGroup -> epo:Tender (+epo:comprisesTender))"@en ; - skos:prefLabel "Comprises tender"@en . - -:comprisesTenderAwardOutcome a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Incorporates TenderAwardOutcome. (epo:AwardDecision -> epo:TenderAwardOutcome (+epo:comprisesTenderAwardOutcome))"@en ; - skos:prefLabel "Comprises tender award outcome"@en . - -:concernsContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Concerns contract"@en . - -:concernsLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relates to Lot. (epo:ProcurementProcessInformation -> epo:Lot (+epo:concernsLot)) Relates to Lot. (epo:LotAwardDecision -> epo:Lot (+epo:concernsLot))"@en ; - skos:prefLabel "Concerns lot"@en . - -:concernsMiniCompetition a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Concerns mini competition"@en . - -:concernsOriginatorRequest a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Concerns originator request"@en . - -:concernsProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relates to Procedure. (epo:ProcurementProcessInformation -> epo:Procedure (+epo:concernsProcedure))"@en ; - skos:prefLabel "Concerns procedure"@en . - -:concernsReviewSummaryForLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relates to Lot review summary. Additional information: This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier. (epo:ReviewRequestSummary -> epo:Lot (+epo:concernsReviewSummaryForLot))"@en ; - skos:prefLabel "Concerns review summary for lot"@en . - -:concernsTender a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Concerns tender"@en . - -:conformsToLegalBasis a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The Notice was designed in accordance with the given legal basis. Additional Information: This Notice can be used for Procedures which do not have the same legal basis. This holds for standard forms. (epo:Notice -> at-voc:legal-basis (+epo:conformsToLegalBasis))"@en ; - skos:prefLabel "Conforms to legal basis"@en . - -:conformsToSpecificLegalBasis a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Conforms to specific legal basis"@en . - -:containsCandidate a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Contains candidate"@en . - -:containsModificationsOf a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information This relation shall be used between Instances of the SAME type/class. The \"modifying-instance\" can be minimally instantiated, carrying the fields/information that override the fields in the \"modified-instance\". This means that the \"modifying-instance\" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. (owl:Thing -> owl:Thing (+epo:containsModificationsOf))"@en ; - skos:prefLabel "Contains modifications of"@en . - -:contextualisedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The place of the AgentInRole in the procurement is expressed by a ProcurementObject. (epo:AgentInRole -> epo:ProcurementObject (+epo:contextualisedBy))"@en ; - skos:prefLabel "Contextualised by"@en . - -:definesBudgetProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ProcedureTerm has a BudgetProvider. (epo:ProcedureTerm -> epo:BudgetProvider (+epo:definesBudgetProvider))"@en ; - skos:prefLabel "Defines budget provider"@en . - -:definesCatalogueProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating an AccessTerm has a CatalogueProvider. (epo:AccessTerm -> epo:CatalogueProvider (+epo:definesCatalogueProvider))"@en ; - skos:prefLabel "Defines catalogue provider"@en . - -:definesCatalogueReceiver a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating an AccessTerm has a CatalogueReceiver. (epo:AccessTerm -> epo:CatalogueReceiver (+epo:definesCatalogueReceiver))"@en ; - skos:prefLabel "Defines catalogue receiver"@en . - -:definesContractDuration a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ContractTerm has a Duration. (epo:ContractTerm -> epo:Duration (+epo:definesContractDuration))"@en ; - skos:prefLabel "Defines contract duration"@en . - -:definesContractPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ContractTerm has a Period. (epo:ContractTerm -> epo:Period (+epo:definesContractPeriod))"@en ; - skos:prefLabel "Defines contract period"@en . - -:definesInformationProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ProcedureTerm has an information provider. (epo:ProcedureTerm -> epo:AuxiliaryParty (+epo:definesInformationProvider))"@en ; - skos:prefLabel "Defines information provider"@en . - -:definesLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ProcedureTerm has a LotGroup. (epo:ProcedureTerm -> epo:LotGroup (+epo:definesLotGroup))"@en ; - skos:prefLabel "Defines lot group"@en . - -:definesMediator a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ProcedureTerm has a Mediator. (epo:ProcedureTerm -> epo:Mediator (+epo:definesMediator))"@en ; - skos:prefLabel "Defines mediator"@en . - -:definesOfflineAccessProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating an AccessTerm has an OfflineAccessProvider. (epo:AccessTerm -> epo:OfflineAccessProvider (+epo:definesOfflineAccessProvider))"@en ; - skos:prefLabel "Defines offline access provider"@en . - -:definesOpeningPlace a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The place where the tenders will be publicly opened. WG Approval 10-10-2019 (epo:OpeningTerm -> locn:Address (+epo:definesOpeningPlace))"@en ; - skos:prefLabel "Defines opening place"@en . - -:definesParticipationRequestProcessor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor. (epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor (+epo:definesParticipationRequestProcessor))"@en ; - skos:prefLabel "Defines participation request processor"@en . - -:definesParticipationRequestReceiver a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver. (epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver (+epo:definesParticipationRequestReceiver))"@en ; - skos:prefLabel "Defines participation request receiver"@en . - -:definesPaymentExecutor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ContractTerm has a PaymentExecutor. (epo:ContractTerm -> epo:PaymentExecutor (+epo:definesPaymentExecutor))"@en ; - skos:prefLabel "Defines payment executor"@en . - -:definesPlaceOfPerformance a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating the place of performance of a Contract. WG approval 21/03/2023 (epo:ContractTerm -> dct:Location (+epo:definesPlaceOfPerformance))"@en ; - skos:prefLabel "Defines place of performance"@en . - -:definesPrize a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a DesignContestRegimeTerm has a Prize. (epo:DesignContestRegimeTerm -> epo:Prize (+epo:definesPrize))"@en ; - skos:prefLabel "Defines prize"@en . - -:definesProcurementProcedureInformationProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider. (epo:AccessTerm -> epo:ProcurementProcedureInformationProvider (+epo:definesProcurementProcedureInformationProvider))"@en ; - skos:prefLabel "Defines procurement procedure information provider"@en . - -:definesSubcontractingTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a ContractTerm has a SubcontractingTerm. (epo:ContractTerm -> epo:SubcontractTerm (+epo:definesSubcontractingTerm))"@en ; - skos:prefLabel "Defines subcontracting term"@en . - -:definesTenderProcessor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a SubmissionTerm has a TenderProcessor. (epo:SubmissionTerm -> epo:TenderProcessor (+epo:definesTenderProcessor))"@en ; - skos:prefLabel "Defines tender processor"@en . - -:definesTenderReceiver a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a SubmissionTerm has a TenderReceiver. (epo:SubmissionTerm -> epo:TenderReceiver (+epo:definesTenderReceiver))"@en ; - skos:prefLabel "Defines tender receiver"@en . - -:delegatesAncillaryActivitiesTo a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Entrusts ancillary purchasing activities to ProcurementServiceProvider. Additional Information: Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; (b) advice on the conduct or design of public procurement procedures; (c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned; (epo:Buyer -> epo:ProcurementServiceProvider (+epo:delegatesAncillaryActivitiesTo))"@en ; - skos:prefLabel "Delegates ancillary activities to"@en . - -:describesContractModification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes contract modification"@en . - -:describesLotCompletion a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes lot completion"@en . - -:describesLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes lot group"@en . - -:describesMinimumLevelOfStandards a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes minimum level of standards"@en . - -:describesNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes notice"@en . - -:describesObjectiveParticipationRules a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes objective participation rules"@en . - -:describesProfession a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes profession"@en . - -:describesProfessionRelevantLaw a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes profession relevant law"@en . - -:describesResultNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes result notice"@en . - -:describesVerificationMethod a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Describes verification method"@en . - -:distributesOffer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Distributes offer"@en . - -:exposesChannel a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Exposes channel"@en . - -:exposesInvoiceeChannel a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Exposes invoicee channel"@en . - -:followsRulesSetBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Follows rules set by"@en . - -:foreseesConcession a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Foresees concession"@en . - -:foreseesContractSpecificTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Foresees contract specific term"@en . - -:foreseesProcurementObject a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating the instance of a Procurement Object that is planned. Additional Information: The properties of the Procurement Object that is foreseen should be read as foreseen properties. For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy. (epo:PlannedProcurementPart -> epo:ProcurementObject (+epo:foreseesProcurementObject))"@en ; - skos:prefLabel "Foresees procurement object"@en . - -:foreseesSubcontracting a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Foresees subcontracting"@en . - -:foreseesTechnique a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Foresees technique"@en . - -:fulfillsRequirement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The requirement to which the concept meets. WG Approval 09/11/2021 (epo:GreenProcurement -> at-voc:environmental-impact (+epo:fulfillsRequirement)) The requirement to which the concept meets. WG Approval 09/11/2021 (epo:InnovativeProcurement -> at-voc:innovative-acquisition (+epo:fulfillsRequirement)) The requirement to which the concept meets. WG Approval 09/11/2021 (epo:SocialProcurement -> at-voc:social-objective (+epo:fulfillsRequirement))"@en ; - skos:prefLabel "Fulfills requirement"@en . - -:fulfillsStrategicProcurement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Fulfills strategic procurement"@en . - -:hasAbnormallyLowTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. Additional Information The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has abnormally low tenders"@en . - -:hasAcceleratedProcedureJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The reasons why the procedure is accelerated. Additional Information: A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. WG Approval 09/06/2020 (epo:Procedure)"@en ; - skos:prefLabel "Has accelerated procedure justification"@en . - -:hasAccessURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Location where the resource can be accessed. WG approval 07/04/2022 (epo:Document)"@en ; - skos:prefLabel "Has access u r l"@en . - -:hasAccessibilityDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date at which unpublished data shall be published. WG Approval 11/06/2020 (epo:ElementConfidentialityDescription)"@en ; - skos:prefLabel "Has accessibility date"@en . - -:hasActivityDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. However, in eForms there is the code \"other\" to cover undefined activities. For mapping to this eForms feature one could also use this property. (epo:Buyer)"@en ; - skos:prefLabel "Has activity description"@en . - -:hasAdditionalClassification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has additional classification"@en . - -:hasAdditionalContractNature a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional type of acquisition taken into consideration in the contract. WG Approval 11/06/2020 (epo:ContractTerm -> at-voc:contract-nature (+epo:hasAdditionalContractNature))"@en ; - skos:prefLabel "Has additional contract nature"@en . - -:hasAdditionalInformation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:ProcurementObject) Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:Notice) Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:ElementChangeDescription)"@en ; - skos:prefLabel "Has additional information"@en . - -:hasAdditionalInformationDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The time limit for requesting further information. Additional information: This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. This corresponds in eForms to BT-13 Additional Information Deadline. WG Approval 09/06/2020 (epo:AccessTerm)"@en ; - skos:prefLabel "Has additional information deadline"@en . - -:hasAdditionalNonAwardJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Further justification for the non award . Additional information: This is generally used when the non award reason code is set to \"Other\". WG: 18/01/2022 (epo:AwardDecision)"@en ; - skos:prefLabel "Has additional non award justification"@en . - -:hasAddressURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has address u r l"@en . - -:hasAlias a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Acronym or alternative name of the Agent. WG Approval 25/03/2021 (foaf:Agent)"@en ; - skos:prefLabel "Has alias"@en . - -:hasAllegedIrregularityType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewRequest -> at-voc:irregularity-type (+epo:hasAllegedIrregularityType))"@en ; - skos:prefLabel "Has alleged irregularity type"@en . - -:hasAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The predetermined monetary value charged in addition to the price. WG approval 26/07/2022 (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) The predetermined monetary value charged in addition to the price. WG approval 26/07/2022 (epo-ord:TaxInformation -> epo:MonetaryValue (+epo-cat:hasAmount))"@en ; - skos:prefLabel "Has amount"@en . - -:hasAmountDueForPayment a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has amount due for payment"@en . - -:hasAmountValue a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The numeric value of the amount, including decimals. (epo:MonetaryValue)"@en ; - skos:prefLabel "Has amount value"@en . - -:hasApproximateFrameworkAgreementValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has approximate framework agreement value"@en . - -:hasAssociatedDocument a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has associated document"@en . - -:hasAwardCriteriaEvaluationFormula a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543 Award Criteria Complicated. (epo:AwardEvaluationTerm)"@en ; - skos:prefLabel "Has award criteria evaluation formula"@en . - -:hasAwardCriteriaOrderJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The justification for only indicating the award criteria's order of importance, not their weighing. Additional Information: This corresponds in eForms to BT-733 Award Criteria Order Justification. (epo:AwardEvaluationTerm)"@en ; - skos:prefLabel "Has award criteria order justification"@en . - -:hasAwardCriteriaStatedInProcurementDocuments a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has award criteria stated in procurement documents"@en . - -:hasAwardCriterionType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Category of award criterion. (epo:AwardCriterion -> at-voc:award-criterion-type (+epo:hasAwardCriterionType))"@en ; - skos:prefLabel "Has award criterion type"@en . - -:hasAwardDateScheduled a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Planned date for the award decision. WG Approval 09/11/2021 (epo:ProcessPlanningTerm)"@en ; - skos:prefLabel "Has award date scheduled"@en . - -:hasAwardDecisionDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The official date of the award decision. Additional Information: This corresponds in eForms to BT-1451 Winner Decision Date. WG Approval 09/01/2020 (epo:AwardDecision)"@en ; - skos:prefLabel "Has award decision date"@en . - -:hasAwardRank a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. Additional Information: This corresponds in eForms to BT-171 Tender Rank. (epo:TenderAwardOutcome)"@en ; - skos:prefLabel "Has award rank"@en . - -:hasAwardStatus a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Indicates whether the lot is awarded, not awarded or still open. WG Approval 03/12/2019 (epo:AwardDecision -> at-voc:winner-selection-status (+epo:hasAwardStatus))"@en ; - skos:prefLabel "Has award status"@en . - -:hasAwardedEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The estimated value that can be spent as provided by the Award Decision. Additional Information: This property is used for framework agreements and dynamic purchasing systems. Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. WG Approval 12/12/2019 (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasAwardedEstimatedValue))"@en ; - skos:editorialNote "Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract."@en ; - skos:prefLabel "Has awarded estimated value"@en . - -:hasAwardedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The value of the procurement provided by the Award Decision. Additional Information: Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. WG Approval 10/12/2019 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasAwardedValue))"@en ; - skos:editorialNote "Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract."@en ; - skos:prefLabel "Has awarded value"@en . - -:hasBargainPrice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. WG approval 23/05/2023 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasBargainPrice))"@en ; - skos:prefLabel "Has bargain price"@en . - -:hasBaseQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The quantity at which the net monetary value applies. (epo-cat:Price -> epo:Quantity (+epo-cat:hasBaseQuantity))"@en ; - skos:prefLabel "Has base quantity"@en . - -:hasBatchID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The identifier assigned to a specific batch of the produced Item. WG Approval 16/05/2023 (epo-cat:Batch -> adms:Identifier (+epo:hasBatchID))"@en ; - skos:prefLabel "Has batch i d"@en . - -:hasBeginning a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date and time on which this period begins. (epo:Period)"@en ; - skos:prefLabel "Has beginning"@en . - -:hasBeneficialOwner a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf))"@en ; - skos:prefLabel "Has beneficial owner"@en . - -:hasBroadPlaceOfPerformance a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Geopolitical zone where the contract can be executed. Additional Information Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). (epo:ContractTerm -> at-voc:other-place-service (+epo:hasBroadPlaceOfPerformance))"@en ; - skos:prefLabel "Has broad place of performance"@en . - -:hasBusinessSize a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The category of the business depending on number of employees and turnover. Additional information: See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. WG Approval 28/05/2020 (epo:Business -> at-voc:economic-operator-size (+epo:hasBusinessSize))"@en ; - skos:prefLabel "Has business size"@en . - -:hasBuyerCategoryDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A classification of buyers participating in a framework agreement. Additional Information: Buyers that can use the Framework Agreement not mentioned by name. For example, the classification \"all hospitals in the Tuscany region\" is used instead of naming each individual buyer. This corresponds in eForms to BT-111 Framework Buyer Categories. WG Approval 2019-05-06 (epo:FrameworkAgreementTerm)"@en ; - skos:prefLabel "Has buyer category description"@en . - -:hasBuyerItemID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "This refers to the identifier for the specific instance of the produced concept. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasBuyerItemID))"@en ; - skos:prefLabel "Has buyer item i d"@en . - -:hasBuyerLegalType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A category that indicates the right of an Organisation to play the role of a buyer. Additional Information: The category also effects the rules that the buyer has to abide to within the public procurement procedure. WG 07/09/2021 (org:Organization -> at-voc:buyer-legal-type (+epo:hasBuyerLegalType))"@en ; - skos:prefLabel "Has buyer legal type"@en . - -:hasBuyerLegalTypeDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Self-explanatory text about the Buyer Legal Type. Additional information: This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 (org:Organization)"@en ; - skos:prefLabel "Has buyer legal type description"@en . - -:hasBuyerProfile a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Website address where the buyer publishes information on its procurement procedures and general information. Additional information: This corresponds in the eForms to BT-508 Buyer Profile URL. WG approval 04/05/2018 (epo:Buyer)"@en ; - skos:prefLabel "Has buyer profile"@en . - -:hasCalculationMethod a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Formula for obtaining values. Additional Information: The possible values are monetary values, ranking scores, criterion weighting. WG Approval 25/05/2018 (epo:ConcessionEstimate)"@en ; - skos:prefLabel "Has calculation method"@en . - -:hasCandidateList a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has candidate list"@en . - -:hasCarrierConsignmentID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has carrier consignment i d"@en . - -:hasCatalogueLineValidity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has catalogue line validity"@en . - -:hasCertification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation to the proof of conformance. WG approval 30/05/2023 (foaf:Person -> epo-cat:Certificate (+epo:hasCertification)) Relation to the proof of conformance. WG approval 30/05/2023 (org:Organization -> epo-cat:Certificate (+epo:hasCertification))"@en ; - skos:prefLabel "Has certification"@en . - -:hasChangeDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Explanatory text about the instance of the concept. WG Approval 30/09/2019 (epo:ElementChangeDescription)"@en ; - skos:prefLabel "Has change description"@en . - -:hasChangeJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Code explaining the change. WG Approval 5/11/2019 (epo:ElementChangeDescription -> at-voc:change-corrig-justification (+epo:hasChangeJustification))"@en ; - skos:prefLabel "Has change justification"@en . - -:hasChangeReasonDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Explanatory text about why the element is altered. Additional information: This corresponds in eForms to BT-762 Change Reason Description. (epo:ElementChangeDescription)"@en ; - skos:prefLabel "Has change reason description"@en . - -:hasChargeableWeight a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has chargeable weight"@en . - -:hasCleanVehicles a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement)"@en ; - skos:prefLabel "Has clean vehicles"@en . - -:hasConcessionEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has concession estimated value"@en . - -:hasConditionVerificationMethod a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has condition verification method"@en . - -:hasConfidentialityJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A narrative explanation of why data is not published. Additional Information: This element is generally used when the non-publication-justification code chosen is \"other\". WG Approval 09/11/2021 (epo:ElementConfidentialityDescription)"@en ; - skos:prefLabel "Has confidentiality justification"@en . - -:hasConfirmedIrregularityType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewDecision -> at-voc:irregularity-type (+epo:hasConfirmedIrregularityType))"@en ; - skos:prefLabel "Has confirmed irregularity type"@en . - -:hasConsigneeConsignmentID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has consignee consignment i d"@en . - -:hasConsignmentDeclaredStatisticsValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has consignment declared statistics value"@en . - -:hasConsignmentFreeOnBoardValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has consignment free on board value"@en . - -:hasConsignmentInvoiceValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Declared amount of the Consignment. Additional Information: This is a logistics information needed for logistics, security measures, customs check, etc. (epo-ful:Consignment -> epo:MonetaryValue (+epo-ful:hasConsignmentInvoiceValue))"@en ; - skos:prefLabel "Has consignment invoice value"@en . - -:hasConstraint a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf cccev:hasRequirement ; - skos:prefLabel "Has constraint"@en . - -:hasContactName a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A short text by which a contact is known or referred to. WG Approval: 27/01/2022 (cpov:ContactPoint)"@en ; - skos:prefLabel "Has contact name"@en . - -:hasContactPointInRole a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has contact point in role"@en . - -:hasContractAmendment a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has contract amendment"@en . - -:hasContractConclusionDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date the contract was signed by the last signatory party. Additional Information: In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. This concept is not to be confused with the date of completion/end of the contract. This corresponds in eForms to BT-145 Contract Conclusion Date. WG Approval 09/01/2020 (epo:Contract)"@en ; - skos:prefLabel "Has contract conclusion date"@en . - -:hasContractNatureType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Subject of the acquisition. WG Approval 11/06/2020 (epo:ContractTerm -> at-voc:contract-nature (+epo:hasContractNatureType))"@en ; - skos:prefLabel "Has contract nature type"@en . - -:hasContractValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has contract value"@en . - -:hasCountryCode a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "(locn:Address -> at-voc:country (+epo:hasCountryCode))"@en ; - skos:prefLabel "Has country code"@en . - -:hasCountryOfBirth a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The country in which the Person was born. (cpv:Person -> at-voc:country (+epo:hasCountryOfBirth))"@en ; - skos:prefLabel "Has country of birth"@en . - -:hasCountryOfOrigin a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has country of origin"@en . - -:hasCrossBorderLaw a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The applicable law when buyers from different countries procure together within one procurement procedure. Additional Information: This corresponds in eForms to BT-09 Cross Border Law. (epo:ProcedureTerm)"@en ; - skos:prefLabel "Has cross border law"@en . - -:hasCurrency a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The identifier of the currency as in the standard code list used. (epo:MonetaryValue -> at-voc:currency (+epo:hasCurrency))"@en ; - skos:prefLabel "Has currency"@en . - -:hasCurrencyCodeListAgencyID a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Identifier of the agency that maintains the currency code list used. WG approval 13/04/2021 (epo:MonetaryValue)"@en ; - skos:prefLabel "Has currency code list agency i d"@en . - -:hasCurrencyCodeListAgencyName a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Name of the agency that maintains the currency code list used. WG approval 13/04/2021 (epo:MonetaryValue)"@en ; - skos:prefLabel "Has currency code list agency name"@en . - -:hasCurrencyCodeListID a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Concept scheme URI used for the currency code list. WG approval 13/04/2021 (epo:MonetaryValue)"@en ; - skos:prefLabel "Has currency code list i d"@en . - -:hasDPSScope a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Explanation as to whether a dps is used and by whom. Additional Information: This corresponds in eForms to BT-766 Dynamic Purchasing System. WG Approval 09/11/2021 (epo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage (+epo:hasDPSScope))"@en ; - skos:prefLabel "Has d p s scope"@en . - -:hasDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The deadline by which the security clearance must be submitted to the buyer. WG Approval 12/09/2019 (epo:SecurityClearanceTerm)"@en ; - skos:prefLabel "Has deadline"@en . - -:hasDecisionDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date of the review decision. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. (epo:ReviewDecision)"@en ; - skos:prefLabel "Has decision date"@en . - -:hasDeclaredStatisticalValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has declared statistical value"@en . - -:hasDeliveryLocation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has delivery location"@en . - -:hasDeliveryPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has delivery period"@en . - -:hasDespatchedQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Quantity despatched for delivered. (epo-ful:DespatchLine -> epo:Quantity (+epo-ful:hasDespatchedQuantity))"@en ; - skos:prefLabel "Has despatched quantity"@en . - -:hasDirectAwardJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. WG Approval 28/05/2020 (epo:DirectAwardTerm -> at-voc:direct-award-justification (+epo:hasDirectAwardJustification))"@en ; - skos:prefLabel "Has direct award justification"@en . - -:hasDispatchDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Date of transmission of a record to an organisation. WG Approval 12/05/2020 (epo:Document)"@en ; - skos:prefLabel "Has dispatch date"@en . - -:hasDocumentRestrictionJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "An explanation about the reasons why some procurement documents are restricted. Additional Information: This corresponds in eForms to BT-707 Documents Restricted Justification. WG Approval 09/03/2021 (epo:AccessTerm -> at-voc:communication-justification (+epo:hasDocumentRestrictionJustification))"@en ; - skos:prefLabel "Has document restriction justification"@en . - -:hasDocumentStatus a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "https://test-docs.peppol.eu/logistics/transport-execution/codelist/DocumentStatusCode/ (epo:Document -> at-voc-new:document-status (+epo:hasDocumentStatus))"@en ; - skos:prefLabel "Has document status"@en . - -:hasDocumentType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "https://docs.peppol.eu/poacc/upgrade-3/2022-Q4/codelist/UNCL1001_T01/ (epo:Document -> at-voc-new:document-type (+epo:hasDocumentType))"@en ; - skos:prefLabel "Has document type"@en . - -:hasDurationExtensionJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The explanation of the reason why the framework agreement has an extended duration. Additional Information: This corresponds in eForms to BT-109 Framework Duration Justification. The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. WG Approval 26/09/2019 (epo:FrameworkAgreementTerm)"@en ; - skos:prefLabel "Has duration extension justification"@en . - -:hasEAuctionURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The internet address of the electronic auction. Additional Information: This corresponds in eForms to BT-123 Electronic Auction URL. (epo:SubmissionTerm)"@en ; - skos:prefLabel "Has e auction u r l"@en . - -:hasECataloguePermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The extent to which electronic catalogues may be used in tenders. WG Approval 03/10/2019 (epo:SubmissionTerm -> at-voc:permission (+epo:hasECataloguePermission))"@en ; - skos:prefLabel "Has e catalogue permission"@en . - -:hasEEAReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has e e a received tenders"@en . - -:hasEFormsSubtype a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has e forms subtype"@en . - -:hasEInvoicing a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Electronic means will be used for invoicing in the post-award process. Additional Information: This attribute is used for standard form mappings. WG Approval 12/09/2019 (epo:ContractTerm)"@en ; - skos:prefLabel "Has e invoicing"@en . - -:hasEInvoicingPermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has e invoicing permission"@en . - -:hasEOrdering a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Electronic means will be used for requesting and purchasing in the post-award process. WG Approval 12/09/2019 (epo:ContractTerm)"@en ; - skos:prefLabel "Has e ordering"@en . - -:hasEPayment a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Electronic means must be used for paying. WG Approval 09/11/2021 (epo:ContractTerm)"@en ; - skos:prefLabel "Has e payment"@en . - -:hasESenderDispatchDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. Additional Information: Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. WG approval 20/06/2023 (epo:Notice)"@en ; - skos:prefLabel "Has e sender dispatch date"@en . - -:hasESubmissionPermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The requirements as to what extent electronic submission is allowed. WG Approval 03/10/2019 (epo:SubmissionTerm -> at-voc:permission (+epo:hasESubmissionPermission))"@en ; - skos:prefLabel "Has e submission permission"@en . - -:hasEUReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The amount of tenders received from economic operators in other EU countries other than the country of the buyer. (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has e u received tenders"@en . - -:hasElectronicDigest a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has electronic digest"@en . - -:hasElectronicSignature a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has electronic signature"@en . - -:hasElectronicSubmission a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Transmission of tenders is possible by electronic means of communication. (epo:Tender)"@en ; - skos:prefLabel "Has electronic submission"@en . - -:hasElectronicTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Electronic Tender Lots received. WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has electronic tenders"@en . - -:hasElementChange a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :hasElementDescription ; - skos:prefLabel "Has element change"@en . - -:hasElementConfidentiality a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :hasElementDescription ; - skos:definition "Relation indication that the publication provision applies to a given field of a document. (epo:PublicationProvision -> epo:ElementConfidentialityDescription (+epo:hasElementConfidentiality))"@en ; - skos:prefLabel "Has element confidentiality"@en . - -:hasElementModification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :hasElementDescription ; - skos:prefLabel "Has element modification"@en . - -:hasElementReference a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ReviewObject) Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementChangeDescription) Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementModificationDescription)"@en ; - skos:prefLabel "Has element reference"@en . - -:hasEnd a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date and time at which this period ends. (epo:Period)"@en ; - skos:prefLabel "Has end"@en . - -:hasEndpointIdentifier a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has endpoint identifier"@en . - -:hasEntryIntoForceDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date on which the contract enters into force. Additional information: This is generally the date on which the fulfillment of the contract begins. This corresponds in eForms to WG approval 05/11/2019 (epo:Contract)"@en ; - skos:prefLabel "Has entry into force date"@en . - -:hasEstimatedBuyerConcessionRevenue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. Additional Information: For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. This corresponds to BT-160 in eForms. WG Approval 07/01/2020 (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedBuyerConcessionRevenue))"@en ; - skos:prefLabel "Has estimated buyer concession revenue"@en . - -:hasEstimatedContractNoticePublicationDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Foreseen date for publication of Contract Notice. Additional information: This corresponds in eForms BT-127 Future Notice. (epo:ProcessPlanningTerm)"@en ; - skos:prefLabel "Has estimated contract notice publication date"@en . - -:hasEstimatedDeliveryPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has estimated delivery period"@en . - -:hasEstimatedDuration a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a Contract has an estimated Duration. Additional Information When the Lot uses a Technique the contract estimated duration applies to the Technique. (epo:Contract -> epo:Duration (+epo:hasEstimatedDuration))"@en ; - skos:prefLabel "Has estimated duration"@en . - -:hasEstimatedInvitationToExpressInterestDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The estimated date of dispatch of the invitations to confirm interest. Additional Information: This corresponds in eForms to BT-631 Dispatch Invitation Interest. (epo:MultipleStageProcedureTerm)"@en ; - skos:prefLabel "Has estimated invitation to express interest date"@en . - -:hasEstimatedInvitationToTenderDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. Additional Information: This corresponds in eForms to BT-130 Dispatch Invitation Tender. WG Approval 01/10/2019 (epo:MultipleStageProcedureTerm)"@en ; - skos:prefLabel "Has estimated invitation to tender date"@en . - -:hasEstimatedPercentage a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The estimated proportion foreseen to be subcontracted. WG Approval 07/01/2020 (epo:SubcontractingEstimate)"@en ; - skos:prefLabel "Has estimated percentage"@en . - -:hasEstimatedTenderInvitationDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The planned date for the dispatch of the invitations to submit tenders. WG Approval 09/11/2021 (epo:ProcessPlanningTerm)"@en ; - skos:prefLabel "Has estimated tender invitation date"@en . - -:hasEstimatedTotalSubcontracts a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The estimated amount of work to be subcontracted in the contract resulting from the lot. WG Approval 09/11/2021 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has estimated total subcontracts"@en . - -:hasEstimatedUserConcessionRevenue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The estimated revenue coming from the use of the concession. Additional Information: Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. This corresponds to BT-162 in eForms. (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedUserConcessionRevenue))"@en ; - skos:prefLabel "Has estimated user concession revenue"@en . - -:hasEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A forecast of the value of the procurement before competition. Additional Information: Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). WG Approval 05/12/2019 (epo:ProcurementElement -> epo:MonetaryValue (+epo:hasEstimatedValue))"@en ; - skos:prefLabel "Has estimated value"@en . - -:hasEvaluationMember a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has evaluation member"@en . - -:hasExpectedDeliveryTime a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The expected amount of time between the order and delivery of an item. WG approval 26/07/2022 (epo-cat:Price -> epo:Duration (+epo-cat:hasExpectedDeliveryTime))"@en ; - skos:prefLabel "Has expected delivery time"@en . - -:hasExternalSpecification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "URI reference to external item information or specifications, e.g. web address. (epo-cat:Item -> epo:Document (+epo-cat:hasExternalSpecification))"@en ; - skos:prefLabel "Has external specification"@en . - -:hasFax a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The fax number used to reach a person or an organisation. (cpov:ContactPoint)"@en ; - skos:prefLabel "Has fax"@en . - -:hasFinancialOfferValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The value offered by the Tenderer for a Lot. Additional Information: This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. This corresponds to BT-720 in eForms. (epo:Tender -> epo:MonetaryValue (+epo:hasFinancialOfferValue))"@en ; - skos:prefLabel "Has financial offer value"@en . - -:hasFixedValue a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed. (epo:AwardCriterion)"@en ; - skos:prefLabel "Has fixed value"@en . - -:hasFixedValueType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The method to interpret the fixed value as pertaining to a total or unit. WG Approval 17/09/2019 (epo:AwardCriterion -> at-voc:number-fixed (+epo:hasFixedValueType))"@en ; - skos:prefLabel "Has fixed value type"@en . - -:hasFollowupContract a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. WG Approval 29/08/2019 (epo:DesignContestRegimeTerm)"@en ; - skos:prefLabel "Has followup contract"@en . - -:hasFollowupContractInformation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). WG Approval 03/09/2019 (epo:DesignContestRegimeTerm)"@en ; - skos:prefLabel "Has followup contract information"@en . - -:hasFormNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has form number"@en . - -:hasFormType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A categorisation of the steps in which the Notice is used. WG Approval 12/05/2020 (epo:Notice -> at-voc:form-type (+epo:hasFormType))"@en ; - skos:prefLabel "Has form type"@en . - -:hasFormula a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543. (epo:ProcurementCriterion)"@en ; - skos:prefLabel "Has formula"@en . - -:hasFrameworkAgreementEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "This refers to BT-660 in eForms. (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasFrameworkAgreementEstimatedValue))"@en ; - skos:prefLabel "Has framework agreement estimated value"@en . - -:hasFrameworkAgreementMaximumValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has framework agreement maximum value"@en . - -:hasFrameworkAgreementType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The form of framework agreement used in a procurement procedure. Addition information: A concept to distinguish the different types of framework agreement, which are: 1. Framework agreement without reopening of competition, 2. Framework agreement with reopening of competition, or 3. Framework agreement partly without reopening of competition. WG Approval 19/09/2019 (epo:FrameworkAgreementTerm -> at-voc:framework-agreement (+epo:hasFrameworkAgreementType))"@en ; - skos:prefLabel "Has framework agreement type"@en . - -:hasFreightForwarderConsignmentID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has freight forwarder consignment i d"@en . - -:hasFundProgramme a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has fund programme"@en . - -:hasGrossVolume a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has gross volume"@en . - -:hasGrossWeight a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has gross weight"@en . - -:hasGroupFrameworkAgreementMaximumValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "This corresponds to BT-156 in the eForms. (epo:LotGroupAwardInformation -> epo:MonetaryValue (+epo:hasGroupFrameworkAgreementMaximumValue))"@en ; - skos:prefLabel "Has group framework agreement maximum value"@en . - -:hasGroupLotEvaluationMethod a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Description of how lots and groups of lots are evaluated against one another in the procedure. (epo:ProcedureTerm)"@en ; - skos:prefLabel "Has group lot evaluation method"@en . - -:hasGroupType a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Form of collaboration agreement between organisations. Additional Information: This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. WG Approval 09/11/2021 (epo:OrganisationGroup)"@en ; - skos:prefLabel "Has group type"@en . - -:hasGuaranteeDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Information on the financial commitment required from the economic operator. Additional Information: 1. This information may include the amount and the way of delivering of the guarantee 2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. 3. Usual modalities are bonds, cheques, loans, other. WG Approval 21/07/20 (epo:SubmissionTerm)"@en ; - skos:prefLabel "Has guarantee description"@en . - -:hasHeight a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has height"@en . - -:hasHighestReceivedTenderValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Amount of the Tender with the highest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasHighestReceivedTenderValue))"@en ; - skos:prefLabel "Has highest received tender value"@en . - -:hasInadmissibleTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. Additional Information: Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has inadmissible tenders"@en . - -:hasInstanceReference a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The URI of a given class that is being referred to. (epo:ElementConfidentialityDescription)"@en ; - skos:prefLabel "Has instance reference"@en . - -:hasInternalIdentifier a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has internal identifier"@en . - -:hasInternetAddress a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The main web page used by the instance of the concept. WG Approval 01/06/2023 (org:Organization) The main web page used by the instance of the concept. WG Approval 01/06/2023 (cpov:ContactPoint)"@en ; - skos:prefLabel "Has internet address"@en . - -:hasIrregularityType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type (epo:ReviewIrregularitySummary -> at-voc:irregularity-type (+epo:hasIrregularityType))"@en ; - skos:prefLabel "Has irregularity type"@en . - -:hasItemCountryOfOrigin a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The source country of the product or service. Additional Information: The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. WG Approval 07/01/2020 The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country (epo:Tender -> at-voc:country (+epo:hasItemCountryOfOrigin))"@en ; - skos:prefLabel "Has item country of origin"@en . - -:hasItemStandardID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The identifier for the instance of the concept based on a standard scheme. Additional information: For example the GTIN scheme (Global Trade Item Number). WG Approval 24/02/2022 (epo-cat:Item -> adms:Identifier (+epo:hasItemStandardID))"@en ; - skos:prefLabel "Has item standard i d"@en . - -:hasJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "An explanation about the reasons for using the concept. WG Approval 5/11/2019 (epo:DirectAwardTerm)"@en ; - skos:prefLabel "Has justification"@en . - -:hasLanguage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Language in which the submitted information is to be expressed. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:language (+epo:hasLanguage))"@en ; - skos:prefLabel "Has language"@en . - -:hasLateSubmissionInformationDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A narrative text explaining the content of the economic operator information that can be submitted late. Additional Information This does not apply to requests for clarifications. (epo:SubmissionTerm)"@en ; - skos:prefLabel "Has late submission information description"@en . - -:hasLateSubmissionPermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Whether economic operator-related information can be supplemented even after the submission deadline. Additional Information This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:missing-info-submission (+epo:hasLateSubmissionPermission))"@en ; - skos:prefLabel "Has late submission permission"@en . - -:hasLaunchFrameworkAgreementMaximumValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has launch framework agreement maximum value"@en . - -:hasLaunchGroupFrameworkAgreementMaximumValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has launch group framework agreement maximum value"@en . - -:hasLegalBasis a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The legal basis under which the procurement procedure takes place. Additional Information: For example European Directives or Regulations, national laws etc. The recommended code list is the example for the legal basis at the European level. WG 04/04/2023 (epo:ProcurementObject -> at-voc:legal-basis (+epo:hasLegalBasis))"@en ; - skos:prefLabel "Has legal basis"@en . - -:hasLegalBasisDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has legal basis description"@en . - -:hasLegalFormRequirement a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The legal form to be taken by a Contractor. Additional Information: Generally, this is defined to cover the case where an Organisation Group is involved. Note that the codelist provided at national level should be used. (epo:ContractTerm)"@en ; - skos:prefLabel "Has legal form requirement"@en . - -:hasLegalFormType a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The classification of an Organisation according to legislation. Additional Information: Generally, this is defined for Tenderers who want to submit as an Organisation Group. Note that the codelist provided at national level should be used. (org:Organization)"@en ; - skos:prefLabel "Has legal form type"@en . - -:hasLegalIdentifier a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has legal identifier"@en . - -:hasLegalName a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The officially registered name of an organisation. WG Approval 10/01/2023 (org:Organization)"@en ; - skos:prefLabel "Has legal name"@en . - -:hasLegalRegime a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has legal regime"@en . - -:hasLength a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has length"@en . - -:hasLoadingLength a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has loading length"@en . - -:hasLongTitle a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has long title"@en . - -:hasLotAwardCombination a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The contracting authority reserves the right to award contracts combining lots or groups of lots. Additional Information: This property contains information about the Lots concerned. This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 (epo:ProcedureTerm)"@en ; - skos:prefLabel "Has lot award combination"@en . - -:hasLotReference a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has lot reference"@en . - -:hasLowestReceivedTenderValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Amount of the Tender with the lowest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasLowestReceivedTenderValue))"@en ; - skos:prefLabel "Has lowest received tender value"@en . - -:hasMainActivity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The principal sectoral area in which an organisation operates. Additional information: The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). WG Approval 05/05/2020 (org:Organization -> at-voc:main-activity (+epo:hasMainActivity))"@en ; - skos:prefLabel "Has main activity"@en . - -:hasMainActivityDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Self-explanatory text about the Main Activity . Additional information: This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 (org:Organization)"@en ; - skos:prefLabel "Has main activity description"@en . - -:hasMainClassification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has main classification"@en . - -:hasMainFeature a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Main features of the procedure and information about where the full rules for the procedure can be found. Additional Information: This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds. (epo:Procedure)"@en ; - skos:prefLabel "Has main feature"@en . - -:hasManufacturerID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The manufacturer's identifier for the item. (epo-cat:Manufacturer -> adms:Identifier (+epo:hasManufacturerID))"@en ; - skos:prefLabel "Has manufacturer i d"@en . - -:hasManufacturerItemID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "This refers to the general identifier for the concept as defined by the manufacturer. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasManufacturerItemID))"@en ; - skos:prefLabel "Has manufacturer item i d"@en . - -:hasMaximumFrameworkAgreementAwardedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. Additional information: The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. The Framework Agreements in a CAN are to be traced back and added to provide this value. This corresponds to the BT-118 in eForms. WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasMaximumFrameworkAgreementAwardedValue))"@en ; - skos:prefLabel "Has maximum framework agreement awarded value"@en . - -:hasMaximumLotSubmissionAllowed a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The total number of lots for which one Tenderer can submit Tenders. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 12/12/2018 (epo:ProcedureTerm)"@en ; - skos:prefLabel "Has maximum lot submission allowed"@en . - -:hasMaximumNumberOfCandidates a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Maximum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm)"@en ; - skos:prefLabel "Has maximum number of candidates"@en . - -:hasMaximumNumberOfLotsToBeAwarded a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The maximum number of lots for which contract(s) can be awarded to one tenderer. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG Approval 22/08/2019 (epo:ProcedureTerm)"@en ; - skos:prefLabel "Has maximum number of lots to be awarded"@en . - -:hasMaximumNumberOfRenewals a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The maximum number of times the contract can be renewed. Additional Information By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. (epo:ContractTerm)"@en ; - skos:prefLabel "Has maximum number of renewals"@en . - -:hasMaximumOrderQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The maximum number of orderable units that can be ordered according to details provided in the catalogue line, such as price. (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMaximumOrderQuantity))"@en ; - skos:prefLabel "Has maximum order quantity"@en . - -:hasMaximumParticipantsNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The maximum number of participants in the framework agreement. Additional Information: Maximum number of tenderers who may be awarded a contract within the framework agreement. The number is a positive integer. This corresponds in eForms to BT-113 Framework Maximum Participants Number. WG Approval 2019-02-05 (epo:FrameworkAgreementTerm)"@en ; - skos:prefLabel "Has maximum participants number"@en . - -:hasMaximumShare a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The maximum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 (epo:SubcontractTerm)"@en ; - skos:prefLabel "Has maximum share"@en . - -:hasMaximumTemperature a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has maximum temperature"@en . - -:hasMediumTenderPerLots a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Tenders from medium-sized enterprise. Additional Information: See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has medium tender per lots"@en . - -:hasMember a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has member"@en . - -:hasMinimumNumberOfCandidates a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Minimum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm)"@en ; - skos:prefLabel "Has minimum number of candidates"@en . - -:hasMinimumQuantityGuaranteedForDelivery a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The minimum quantity of an item that is guaranteed by the seller to be delivered. (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMinimumQuantityGuaranteedForDelivery))"@en ; - skos:prefLabel "Has minimum quantity guaranteed for delivery"@en . - -:hasMinimumShare a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The minimum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 (epo:SubcontractTerm)"@en ; - skos:prefLabel "Has minimum share"@en . - -:hasMinimumSubcontractorsProposedObligation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The minimum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 (epo:SubcontractTerm)"@en ; - skos:prefLabel "Has minimum subcontractors proposed obligation"@en . - -:hasMinimumTemperature a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has minimum temperature"@en . - -:hasModificationDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "An explanatory text about this context. Additional Information This corresponds in Standard forms to Field VII.2.1 in F20 This corresponds in eForms to BT-202 . WG Approval 5/11/2019 (epo:ElementModificationDescription)"@en ; - skos:prefLabel "Has modification description"@en . - -:hasModificationJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. (epo:ElementModificationDescription -> at-voc:modification-justification (+epo:hasModificationJustification)) Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. (epo:AmendedContract -> at-voc:modification-justification (+epo:hasModificationJustification))"@en ; - skos:prefLabel "Has modification justification"@en . - -:hasModificationReasonDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "An explanation about the reasons for using the concept. Additional Information This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. This corresponds in eForms to BT-201 . WG Approval 5/11/2019 (epo:ElementModificationDescription)"@en ; - skos:prefLabel "Has modification reason description"@en . - -:hasNationalProcedureRules a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has national procedure rules"@en . - -:hasNationality a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "(cpv:Person -> at-voc:country (+epo:hasNationality))"@en ; - skos:prefLabel "Has nationality"@en . - -:hasNetMonetaryValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has net monetary value"@en . - -:hasNetQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The net quantity of the item that is contained in each consumable unit, excluding any packaging materials. (epo-cat:Item -> epo:Quantity (+epo-cat:hasNetQuantity))"@en ; - skos:prefLabel "Has net quantity"@en . - -:hasNetVolume a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has net volume"@en . - -:hasNetWeight a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has net weight"@en . - -:hasNoNegotiationNecessary a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. Additional information: See Article 29(4) of Directive 2014/24/EU. (epo:MultipleStageProcedureTerm)"@en ; - skos:prefLabel "Has no negotiation necessary"@en . - -:hasNonAccessibilityCriterionJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Reason for not applying accessibility criteria. Additional information: This corresponds in eForma to BT-755 Accessibility Justification. WG Approval 05/03/2019 (epo:StrategicProcurement)"@en ; - skos:prefLabel "Has non accessibility criterion justification"@en . - -:hasNonAwardJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "On hold; Enumeration. (epo:AwardDecision -> at-voc:non-award-justification (+epo:hasNonAwardJustification))"@en ; - skos:prefLabel "Has non award justification"@en . - -:hasNonAwardedContractNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 (epo:LotAwardDecision)"@en ; - skos:prefLabel "Has non awarded contract number"@en . - -:hasNonAwardedContractTitle a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The title the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 (epo:LotAwardDecision)"@en ; - skos:prefLabel "Has non awarded contract title"@en . - -:hasNonEEAReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The amount of tenders received from economic operators in non-EEA countries. WG Approval 12/12/2019 15:20:36 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has non e e a received tenders"@en . - -:hasNonEUReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The amount of tenders received from economic operators in non-EU countries. (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has non e u received tenders"@en . - -:hasNonElectronicSubmissionDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Textual explanation of how non-electronic information is to be presented. WG Approval 21/07/2020 (epo:SubmissionTerm)"@en ; - skos:prefLabel "Has non electronic submission description"@en . - -:hasNonElectronicSubmissionJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Reason for not accepting electronic information. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:communication-justification (+epo:hasNonElectronicSubmissionJustification))"@en ; - skos:prefLabel "Has non electronic submission justification"@en . - -:hasNonPublicationJustification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The reason why data is not published. WG Approval 11/06/2020 (epo:ElementConfidentialityDescription -> at-voc:non-publication-justification (+epo:hasNonPublicationJustification))"@en ; - skos:prefLabel "Has non publication justification"@en . - -:hasNoticePublicationNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has notice publication number"@en . - -:hasNoticeType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has notice type"@en . - -:hasNotificationContentType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A categorisation of templates for sets of Procurement information to be conveyed in Notices. WG Approval 12/05/2020 (epo:Notice -> epo:notification-phases-content-types (+epo:hasNotificationContentType))"@en ; - skos:prefLabel "Has notification content type"@en . - -:hasNumberOfReviewRequests a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number of requests the buyer received to review any of its decisions. (epo:ReviewRequest)"@en ; - skos:prefLabel "Has number of review requests"@en . - -:hasNumberOfTenderersInvited a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Number of economic operators invited to tender. Additional Information This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. WG Approval 01/12/2020 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has number of tenderers invited"@en . - -:hasNutsCode a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has nuts code"@en . - -:hasOJSIssueNumber a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has o j s issue number"@en . - -:hasOJSType a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has o j s type"@en . - -:hasOfficialLanguage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. WG Approval 03/10/2019 (epo:Document -> at-voc:language (+epo:hasOfficialLanguage))"@en ; - skos:prefLabel "Has official language"@en . - -:hasOpeningDateTime a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Date and time for the opening of tenders. WG Approval 12/03/2019 (epo:OpeningTerm)"@en ; - skos:prefLabel "Has opening date time"@en . - -:hasOpeningDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Further information about the opening of tenders. Additional Information For example, who may participate in the opening and whether any authorization is needed. WG Approval 12/03/2019 (epo:OpeningTerm)"@en ; - skos:prefLabel "Has opening description"@en . - -:hasOpeningURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The identifier of the address of the Opening of Tenders. WG Approval 09/11/2021 (epo:OpeningTerm)"@en ; - skos:prefLabel "Has opening u r l"@en . - -:hasOperatorLicenceID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has operator licence i d"@en . - -:hasOptions a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid). (epo:ContractTerm)"@en ; - skos:prefLabel "Has options"@en . - -:hasOptionsDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The motivation and details about additional purchases that the buyer may undertake while the contract is valid. WG Approval 09/04/2019 (epo:ContractTerm)"@en ; - skos:prefLabel "Has options description"@en . - -:hasOrderabableUnitFactorRate a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has orderabable unit factor rate"@en . - -:hasOrganisationUnitName a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The name of a subpart of an organisation. Additional Information: E.g. the relevant department of a large organisation. We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well. (org:Organization)"@en ; - skos:prefLabel "Has organisation unit name"@en . - -:hasOtherCountriesReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has other countries received tenders"@en . - -:hasOutstandingQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has outstanding quantity"@en . - -:hasOverallCostAwardCriteriaPonderation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The weighting given to cost. Additional Information: This weighting covers usually all cost criteria against price or quality criteria. (epo:AwardEvaluationTerm)"@en ; - skos:prefLabel "Has overall cost award criteria ponderation"@en . - -:hasOverallPriceAwardCriteriaPonderation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The weighting given to price. Additional Information: This weighting covers usually all price criteria against cost or quality criteria. (epo:AwardEvaluationTerm)"@en ; - skos:prefLabel "Has overall price award criteria ponderation"@en . - -:hasOverallQualityAwardCriteriaPonderation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The weighting given to quality. Additional Information: This weighting covers usually all quality criteria against price or cost criteria. (epo:AwardEvaluationTerm)"@en ; - skos:prefLabel "Has overall quality award criteria ponderation"@en . - -:hasParticipationPayment a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Details on payments to participants WG Approval 09/11/2021 (epo:DesignContestRegimeTerm)"@en ; - skos:prefLabel "Has participation payment"@en . - -:hasPaymentArrangement a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Information about financial clauses that will govern some economic aspects of the execution of the contract. Additional Information: These clauses usually refer to financial and payment provisions. This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. WG Pending of discussion with eForms (epo:ContractTerm)"@en ; - skos:prefLabel "Has payment arrangement"@en . - -:hasPaymentValueDiscrepancyJustification a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has payment value discrepancy justification"@en . - -:hasPerformanceConditions a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The particular conditions and additional information related to the execution of the contract. Additional Information: For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. WG approval 15-01-2019 (epo:ContractTerm)"@en ; - skos:prefLabel "Has performance conditions"@en . - -:hasPerformingStaffQualificationInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BT-79. (epo:ProcurementCriterion -> at-voc:requirement-stage (+epo:hasPerformingStaffQualificationInformation))"@en ; - skos:prefLabel "Has performing staff qualification information"@en . - -:hasPlaceOfPerformanceAdditionalInformation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Further details on the location of the execution of the contract. WG Approval 30/07/2019 (epo:ContractTerm)"@en ; - skos:prefLabel "Has place of performance additional information"@en . - -:hasPlannedDuration a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has planned duration"@en . - -:hasPlannedPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has planned period"@en . - -:hasPreferredPublicationDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date the buyer would like to have the record made publicly available. Additional Information: This corresponds in eForms to BT-738 Notice Publication Date Preferred. WG Approval 12/05/2020 (epo:PublicationProvision)"@en ; - skos:prefLabel "Has preferred publication date"@en . - -:hasPrepaidAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has prepaid amount"@en . - -:hasPreviousVersionOfElementReference a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Reference to the class instance in the previous version of the notice, which was changed. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. (epo:ElementChangeDescription)"@en ; - skos:prefLabel "Has previous version of element reference"@en . - -:hasPriceValidity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has price validity"@en . - -:hasPrimaryContactPoint a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has primary contact point"@en . - -:hasPrizeRank a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The position of the prize (e.g. first place, second place) in a design contest list of prizes. WG Approval 29/08/2019 (epo:Prize)"@en ; - skos:prefLabel "Has prize rank"@en . - -:hasPrizeValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. Additional Information: This corresponds to BT-644 in eForms. WG Approval 29/08/2019 (epo:Prize -> epo:MonetaryValue (+epo:hasPrizeValue))"@en ; - skos:prefLabel "Has prize value"@en . - -:hasProcedureType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Identification of the Procedure used. WG Approval 09/06/2020 (epo:Procedure -> at-voc:procurement-procedure-type (+epo:hasProcedureType))"@en ; - skos:prefLabel "Has procedure type"@en . - -:hasProcurementClassification a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has procurement classification"@en . - -:hasProcurementDocumentChangeDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date and time of the change. Additional information: This corresponds in eForms to BT-719 Change Procurement Documents Date WG Approval 5/11/2019 (epo:ElementChangeDescription)"@en ; - skos:prefLabel "Has procurement document change date"@en . - -:hasProcurementHighestReceivedTenderValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The highest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementHighestReceivedTenderValue))"@en ; - skos:prefLabel "Has procurement highest received tender value"@en . - -:hasProcurementLowestReceivedTenderValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The lowest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementLowestReceivedTenderValue))"@en ; - skos:prefLabel "Has procurement lowest received tender value"@en . - -:hasProcurementScopeDividedIntoLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has procurement scope divided into lot"@en . - -:hasPropertyReference a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The URI of a given attribute (property) that is being referred to. (epo:ElementConfidentialityDescription)"@en ; - skos:prefLabel "Has property reference"@en . - -:hasPublicAccessURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Web page where the procurement documents can be downloaded. Additional Information: This corresponds in the eForms to BT-15 Documents URL. WG Approval 09/03/2021 (epo:AccessTerm)"@en ; - skos:prefLabel "Has public access u r l"@en . - -:hasPublicationDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Date of formal public issuance of the document. WG approval 20/06/2023 (epo:Document)"@en ; - skos:prefLabel "Has publication date"@en . - -:hasPurpose a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating a procurement part has a puropse. (epo:ProcurementObject -> epo:Purpose (+epo:hasPurpose))"@en ; - skos:prefLabel "Has purpose"@en . - -:hasQualificationCondition a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has qualification condition"@en . - -:hasQualificationSystemDuration a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has qualification system duration"@en . - -:hasQualificationSystemRenewalDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has qualification system renewal description"@en . - -:hasQualifiedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Qualified value of the property, which is defined in a classification scheme. Additional Information: For example, the (0173-1#02-AAA026#007) drilling diameter of an item has value of 12 inches. WG approval 28/07/2022 (epo-cat:ItemProperty -> epo:Quantity (+epo-cat:hasQualifiedValue))"@en ; - skos:prefLabel "Has qualified value"@en . - -:hasQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has quantity"@en . - -:hasQuantityThreshold a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has quantity threshold"@en . - -:hasQuantityValue a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The numeric value of the quantity, including decimals. (epo:Quantity)"@en ; - skos:prefLabel "Has quantity value"@en . - -:hasReceiptDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The time limit for receiving submissions. Additional Information This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. This attribute should be used for standard forms mappings. WG Approval 21/07/2020 (epo:SubmissionTerm)"@en ; - skos:prefLabel "Has receipt deadline"@en . - -:hasReceiptExpressionDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Time limit for receipt of expressions of interest. Pending of review by the WG (epo:SubmissionTerm)"@en ; - skos:prefLabel "Has receipt expression deadline"@en . - -:hasReceiptParticipationRequestDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has receipt participation request deadline"@en . - -:hasReceiptPreliminaryMarketConsultationDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has receipt preliminary market consultation deadline"@en . - -:hasReceiptTenderDeadline a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has receipt tender deadline"@en . - -:hasReceivedMicroTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The amount of tenders received from a micro enterprise. Additional Information: See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has received micro tenders"@en . - -:hasReceivedParticipationRequests a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The amount of applications to participate from economic operators. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has received participation requests"@en . - -:hasReceivedSmallTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Tenders from small enterprise. Additional Information: See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has received small tenders"@en . - -:hasReceivedSubmissionType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has received submission type"@en . - -:hasReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The total amount of tenders received. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has received tenders"@en . - -:hasReceptionDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Notes: Date when a record is acknowledged by an organisation. WG Approval 12/05/2020 (epo:Document)"@en ; - skos:prefLabel "Has reception date"@en . - -:hasRecurrenceDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Any additional information about the recurrence of the Procurement. Additional Information: For example estimated timing of the Procedure. This corresponds in eForms to BT-95 Recurrence Description. (WG approval 2019-01-16) (epo:ProcurementObject)"@en ; - skos:prefLabel "Has recurrence description"@en . - -:hasRegistrationCountry a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has registration country"@en . - -:hasRemedyValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BT-793 Review Remedy Value. (epo:ReviewDecision -> epo:MonetaryValue (+epo:hasRemedyValue))"@en ; - skos:prefLabel "Has remedy value"@en . - -:hasRenewalDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Any other information about the renewal(s). WG approval 16/04/2019 (epo:ContractTerm)"@en ; - skos:prefLabel "Has renewal description"@en . - -:hasRequestDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date when the review request was submitted. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. (epo:ReviewRequest)"@en ; - skos:prefLabel "Has request date"@en . - -:hasReservedExecution a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has reserved execution"@en . - -:hasReservedProcurement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 (epo:ParticipationCondition -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 (epo:ParticipationConditionsSummary -> at-voc:reserved-procurement (+epo:hasReservedProcurement))"@en ; - skos:prefLabel "Has reserved procurement"@en . - -:hasRestrictedAccessURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The internet address with information on accessing the restricted (part of the) procurement document. Additional Information: This corresponds in eForms to BT-615 Documents Restricted URL. (epo:AccessTerm)"@en ; - skos:prefLabel "Has restricted access u r l"@en . - -:hasReviewBodyType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has review body type"@en . - -:hasReviewDecisionType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BT-790 Review Decision Type. (epo:ReviewDecision -> at-voc:review-decision-type (+epo:hasReviewDecisionType))"@en ; - skos:prefLabel "Has review decision type"@en . - -:hasReviewIrregularityCount a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number of requests for a given irregularity. Additional information: This attribute corresponds in eForms to BT-635 Buyer Review Requests Count. (epo:ReviewIrregularitySummary)"@en ; - skos:prefLabel "Has review irregularity count"@en . - -:hasReviewIrregularitySummary a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BG-613 Buyer Review Requests (epo:ReviewRequestSummary -> epo:ReviewIrregularitySummary (+epo:hasReviewIrregularitySummary))"@en ; - skos:prefLabel "Has review irregularity summary"@en . - -:hasReviewRequestFee a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BT-795 Review Request Fee. (epo:ReviewRequest -> epo:MonetaryValue (+epo:hasReviewRequestFee))"@en ; - skos:prefLabel "Has review request fee"@en . - -:hasReviewURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The internet address of the documents concerning the review instance. Additional information: This attribute corresponds in eForms to BT-794 Review URL. (epo:ReviewObject)"@en ; - skos:prefLabel "Has review u r l"@en . - -:hasRoundingAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has rounding amount"@en . - -:hasSMEReceivedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The amount of tenders received from micro, small and medium-sized enterprises. Additional Information: See Commission Recommendation 2003/361/EC. The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. WG Approval 05/03/2020 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has s m e received tenders"@en . - -:hasScheme a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The name of the identification scheme. (adms:Identifier)"@en ; - skos:prefLabel "Has scheme"@en . - -:hasSchemeVersion a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The version of the identification scheme. (adms:Identifier)"@en ; - skos:prefLabel "Has scheme version"@en . - -:hasSelectionCriteriaStatedInProcurementDocuments a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has selection criteria stated in procurement documents"@en . - -:hasSelectionCriteriaUsage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional Information: This corresponds in eForms to BT-748 Selection Criteria Used. (epo:SelectionCriterion -> at-voc:usage (+epo:hasSelectionCriteriaUsage))"@en ; - skos:prefLabel "Has selection criteria usage"@en . - -:hasSelectionCriterionType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The classification of the selection criteria. Additional Information: This corresponds in eForms to BT-747 Selection Criteria Type. WG Approval 09/11/2021 (epo:SelectionCriterion -> at-voc:selection-criterion (+epo:hasSelectionCriterionType))"@en ; - skos:prefLabel "Has selection criterion type"@en . - -:hasSellerItemID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The general identifier for the concept as defined by the seller. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasSellerItemID))"@en ; - skos:prefLabel "Has seller item i d"@en . - -:hasSerialID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The identifier assigned to the specific instance of the produced concept. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasSerialID))"@en ; - skos:prefLabel "Has serial i d"@en . - -:hasServiceReservedToParticularProfession a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has service reserved to particular profession"@en . - -:hasStartDate a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has start date"@en . - -:hasStrategicProcurementDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Self-explanatory text about a concept. (epo:StrategicProcurement)"@en ; - skos:prefLabel "Has strategic procurement description"@en . - -:hasSubcontractingEstimatedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The estimated value of a single subcontract. This relates to BT-553 in eForms. WG Approval 01/09/2020 (epo:SubcontractingEstimate -> epo:MonetaryValue (+epo:hasSubcontractingEstimatedValue))"@en ; - skos:prefLabel "Has subcontracting estimated value"@en . - -:hasSubcontractingInvolved a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "List of Subcontractors and the subject matter they cover are required. Additional Information: The tenderer will ned to supply this information in the tender. WG Approval 28/02/2019 (epo:SubcontractTerm)"@en ; - skos:prefLabel "Has subcontracting involved"@en . - -:hasSubcontractingObligation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The requirement the tender must meet with regard to subcontracting parts of the contract. WG Approval 09/11/2021 (epo:SubcontractTerm -> at-voc:subcontracting-obligation (+epo:hasSubcontractingObligation))"@en ; - skos:prefLabel "Has subcontracting obligation"@en . - -:hasSubcontractorsProposedAboveObligation a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The maximum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 (epo:SubcontractTerm)"@en ; - skos:prefLabel "Has subcontractors proposed above obligation"@en . - -:hasSubjectMatter a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Description of the share of the contract that is to be subcontracted. Additional infromation: This can be an aggregate of several subcontracts. WG Approval 09/11/2021 (epo:SubcontractingEstimate)"@en ; - skos:prefLabel "Has subject matter"@en . - -:hasSubmissionURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional Information: This corresponds to the eForms BT-18 Submission URL. This corresponds in eForms to BT-509 Organisation eDelivery Gateway. (epo:SubmissionTerm)"@en ; - skos:prefLabel "Has submission u r l"@en . - -:hasSuccessiveReduction a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. Additional information: This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm)"@en ; - skos:prefLabel "Has successive reduction"@en . - -:hasTaxIdentifier a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has tax identifier"@en . - -:hasTaxInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:editorialNote "Proposal to omit this link until we bring tax into ePO core because this does not appear in the data"@en ; - skos:prefLabel "Has tax information"@en . - -:hasTenderSubcontractingInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The information about subcontracting that must be indicated in the tender. WG Approval 10/10/2019 (epo:SubmissionTerm -> at-voc:subcontracting-indication (+epo:hasTenderSubcontractingInformation))"@en ; - skos:prefLabel "Has tender subcontracting information"@en . - -:hasTenderValidityPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The relation indicating until when a tender instance is applicable. (epo:SubmissionTerm -> epo:Period (+epo:hasTenderValidityPeriod))"@en ; - skos:prefLabel "Has tender validity period"@en . - -:hasThresholdType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The method to interpret the threshold value as minimum or a maximum. WG Approval 17/09/2019 (cccev:Constraint -> at-voc:number-threshold (+epo:hasThresholdType))"@en ; - skos:prefLabel "Has threshold type"@en . - -:hasThresholdValue a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The cut-off level for a given concept. Additional Information: This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold). (cccev:Constraint)"@en ; - skos:prefLabel "Has threshold value"@en . - -:hasTimePeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "(epo:Period -> at-voc:timeperiod (+epo:hasTimePeriod))"@en ; - skos:prefLabel "Has time period"@en . - -:hasTotalAllowanceAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total allowance amount"@en . - -:hasTotalAwardedValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The awarded value of all lots announced in this notice, including options and renewals. Additional information: The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. The values of the individual lots announced in a CAN are to be traced back and added to provide this value. This corresponds to the BT-161 in eForms. WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasTotalAwardedValue))"@en ; - skos:prefLabel "Has total awarded value"@en . - -:hasTotalChargeAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total charge amount"@en . - -:hasTotalGoodsItemQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total goods item quantity"@en . - -:hasTotalLineAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total line amount"@en . - -:hasTotalNumberOfComplainants a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. Additional information: This attribute corresponds in eForms to BT-712 Buyer Review Complainants WG Approval 11/04/2019 (epo:ReviewRequestSummary)"@en ; - skos:prefLabel "Has total number of complainants"@en . - -:hasTotalQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number of units required. Additional Information: The quantity needs to go along with the unit. (epo:Purpose -> epo:Quantity (+epo:hasTotalQuantity))"@en ; - skos:prefLabel "Has total quantity"@en . - -:hasTotalTaxExclusiveAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total tax exclusive amount"@en . - -:hasTotalTaxInclusiveAmount a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total tax inclusive amount"@en . - -:hasTotalValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has total value"@en . - -:hasTotalVehicles a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement)"@en ; - skos:prefLabel "Has total vehicles"@en . - -:hasTraceID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has trace i d"@en . - -:hasTrackingID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has tracking i d"@en . - -:hasTransportHandlingUnitQuantity a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has transport handling unit quantity"@en . - -:hasURL a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The identifier of a resource. Additional Information For example: 1. The URL of the system from where to access the procurement documents; 2. The URL of the system for the submission of tender documents; 3. The URL of the system from where to download a tool to communicate with the Buyer; 4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) 5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; WG Approval 30/09/2019 (epo:Fund)"@en ; - skos:prefLabel "Has u r l"@en . - -:hasUUID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A universally unique identifier for an instance of this document. WG Approval 12/05/2020 (epo:Document -> adms:Identifier (+epo:hasUUID))"@en ; - skos:prefLabel "Has u u i d"@en . - -:hasUnitCode a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has unit code"@en . - -:hasUnitDescription a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A narrative explanation defining the units of items being counted Additional information: This could be for example individual items or pack or two. WG Approval 09/11/2021 (epo:Quantity)"@en ; - skos:prefLabel "Has unit description"@en . - -:hasUnofficialLanguage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. WG Approval 03/10/2019 (epo:Document -> at-voc:language (+epo:hasUnofficialLanguage))"@en ; - skos:prefLabel "Has unofficial language"@en . - -:hasUnverifiedTenders a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation)"@en ; - skos:prefLabel "Has unverified tenders"@en . - -:hasUsage a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage (epo:Technique -> at-voc:usage (+epo:hasUsage))"@en ; - skos:prefLabel "Has usage"@en . - -:hasValidityPeriod a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 (epo:Technique -> epo:Period (+epo:hasValidityPeriod)) The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 (epo-cat:Certificate -> epo:Period (+epo:hasValidityPeriod))"@en ; - skos:prefLabel "Has validity period"@en . - -:hasVariantPermission a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The obligation or possibility for tenderers to submit variants or not. Additional Information: Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. Additional Information: Further conditions for submitting variant tenders are in the procurement documents. (epo:SubmissionTerm -> at-voc:permission (+epo:hasVariantPermission))"@en ; - skos:prefLabel "Has variant permission"@en . - -:hasVehicleID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has vehicle i d"@en . - -:hasVehicleSegmentID a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has vehicle segment i d"@en . - -:hasVersion a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A number that identifies a specific state of a document. WG approval: 18/11/2021 (epo:Document)"@en ; - skos:prefLabel "Has version"@en . - -:hasWeightValueType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "No definition. Waiting on CCCEV alignment. (epo:ProcurementCriterion -> at-voc:number-weight (+epo:hasWeightValueType))"@en ; - skos:prefLabel "Has weight value type"@en . - -:hasWidth a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has width"@en . - -:hasWithdrawalDate a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The date and time when the request for review was withdrawn. Additional information: This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date. (epo:ReviewRequest)"@en ; - skos:prefLabel "Has withdrawal date"@en . - -:hasWithdrawalReason a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The explanation for withdrawing the request for review. Additional information: This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons (epo:ReviewRequest)"@en ; - skos:prefLabel "Has withdrawal reason"@en . - -:hasZeroEmissionVehicles a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement)"@en ; - skos:prefLabel "Has zero emission vehicles"@en . - -:implementsContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Implements contract"@en . - -:includesAccessibilityCriterion a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Explanation as to whether accessibility Criterion are used or not. WG Approval 09/11/2021 (epo:StrategicProcurement -> at-voc:accessibility (+epo:includesAccessibilityCriterion))"@en ; - skos:prefLabel "Includes accessibility criterion"@en . - -:includesTender a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This corresponds in eForms to BT-3202 Contract Tender Identifier. (epo:Contract -> epo:Tender (+epo:includesTender))"@en ; - skos:prefLabel "Includes tender"@en . - -:indicatesAwardToWinner a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Reveals the winner to whom the tender award outcome is attributed. (epo:TenderAwardOutcome -> epo:Winner (+epo:indicatesAwardToWinner))"@en ; - skos:prefLabel "Indicates award to winner"@en . - -:indicatesInvoiceeContactPoint a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Indicates invoicee contact point"@en . - -:indicatesPerformingStaffInformationRequirement a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Indicates performing staff information requirement"@en . - -:involvesProcurementDocument a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Involves procurement document"@en . - -:isAccelerated a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Statement about the fact that the procedure will be reduced due to a state of urgency. Additional Information This modifies the time limit for the receipt of requests to participate or the receipt of tenders. WG Approval 20/08/2019 (epo:Procedure)"@en ; - skos:prefLabel "Is accelerated"@en . - -:isAdvancedElectronicSignatureRequired a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. The submitted information is required to be signed electronically. Additional Information: Signature can be defined as \"data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. WG Approval 21/07/2020 (epo:SubmissionTerm)"@en ; - skos:prefLabel "Is advanced electronic signature required"@en . - -:isAppointedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is appointed by"@en . - -:isAssignedForEvaluationOf a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is assigned for evaluation of"@en . - -:isAwardedByCPB a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Procedure is awarded by a Central Purchasing Body. (epo:ProcedureTerm)"@en ; - skos:prefLabel "Is awarded by c p b"@en . - -:isBasedOnImplementingRegulation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Indicates under which regulation a notice is created. WG Acceptance 06/09/2022 (epo:Notice -> at-voc:legal-basis (+epo:isBasedOnImplementingRegulation))"@en ; - skos:prefLabel "Is based on implementing regulation"@en . - -:isBeneficialOwnerOf a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf))"@en ; - skos:prefLabel "Is beneficial owner of"@en . - -:isCalculatedOn a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:TaxInformation -> epo:MonetaryValue (+epo:isCalculatedOn))"@en ; - skos:prefLabel "Is calculated on"@en . - -:isCompetitionTerminated a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "No further contracts will be awarded in this procedure. Additional Information: This can be instantiated in the post award phase. PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. This corresponds in eForms to BT-756 PIN Competition Termination. (epo:ProcurementProcessInformation)"@en ; - skos:prefLabel "Is competition terminated"@en . - -:isContractingEntity a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Role of entities, which: (a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. (b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. Additional Information The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. WG Approval 28/04/2020 (epo:Buyer)"@en ; - skos:prefLabel "Is contracting entity"@en . - -:isCoveredByGPA a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Specifies whether the Agreement on Government Procurement (GPA) applies. Additional information: The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. This corresponds in the e Forms to BT-115 GPA Coverage. WG Approval 15/10/2019 (epo:ProcurementObject)"@en ; - skos:prefLabel "Is covered by g p a"@en . - -:isDPSTerminated a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "End of the Dynamic Purchase System (DPS). Additional Information: This property can be used in the contract award notice even if no contracts are awarded. WG Approval 22/11/2019 (epo:ProcurementProcessInformation)"@en ; - skos:prefLabel "Is d p s terminated"@en . - -:isDesignContest a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "A competition which enables the buyer to acquire a plan or design via a jury. Additional information: Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering The contest may include or not the award of prizes; WG approval 04-02-2021 (epo:Procedure)"@en ; - skos:prefLabel "Is design contest"@en . - -:isEUInstitution a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is e u institution"@en . - -:isExecutedByProcurementServiceProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is executed by procurement service provider"@en . - -:isFundedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Funding is provided either completely or partially by a Fund. Additional information: This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. (epo:ProcurementObject -> epo:Fund (+epo:isFundedBy))"@en ; - skos:prefLabel "Is funded by"@en . - -:isGuaranteeRequired a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The submitted information must include a financial commitment to be used in case of default. Additional Information: See the additional information provided in the definition of the 'Guarantee Description' element. WG Approval 21/07/20 (epo:SubmissionTerm)"@en ; - skos:prefLabel "Is guarantee required"@en . - -:isJointProcurement a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Multiple buyers procure together within the same procedure. Addition Information: In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . (epo:Procedure)"@en ; - skos:prefLabel "Is joint procurement"@en . - -:isJuryDecisionBinding a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Indicates whether the procuring entity is bound to apply the decision of the jury. (epo:DesignContestRegimeTerm)"@en ; - skos:prefLabel "Is jury decision binding"@en . - -:isListedCompany a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange rules or through law or enforceable means), which impose requirements to ensure adequate transparency of beneficial ownership. Additional Information: In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. WG Approval 21/11/2019 (epo:Business)"@en ; - skos:prefLabel "Is listed company"@en . - -:isMultipleTenderSubmissionAllowed a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Tenderers may submit more than one competing tenders. WG Approval 10/10/2019 (epo:SubmissionTerm)"@en ; - skos:prefLabel "Is multiple tender submission allowed"@en . - -:isNonDisclosureAgreementRequired a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is non disclosure agreement required"@en . - -:isOneLotOnlyAllowed a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Indicates whether tenders may be submitted for only one Lot. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 (epo:ProcedureTerm)"@en ; - skos:prefLabel "Is one lot only allowed"@en . - -:isOwnedByAgent a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is owned by agent"@en . - -:isProcurementDocumentChanged a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "One or more procurement documents have been changed. Additional information: This corresponds in eForms to BT-718 Change Procurement Documents WG Approval 05/11/2019 (epo:ElementChangeDescription)"@en ; - skos:prefLabel "Is procurement document changed"@en . - -:isProcurementDocumentRestricted a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The access to certain procurement documents is restricted. Additional Information: This corresponds in eForms to BT-14 Documents Restricted. WG Approval 10/10/2019 (epo:AccessTerm)"@en ; - skos:prefLabel "Is procurement document restricted"@en . - -:isRecurrent a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The Procurement being notified is likely to be included in another procedure in the foreseeable future. Additional Information: For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. This corresponds in eForms to BT-94 Recurrence. WG Approval 12/05/2020 (epo:ProcurementObject)"@en ; - skos:prefLabel "Is recurrent"@en . - -:isRenewalIndicator a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Indicates whether the contract is subject to a renewal clause. WG Approval 09/11/2021 (epo:ContractTerm)"@en ; - skos:prefLabel "Is renewal indicator"@en . - -:isResponsibilityOfBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :involvesBuyer ; - skos:definition "The buyer in charge of the procedure. Additional Information: In case there are multiple buyers, it may be the case that one or more buyers are in charge of the procedure. (epo:Procedure -> epo:Buyer (+epo:isResponsibilityOfBuyer))"@en ; - skos:prefLabel "Is responsibility of buyer"@en . - -:isSMESuitable a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The Lot is suitable for small and medium enterprises (SMEs). Additional Information This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. For example, number of employees and turnover are applicable to the definition of an SME. WG Approval 15/10/2019 (epo:ProcurementObject)"@en ; - skos:prefLabel "Is s m e suitable"@en . - -:isSecurityClearanceRequired a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is security clearance required"@en . - -:isSubjectToContractSpecificTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is subject to contract specific term"@en . - -:isSubjectToGrouping a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is subject to grouping"@en . - -:isSubjectToLotSpecificTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :isSubjectToTerm ; - skos:prefLabel "Is subject to lot specific term"@en . - -:isSubjectToProcedureSpecificTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - rdfs:subPropertyOf :isSubjectToTerm ; - skos:prefLabel "Is subject to procedure specific term"@en . - -:isSubmissionForAllLotsAllowed a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Indicates whether tenders may be submitted for all Lots. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) WG approval 23/08/2022 (epo:ProcedureTerm)"@en ; - skos:prefLabel "Is submission for all lots allowed"@en . - -:isSubmitedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relation indicating the submission of a tender by an economic operator. WG approval 18/05/2021 (epo:Tender -> epo:Tenderer (+epo:isSubmitedBy))"@en ; - skos:prefLabel "Is submited by"@en . - -:isSubmittedForLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is submitted for lot"@en . - -:isSubmittedForLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is submitted for lot group"@en . - -:isSubordinatedToContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is subordinated to contract"@en . - -:isSupportedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is supported by"@en . - -:isToBeRelaunched a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Indicator of whether the procurement object is to be relaunched. Additional information: This can be instantiated in the post award phase. This corresponds in eForms to BT-634 Procurement Relaunch. WG Approval: 18/01/2022 (epo:ProcurementProcessInformation)"@en ; - skos:prefLabel "Is to be relaunched"@en . - -:isUsedForCandidateRestriction a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. Additional Information: This property is only used if a maximum number of candidates was foreseen in the procedure. This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite (epo:SelectionCriterion)"@en ; - skos:prefLabel "Is used for candidate restriction"@en . - -:isUsingEUFunds a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The procurement foresees funding by the Union. Additional Information: The funding may cover the whole procurement or part of the procurement. For example the European Structural and Investment Funds or grants awarded by the European Union. (epo:ProcurementObject)"@en ; - skos:prefLabel "Is using e u funds"@en . - -:isVariant a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. Additional Information: The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. WG Approval 29/05/2019 (epo:Tender)"@en ; - skos:prefLabel "Is variant"@en . - -:isWithdrawn a owl:DatatypeProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The review request was withdrawn. Additional information: This attribute corresponds in eForms to BT-796 Review Request Withdrawn. (epo:ReviewRequest)"@en ; - skos:prefLabel "Is withdrawn"@en . - -:leadBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Lead by"@en . - -:legal-regime a skos:ConceptScheme ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Legal-regime"@en . - -:needsToBeATenderer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The Winner must be a Tenderer. (epo:Winner -> epo:Tenderer (+epo:needsToBeATenderer))"@en ; - skos:prefLabel "Needs to be a tenderer"@en . - -:needsToBeAWinner a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "The Contractor must be a Winner. (epo:Contractor -> epo:Winner (+epo:needsToBeAWinner))"@en ; - skos:prefLabel "Needs to be a winner"@en . - -:notification-phases-content-types a skos:ConceptScheme ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Notification-phases-content-types"@en . - -:ownsSystem a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Owns system"@en . - -:playedBy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Played by"@en . - -:providesContractTotalPaymentValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional Information: This corresponds to BT-779 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPaymentValue))"@en ; - skos:prefLabel "Provides contract total payment value"@en . - -:providesContractTotalPenaltyValue a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional Information: This corresponds to BT-782 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPenaltyValue))"@en ; - skos:prefLabel "Provides contract total penalty value"@en . - -:providesRulingOnRemedy a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "States the measures to be taken after a review procedure. (epo:ReviewDecision -> at-voc:remedy-type (+epo:providesRulingOnRemedy))"@en ; - skos:prefLabel "Provides ruling on remedy"@en . - -:refersToAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to award decision"@en . - -:refersToContract a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to contract"@en . - -:refersToContractToBeModified a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to contract to be modified"@en . - -:refersToLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to lot"@en . - -:refersToLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to lot group"@en . - -:refersToLotGroupAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to lot group award information"@en . - -:refersToNonPublishedElement a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to non published element"@en . - -:refersToNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to notice"@en . - -:refersToNoticeAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to notice award information"@en . - -:refersToOriginalNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to original notice"@en . - -:refersToPlannedPart a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to planned part"@en . - -:refersToPrevious a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to previous"@en . - -:refersToPreviousNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This corresponds in eForms to BT-758 Change Notice Version Identifier. (epo:NoticeChange -> epo:Notice (+epo:refersToPreviousNotice))"@en ; - skos:prefLabel "Refers to previous notice"@en . - -:refersToPreviousProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Reference to a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier (epo:DirectAwardTerm -> epo:Procedure (+epo:refersToPreviousProcedure))"@en ; - skos:prefLabel "Refers to previous procedure"@en . - -:refersToPreviousProcedureLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Reference to one or more Lots in a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier WG Approval 22/11/2019 14:33:55 (epo:DirectAwardTerm -> epo:Lot (+epo:refersToPreviousProcedureLot))"@en ; - skos:prefLabel "Refers to previous procedure lot"@en . - -:refersToPreviousReview a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BT-785 \"Review Previous Identifier\". (epo:ReviewObject -> epo:ReviewObject (+epo:refersToPreviousReview))"@en ; - skos:prefLabel "Refers to previous review"@en . - -:refersToProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to procedure"@en . - -:refersToProject a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to project"@en . - -:refersToRole a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Refers to role"@en . - -:requestsRemedyType a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Additional information: This relation corresponds in eForms to BT-792 Review Remedy Type (epo:ReviewRequest -> at-voc:remedy-type (+epo:requestsRemedyType))"@en ; - skos:prefLabel "Requests remedy type"@en . - -:resolvesReviewRequest a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Resolves review request"@en . - -:resultsFromLotAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Results from lot award decision"@en . - -:resultsFromMiniCompetitionAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Results from mini competition award decision"@en . - -:resultsInDynamicPurchasingSystem a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Results in dynamic purchasing system"@en . - -:setsGroupingContextForLot a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Sets grouping context for lot"@en . - -:signedByBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Signed by buyer"@en . - -:signedByContractor a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Signed by contractor"@en . - -:signsAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Signs award decision"@en . - -:specifiesAwardCriterion a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies award criterion"@en . - -:specifiesBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies buyer"@en . - -:specifiesCatalogueProvider a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies catalogue provider"@en . - -:specifiesCatalogueReceiver a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies catalogue receiver"@en . - -:specifiesDeliverable a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies deliverable"@en . - -:specifiesDeliveryAgreementLocation a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies delivery agreement location"@en . - -:specifiesPlaceOfDelivery a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies place of delivery"@en . - -:specifiesPlaceOfDespatch a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies place of despatch"@en . - -:specifiesProcurementCriteriaSummary a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies procurement criteria summary"@en . - -:specifiesProcurementCriterion a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:editorialNote "In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria."@en, - "When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions."@en ; - skos:prefLabel "Specifies procurement criterion"@en . - -:specifiesSubcontractors a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Specifies subcontractors"@en . - -:substantiatesExclusionGround a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Substantiates exclusion ground"@en . - -:summarisesInformationForAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:definition "Relates to submission for the given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 (epo:SubmissionStatisticalInformation -> epo:AwardDecision (+epo:summarisesInformationForAwardDecision))"@en ; - skos:editorialNote "Check definitions for all concepts and relations."@en ; - skos:prefLabel "Summarises information for award decision"@en . - -:usesCandidateList a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Uses candidate list"@en . - -:usesChannel a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Uses channel"@en . - -:usesTechnique a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:editorialNote "In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3)"@en ; - skos:prefLabel "Uses technique"@en . - -cccev:Constraint a owl:Class ; - rdfs:subClassOf cccev:Requirement ; - skos:definition "Limitation applied to an Information Concept. Additional Information: Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context."@en ; - skos:prefLabel "Constraint"@en . - -cccev:ContactPoint a owl:Class ; - skos:definition "Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. Additional information: This class represents the contact information for a Public Service, Channel, Public Organisation, etc. The Contact Point could be a role, email address, telephone number, etc. WG approval 5/11/2019"@en ; - skos:editorialNote "there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..*"@en ; - skos:prefLabel "Contact point"@en . - -cccev:Evidence a owl:Class ; - skos:definition "Proof that a Requirement is met."@en ; - skos:prefLabel "Evidence"@en . - -cccev:InformationConcept a owl:Class ; - skos:definition "Piece of information that the Evidence provides or the Requirement needs."@en ; - skos:prefLabel "Information concept"@en . - -cccev:Person a owl:Class ; - rdfs:subClassOf foaf:Person ; - skos:definition "A individual human being who may be dead or alive, but not imaginary."@en ; - skos:prefLabel "Person"@en . - -cccev:PublicOrganisation a owl:Class ; - rdfs:subClassOf org:Organization ; - skos:definition "An Organisation that is defined as being part of the public sector by a legal framework at any level. Additional information: A body governed by public law: - (a) established for the specific Purpose of meeting needs in the general interest - (b) having legal personality; - (c) financed, for the most part by the State, or regional or local authorities. Examples of Public Organisations are municipality, international public body, ministry, others. WG Approval 28/04/2020"@en ; - skos:prefLabel "Public organisation"@en . - -cccev:address a owl:ObjectProperty ; - skos:definition "Associates any Resource with the corresponding Address. Additional Information: Asserting the address relationship implies that the Resource has an Address. (org:Organization -> locn:Address (+cv:address))"@en ; - skos:prefLabel "Address"@en . - -cccev:bias a owl:DatatypeProperty ; - skos:definition "Parameter used to adjust the evaluation of the Criterion. Additional Information: The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the \"presence of local preferences distorting international specialisation and resource allocation\". When quantified, this systematic error can be removed. (cccev:Criterion)"@en ; - skos:prefLabel "Bias"@en . - -cccev:birthDate a owl:DatatypeProperty ; - skos:definition "The point in time on which the Person was born. (cpv:Person)"@en ; - skos:prefLabel "Birth date"@en . - -cccev:confidentialityLevelType a owl:ObjectProperty ; - skos:definition "Security classification assigned to an Evidence e.g. classified, sensitive, public. Additional Information: Classifications should be defined by an organisation/country as an outcome of a security assessment. (cccev:Evidence -> at-voc:confidentiality-level (+cccev:confidentialityLevelType))"@en ; - skos:prefLabel "Confidentiality level type"@en . - -cccev:constrains a owl:ObjectProperty ; - skos:definition "Information Concept about which a Constraint expresses a limitation. Additional Information: Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation. (cccev:Constraint -> cccev:InformationConcept (+cccev:constrains))"@en ; - skos:prefLabel "Constrains"@en . - -cccev:coordinates a owl:DatatypeProperty ; - skos:definition "The coordinate list. (locn:Geometry)"@en ; - skos:prefLabel "Coordinates"@en . - -cccev:email a owl:DatatypeProperty ; - skos:definition "The email of the Organisation. (cpov:ContactPoint)"@en ; - skos:prefLabel "Email"@en . - -cccev:latitude a owl:DatatypeProperty ; - skos:definition "The latitude. (locn:Geometry)"@en ; - skos:prefLabel "Latitude"@en . - -cccev:longitude a owl:DatatypeProperty ; - skos:definition "The longitude. (locn:Geometry)"@en ; - skos:prefLabel "Longitude"@en . - -cccev:registeredAddress a owl:ObjectProperty ; - skos:definition "The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. (cpv:Person -> locn:Address (+cv:registeredAddress)) The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. (org:Organization -> locn:Address (+cv:registeredAddress))"@en ; - skos:prefLabel "Registered address"@en . - -cccev:supportsConcept a owl:ObjectProperty ; - skos:definition "Information Concept providing facts found/inferred from the Evidence. Additional Information: Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as \"I am older that 18 years\" or \"this is a FairTrade product\". (cccev:Evidence -> cccev:InformationConcept (+cccev:supportsConcept))"@en ; - skos:prefLabel "Supports concept"@en . - -cccev:supportsRequirement a owl:ObjectProperty ; - skos:definition "Requirement for which the Evidence provides proof. (cccev:Evidence -> cccev:Requirement (+cccev:supportsRequirement))"@en ; - skos:prefLabel "Supports requirement"@en . - -cccev:telephone a owl:DatatypeProperty ; - skos:definition "A telephone number through which the Contact Point can be contacted. (cpov:ContactPoint)"@en ; - skos:prefLabel "Telephone"@en . - -cccev:weight a owl:DatatypeProperty ; - skos:definition "Relative importance of the Criterion. Additional Information: The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1. (cccev:Criterion)"@en ; - skos:prefLabel "Weight"@en . - -cccev:weightingConsiderationDescription a owl:DatatypeProperty ; - skos:definition "Explanation of how the weighting of a Criterion is to be used. Additional Information: This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process. (cccev:Criterion)"@en ; - skos:prefLabel "Weighting consideration description"@en . - -at-voc:EU-programme a skos:ConceptScheme ; - skos:definition "The EU programme authority table (AT) is a controlled vocabulary providing the list of programmes created and coordinated by the European Union and financially supported by the European Union or, in a few cases, by the contributions from the Member States. It has been developed specifically for the EU Budget as open linked data project. It indicates the authority code and start-use date of each concept and gives labels in all official EU languages."@en ; - skos:prefLabel "E u-programme"@en . - -at-voc:accessibility a skos:ConceptScheme ; - skos:definition "This table provides a list of options for the use of accessibility Criteria for Person with disabilities in the technical specifications within the domain of Public Procurement."@en ; - skos:prefLabel "Accessibility"@en . - -at-voc:applicability a skos:ConceptScheme ; - skos:definition "This table provides a list of the options pertinent to be chosen for a matter concerning the applicability of predefined fields. It is designed for but not restricted to the context of public procurement."@en ; - skos:prefLabel "Applicability"@en . - -at-voc:award-criterion-type a skos:ConceptScheme ; - skos:definition "This table provides the list of rules to be taken into account for the Award Decisions within the in public Procurement Procedures. The initial values are those foreseen in the public procurement directives of 2014 (Directives 2014/23/EU, 2014/24/EU and 2014/25/EU)."@en ; - skos:prefLabel "Award-criterion-type"@en . - -at-voc:buyer-legal-type a skos:ConceptScheme ; - skos:definition "This table provides a list of the type of Procuring Authorities within the domain of public procurement according to legislation."@en ; - skos:prefLabel "Buyer-legal-type"@en . - -at-voc:change-corrig-justification a skos:ConceptScheme ; - skos:definition "This table provides the codes and values used in case of justification of corrections applied to a Notice within the context of Public Procurement."@en ; - skos:prefLabel "Change-corrig-justification"@en . - -at-voc:communication-justification a skos:ConceptScheme ; - skos:definition "This table provides the justification for restricting access rights to resources within the context of Public Procurement"@en ; - skos:prefLabel "Communication-justification"@en . - -at-voc:confidentiality-level a skos:ConceptScheme ; - skos:definition "The Confidentiality level authority table is a controlled vocabulary used to define the information confidentiality levels according to the European Commission Security Notice ‘Information assessment and classification’, C(2019) 1903 final, 5.3.2019."@en ; - skos:prefLabel "Confidentiality-level"@en . - -at-voc:contract-nature a skos:ConceptScheme ; - skos:definition "This table provides a list of different types of subjects and goods that can be acquired by means of a public Contract such as works, supplies and services by one or more Contracting Authorities from Economic Operators."@en ; - skos:prefLabel "Contract-nature"@en . - -at-voc:country a skos:ConceptScheme ; - skos:definition "The Country authority table is a controlled vocabulary that lists concepts associated with names of countries and territories. Its main scope is to support documentary metadata activities. The concepts included are correlated with the ISO 3166 international standard. ISO 3166-1 contains a two-letter code which is recommended as the general purpose code, a three-letter code which has better mnenomic properties and a numeric-3 code which can be useful if script independence of the codes is important. The authority code relies on the ISO 3166-1/alpha-3 positions. If an authority code is needed for a country without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic or numeric. A country code comparison is provided between ISO codes, IANA codes (Internet Country-code Top-level Domains) and TIR (Transport International par la Route) Vehicle system codes."@en ; - skos:prefLabel "Country"@en . - -at-voc:cpv a skos:ConceptScheme ; - skos:definition "To support an effective Single Market, the Commission encourages suppliers and Contracting Authorities/Entities to adopt best practice and use electronic communication and information technology to provide all the relevant information, so as to ensure best value for money in Public Procurement."@en ; - skos:prefLabel "Cpv"@en . - -at-voc:criterion a skos:ConceptScheme ; - skos:definition "This table provides Criteria used for Public Procurement Procedures."@en ; - skos:prefLabel "Criterion"@en . - -at-voc:currency a skos:ConceptScheme ; - skos:definition "The Currency authority table is a controlled vocabulary that lists concepts associated with currencies and currency subunits. The concepts included are correlated with the ISO 4217 international standard."@en ; - skos:prefLabel "Currency"@en . - -at-voc:direct-award-justification a skos:ConceptScheme ; - skos:definition "This table provides the list of reasons for using a Procedure which allows awarding Contracts directly without the Requirement of publishing a call for competition in the Official Journal of the European Union."@en ; - skos:prefLabel "Direct-award-justification"@en . - -at-voc:dps-usage a skos:ConceptScheme ; - skos:definition "This table provides a list wether a dynamic purchasing system is involved in a Procurement and, in case of central purchasing bodies, whether it can be used by buyers not listed in the Notice of the Official Journal of the European Union."@en ; - skos:prefLabel "Dps-usage"@en . - -at-voc:economic-operator-size a skos:ConceptScheme ; - skos:definition "This table provides the different categories in which the Tenderers to whom a Contract can be awarded are classified, according to their size (using as Criteria the number of employees)."@en ; - skos:prefLabel "Economic-operator-size"@en . - -at-voc:environmental-impact a skos:ConceptScheme ; - skos:definition "This table provides the information about whether a Procurement includes a process to procure goods, services and works with a reduced Environmental Impact throughout their life cycle."@en ; - skos:prefLabel "Environmental-impact"@en . - -at-voc:form-type a skos:ConceptScheme ; - skos:definition "This table provides the codes and values used for the type of forms published on TED."@en ; - skos:prefLabel "Form-type"@en . - -at-voc:framework-agreement a skos:ConceptScheme ; - skos:definition "This table provides the list of codes to distinguish the different type Framework Agreement involved in a Tender."@en ; - skos:prefLabel "Framework-agreement"@en . - -at-voc:innovative-acquisition a skos:ConceptScheme ; - skos:definition "This table provides the codes and values used for innovative works, supplies or services being bought."@en ; - skos:prefLabel "Innovative-acquisition"@en . - -at-voc:irregularity-type a skos:ConceptScheme ; - skos:definition "This code list refers generally to the types of irregularities described in Section 2 of the Annex to the Commission Decision C(2019) 3452."@en ; - skos:prefLabel "Irregularity-type"@en . - -at-voc:language a skos:ConceptScheme ; - skos:definition "The Language authority table is a controlled vocabulary that lists concepts associated with languages. Its main scope is to support activities associated with publication process. The concepts included are correlated with the ISO 639 international standard. This standard is issued in several parts: ISO 639-1 contains strictly two alphabetic letters (alpha-2), ISO 639-2/B (B = bibliographic) is used for bibliographic purpose (alpha-3), ISO 639-2/T (T = terminology) is used for technical purpose (alpha-3), ISO 639-3 covers all the languages and macro-languages of the world (alpha-3); the values are compliant with ISO 639-2/T. If an authority code is needed for a language without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic."@en ; - skos:prefLabel "Language"@en . - -at-voc:legal-basis a skos:ConceptScheme ; - skos:definition "This table provides the legal basis based on the legal acts used for a given Public Procurement Procedure. The table is provided by the Publications Office."@en ; - skos:prefLabel "Legal-basis"@en . - -at-voc:main-activity a skos:ConceptScheme ; - skos:definition "This table provides the list of main activities of the Buyers. The codes associated with Contracting Authorities are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The codes associated with contracting entities are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14)."@en ; - skos:prefLabel "Main-activity"@en . - -at-voc:measurement-unit a skos:ConceptScheme ; - skos:definition "The Measurement unit authority table is a controlled vocabulary listing units of measurement with their authority codes. The labels and symbols are given in all official EU languages. If available, the codes are based on the code list recommendation N°. 20 \"Codes for Units of Measure Used in International Trade\" (as revised periodically) maintained and published by UNECE through its Center for Trade Facilitation and Electronic Business (UN/CEFACT). The Measurement unit authority table is maintained by the Publications Office of the European Union on the EU Vocabularies website."@en ; - skos:prefLabel "Measurement-unit"@en . - -at-voc:missing-info-submission a skos:ConceptScheme ; - skos:definition "This table provides the list of codes indicating wether Tenderer-related information (complete or partial) can be supplemented even after the submission deadline."@en ; - skos:prefLabel "Missing-info-submission"@en . - -at-voc:modification-justification a skos:ConceptScheme ; - skos:definition "This table provides the main reasons for modifying a Contract within the domain of Public Procurement."@en ; - skos:prefLabel "Modification-justification"@en . - -at-voc:non-award-justification a skos:ConceptScheme ; - skos:definition "This table provides the list of reasons of the Buyer for not choosing a Winner in the Procurement Procedure."@en ; - skos:prefLabel "Non-award-justification"@en . - -at-voc:non-publication-justification a skos:ConceptScheme ; - skos:definition "This table provides codes and values for the main reasons for not immediately publishing a Notice within the context of Public Procurement."@en ; - skos:prefLabel "Non-publication-justification"@en . - -at-voc:notice-type a skos:ConceptScheme ; - skos:definition "This table provides a list of Public Procurement Notices according to procurement legislation published once a project is approved."@en ; - skos:prefLabel "Notice-type"@en . - -at-voc:number-fixed a skos:ConceptScheme ; - skos:definition "This table provides the codes linked to fix values within the context of Public Procurement."@en ; - skos:prefLabel "Number-fixed"@en . - -at-voc:number-threshold a skos:ConceptScheme ; - skos:definition "This table provides the codes linked to the type of threshold values within the context of Public Procurement."@en ; - skos:prefLabel "Number-threshold"@en . - -at-voc:number-weight a skos:ConceptScheme ; - skos:definition "This table provides the codes linked to the type of weight values used in Award Criteria within the context of Public Procurement."@en ; - skos:prefLabel "Number-weight"@en . - -at-voc:nuts a skos:ConceptScheme ; - skos:definition "The NUTS classification (Nomenclature of territorial units for statistics) is a hierarchical system for dividing up the economic territory of the EU and the UK. The NUTS 2021 compiles the versions 2010, 2013, 2016 and 2021 of the NUTS classification as well as the Statistical Regions for countries that do not belong to the EU such as candidate countries, potential candidates or countries belonging to the EFTA (European Free Trade Association)."@en ; - skos:prefLabel "Nuts"@en . - -at-voc:other-place-service a skos:ConceptScheme ; - skos:definition "This table provides the broad geopolitical areas linked to the Location of works and the place of performance or delivery within the context of Public Procurement."@en ; - skos:prefLabel "Other-place-service"@en . - -at-voc:permission a skos:ConceptScheme ; - skos:definition "This table provides the codes linked to the different values of permission and/or obligation."@en ; - skos:prefLabel "Permission"@en . - -at-voc:procurement-procedure-type a skos:ConceptScheme ; - skos:definition "This table provides a list of activities leading to the conclusion of public Contracts used in Public Procurement according to the legislation."@en ; - skos:prefLabel "Procurement-procedure-type"@en . - -at-voc:received-submission-type a skos:ConceptScheme ; - skos:definition "This table provides the list of relevant categories used to classify Tenders or requests to participate received within the context of Public Procurement."@en ; - skos:prefLabel "Received-submission-type"@en . - -at-voc:remedy-type a skos:ConceptScheme ; - skos:definition "This table describes the measures taken following a Review."@en ; - skos:prefLabel "Remedy-type"@en . - -at-voc:requirement-stage a skos:ConceptScheme ; - skos:definition "This table describes when and whether a given Requirement must be provided in a Procedure."@en ; - skos:prefLabel "Requirement-stage"@en . - -at-voc:reserved-procurement a skos:ConceptScheme ; - skos:definition "This table provides the values used to indicate wether the participation in the Procurement is reserved for specific Organisations."@en ; - skos:prefLabel "Reserved-procurement"@en . - -at-voc:review-body-type a skos:ConceptScheme ; - skos:definition "This table covers the list of organisations providing the review of a given procedure."@en ; - skos:prefLabel "Review-body-type"@en . - -at-voc:review-decision-type a skos:ConceptScheme ; - skos:definition "This table describes the decision made a review body."@en ; - skos:prefLabel "Review-decision-type"@en . - -at-voc:selection-criterion a skos:ConceptScheme ; - skos:definition "This table provides the list of conditions that are concerned for evaluation purposes. In the domain of Public Procurement, Selection Criteria are normally based on a specific legal framework. This codelist is a subset of the ESPD codelist CriterionTaxonomy."@en ; - skos:prefLabel "Selection-criterion"@en . - -at-voc:social-objective a skos:ConceptScheme ; - skos:definition "This table provides the values linked to any social objective promoted by the technical specifications, Award Criteria, Selection Criteria or Contract performance conditions included in a Procurement."@en ; - skos:prefLabel "Social-objective"@en . - -at-voc:subcontracting-indication a skos:ConceptScheme ; - skos:definition "This table provides the list of codes and values used to indicate information regarding the share of parts of a Contract to third parties. The share may refer to the portion of work, services or supplies and/or to the subject matter being subcontracted."@en ; - skos:prefLabel "Subcontracting-indication"@en . - -at-voc:subcontracting-obligation a skos:ConceptScheme ; - skos:definition "This table provides the list of codes and values used for the obligation of the Economic Operator of sharing parts of the original Contract to third parties. The share may refer to the portion of work, services or supplies."@en ; - skos:prefLabel "Subcontracting-obligation"@en . - -at-voc:timeperiod a skos:ConceptScheme ; - skos:definition "The Time-period authority table is a controlled vocabulary which lists the periods of time in the 24 official languages of the EU. It enumerates the names of the seasons, months, weekdays and the main units of time when the issues are published. It also contains concepts for ‘unlimited’ or ‘unknown’ time periods."@en ; - skos:prefLabel "Timeperiod"@en . - -at-voc:usage a skos:ConceptScheme ; - skos:definition "This table provides the list of codes and values indicating the application of Criteria or other concepts and information."@en ; - skos:prefLabel "Usage"@en . - -at-voc:winner-selection-status a skos:ConceptScheme ; - skos:definition "This table provides the list of codes and values used to indicate whether a tenderer was chosen to be awarded with a Contract and wether the competition is open."@en ; - skos:editorialNote "This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping"@en ; - skos:prefLabel "Winner-selection-status"@en . - -dcterms:Location a owl:Class ; - skos:definition "An identifiable geographic place or named place."@en ; - skos:prefLabel "Location"@en . - -dcterms:alternative a owl:DatatypeProperty ; - skos:definition "Any name by which an individual is known other than their full name. WG 09/11/2021 (cpv:Person)"@en ; - skos:prefLabel "Alternative"@en . - -dcterms:description a owl:DatatypeProperty ; - skos:definition "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:ProcurementElement) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:System) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:AgentInRole) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cpov:ContactPoint) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cv:Channel) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:NonDisclosureAgreementTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SecurityClearanceTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SubcontractTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cccev:InformationConcept) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cccev:Requirement) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Technique) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SubcontractingEstimate) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:ElectronicSignature) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Document) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Fund)"@en ; - skos:prefLabel "Description"@en . - -dcterms:issued a owl:DatatypeProperty ; - skos:definition "Date of formal issuance of the resource. Additional information: This is generally used for modules other than eNotice. The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. WG approval 26/01/2023 (epo:Document)"@en ; - skos:prefLabel "Issued"@en . - -dcterms:title a owl:DatatypeProperty ; - skos:definition "A name given to the resource. WG approval 30/05/2023 (epo:ProcurementElement) A name given to the resource. WG approval 30/05/2023 (foaf:Agent) A name given to the resource. WG approval 30/05/2023 (epo:AgentInRole) A name given to the resource. WG approval 30/05/2023 (epo:Document) A name given to the resource. WG approval 30/05/2023 (epo:Fund)"@en ; - skos:prefLabel "Title"@en . - -dcterms:type a owl:ObjectProperty ; - skos:definition "Category to which the Requirement belongs. (cccev:Criterion -> at-voc:criterion (+dct:type))"@en ; - skos:prefLabel "Type"@en . - -rdf:PlainLiteral a rdfs:Datatype ; - skos:prefLabel "Plain literal"@en . - -xsd:anyURI a rdfs:Datatype ; - skos:prefLabel "Any u r i"@en . - -xsd:boolean a rdfs:Datatype ; - skos:prefLabel "Boolean"@en . - -xsd:date a rdfs:Datatype ; - skos:prefLabel "Date"@en . - -xsd:dateTime a rdfs:Datatype ; - skos:prefLabel "Date time"@en . - -xsd:decimal a rdfs:Datatype ; - skos:prefLabel "Decimal"@en . - -xsd:integer a rdfs:Datatype ; - skos:prefLabel "Integer"@en . - -owl:Thing a owl:Class ; - skos:definition "Any individual in the domain of discourse is a Thing. Additional Information: The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing."@en ; - skos:prefLabel "Thing"@en . - -skos:notation a owl:DatatypeProperty ; - skos:definition "The literal identifying an entity, like a person or an object. (adms:Identifier)"@en ; - skos:prefLabel "Notation"@en . - -skos:prefLabel a owl:DatatypeProperty ; - skos:definition "The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 (cccev:InformationConcept) The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 (cccev:Requirement)"@en ; - skos:prefLabel "Pref label"@en . - -time:TemporalUnit a skos:ConceptScheme ; - skos:definition "standard duration, which provides the scale factor for a time extent, or the granularity or precision for a time position."@en ; - skos:prefLabel "Temporal unit"@en . - -time:numericDuration a owl:DatatypeProperty ; - skos:definition "Value of a temporal extent expressed as a number. (epo:SpecificDuration)"@en ; - skos:prefLabel "Numeric duration"@en . - -time:unitType a owl:ObjectProperty ; - skos:prefLabel "Unit type"@en . - -adms:Identifier a owl:Class ; - skos:definition "A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information."@en ; - skos:prefLabel "Identifier"@en . - -adms:identifier a owl:ObjectProperty ; - skos:definition "A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:Project -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:LotGroup -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:ProcurementElement -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (foaf:Agent -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (dct:Location -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (cccev:InformationConcept -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Document -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Fund -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:Consignment -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:ShipmentInformation -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-cat:Line -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:AbstractContainer -> adms:Identifier (+adms:identifier))"@en ; - skos:prefLabel "Identifier"@en . - -adms:schemaAgency a owl:DatatypeProperty ; - skos:definition "The name of the agency that issued the identifier. (adms:Identifier)"@en ; - skos:prefLabel "Schema agency"@en . - -locn:Address a owl:Class ; - skos:definition "The particulars of the place where a Person or an Organisation is located. WG Approval 28/04/2020 Additional Information: An \"Address Representation\" as conceptually defined by the INSPIRE Address Representation data type: \"Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.\". The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - full address (the complete address as a formatted string) - addressID (a unique identifier for the address) The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL."@en ; - skos:prefLabel "Address"@en . - -locn:Geometry a owl:Class ; - skos:definition "The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. Additional Information: This class defines the notion of \"Geometry\" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats."@en ; - skos:prefLabel "Geometry"@en . - -locn:address a owl:ObjectProperty ; - skos:prefLabel "Address"@en . - -locn:addressArea a owl:DatatypeProperty ; - skos:definition "The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. Additional Information: This would typically be part of a city, a neighbourhood or village, e.g. Montmartre. (locn:Address)"@en ; - skos:prefLabel "Address area"@en . - -locn:addressID a owl:ObjectProperty ; - skos:definition "A globally unique identifier for each instance of an Address. Additional Information: The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID. (locn:Address -> adms:Identifier (+locn:addressID))"@en ; - skos:prefLabel "Address i d"@en . - -locn:adminUnitL1 a owl:DatatypeProperty ; - skos:definition "The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. Additional Information: Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this. (locn:Address)"@en ; - skos:prefLabel "Admin unit l1"@en . - -locn:adminUnitL2 a owl:DatatypeProperty ; - skos:definition "The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. Additional Information: Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as \"http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01\" in the ATU controlled vocabulary. (locn:Address)"@en ; - skos:prefLabel "Admin unit l2"@en . - -locn:fullAddress a owl:DatatypeProperty ; - skos:definition "The complete address written as a formatted string. Additional Information: Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is \"Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France\". (locn:Address)"@en ; - skos:prefLabel "Full address"@en . - -locn:geographicIdentifier a owl:ObjectProperty ; - skos:definition "A URI that identifies the Location. Additional Information: GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - http://dbpedia.org/resource/ISO_3166-1:GR - http://dbpedia.org/resource/ISO_3166-1:GB even when the geographic name is given as EL or UK. The use of a URIs has added advantages: - it can be used by automated systems to look up additional data (linked data); - a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. (dct:Location -> adms:Identifier (+locn:geographicIdentifier))"@en ; - skos:prefLabel "Geographic identifier"@en . - -locn:geographicName a owl:DatatypeProperty ; - skos:definition "A textual description for a Location. Additional Information: The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - \"Aθnνa\"@gr-Grek (the Greek endonym written in the Greek script) - \"Athína\"@gr-Latn (the standard Romanisation of the endonym) - \"Athens\"@en (the English language exonym) INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - use 'EL' in preference to the ISO 3166 code GR for Greece. Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code. (dct:Location)"@en ; - skos:prefLabel "Geographic name"@en . - -locn:geometry a owl:ObjectProperty ; - skos:prefLabel "Geometry"@en . - -locn:locatorDesignator a owl:DatatypeProperty ; - skos:definition "A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. Additional Information: In simpler terms, this is the building number, apartment number, etc. For an address such as \"Flat 3, 17 Bridge Street\", the locator is \"flat 3, 17\". (locn:Address)"@en ; - skos:prefLabel "Locator designator"@en . - -locn:locatorName a owl:DatatypeProperty ; - skos:definition "Proper noun(s) applied to the real world entity identified by the locator. Additional Information: The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, \"Shumann, Berlaymont\" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator. (locn:Address)"@en ; - skos:prefLabel "Locator name"@en . - -locn:postCode a owl:DatatypeProperty ; - skos:definition "The post/zip code of an address. (INSPIRE's definition is \"A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.\") Additional Information: Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example \"75000\". (locn:Address)"@en ; - skos:prefLabel "Post code"@en . - -locn:postName a owl:DatatypeProperty ; - skos:definition "The key postal division of the address, usually the city. (INSPIRE's definition is \"One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, \"Paris\". (locn:Address)"@en ; - skos:prefLabel "Post name"@en . - -locn:thoroughfare a owl:DatatypeProperty ; - skos:definition "An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. Additional Information: For example, \"Avenue des Champs-Élysées\". (locn:Address)"@en ; - skos:prefLabel "Thoroughfare"@en . - -person:birthName a owl:DatatypeProperty ; - skos:definition "Family name of the Person given upon their birth. WG Approval 09/11/2021 (cpv:Person)"@en ; - skos:prefLabel "Birth name"@en . - -person:patronymicName a owl:DatatypeProperty ; - skos:definition "Name based on the given name of the Person's father. WG Approval 09/11/2021 (cpv:Person)"@en ; - skos:prefLabel "Patronymic name"@en . - -person:placeOfBirth a owl:ObjectProperty ; - skos:definition "The Location where the Person was born. (cpv:Person -> dct:Location (+person:placeOfBirth))"@en ; - skos:prefLabel "Place of birth"@en . - -person:placeOfDeath a owl:ObjectProperty ; - skos:definition "The Location where the Person died. (cpv:Person -> dct:Location (+person:placeOfDeath))"@en ; - skos:prefLabel "Place of death"@en . - -foaf:familyName a owl:DatatypeProperty ; - skos:definition "The hereditary surname of a family. (cpv:Person)"@en ; - skos:prefLabel "Family name"@en . - -foaf:givenName a owl:DatatypeProperty ; - skos:definition "The name(s) that identify the Person within a family with a common surname. (cpv:Person)"@en ; - skos:prefLabel "Given name"@en . - -foaf:name a owl:DatatypeProperty ; - skos:definition "The complete name of the Person as one string. (cpv:Person)"@en ; - skos:prefLabel "Name"@en . - -:involvesBuyer a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Involves buyer"@en . - -cccev:Channel a owl:Class ; - skos:definition "A medium through which Agents interact. Additional Information Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. See also Directive recitals 53 to 56. WG approval 2023-02-14"@en ; - skos:editorialNote "based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure"@en ; - skos:prefLabel "Channel"@en . - -cccev:Criterion a owl:Class ; - rdfs:subClassOf cccev:Requirement ; - skos:definition "Condition for evaluation or assessment. Additional Information: In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service."@en ; - skos:prefLabel "Criterion"@en . - -cccev:hasRequirement a owl:ObjectProperty ; - skos:definition "A more specific Requirement that is part of the Requirement. (cccev:Requirement -> cccev:Requirement (+cccev:hasRequirement))"@en ; - skos:prefLabel "Has requirement"@en . - -foaf:Person a owl:Class ; - rdfs:subClassOf foaf:Agent ; - skos:definition "The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF."@en ; - skos:prefLabel "Person"@en . - -:AwardDecision a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "Resolution of the Buyer as to the result of the Procurement Procedure. WG approval 14/11/2018"@en ; - skos:prefLabel "Award decision"@en . - -:Buyer a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AcquiringParty ; - skos:definition "A Role of an Agent that awards a Contract and/or purchases items. Additional information: In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. In Post-Award the buyer generally refers to the purchaser of items."@en ; - skos:prefLabel "Buyer"@en . - -:CentralPurchasingBody a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Buyer ; - skos:definition "Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. Additional Information: In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; WG approval 05/08/2021"@en ; - skos:prefLabel "Central purchasing body"@en . - -:ContractSpecificTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Term ; - skos:definition "Gathering class for conditions and stipulations related to a contract in the Post-Award Phase."@en ; - skos:prefLabel "Contract specific term"@en . - -:Duration a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "The length of time in which a concept occurs."@en ; - skos:prefLabel "Duration"@en . - -:Estimate a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "An approximate calculation or a judgement of the value, number, Quantity or extent of something."@en ; - skos:prefLabel "Estimate"@en . - -:EvaluationTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :LotSpecificTerm ; - skos:definition "Conditions and stipulations defining particularities of the Tender evaluation. (WG approval 23/11/2018)"@en ; - skos:prefLabel "Evaluation term"@en . - -:ProcurementElement a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Gathering class for critical/central elements in the Procurement Process. TODO: add definition Additional information: Alias: ProcurementComponent"@en ; - skos:prefLabel "Procurement element"@en . - -:ProcurementObject a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementElement ; - skos:definition "The whole or a division of goods, services or works to be procured. Additional Information: Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. In a sense, such an \"object\" can constitute the \"object of a Contract\". To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.). Note: Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and \"purpose\" properties."@en ; - skos:editorialNote "Procedure/ PlannedProcurementPart / Lot are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the \"process\" description and \"whole procurement subject matter\". TODO: revise this definition. TODO: specify that all procedures have al least one lot."@en, - "Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future."@en ; - skos:prefLabel "Procurement object"@en . - -:QualificationCriteriaSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriteriaSummary ; - skos:prefLabel "Qualification criteria summary"@en . - -:QualificationCriterion a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ProcurementCriterion ; - skos:definition "Criterion used in the first stage of procurement. WG approval 30/05/2023"@en ; - skos:prefLabel "Qualification criterion"@en . - -:ReviewObject a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "Information about a Review Request or a Review Decision. Additional information: This class corresponds to the BG-714 Review in eForms."@en ; - skos:editorialNote "What are the entities that can be reviewed?"@en ; - skos:prefLabel "Review object"@en . - -:isSubjectToTerm a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Is subject to term"@en . - -:AgentInRole a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Relative concept that ties an Agent to a part they play in a given Situational Context. Additional information: The classification of roles is based is based on the degree of involvement into the Procurement Process: - Primary (Procurement) Pole is directly involved in the Procurement Process; - Secondary (Procurement sub-) Role is secondary to the Procurement Process - Tertiary (Related) Role is not involved in the Procurement Process."@en ; - skos:prefLabel "Agent in role"@en . - -:AuxiliaryParty a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AgentInRole ; - skos:definition "Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it."@en ; - skos:prefLabel "Auxiliary party"@en . - -:ContextSpecificDescription a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity."@en ; - skos:prefLabel "Context specific description"@en . - -:ContextualProjection a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Projection of an Entity and all of its properties that hold in a given Situation Context. Additional Information: The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) We say that ContextualProjection *describes* an Entity. Adaptation of ContextSlices pattern encoding a 4D view. http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices"@en ; - skos:prefLabel "Contextual projection"@en . - -:ElementDescription a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Description about a specific resource."@en ; - skos:prefLabel "Element description"@en . - -:NoticeDescription a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Descriptions about the notice publishing, or providing evolutions of resources."@en ; - skos:prefLabel "Notice description"@en . - -:ProcurementCriteriaSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf cccev:Requirement ; - skos:definition "WG approval 24/01/2023"@en ; - skos:prefLabel "Procurement criteria summary"@en . - -:ProcurementCriterion a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf cccev:Criterion ; - skos:definition "A criterion specific to Procurement. Additional Information: This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). WG Approval 23/04/2020"@en ; - skos:prefLabel "Procurement criterion"@en . - -:SelectionCriteriaSummary a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :QualificationCriteriaSummary ; - skos:prefLabel "Selection criteria summary"@en . - -:StatisticalInformation a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextSpecificDescription ; - skos:definition "Statistical data on the Procedure and the Lot. Additional Information At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. Therefore this class is temporal and should cease to exist in fully electronic Procurement. The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. WG Approval 12/12/2019"@en ; - skos:prefLabel "Statistical information"@en . - -:StrategicProcurement a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Public Procurement that contributes to achieving pressing policy goals. Additional Information: Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on \"background information\". WG Approval 10/03/2020"@en ; - skos:prefLabel "Strategic procurement"@en . - -:Technique a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "Method used for conducting Procurement Procedures. Addtional information: This corresponds in eForms to BG-706 Techniques. Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). WG Approval 19/09/2019"@en ; - skos:prefLabel "Technique"@en . - -:hasElementDescription a owl:ObjectProperty ; - rdfs:isDefinedBy :core ; - skos:prefLabel "Has element description"@en . - -cccev:Requirement a owl:Class ; - skos:definition "Condition or prerequisite that is to be proven by Evidence. Additional Information: Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification."@en ; - skos:prefLabel "Requirement"@en . - -org:Organization a owl:Class ; - rdfs:subClassOf foaf:Agent ; - skos:definition "A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. (WG approval 23/11/2018)."@en ; - skos:editorialNote "A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023"@en, - "In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business."@en ; - skos:prefLabel "Organization"@en . - -foaf:Agent a owl:Class ; - skos:definition "A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. WG Approval 28/04/2020"@en ; - skos:prefLabel "Agent"@en . - -:Contract a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Document ; - skos:definition "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 ; - skos:editorialNote "Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract."@en ; - skos:prefLabel "Contract"@en . - -:Term a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A governing condition or stipulation."@en ; - skos:editorialNote "Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future."@en ; - skos:prefLabel "Term"@en . - -:ProcedureSpecificTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Term ; - skos:definition "Gathering class for conditions and stipulations related to a Procedure."@en ; - skos:editorialNote "Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms)."@en ; - skos:prefLabel "Procedure specific term"@en . - -:OfferingParty a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AgentInRole ; - skos:definition "The Role of an Agent that acts on the Economic Operator side during a Procurement Process. Additional information: As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances."@en ; - skos:prefLabel "Offering party"@en . - -:LotSpecificTerm a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :Term ; - skos:definition "Gathering class for conditions and stipulations related to a Lot."@en ; - skos:prefLabel "Lot specific term"@en . - -:Document a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019"@en ; - skos:prefLabel "Document"@en . - -:AcquiringParty a owl:Class ; - rdfs:isDefinedBy :core ; - rdfs:subClassOf :AgentInRole ; - skos:definition "The Role of an Agent that acts on the buying side of a Procurement Process."@en ; - skos:prefLabel "Acquiring party"@en . - -:core a owl:Ontology ; - dcterms:created "2021-06-01"^^xsd:date ; - dcterms:description "The eProcurement Ontology core describes the concepts and properties representing the European Public Procurement domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; - dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; - dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; - dcterms:title "eProcurement Ontology - core"@en ; - vann:preferredNamespacePrefix "epo" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment "This version is automatically generated from demo_ontology_CM.xml on 2023-11-01" ; - rdfs:seeAlso , - , - , - ; - owl:imports cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "http://data.europa.eu/a4g/ontology#core-3.1.0" ; - owl:versionIRI :core-4.0.0 ; - owl:versionInfo "4.0.0" . - diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf deleted file mode 100644 index 8289f53..0000000 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf +++ /dev/null @@ -1,8441 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology - core restrictions - http://publications.europa.eu/resource/authority/corporate-body/PUBL - The eProcurement Ontology core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology core. - This version is automatically generated from demo_ontology_CM.xml on - 2023-11-01 - - - - - 2023-11-01 - 2021-06-01 - 4.0.0 - 3.1.0 - - http://data.europa.eu/a4g/ontology#core-restriction-3.1.0 - http://data.europa.eu/a4g/ontology# - epo - © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl deleted file mode 100644 index 5d232b1..0000000 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl +++ /dev/null @@ -1,3609 +0,0 @@ -@prefix : . -@prefix adms: . -@prefix at-voc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix locn: . -@prefix org: . -@prefix owl: . -@prefix person: . -@prefix rdf: . -@prefix rdfs: . -@prefix skos: . -@prefix time: . -@prefix vann: . -@prefix xsd: . - -:agreedByBuyer rdfs:domain :ShipmentAgreement ; - rdfs:range :Buyer . - -:announcesAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :AwardDecision . - -:announcesCompletionOfContract rdfs:domain :CompletionNotice ; - rdfs:range :Contract . - -:announcesContract rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] ; - rdfs:range :Contract . - -:announcesExclusionGround rdfs:domain :ESPDRequest ; - rdfs:range :ExclusionGround . - -:announcesLot rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :Lot . - -:announcesLotGroup rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompetitionNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :LotGroup . - -:announcesLotGroupAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] ; - rdfs:range :LotGroupAwardInformation . - -:announcesNonPublishedElement rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :PublicationProvision . - -:announcesNoticeAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] ; - rdfs:range :NoticeAwardInformation . - -:announcesPlannedProcurementPart rdfs:domain :PlanningNotice ; - rdfs:range :PlannedProcurementPart . - -:announcesProcedure rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :Procedure . - -:announcesReviewObject rdfs:domain :CompletionNotice ; - rdfs:range :ReviewObject . - -:announcesRole rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ContractModificationNotice :PlanningNotice :CompetitionNotice :CompletionNotice ) ], - :ResultNotice ; - rdfs:range :AgentInRole . - -:announcesSelectionCriteria rdfs:domain :ESPDRequest ; - rdfs:range :SelectionCriterion . - -:answersAwardCriteria rdfs:domain [ a owl:Class ; - owl:unionOf ( :FinancialOffer :TechnicalOffer ) ] ; - rdfs:range :AwardCriterion . - -:answersExclusionGround rdfs:domain :ESPDResponse ; - rdfs:range :ExclusionGround . - -:answersSelectionCriteria rdfs:domain :ESPDResponse ; - rdfs:range :SelectionCriterion . - -:associatedWith a owl:AsymmetricProperty ; - rdfs:domain :Document ; - rdfs:range :Document . - -:bindsBuyer rdfs:domain :Contract ; - rdfs:range :Buyer . - -:bindsContractor rdfs:domain :Contract ; - rdfs:range :Contractor . - -:comprisesLotAwardDecision rdfs:domain :AwardDecision ; - rdfs:range :LotAwardDecision . - -:comprisesMiniCompetitionAwardDecision rdfs:domain :AwardDecision ; - rdfs:range :MiniCompetitionAwardDecision . - -:comprisesTenderAwardOutcome rdfs:domain :AwardDecision ; - rdfs:range :TenderAwardOutcome . - -:concernsContract rdfs:domain :ContractInformation ; - rdfs:range :Contract . - -:concernsOriginatorRequest rdfs:domain :OriginatorInformation ; - rdfs:range :OriginatorRequest . - -:conformsToLegalBasis rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:conformsToSpecificLegalBasis rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:containsCandidate rdfs:domain :SelectedCandidateList ; - rdfs:range :Candidate . - -:contextualisedBy rdfs:domain :AgentInRole ; - rdfs:range :ProcurementObject . - -:core-restriction a owl:Ontology ; - dcterms:created "2021-06-01"^^xsd:date ; - dcterms:description "The eProcurement Ontology core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology core."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; - dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; - dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; - dcterms:title "eProcurement Ontology - core restrictions"@en ; - vann:preferredNamespacePrefix "epo" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment """This version is automatically generated from demo_ontology_CM.xml on - 2023-11-01""" ; - rdfs:seeAlso , - , - , - ; - owl:imports :core, - cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "http://data.europa.eu/a4g/ontology#core-restriction-3.1.0" ; - owl:versionIRI :core-restriction-4.0.0 ; - owl:versionInfo "4.0.0" . - -:definesCatalogueProvider rdfs:domain :AccessTerm ; - rdfs:range :CatalogueProvider . - -:definesCatalogueReceiver rdfs:domain :AccessTerm ; - rdfs:range :CatalogueReceiver . - -:definesInformationProvider rdfs:domain :ProcedureTerm ; - rdfs:range :AuxiliaryParty . - -:definesLotGroup rdfs:domain :ProcedureTerm ; - rdfs:range :LotGroup . - -:definesPlaceOfPerformance rdfs:domain :ContractTerm ; - rdfs:range dcterms:Location . - -:definesPrize rdfs:domain :DesignContestRegimeTerm ; - rdfs:range :Prize . - -:delegatesAncillaryActivitiesTo rdfs:domain :Buyer ; - rdfs:range :ProcurementServiceProvider . - -:describesContractModification rdfs:domain :ContractModificationNotice ; - rdfs:range :ContractModification . - -:describesResultNotice rdf:domain :NoticeAwardInformation ; - rdfs:range [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] . - -:distributesOffer rdfs:domain :OfferIssuer ; - rdfs:range :Offer . - -:exposesChannel rdfs:domain :AgentInRole ; - rdfs:range cccev:Channel . - -:exposesInvoiceeChannel rdfs:domain :Buyer ; - rdfs:range cccev:Channel . - -:foreseesContractSpecificTerm rdfs:domain :ProcurementObject ; - rdfs:range :ContractSpecificTerm . - -:foreseesSubcontracting rdfs:domain :Tender ; - rdfs:range :SubcontractingEstimate . - -:foreseesTechnique rdfs:domain :PlannedProcurementPart ; - rdfs:range :Technique . - -:fulfillsRequirement rdfs:domain [ a owl:Class ; - owl:unionOf ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) ] ; - rdfs:range skos:Concept . - -:fulfillsStrategicProcurement rdfs:domain :ProcurementObject ; - rdfs:range :StrategicProcurement . - -:hasAcceleratedProcedureJustification rdfs:domain :Procedure ; - rdfs:range rdf:PlainLiteral . - -:hasAccessURL rdfs:domain :Document ; - rdfs:range xsd:anyURI . - -:hasActivityDescription rdfs:domain :Buyer ; - rdfs:range rdf:PlainLiteral . - -:hasAdditionalClassification rdfs:domain :Purpose ; - rdfs:range skos:Concept . - -:hasAdditionalContractNature rdfs:domain :ContractTerm ; - rdfs:range skos:Concept . - -:hasAlias rdfs:domain foaf:Agent ; - rdfs:range rdf:PlainLiteral . - -:hasAllegedIrregularityType rdfs:domain :ReviewRequest ; - rdfs:range skos:Concept . - -:hasAmount rdfs:domain [ a owl:Class ; - owl:unionOf ( :AllowanceChargeInformation :TaxInformation ) ] ; - rdfs:range :MonetaryValue . - -:hasAmountDueForPayment rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasAssociatedDocument rdfs:domain [ a owl:Class ; - owl:unionOf ( :DespatchAdvice :DespatchLine ) ] ; - rdfs:range :Document . - -:hasAwardCriteriaEvaluationFormula rdfs:domain :AwardEvaluationTerm ; - rdfs:range rdf:PlainLiteral . - -:hasAwardCriterionType rdfs:domain :AwardCriterion ; - rdfs:range skos:Concept . - -:hasAwardStatus rdfs:domain :AwardDecision ; - rdfs:range skos:Concept . - -:hasBaseQuantity rdfs:domain :Price ; - rdfs:range :Quantity . - -:hasBatchID rdfs:domain :Batch ; - rdfs:range adms:Identifier . - -:hasBeneficialOwner rdfs:domain :Business ; - rdfs:range cccev:Person ; - owl:inverseOf :isBeneficialOwnerOf . - -:hasBroadPlaceOfPerformance rdfs:domain :ContractTerm ; - rdfs:range skos:Concept . - -:hasBusinessSize rdfs:domain :Business ; - rdfs:range skos:Concept . - -:hasBuyerCategoryDescription rdfs:domain :FrameworkAgreementTerm ; - rdfs:range rdf:PlainLiteral . - -:hasBuyerItemID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasBuyerLegalType rdfs:domain org:Organization ; - rdfs:range skos:Concept . - -:hasCandidateList rdfs:domain :DynamicPurchasingSystem ; - rdfs:range :SelectedCandidateList . - -:hasCarrierConsignmentID rdfs:domain :Consignment ; - rdfs:range adms:Identifier . - -:hasCatalogueLineValidity rdfs:domain :CatalogueLine ; - rdfs:range :Period . - -:hasCertification rdfs:domain [ a owl:Class ; - owl:unionOf ( foaf:Person org:Organization ) ] ; - rdfs:range :Certificate . - -:hasChangeDescription rdfs:domain :ElementChangeDescription ; - rdfs:range rdf:PlainLiteral . - -:hasChangeJustification rdfs:domain :ElementChangeDescription ; - rdfs:range skos:Concept . - -:hasChangeReasonDescription rdfs:domain :ElementChangeDescription ; - rdfs:range rdf:PlainLiteral . - -:hasChargeableWeight rdfs:domain :Consignment ; - rdfs:range :Quantity . - -:hasConditionVerificationMethod rdfs:domain :QualificationCriteriaSummary ; - rdfs:range rdf:PlainLiteral . - -:hasConfirmedIrregularityType rdfs:domain :ReviewDecision ; - rdfs:range skos:Concept . - -:hasConsigneeConsignmentID rdfs:domain :Consignment ; - rdfs:range adms:Identifier . - -:hasConsignmentDeclaredStatisticsValue rdfs:domain :Consignment ; - rdfs:range :MonetaryValue . - -:hasConsignmentFreeOnBoardValue rdfs:domain :Consignment ; - rdfs:range :MonetaryValue . - -:hasConsignmentInvoiceValue rdfs:domain :Consignment ; - rdfs:range :MonetaryValue . - -:hasConstraint rdfs:domain :ProcurementCriterion ; - rdfs:range cccev:Constraint . - -:hasContactPointInRole rdfs:domain :AgentInRole ; - rdfs:range cccev:ContactPoint . - -:hasContractAmendment rdfs:domain :Contract ; - rdfs:range :AmendedContract . - -:hasContractNatureType rdfs:domain :ContractTerm ; - rdfs:range skos:Concept . - -:hasCountryCode rdfs:domain [ a owl:Class ; - owl:unionOf ( dcterms:Location locn:Address ) ] ; - rdfs:range skos:Concept . - -:hasCountryOfBirth rdfs:domain cccev:Person ; - rdfs:range skos:Concept . - -:hasCountryOfOrigin rdfs:domain :Item ; - rdfs:range skos:Concept . - -:hasCrossBorderLaw rdfs:domain :ProcedureTerm ; - rdfs:range rdf:PlainLiteral . - -:hasCurrency rdfs:domain :MonetaryValue ; - rdfs:range skos:Concept . - -:hasCurrencyCodeListAgencyID rdfs:domain :MonetaryValue ; - rdfs:range rdf:PlainLiteral . - -:hasCurrencyCodeListAgencyName rdfs:domain :MonetaryValue ; - rdfs:range rdf:PlainLiteral . - -:hasCurrencyCodeListID rdfs:domain :MonetaryValue ; - rdfs:range rdf:PlainLiteral . - -:hasDPSScope rdfs:domain :DynamicPurchaseSystemTechnique ; - rdfs:range skos:Concept . - -:hasDeclaredStatisticalValue rdfs:domain :GoodsItem ; - rdfs:range :MonetaryValue . - -:hasDeliveryLocation rdfs:domain :Price ; - rdfs:range dcterms:Location . - -:hasDeliveryPeriod rdfs:domain :DeliveryInformation ; - rdfs:range :Period . - -:hasDespatchedQuantity rdfs:domain :DespatchLine ; - rdfs:range :Quantity . - -:hasDirectAwardJustification rdfs:domain :DirectAwardTerm ; - rdfs:range skos:Concept . - -:hasDocumentRestrictionJustification rdfs:domain :AccessTerm ; - rdfs:range skos:Concept . - -:hasDocumentStatus rdfs:domain :Document ; - rdfs:range skos:Concept . - -:hasDocumentType rdfs:domain :Document ; - rdfs:range skos:Concept . - -:hasECataloguePermission rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasEInvoicingPermission rdfs:domain :ContractTerm ; - rdfs:range skos:Concept . - -:hasESubmissionPermission rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasElectronicDigest a owl:AsymmetricProperty ; - rdfs:domain :Document ; - rdfs:range :Document . - -:hasElectronicSignature rdfs:domain :Document ; - rdfs:range :ElectronicSignature . - -:hasElementDescription rdfs:domain :NoticeDescription ; - rdfs:range :ElementDescription . - -:hasEndpointIdentifier rdfs:domain cccev:Channel ; - rdfs:range adms:Identifier . - -:hasEstimatedDeliveryPeriod rdfs:domain :ShipmentInformation ; - rdfs:range :Period . - -:hasEvaluationMember rdfs:domain :EvaluationBoard ; - rdfs:range :JuryMember . - -:hasExpectedDeliveryTime rdfs:domain :Price ; - rdfs:range :Duration . - -:hasExternalSpecification rdfs:domain :Item ; - rdfs:range :Document . - -:hasFax rdfs:domain cccev:ContactPoint ; - rdfs:range rdf:PlainLiteral . - -:hasFixedValueType rdfs:domain :AwardCriterion ; - rdfs:range skos:Concept . - -:hasFollowupContractInformation rdfs:domain :DesignContestRegimeTerm ; - rdfs:range rdf:PlainLiteral . - -:hasFormType rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:hasFrameworkAgreementType rdfs:domain :FrameworkAgreementTerm ; - rdfs:range skos:Concept . - -:hasFreightForwarderConsignmentID rdfs:domain :Consignment ; - rdfs:range adms:Identifier . - -:hasFundProgramme rdfs:domain :Fund ; - rdfs:range skos:Concept . - -:hasGrossVolume rdfs:domain [ a owl:Class ; - owl:unionOf ( :AbstractContainer :Consignment ) ] ; - rdfs:range :Quantity . - -:hasGrossWeight rdfs:domain [ a owl:Class ; - owl:unionOf ( :AbstractContainer :Consignment ) ] ; - rdfs:range :Quantity . - -:hasGroupLotEvaluationMethod rdfs:domain :ProcedureTerm ; - rdfs:range rdf:PlainLiteral . - -:hasGroupType rdfs:domain :OrganisationGroup ; - rdfs:range rdf:PlainLiteral . - -:hasGuaranteeDescription rdfs:domain :SubmissionTerm ; - rdfs:range rdf:PlainLiteral . - -:hasHeight rdfs:domain :AbstractContainer ; - rdfs:range :Quantity . - -:hasInternalIdentifier rdfs:domain :ProcurementElement ; - rdfs:range adms:Identifier . - -:hasIrregularityType rdfs:domain :ReviewIrregularitySummary ; - rdfs:range skos:Concept . - -:hasItemCountryOfOrigin rdfs:domain :Tender ; - rdfs:range skos:Concept . - -:hasItemStandardID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasJustification rdfs:domain :DirectAwardTerm ; - rdfs:range rdf:PlainLiteral . - -:hasLanguage rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasLateSubmissionInformationDescription rdfs:domain :SubmissionTerm ; - rdfs:range rdf:PlainLiteral . - -:hasLateSubmissionPermission rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasLegalBasis rdfs:domain :ProcurementObject ; - rdfs:range skos:Concept . - -:hasLegalBasisDescription rdfs:domain :ProcurementObject ; - rdfs:range rdf:PlainLiteral . - -:hasLegalIdentifier rdfs:domain org:Organization ; - rdfs:range adms:Identifier . - -:hasLegalName rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasLegalRegime rdfs:domain :ProcurementObject ; - rdfs:range skos:Concept . - -:hasLength rdfs:domain :AbstractContainer ; - rdfs:range :Quantity . - -:hasLoadingLength rdfs:domain :Consignment ; - rdfs:range :Quantity . - -:hasMainActivity rdfs:domain org:Organization ; - rdfs:range skos:Concept . - -:hasMainClassification rdfs:domain :Purpose ; - rdfs:range skos:Concept . - -:hasMainFeature rdfs:domain :Procedure ; - rdfs:range rdf:PlainLiteral . - -:hasManufacturerID rdfs:domain :Manufacturer ; - rdfs:range adms:Identifier . - -:hasManufacturerItemID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasMaximumOrderQuantity rdfs:domain :CatalogueLine ; - rdfs:range :Quantity . - -:hasMaximumTemperature rdfs:domain :TemperatureSpecification ; - rdfs:range :Quantity . - -:hasMinimumQuantityGuaranteedForDelivery rdfs:domain :CatalogueLine ; - rdfs:range :Quantity . - -:hasMinimumTemperature rdfs:domain :TemperatureSpecification ; - rdfs:range :Quantity . - -:hasModificationDescription rdfs:domain :ElementModificationDescription ; - rdfs:range rdf:PlainLiteral . - -:hasModificationJustification rdfs:domain [ a owl:Class ; - owl:unionOf ( :ElementModificationDescription :AmendedContract ) ] ; - rdfs:range skos:Concept . - -:hasModificationReasonDescription rdfs:domain :ElementModificationDescription ; - rdfs:range rdf:PlainLiteral . - -:hasNationalProcedureRules rdfs:domain :ProcedureTerm ; - rdfs:range xsd:anyURI . - -:hasNationality rdfs:domain cccev:Person ; - rdfs:range skos:Concept . - -:hasNetMonetaryValue rdfs:domain :Price ; - rdfs:range :MonetaryValue . - -:hasNetQuantity rdfs:domain :Item ; - rdfs:range :Quantity . - -:hasNetVolume rdfs:domain :AbstractContainer ; - rdfs:range :Quantity . - -:hasNetWeight rdfs:domain [ a owl:Class ; - owl:unionOf ( :AbstractContainer :Consignment ) ] ; - rdfs:range :Quantity . - -:hasNonAccessibilityCriterionJustification rdfs:domain :StrategicProcurement ; - rdfs:range rdf:PlainLiteral . - -:hasNonAwardJustification rdfs:domain :AwardDecision ; - rdfs:range skos:Concept . - -:hasNonElectronicSubmissionDescription rdfs:domain :SubmissionTerm ; - rdfs:range rdf:PlainLiteral . - -:hasNonElectronicSubmissionJustification rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasNonPublicationJustification rdfs:domain :ElementConfidentialityDescription ; - rdfs:range skos:Concept . - -:hasNoticeType rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:hasNotificationContentType rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:hasNutsCode rdfs:domain [ a owl:Class ; - owl:unionOf ( dcterms:Location locn:Address ) ] ; - rdfs:range skos:Concept . - -:hasOfficialLanguage rdfs:domain :Document ; - rdfs:range skos:Concept . - -:hasOpeningDescription rdfs:domain :OpeningTerm ; - rdfs:range rdf:PlainLiteral . - -:hasOperatorLicenceID rdfs:domain :TransportMeansOperator ; - rdfs:range adms:Identifier . - -:hasOptionsDescription rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasOrderabableUnitFactorRate rdfs:domain :Price ; - rdfs:range :Quantity . - -:hasOutstandingQuantity rdfs:domain :DespatchLine ; - rdfs:range :Quantity . - -:hasPaymentArrangement rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasPerformanceConditions rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasPerformingStaffQualificationInformation rdfs:domain :ProcurementCriterion ; - rdfs:range skos:Concept . - -:hasPlaceOfPerformanceAdditionalInformation rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasPrepaidAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasPriceValidity rdfs:domain :Price ; - rdfs:range :Period . - -:hasPrimaryContactPoint rdfs:domain org:Organization ; - rdfs:range cccev:ContactPoint . - -:hasProcedureType rdfs:domain :Procedure ; - rdfs:range skos:Concept . - -:hasProcurementClassification rdfs:domain :Contract ; - rdfs:range skos:Concept . - -:hasQualificationCondition rdfs:domain :QualificationCriteriaSummary ; - rdfs:range rdf:PlainLiteral . - -:hasQualifiedValue rdfs:domain :ItemProperty ; - rdfs:range :Quantity . - -:hasQuantity rdfs:domain [ a owl:Class ; - owl:unionOf ( :OrderLine :Deliverable ) ] ; - rdfs:range :Quantity . - -:hasQuantityThreshold rdfs:domain :Price ; - rdfs:range :Quantity . - -:hasReceivedSubmissionType rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range skos:Concept . - -:hasRegistrationCountry rdfs:domain org:Organization ; - rdfs:range skos:Concept . - -:hasRenewalDescription rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasReservedProcurement rdfs:domain [ a owl:Class ; - owl:unionOf ( :ParticipationCondition :ParticipationConditionsSummary ) ] ; - rdfs:range skos:Concept . - -:hasReviewBodyType rdfs:domain :Reviewer ; - rdfs:range skos:Concept . - -:hasReviewDecisionType rdfs:domain :ReviewDecision ; - rdfs:range skos:Concept . - -:hasReviewIrregularitySummary rdfs:domain :ReviewRequestSummary ; - rdfs:range :ReviewIrregularitySummary . - -:hasRoundingAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasScheme rdfs:domain adms:Identifier ; - rdfs:range rdf:PlainLiteral . - -:hasSchemeVersion rdfs:domain adms:Identifier ; - rdfs:range rdf:PlainLiteral . - -:hasSelectionCriteriaUsage rdfs:domain :SelectionCriterion ; - rdfs:range skos:Concept . - -:hasSelectionCriterionType rdfs:domain :SelectionCriterion ; - rdfs:range skos:Concept . - -:hasSellerItemID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasSerialID rdfs:domain :Item ; - rdfs:range adms:Identifier . - -:hasStrategicProcurementDescription rdfs:domain :StrategicProcurement ; - rdfs:range rdf:PlainLiteral . - -:hasSubcontractingObligation rdfs:domain :SubcontractTerm ; - rdfs:range skos:Concept . - -:hasSubjectMatter rdfs:domain :SubcontractingEstimate ; - rdfs:range rdf:PlainLiteral . - -:hasSubmissionURL rdfs:domain :SubmissionTerm ; - rdfs:range xsd:anyURI . - -:hasTaxIdentifier rdfs:domain org:Organization ; - rdfs:range adms:Identifier . - -:hasTaxInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :Tender :Contract ) ] ; - rdfs:range :TaxInformation . - -:hasTenderSubcontractingInformation rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasThresholdType rdfs:domain cccev:Constraint ; - rdfs:range skos:Concept . - -:hasTimePeriod rdfs:domain :Period ; - rdfs:range skos:Concept . - -:hasTotalAllowanceAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTotalChargeAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTotalGoodsItemQuantity rdfs:domain [ a owl:Class ; - owl:unionOf ( :AbstractContainer :Consignment ) ] ; - rdfs:range :Quantity . - -:hasTotalLineAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTotalTaxExclusiveAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTotalTaxInclusiveAmount rdfs:domain :Order ; - rdfs:range :MonetaryValue . - -:hasTraceID rdfs:domain :GoodsItem ; - rdfs:range adms:Identifier . - -:hasTrackingID rdfs:domain :DeliveryInformation ; - rdfs:range adms:Identifier . - -:hasTransportHandlingUnitQuantity rdfs:domain :Consignment ; - rdfs:range :Quantity . - -:hasUnitCode rdfs:domain :Quantity ; - rdfs:range skos:Concept . - -:hasUnitDescription rdfs:domain :Quantity ; - rdfs:range rdf:PlainLiteral . - -:hasUnofficialLanguage rdfs:domain :Document ; - rdfs:range skos:Concept . - -:hasUsage rdfs:domain :Technique ; - rdfs:range skos:Concept . - -:hasVariantPermission rdfs:domain :SubmissionTerm ; - rdfs:range skos:Concept . - -:hasVehicleID rdfs:domain :TransportMeans ; - rdfs:range adms:Identifier . - -:hasVehicleSegmentID rdfs:domain :TransportMeans ; - rdfs:range adms:Identifier . - -:hasWeightValueType rdfs:domain :ProcurementCriterion ; - rdfs:range skos:Concept . - -:hasWidth rdfs:domain :AbstractContainer ; - rdfs:range :Quantity . - -:implementsContract rdfs:domain :OrderResponse ; - rdfs:range :Contract . - -:includesAccessibilityCriterion rdfs:domain :StrategicProcurement ; - rdfs:range skos:Concept . - -:includesTender rdfs:domain :Contract ; - rdfs:range :Tender . - -:indicatesInvoiceeContactPoint rdfs:domain :Buyer ; - rdfs:range cccev:ContactPoint . - -:involvesBuyer rdfs:domain :Procedure ; - rdfs:range :Buyer . - -:isAppointedBy rdfs:domain :EvaluationBoard ; - rdfs:range :Buyer . - -:isAssignedForEvaluationOf rdfs:domain :EvaluationBoard ; - rdfs:range :Lot . - -:isBasedOnImplementingRegulation rdfs:domain :Notice ; - rdfs:range skos:Concept . - -:isCalculatedOn rdfs:domain [ a owl:Class ; - owl:unionOf ( :AllowanceChargeInformation :TaxInformation ) ] ; - rdfs:range :MonetaryValue . - -:isFundedBy rdfs:domain :ProcurementObject ; - rdfs:range :Fund . - -:isResponsibilityOfBuyer rdfs:domain :Procedure ; - rdfs:range :Buyer . - -:isSubjectToContractSpecificTerm rdfs:domain :Contract ; - rdfs:range :ContractSpecificTerm . - -:isSubjectToLotSpecificTerm rdfs:domain :Lot ; - rdfs:range :LotSpecificTerm . - -:isSubjectToTerm rdfs:domain :ProcurementObject ; - rdfs:range :Term . - -:isSubordinatedToContract rdfs:domain :Catalogue ; - rdfs:range :Contract . - -:isSupportedBy rdf:domain :Tender ; - rdfs:range [ a owl:Class ; - owl:unionOf ( :TechnicalOffer :ESPDResponse :FinancialOffer ) ] . - -:providesRulingOnRemedy rdfs:domain :ReviewDecision ; - rdfs:range skos:Concept . - -:refersToAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; - rdfs:range :AwardDecision . - -:refersToContractToBeModified rdfs:domain :ContractModificationNotice ; - rdfs:range :Contract . - -:refersToLotGroup rdfs:domain [ a owl:Class ; - owl:unionOf ( :ContractModificationNotice :ResultNotice :CompletionNotice ) ] ; - rdfs:range :LotGroup . - -:refersToLotGroupAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; - rdfs:range :LotGroupAwardInformation . - -:refersToNonPublishedElement rdfs:domain :CompletionNotice ; - rdfs:range :PublicationProvision . - -:refersToNoticeAwardInformation rdfs:domain :CompletionNotice ; - rdfs:range :NoticeAwardInformation . - -:refersToPlannedPart rdfs:domain :AccessTerm ; - rdfs:range :PlannedProcurementPart . - -:refersToPrevious a owl:AsymmetricProperty ; - rdfs:domain :Document ; - rdfs:range :Document . - -:refersToPreviousProcedureLot rdfs:domain :DirectAwardTerm ; - rdfs:range :Lot . - -:refersToProject rdfs:domain :Order ; - rdfs:range :Project . - -:refersToRole rdfs:domain :CompletionNotice, - :ResultNotice ; - rdfs:range :AgentInRole . - -:requestsRemedyType rdfs:domain :ReviewRequest ; - rdfs:range skos:Concept . - -:resultsFromLotAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectContract :FrameworkAgreement ) ] ; - rdfs:range :LotAwardDecision . - -:signedByBuyer rdfs:domain :Contract ; - rdfs:range :Buyer . - -:signedByContractor rdfs:domain :Contract ; - rdfs:range :Contractor . - -:signsAwardDecision rdfs:domain :Buyer ; - rdfs:range :AwardDecision . - -:specifiesAwardCriterion rdfs:domain :MiniCompetition ; - rdfs:range :AwardCriterion . - -:specifiesBuyer rdfs:domain [ a owl:Class ; - owl:unionOf ( :Catalogue :Order ) ], - :OrderResponse ; - rdfs:range :Buyer . - -:specifiesCatalogueProvider rdfs:domain :Catalogue ; - rdfs:range :CatalogueProvider . - -:specifiesCatalogueReceiver rdfs:domain :Catalogue ; - rdfs:range :CatalogueReceiver . - -:specifiesDeliverable rdfs:domain :Contract ; - rdfs:range :Deliverable . - -:specifiesDeliveryAgreementLocation rdfs:domain :DeliveryAgreement ; - rdfs:range dcterms:Location . - -:specifiesPlaceOfDelivery rdfs:domain :DeliveryInformation ; - rdfs:range dcterms:Location . - -:specifiesPlaceOfDespatch rdfs:domain :ShipmentInformation ; - rdfs:range dcterms:Location . - -:specifiesProcurementCriteriaSummary rdfs:domain :Procedure ; - rdfs:range :ProcurementCriteriaSummary . - -:specifiesProcurementCriterion rdfs:domain [ a owl:Class ; - owl:unionOf ( :Lot :LotGroup ) ] ; - rdfs:range :ProcurementCriterion . - -:specifiesSubcontractors rdfs:domain :Tender ; - rdfs:range :Subcontractor . - -:usesChannel rdfs:domain :ProcurementElement ; - rdfs:range cccev:Channel . - -:usesTechnique rdfs:domain :ProcurementObject ; - rdfs:range :Technique . - -cccev:confidentialityLevelType rdfs:domain cccev:Evidence ; - rdfs:range skos:Concept . - -cccev:constrains rdfs:domain cccev:Constraint ; - rdfs:range cccev:InformationConcept . - -cccev:coordinates rdfs:domain locn:Geometry ; - rdfs:range rdf:PlainLiteral . - -cccev:hasRequirement a owl:AsymmetricProperty ; - rdfs:domain cccev:Requirement ; - rdfs:range cccev:Requirement . - -cccev:latitude rdfs:domain locn:Geometry ; - rdfs:range rdf:PlainLiteral . - -cccev:longitude rdfs:domain locn:Geometry ; - rdfs:range rdf:PlainLiteral . - -cccev:supportsConcept rdfs:domain cccev:Evidence ; - rdfs:range cccev:InformationConcept . - -cccev:supportsRequirement rdfs:domain cccev:Evidence ; - rdfs:range cccev:Requirement . - -cccev:telephone rdfs:domain cccev:ContactPoint ; - rdfs:range rdf:PlainLiteral . - -dcterms:alternative rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -dcterms:type rdfs:domain cccev:Criterion ; - rdfs:range skos:Concept . - -time:unitType rdfs:domain :SpecificDuration ; - rdfs:range skos:Concept . - -adms:schemaAgency rdfs:domain adms:Identifier ; - rdfs:range rdf:PlainLiteral . - -locn:postCode rdfs:domain locn:Address ; - rdfs:range rdf:PlainLiteral . - -locn:postName rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:thoroughfare rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -person:birthName rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -person:patronymicName rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -foaf:familyName rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -foaf:givenName rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -foaf:name rdfs:domain cccev:Person ; - rdfs:range rdf:langString . - -:actsOnBehalfOf rdfs:domain :ProcurementServiceProvider ; - rdfs:range :Buyer . - -:comprisesTender rdfs:domain :TenderGroup ; - rdfs:range :Tender . - -:concernsMiniCompetition rdfs:domain :MiniCompetitionAwardDecision ; - rdfs:range :MiniCompetition . - -:concernsProcedure rdfs:domain :ProcurementProcessInformation ; - rdfs:range :Procedure . - -:concernsReviewSummaryForLot a owl:FunctionalProperty ; - rdfs:domain :ReviewRequestSummary ; - rdfs:range :Lot . - -:concernsTender a owl:FunctionalProperty ; - rdfs:domain :TenderAwardOutcome ; - rdfs:range :Tender . - -:containsModificationsOf a owl:AsymmetricProperty ; - rdfs:domain owl:Thing ; - rdfs:range owl:Thing . - -:definesBudgetProvider rdfs:domain :ProcedureTerm ; - rdfs:range :BudgetProvider . - -:definesContractDuration rdfs:domain :ContractTerm ; - rdfs:range :Duration . - -:definesContractPeriod rdfs:domain :ContractTerm ; - rdfs:range :Period . - -:definesMediator rdfs:domain :ProcedureTerm ; - rdfs:range :Mediator . - -:definesOfflineAccessProvider rdfs:domain :AccessTerm ; - rdfs:range :OfflineAccessProvider . - -:definesOpeningPlace rdfs:domain :OpeningTerm ; - rdfs:range locn:Address . - -:definesParticipationRequestProcessor rdfs:domain :ParticipationRequestTerm ; - rdfs:range :ParticipationRequestProcessor . - -:definesParticipationRequestReceiver rdfs:domain :ParticipationRequestTerm ; - rdfs:range :ParticipationRequestReceiver . - -:definesPaymentExecutor rdfs:domain :ContractTerm ; - rdfs:range :PaymentExecutor . - -:definesProcurementProcedureInformationProvider rdfs:domain :AccessTerm ; - rdfs:range :ProcurementProcedureInformationProvider . - -:definesSubcontractingTerm rdfs:domain :ContractTerm ; - rdfs:range :SubcontractTerm . - -:definesTenderProcessor rdfs:domain :SubmissionTerm ; - rdfs:range :TenderProcessor . - -:definesTenderReceiver rdfs:domain :SubmissionTerm ; - rdfs:range :TenderReceiver . - -:describesLotCompletion a owl:FunctionalProperty ; - rdfs:domain :ContractLotCompletionInformation ; - rdfs:range :Lot . - -:describesLotGroup a owl:FunctionalProperty ; - rdfs:domain :LotGroupAwardInformation ; - rdfs:range :LotGroup . - -:describesMinimumLevelOfStandards rdfs:domain :SelectionCriteriaSummary ; - rdfs:range rdf:PlainLiteral . - -:describesNotice a owl:FunctionalProperty ; - rdfs:domain :NoticeDescription ; - rdfs:range :Notice . - -:describesObjectiveParticipationRules rdfs:domain :ParticipationConditionsSummary ; - rdfs:range rdf:PlainLiteral . - -:describesProfession rdfs:domain :ProfessionalSuitabilitySummary ; - rdfs:range rdf:PlainLiteral . - -:describesProfessionRelevantLaw rdfs:domain :ProfessionalSuitabilitySummary ; - rdfs:range rdf:PlainLiteral . - -:describesVerificationMethod rdfs:domain :ParticipationConditionsSummary ; - rdfs:range rdf:PlainLiteral . - -:followsRulesSetBy rdfs:domain :MiniCompetition ; - rdfs:range :FrameworkAgreement . - -:foreseesProcurementObject rdfs:domain :PlannedProcurementPart ; - rdfs:range :ProcurementObject . - -:hasAbnormallyLowTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasAccessibilityDate rdfs:domain :ElementConfidentialityDescription ; - rdfs:range xsd:date . - -:hasAdditionalInformationDeadline rdfs:domain :AccessTerm ; - rdfs:range xsd:dateTime . - -:hasAdditionalNonAwardJustification rdfs:domain :AwardDecision ; - rdfs:range rdf:PlainLiteral . - -:hasAddressURL rdfs:domain cccev:Channel ; - rdfs:range xsd:anyURI . - -:hasAmountValue a owl:FunctionalProperty ; - rdfs:domain :MonetaryValue ; - rdfs:range xsd:decimal . - -:hasAwardCriteriaOrderJustification rdfs:domain :AwardEvaluationTerm ; - rdfs:range rdf:PlainLiteral . - -:hasAwardCriteriaStatedInProcurementDocuments a owl:FunctionalProperty ; - rdfs:domain :AwardCriterion ; - rdfs:range xsd:boolean . - -:hasAwardDateScheduled rdfs:domain :ProcessPlanningTerm ; - rdfs:range xsd:date . - -:hasAwardDecisionDate rdfs:domain :AwardDecision ; - rdfs:range xsd:dateTime . - -:hasAwardRank rdfs:domain :TenderAwardOutcome ; - rdfs:range xsd:integer . - -:hasAwardedEstimatedValue rdfs:domain :LotAwardDecision ; - rdfs:range :MonetaryValue . - -:hasAwardedValue rdfs:domain :AwardDecision ; - rdfs:range :MonetaryValue . - -:hasBargainPrice rdfs:domain :AwardDecision ; - rdfs:range :MonetaryValue . - -:hasBeginning rdfs:domain :Period ; - rdfs:range xsd:dateTime . - -:hasBuyerLegalTypeDescription rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasBuyerProfile rdfs:domain :Buyer ; - rdfs:range xsd:anyURI . - -:hasCalculationMethod rdfs:domain :ConcessionEstimate ; - rdfs:range rdf:PlainLiteral . - -:hasCleanVehicles rdfs:domain :GreenProcurement ; - rdfs:range xsd:integer . - -:hasConcessionEstimatedValue rdfs:domain :ConcessionEstimate ; - rdfs:range :MonetaryValue . - -:hasConfidentialityJustification rdfs:domain :ElementConfidentialityDescription ; - rdfs:range rdf:PlainLiteral . - -:hasContactName rdfs:domain cccev:ContactPoint ; - rdfs:range rdf:PlainLiteral . - -:hasContractConclusionDate rdfs:domain :Contract ; - rdfs:range xsd:date . - -:hasContractValue rdfs:domain :Contract ; - rdfs:range :MonetaryValue . - -:hasDeadline rdfs:domain :SecurityClearanceTerm ; - rdfs:range xsd:dateTime . - -:hasDecisionDate rdfs:domain :ReviewDecision ; - rdfs:range xsd:date . - -:hasDispatchDate rdfs:domain :Document ; - rdfs:range xsd:date . - -:hasDurationExtensionJustification rdfs:domain :FrameworkAgreementTerm ; - rdfs:range rdf:PlainLiteral . - -:hasEAuctionURL rdfs:domain :SubmissionTerm ; - rdfs:range xsd:anyURI . - -:hasEEAReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasEFormsSubtype rdfs:domain :Notice ; - rdfs:range xsd:integer . - -:hasEInvoicing rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:hasEOrdering rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:hasEPayment rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:hasESenderDispatchDate rdfs:domain :Notice ; - rdfs:range xsd:dateTime . - -:hasEUReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasElectronicSubmission rdfs:domain :Tender ; - rdfs:range xsd:boolean . - -:hasElectronicTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasElementChange rdfs:domain :NoticeChange ; - rdfs:range :ElementChangeDescription . - -:hasElementConfidentiality rdfs:domain :PublicationProvision ; - rdfs:range :ElementConfidentialityDescription . - -:hasElementModification rdfs:domain :ContractModification ; - rdfs:range :ElementModificationDescription . - -:hasEnd rdfs:domain :Period ; - rdfs:range xsd:dateTime . - -:hasEntryIntoForceDate rdfs:domain :Contract ; - rdfs:range xsd:date . - -:hasEstimatedBuyerConcessionRevenue rdfs:domain :ConcessionEstimate ; - rdfs:range :MonetaryValue . - -:hasEstimatedContractNoticePublicationDate rdfs:domain :ProcessPlanningTerm ; - rdfs:range xsd:date . - -:hasEstimatedDuration rdfs:domain :Contract ; - rdfs:range :Duration . - -:hasEstimatedInvitationToExpressInterestDate rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:date . - -:hasEstimatedInvitationToTenderDate rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:date . - -:hasEstimatedPercentage rdfs:domain :SubcontractingEstimate ; - rdfs:range xsd:decimal . - -:hasEstimatedTenderInvitationDate rdfs:domain :ProcessPlanningTerm ; - rdfs:range xsd:date . - -:hasEstimatedTotalSubcontracts rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasEstimatedUserConcessionRevenue rdfs:domain :ConcessionEstimate ; - rdfs:range :MonetaryValue . - -:hasEstimatedValue rdfs:domain :ProcurementElement ; - rdfs:range :MonetaryValue . - -:hasFinancialOfferValue rdfs:domain :Tender ; - rdfs:range :MonetaryValue . - -:hasFixedValue rdfs:domain :AwardCriterion ; - rdfs:range xsd:decimal . - -:hasFollowupContract rdfs:domain :DesignContestRegimeTerm ; - rdfs:range xsd:boolean . - -:hasFormNumber rdfs:domain :Notice ; - rdfs:range xsd:integer . - -:hasFormula rdfs:domain :ProcurementCriterion ; - rdfs:range rdf:PlainLiteral . - -:hasFrameworkAgreementEstimatedValue rdfs:domain :LotAwardDecision ; - rdfs:range :MonetaryValue . - -:hasFrameworkAgreementMaximumValue rdfs:domain :LotAwardDecision ; - rdfs:range :MonetaryValue . - -:hasGroupFrameworkAgreementMaximumValue rdfs:domain :LotGroupAwardInformation ; - rdfs:range :MonetaryValue . - -:hasHighestReceivedTenderValue rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range :MonetaryValue . - -:hasInadmissibleTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasInstanceReference a owl:FunctionalProperty ; - rdfs:domain :ElementConfidentialityDescription ; - rdfs:range xsd:anyURI . - -:hasInternetAddress rdfs:domain [ a owl:Class ; - owl:unionOf ( org:Organization cccev:ContactPoint ) ] ; - rdfs:range xsd:anyURI . - -:hasLaunchFrameworkAgreementMaximumValue rdfs:domain :FrameworkAgreementTerm ; - rdfs:range :MonetaryValue . - -:hasLaunchGroupFrameworkAgreementMaximumValue rdfs:domain :FrameworkAgreementTerm ; - rdfs:range :MonetaryValue . - -:hasLegalFormRequirement rdfs:domain :ContractTerm ; - rdfs:range rdf:PlainLiteral . - -:hasLegalFormType rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasLongTitle rdfs:domain :Notice ; - rdfs:range rdf:PlainLiteral . - -:hasLotAwardCombination rdfs:domain :ProcedureTerm ; - rdfs:range rdf:PlainLiteral . - -:hasLotReference rdfs:domain :Contract ; - rdfs:range :Lot . - -:hasLowestReceivedTenderValue rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range :MonetaryValue . - -:hasMainActivityDescription rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasMaximumFrameworkAgreementAwardedValue rdfs:domain :NoticeAwardInformation ; - rdfs:range :MonetaryValue . - -:hasMaximumLotSubmissionAllowed rdfs:domain :ProcedureTerm ; - rdfs:range xsd:integer . - -:hasMaximumNumberOfCandidates rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:integer . - -:hasMaximumNumberOfLotsToBeAwarded rdfs:domain :ProcedureTerm ; - rdfs:range xsd:integer . - -:hasMaximumNumberOfRenewals rdfs:domain :ContractTerm ; - rdfs:range xsd:integer . - -:hasMaximumParticipantsNumber rdfs:domain :FrameworkAgreementTerm ; - rdfs:range xsd:integer . - -:hasMaximumShare rdfs:domain :SubcontractTerm ; - rdfs:range xsd:decimal . - -:hasMediumTenderPerLots rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasMember rdfs:domain :OrganisationGroup ; - rdfs:range org:Organization . - -:hasMinimumNumberOfCandidates rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:integer . - -:hasMinimumShare rdfs:domain :SubcontractTerm ; - rdfs:range xsd:decimal . - -:hasMinimumSubcontractorsProposedObligation rdfs:domain :SubcontractTerm ; - rdfs:range xsd:decimal . - -:hasNoNegotiationNecessary rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:boolean . - -:hasNonAwardedContractNumber rdfs:domain :LotAwardDecision ; - rdfs:range rdf:PlainLiteral . - -:hasNonAwardedContractTitle rdfs:domain :LotAwardDecision ; - rdfs:range rdf:PlainLiteral . - -:hasNonEEAReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasNonEUReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasNoticePublicationNumber rdfs:domain :Notice ; - rdfs:range rdf:PlainLiteral . - -:hasNumberOfReviewRequests a owl:FunctionalProperty ; - rdfs:domain :ReviewRequest ; - rdfs:range xsd:integer . - -:hasNumberOfTenderersInvited rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasOJSIssueNumber rdfs:domain :Notice ; - rdfs:range xsd:integer . - -:hasOJSType rdfs:domain :Notice ; - rdfs:range rdf:PlainLiteral . - -:hasOpeningDateTime a owl:FunctionalProperty ; - rdfs:domain :OpeningTerm ; - rdfs:range xsd:dateTime . - -:hasOpeningURL rdfs:domain :OpeningTerm ; - rdfs:range xsd:anyURI . - -:hasOptions rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:hasOrganisationUnitName rdfs:domain org:Organization ; - rdfs:range rdf:PlainLiteral . - -:hasOtherCountriesReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasOverallCostAwardCriteriaPonderation rdfs:domain :AwardEvaluationTerm ; - rdfs:range xsd:decimal . - -:hasOverallPriceAwardCriteriaPonderation rdfs:domain :AwardEvaluationTerm ; - rdfs:range xsd:decimal . - -:hasOverallQualityAwardCriteriaPonderation rdfs:domain :AwardEvaluationTerm ; - rdfs:range xsd:decimal . - -:hasParticipationPayment rdfs:domain :DesignContestRegimeTerm ; - rdfs:range rdf:PlainLiteral . - -:hasPaymentValueDiscrepancyJustification rdfs:domain :ContractLotCompletionInformation ; - rdfs:range rdf:PlainLiteral . - -:hasPlannedDuration rdfs:domain :PlannedProcurementPart ; - rdfs:range :Duration . - -:hasPlannedPeriod rdfs:domain :PlannedProcurementPart ; - rdfs:range :Period . - -:hasPreferredPublicationDate rdfs:domain :PublicationProvision ; - rdfs:range xsd:date . - -:hasPreviousVersionOfElementReference rdfs:domain :ElementChangeDescription ; - rdfs:range xsd:anyURI . - -:hasPrizeRank rdfs:domain :Prize ; - rdfs:range xsd:integer . - -:hasPrizeValue rdfs:domain :Prize ; - rdfs:range :MonetaryValue . - -:hasProcurementDocumentChangeDate rdfs:domain :ElementChangeDescription ; - rdfs:range xsd:date . - -:hasProcurementHighestReceivedTenderValue rdfs:domain :NoticeAwardInformation ; - rdfs:range :MonetaryValue . - -:hasProcurementLowestReceivedTenderValue rdfs:domain :NoticeAwardInformation ; - rdfs:range :MonetaryValue . - -:hasProcurementScopeDividedIntoLot rdfs:domain :Procedure ; - rdfs:range :Lot . - -:hasPropertyReference a owl:FunctionalProperty ; - rdfs:domain :ElementConfidentialityDescription ; - rdfs:range xsd:anyURI . - -:hasPublicAccessURL rdfs:domain :AccessTerm ; - rdfs:range xsd:anyURI . - -:hasPublicationDate rdfs:domain :Document ; - rdfs:range xsd:date . - -:hasPurpose rdfs:domain :ProcurementObject ; - rdfs:range :Purpose . - -:hasQualificationSystemDuration rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range :Duration . - -:hasQualificationSystemRenewalDescription rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range rdf:PlainLiteral . - -:hasQuantityValue a owl:FunctionalProperty ; - rdfs:domain :Quantity ; - rdfs:range xsd:decimal . - -:hasReceiptDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceiptExpressionDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceiptParticipationRequestDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceiptPreliminaryMarketConsultationDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceiptTenderDeadline rdfs:domain :SubmissionTerm ; - rdfs:range xsd:dateTime . - -:hasReceivedMicroTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasReceivedParticipationRequests rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasReceivedSmallTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasReceptionDate rdfs:domain :Document ; - rdfs:range xsd:date . - -:hasRecurrenceDescription rdfs:domain :ProcurementObject ; - rdfs:range rdf:PlainLiteral . - -:hasRemedyValue rdfs:domain :ReviewDecision ; - rdfs:range :MonetaryValue . - -:hasRequestDate rdfs:domain :ReviewRequest ; - rdfs:range xsd:date . - -:hasReservedExecution rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean, - skos:Concept . - -:hasRestrictedAccessURL rdfs:domain :AccessTerm ; - rdfs:range xsd:anyURI . - -:hasReviewIrregularityCount a owl:FunctionalProperty ; - rdfs:domain :ReviewIrregularitySummary ; - rdfs:range xsd:integer . - -:hasReviewRequestFee rdfs:domain :ReviewRequest ; - rdfs:range :MonetaryValue . - -:hasReviewURL rdfs:domain :ReviewObject ; - rdfs:range xsd:anyURI . - -:hasSMEReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasSelectionCriteriaStatedInProcurementDocuments rdfs:domain :SelectionCriteriaSummary ; - rdfs:range xsd:boolean . - -:hasServiceReservedToParticularProfession rdfs:domain :ProfessionalSuitabilitySummary ; - rdfs:range xsd:boolean . - -:hasStartDate rdfs:domain :SelectedCandidateList ; - rdfs:range :Period . - -:hasSubcontractingEstimatedValue rdfs:domain :SubcontractingEstimate ; - rdfs:range :MonetaryValue . - -:hasSubcontractingInvolved rdfs:domain :SubcontractTerm ; - rdfs:range xsd:boolean . - -:hasSubcontractorsProposedAboveObligation rdfs:domain :SubcontractTerm ; - rdfs:range xsd:decimal . - -:hasSuccessiveReduction rdfs:domain :MultipleStageProcedureTerm ; - rdfs:range xsd:boolean . - -:hasTenderValidityPeriod rdfs:domain :SubmissionTerm ; - rdfs:range :Period . - -:hasThresholdValue a owl:FunctionalProperty ; - rdfs:domain cccev:Constraint ; - rdfs:range xsd:decimal . - -:hasTotalAwardedValue rdfs:domain :NoticeAwardInformation ; - rdfs:range :MonetaryValue . - -:hasTotalNumberOfComplainants rdfs:domain :ReviewRequestSummary ; - rdfs:range xsd:integer . - -:hasTotalQuantity rdfs:domain :Purpose ; - rdfs:range :Quantity . - -:hasTotalValue a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :TenderGroup :Deliverable ) ] ; - rdfs:range :MonetaryValue . - -:hasTotalVehicles rdfs:domain :GreenProcurement ; - rdfs:range xsd:integer . - -:hasURL rdfs:domain :Fund ; - rdfs:range xsd:anyURI . - -:hasUUID rdfs:domain :Document ; - rdfs:range adms:Identifier . - -:hasUnverifiedTenders rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range xsd:integer . - -:hasValidityPeriod rdfs:domain [ a owl:Class ; - owl:unionOf ( :Technique :Certificate ) ] ; - rdfs:range :Period . - -:hasVersion rdfs:domain :Document ; - rdfs:range rdf:PlainLiteral . - -:hasWithdrawalDate rdfs:domain :ReviewRequest ; - rdfs:range xsd:date . - -:hasWithdrawalReason rdfs:domain :ReviewRequest ; - rdfs:range rdf:PlainLiteral . - -:hasZeroEmissionVehicles rdfs:domain :GreenProcurement ; - rdfs:range xsd:integer . - -:indicatesAwardToWinner rdfs:domain :TenderAwardOutcome ; - rdfs:range :Winner . - -:indicatesPerformingStaffInformationRequirement rdfs:domain :ProcurementCriteriaSummary ; - rdfs:range xsd:boolean . - -:involvesProcurementDocument a owl:FunctionalProperty ; - rdfs:domain :AccessTerm ; - rdfs:range :ProcurementDocument . - -:isAccelerated rdfs:domain :Procedure ; - rdfs:range xsd:boolean . - -:isAdvancedElectronicSignatureRequired rdfs:domain :SubmissionTerm ; - rdfs:range xsd:boolean . - -:isAwardedByCPB rdfs:domain :ProcedureTerm ; - rdfs:range xsd:boolean . - -:isBeneficialOwnerOf rdfs:domain cccev:Person ; - rdfs:range :Business . - -:isCompetitionTerminated rdfs:domain :ProcurementProcessInformation ; - rdfs:range xsd:boolean . - -:isContractingEntity rdfs:domain :Buyer ; - rdfs:range xsd:boolean . - -:isCoveredByGPA rdfs:domain :ProcurementObject ; - rdfs:range xsd:boolean . - -:isDPSTerminated rdfs:domain :ProcurementProcessInformation ; - rdfs:range xsd:boolean . - -:isDesignContest rdfs:domain :Procedure ; - rdfs:range xsd:boolean . - -:isEUInstitution rdfs:domain :Notice ; - rdfs:range xsd:boolean . - -:isExecutedByProcurementServiceProvider rdfs:domain :Procedure ; - rdfs:range :ProcurementServiceProvider . - -:isGuaranteeRequired rdfs:domain :SubmissionTerm ; - rdfs:range xsd:boolean . - -:isJointProcurement rdfs:domain :Procedure ; - rdfs:range xsd:boolean . - -:isJuryDecisionBinding rdfs:domain :DesignContestRegimeTerm ; - rdfs:range xsd:boolean . - -:isListedCompany rdfs:domain :Business ; - rdfs:range xsd:boolean . - -:isMultipleTenderSubmissionAllowed rdfs:domain :SubmissionTerm ; - rdfs:range xsd:boolean . - -:isNonDisclosureAgreementRequired rdfs:domain :NonDisclosureAgreementTerm ; - rdfs:range xsd:boolean . - -:isOneLotOnlyAllowed rdfs:domain :ProcedureTerm ; - rdfs:range xsd:boolean . - -:isOwnedByAgent rdfs:domain :System ; - rdfs:range foaf:Agent ; - owl:inverseOf :ownsSystem . - -:isProcurementDocumentChanged rdfs:domain :ElementChangeDescription ; - rdfs:range xsd:boolean . - -:isProcurementDocumentRestricted rdfs:domain :AccessTerm ; - rdfs:range xsd:boolean . - -:isRecurrent rdfs:domain :ProcurementObject ; - rdfs:range xsd:boolean . - -:isRenewalIndicator rdfs:domain :ContractTerm ; - rdfs:range xsd:boolean . - -:isSMESuitable rdfs:domain :ProcurementObject ; - rdfs:range xsd:boolean . - -:isSecurityClearanceRequired rdfs:domain :SecurityClearanceTerm ; - rdfs:range xsd:boolean . - -:isSubjectToGrouping rdfs:domain :Tender ; - rdfs:range :LotGroup . - -:isSubjectToProcedureSpecificTerm rdfs:domain :Procedure ; - rdfs:range :ProcedureSpecificTerm . - -:isSubmissionForAllLotsAllowed rdfs:domain :ProcedureTerm ; - rdfs:range xsd:boolean . - -:isSubmitedBy rdfs:domain :Tender ; - rdfs:range :Tenderer . - -:isSubmittedForLot a owl:FunctionalProperty ; - rdfs:domain :Tender ; - rdfs:range :Lot . - -:isSubmittedForLotGroup a owl:FunctionalProperty ; - rdfs:domain :TenderGroup ; - rdfs:range :LotGroup . - -:isToBeRelaunched rdfs:domain :ProcurementProcessInformation ; - rdfs:range xsd:boolean . - -:isUsedForCandidateRestriction rdfs:domain :SelectionCriterion ; - rdfs:range xsd:boolean . - -:isUsingEUFunds rdfs:domain :ProcurementObject ; - rdfs:range xsd:boolean . - -:isVariant rdfs:domain :Tender ; - rdfs:range xsd:boolean . - -:isWithdrawn rdfs:domain :ReviewRequest ; - rdfs:range xsd:boolean . - -:leadBy rdfs:domain :OrganisationGroup ; - rdfs:range org:Organization . - -:legal-regime a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue :legal-regime ; - owl:onProperty skos:inScheme ] . - -:needsToBeATenderer rdfs:domain :Winner ; - rdfs:range :Tenderer . - -:needsToBeAWinner rdfs:domain :Contractor ; - rdfs:range :Winner . - -:notification-phases-content-types a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue :notification-phases-content-types ; - owl:onProperty skos:inScheme ] . - -:ownsSystem rdfs:domain foaf:Agent ; - rdfs:range :System . - -:providesContractTotalPaymentValue rdfs:domain :ContractLotCompletionInformation ; - rdfs:range :MonetaryValue . - -:providesContractTotalPenaltyValue rdfs:domain :ContractLotCompletionInformation ; - rdfs:range :MonetaryValue . - -:refersToContract a owl:FunctionalProperty ; - rdfs:domain :ContractLotCompletionInformation ; - rdfs:range :Contract . - -:refersToLot rdfs:domain [ a owl:Class ; - owl:unionOf ( :Notice :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; - rdfs:range :Lot . - -:refersToNotice a owl:AsymmetricProperty ; - rdfs:domain :Notice ; - rdfs:range :Notice . - -:refersToOriginalNotice rdfs:domain :ContractModification ; - rdfs:range :Notice . - -:refersToPreviousNotice rdfs:domain :NoticeChange ; - rdfs:range :Notice . - -:refersToPreviousProcedure rdfs:domain :DirectAwardTerm ; - rdfs:range :Procedure . - -:refersToPreviousReview a owl:AsymmetricProperty ; - rdfs:domain :ReviewObject ; - rdfs:range :ReviewObject . - -:refersToProcedure a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :ContractModificationNotice :CompletionNotice :Notice ) ] ; - rdfs:range :Procedure . - -:resolvesReviewRequest a owl:FunctionalProperty ; - rdfs:domain :ReviewDecision ; - rdfs:range :ReviewRequest . - -:resultsFromMiniCompetitionAwardDecision rdfs:domain :PurchaseContract ; - rdfs:range :MiniCompetitionAwardDecision . - -:resultsInDynamicPurchasingSystem a owl:FunctionalProperty ; - rdfs:domain :DynamicPurchaseSystemTechnique ; - rdfs:range :DynamicPurchasingSystem . - -:setsGroupingContextForLot rdfs:domain :LotGroup ; - rdfs:range :Lot . - -:substantiatesExclusionGround rdfs:domain :Tenderer ; - rdfs:range :ExclusionGround . - -:summarisesInformationForAwardDecision a owl:FunctionalProperty ; - rdfs:domain :SubmissionStatisticalInformation ; - rdfs:range :AwardDecision . - -:usesCandidateList rdfs:domain :MiniCompetition ; - rdfs:range :SelectedCandidateList . - -cccev:address rdfs:domain [ a owl:Class ; - owl:unionOf ( org:Organization cccev:ContactPoint ) ] ; - rdfs:range locn:Address . - -cccev:bias rdfs:domain cccev:Criterion ; - rdfs:range xsd:decimal . - -cccev:birthDate rdfs:domain cccev:Person ; - rdfs:range xsd:date . - -cccev:email rdfs:domain cccev:ContactPoint ; - rdfs:range rdf:PlainLiteral . - -cccev:weight rdfs:domain cccev:Criterion ; - rdfs:range xsd:decimal . - -cccev:weightingConsiderationDescription rdfs:domain cccev:Criterion ; - rdfs:range rdf:PlainLiteral . - -at-voc:EU-programme a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:EU-programme ; - owl:onProperty skos:inScheme ] . - -at-voc:accessibility a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:accessibility ; - owl:onProperty skos:inScheme ] . - -at-voc:applicability a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:applicability ; - owl:onProperty skos:inScheme ] . - -at-voc:award-criterion-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:award-criterion-type ; - owl:onProperty skos:inScheme ] . - -at-voc:buyer-legal-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:buyer-legal-type ; - owl:onProperty skos:inScheme ] . - -at-voc:change-corrig-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:change-corrig-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:communication-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:communication-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:confidentiality-level a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:confidentiality-level ; - owl:onProperty skos:inScheme ] . - -at-voc:contract-nature a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:contract-nature ; - owl:onProperty skos:inScheme ] . - -at-voc:country a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:country ; - owl:onProperty skos:inScheme ] . - -at-voc:cpv a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:cpv ; - owl:onProperty skos:inScheme ] . - -at-voc:criterion a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:criterion ; - owl:onProperty skos:inScheme ] . - -at-voc:currency a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:currency ; - owl:onProperty skos:inScheme ] . - -at-voc:direct-award-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:direct-award-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:dps-usage a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:dps-usage ; - owl:onProperty skos:inScheme ] . - -at-voc:economic-operator-size a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:economic-operator-size ; - owl:onProperty skos:inScheme ] . - -at-voc:environmental-impact a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:environmental-impact ; - owl:onProperty skos:inScheme ] . - -at-voc:form-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:form-type ; - owl:onProperty skos:inScheme ] . - -at-voc:framework-agreement a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:framework-agreement ; - owl:onProperty skos:inScheme ] . - -at-voc:innovative-acquisition a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:innovative-acquisition ; - owl:onProperty skos:inScheme ] . - -at-voc:irregularity-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:irregularity-type ; - owl:onProperty skos:inScheme ] . - -at-voc:language a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:language ; - owl:onProperty skos:inScheme ] . - -at-voc:legal-basis a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:legal-basis ; - owl:onProperty skos:inScheme ] . - -at-voc:main-activity a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:main-activity ; - owl:onProperty skos:inScheme ] . - -at-voc:measurement-unit a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:measurement-unit ; - owl:onProperty skos:inScheme ] . - -at-voc:missing-info-submission a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:missing-info-submission ; - owl:onProperty skos:inScheme ] . - -at-voc:modification-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:modification-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:non-award-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:non-award-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:non-publication-justification a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:non-publication-justification ; - owl:onProperty skos:inScheme ] . - -at-voc:notice-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:notice-type ; - owl:onProperty skos:inScheme ] . - -at-voc:number-fixed a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:number-fixed ; - owl:onProperty skos:inScheme ] . - -at-voc:number-threshold a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:number-threshold ; - owl:onProperty skos:inScheme ] . - -at-voc:number-weight a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:number-weight ; - owl:onProperty skos:inScheme ] . - -at-voc:nuts a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:nuts ; - owl:onProperty skos:inScheme ] . - -at-voc:other-place-service a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:other-place-service ; - owl:onProperty skos:inScheme ] . - -at-voc:permission a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:permission ; - owl:onProperty skos:inScheme ] . - -at-voc:procurement-procedure-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:procurement-procedure-type ; - owl:onProperty skos:inScheme ] . - -at-voc:received-submission-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:received-submission-type ; - owl:onProperty skos:inScheme ] . - -at-voc:remedy-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:remedy-type ; - owl:onProperty skos:inScheme ] . - -at-voc:requirement-stage a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:requirement-stage ; - owl:onProperty skos:inScheme ] . - -at-voc:reserved-procurement a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:reserved-procurement ; - owl:onProperty skos:inScheme ] . - -at-voc:review-body-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:review-body-type ; - owl:onProperty skos:inScheme ] . - -at-voc:review-decision-type a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:review-decision-type ; - owl:onProperty skos:inScheme ] . - -at-voc:selection-criterion a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:selection-criterion ; - owl:onProperty skos:inScheme ] . - -at-voc:social-objective a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:social-objective ; - owl:onProperty skos:inScheme ] . - -at-voc:subcontracting-indication a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:subcontracting-indication ; - owl:onProperty skos:inScheme ] . - -at-voc:subcontracting-obligation a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:subcontracting-obligation ; - owl:onProperty skos:inScheme ] . - -at-voc:timeperiod a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:timeperiod ; - owl:onProperty skos:inScheme ] . - -at-voc:usage a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:usage ; - owl:onProperty skos:inScheme ] . - -at-voc:winner-selection-status a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue at-voc:winner-selection-status ; - owl:onProperty skos:inScheme ] . - -dcterms:issued rdfs:domain :Document ; - rdfs:range xsd:dateTime . - -dcterms:title rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementElement foaf:Agent :AgentInRole :Document :Fund ) ] ; - rdfs:range rdf:PlainLiteral . - -skos:notation a owl:FunctionalProperty ; - rdfs:domain adms:Identifier ; - rdfs:range rdf:PlainLiteral . - -skos:prefLabel rdfs:domain [ a owl:Class ; - owl:unionOf ( cccev:InformationConcept cccev:Requirement ) ] ; - rdfs:range rdf:PlainLiteral . - -time:TemporalUnit a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue time:TemporalUnit ; - owl:onProperty skos:inScheme ] . - -time:numericDuration a owl:FunctionalProperty ; - rdfs:domain :SpecificDuration ; - rdfs:range xsd:decimal . - -locn:address rdfs:domain dcterms:Location ; - rdfs:range locn:Address . - -locn:addressArea rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:addressID rdfs:domain locn:Address ; - rdfs:range adms:Identifier . - -locn:adminUnitL1 rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:adminUnitL2 rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:fullAddress rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -locn:geographicIdentifier rdfs:domain dcterms:Location ; - rdfs:range adms:Identifier . - -locn:geographicName rdfs:domain dcterms:Location ; - rdfs:range rdf:langString . - -locn:geometry rdfs:domain dcterms:Location ; - rdfs:range locn:Geometry . - -locn:locatorDesignator rdfs:domain locn:Address ; - rdfs:range rdf:PlainLiteral . - -locn:locatorName rdfs:domain locn:Address ; - rdfs:range rdf:langString . - -person:placeOfBirth rdfs:domain cccev:Person ; - rdfs:range dcterms:Location . - -person:placeOfDeath rdfs:domain cccev:Person ; - rdfs:range dcterms:Location . - -:ElectronicSignature a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty dcterms:description ] . - -:NoticeDescription rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :describesNotice ] . - -:Project rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . - -:concernsLot a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementProcessInformation :LotAwardDecision ) ] ; - rdfs:range :Lot . - -:foreseesConcession rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementObject :Tender ) ] ; - rdfs:range :ConcessionEstimate . - -:hasAdditionalInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementObject :Notice :ElementChangeDescription ) ] ; - rdfs:range rdf:PlainLiteral . - -:hasApproximateFrameworkAgreementValue rdfs:domain [ a owl:Class ; - owl:unionOf ( :LotAwardDecision :NoticeAwardInformation ) ] ; - rdfs:range :MonetaryValue . - -:hasElementReference rdfs:domain [ a owl:Class ; - owl:unionOf ( :ReviewObject :ElementChangeDescription :ElementModificationDescription ) ] ; - rdfs:range xsd:anyURI . - -:playedBy a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :AgentInRole :TransportMeansOperator :JuryMember ) ] ; - rdfs:range [ a owl:Class ; - owl:unionOf ( foaf:Agent foaf:Person ) ] . - -cccev:registeredAddress rdfs:domain [ a owl:Class ; - owl:unionOf ( cccev:Person org:Organization ) ] ; - rdfs:range locn:Address . - -owl:Thing rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :containsModificationsOf ] . - -:Prize rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPrizeRank ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPrizeValue ] . - -:TenderGroup rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :comprisesTender ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :isSubmittedForLotGroup ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasTotalValue ] . - -:MiniCompetition rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :followsRulesSetBy ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :usesCandidateList ] . - -:Purpose rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalQuantity ] . - -:SelectedCandidateList rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasStartDate ] . - -:SelectionCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesMinimumLevelOfStandards ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSelectionCriteriaStatedInProcurementDocuments ] . - -:SpecificDuration rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty time:numericDuration ] . - -:DynamicPurchaseSystemTechnique rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :resultsInDynamicPurchasingSystem ] . - -:MiniCompetitionAwardDecision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :concernsMiniCompetition ] . - -:NoticeChange rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToPreviousNotice ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasElementChange ] . - -:ProcurementCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :indicatesPerformingStaffInformationRequirement ] . - -:ProcurementCriterion rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFormula ] . - -:PurchaseContract rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :resultsFromMiniCompetitionAwardDecision ] . - -:Technique a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasValidityPeriod ] . - -cccev:InformationConcept a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . - -cccev:Requirement a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:description ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty skos:prefLabel ] . - -dcterms:description rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementElement :System :AgentInRole cccev:ContactPoint cccev:Channel :NonDisclosureAgreementTerm :SecurityClearanceTerm :SubcontractTerm cccev:InformationConcept cccev:Requirement :Technique :SubcontractingEstimate :ElectronicSignature :Document :Fund ) ] ; - rdfs:range rdf:PlainLiteral . - -:ContractModification rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasElementModification ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToOriginalNotice ] . - -:Fund a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasURL ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . - -:OrganisationGroup rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :leadBy ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasMember ] . - -:ParticipationConditionsSummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesObjectiveParticipationRules ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesVerificationMethod ] . - -:ProcurementElement a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty adms:identifier ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedValue ] . - -:ProfessionalSuitabilitySummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesProfessionRelevantLaw ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :describesProfession ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasServiceReservedToParticularProfession ] . - -:ReviewIrregularitySummary rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasReviewIrregularityCount ] . - -:ReviewRequestSummary rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :concernsReviewSummaryForLot ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalNumberOfComplainants ] . - -:System a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isOwnedByAgent ] . - -cccev:Channel a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:description ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAddressURL ] . - -adms:identifier a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :Project :LotGroup :ProcurementElement foaf:Agent dcterms:Location cccev:InformationConcept :Document :Fund :Consignment :TransportEquipment :ShipmentStage :TransportEquipmentSeal :ShipmentInformation :Line :AbstractContainer ) ] ; - rdfs:range adms:Identifier . - -foaf:Agent a owl:Class . - -:AwardEvaluationTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOverallCostAwardCriteriaPonderation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardCriteriaOrderJustification ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOverallPriceAwardCriteriaPonderation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOverallQualityAwardCriteriaPonderation ] . - -:Business rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isListedCompany ] . - -:ConcessionEstimate rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasCalculationMethod ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasConcessionEstimatedValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedUserConcessionRevenue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedBuyerConcessionRevenue ] . - -:GreenProcurement rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasCleanVehicles ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasZeroEmissionVehicles ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalVehicles ] . - -:LotGroupAwardInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasGroupFrameworkAgreementMaximumValue ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :describesLotGroup ] . - -:ProcessPlanningTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedContractNoticePublicationDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedTenderInvitationDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardDateScheduled ] . - -:PublicationProvision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPreferredPublicationDate ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasElementConfidentiality ] . - -:SelectionCriterion rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isUsedForCandidateRestriction ] . - -:SubcontractingEstimate a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedPercentage ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSubcontractingEstimatedValue ] . - -:TenderAwardOutcome rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :indicatesAwardToWinner ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardRank ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :concernsTender ] . - -cccev:Constraint rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasThresholdValue ] . - -cccev:Criterion rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:weight ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:bias ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:weightingConsiderationDescription ] . - -:AgentInRole a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :playedBy ] . - -:ContractLotCompletionInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPaymentValueDiscrepancyJustification ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :providesContractTotalPaymentValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :providesContractTotalPenaltyValue ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :describesLotCompletion ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :refersToContract ] . - -:ElementModificationDescription a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasElementReference ] . - -:PlannedProcurementPart rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPlannedPeriod ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPlannedDuration ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :foreseesProcurementObject ] . - -:ProcurementProcessInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isDPSTerminated ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isToBeRelaunched ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isCompetitionTerminated ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :concernsProcedure ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :concernsLot ] . - -:ReviewDecision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasDecisionDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasRemedyValue ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :resolvesReviewRequest ] . - -:AwardCriterion rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasAwardCriteriaStatedInProcurementDocuments ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFixedValue ] . - -:DirectAwardTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToPreviousProcedure ] . - -:ElementConfidentialityDescription rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasConfidentialityJustification ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasInstanceReference ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAccessibilityDate ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasPropertyReference ] . - -:LotGroup rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :setsGroupingContextForLot ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . - -:SubcontractTerm a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMinimumSubcontractorsProposedObligation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSubcontractingInvolved ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSubcontractorsProposedAboveObligation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumShare ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMinimumShare ] . - -cccev:ContactPoint a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:email ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:address ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasInternetAddress ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasContactName ] . - -:LotAwardDecision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardedEstimatedValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFrameworkAgreementMaximumValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasApproximateFrameworkAgreementValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNonAwardedContractNumber ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :concernsLot ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFrameworkAgreementEstimatedValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNonAwardedContractTitle ] . - -:NoticeAwardInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalAwardedValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasApproximateFrameworkAgreementValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasProcurementLowestReceivedTenderValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumFrameworkAgreementAwardedValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasProcurementHighestReceivedTenderValue ] . - -:ReviewRequest rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasWithdrawalReason ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReviewRequestFee ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasRequestDate ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasNumberOfReviewRequests ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isWithdrawn ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasWithdrawalDate ] . - -:Contractor rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :needsToBeAWinner ] . - -:ElementChangeDescription a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPreviousVersionOfElementReference ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isProcurementDocumentChanged ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasElementReference ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalInformation ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasProcurementDocumentChangeDate ] . - -:NonDisclosureAgreementTerm a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isNonDisclosureAgreementRequired ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:description ] . - -:ParticipationRequestTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesParticipationRequestReceiver ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesParticipationRequestProcessor ] . - -:Period rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasBeginning ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEnd ] . - -:Tenderer rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :substantiatesExclusionGround ] . - -:Winner rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :needsToBeATenderer ] . - -:SecurityClearanceTerm a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSecurityClearanceRequired ] . - -:OpeningTerm rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasOpeningDateTime ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesOpeningPlace ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOpeningURL ] . - -cccev:Person rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty person:placeOfDeath ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:birthDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty person:placeOfBirth ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:registeredAddress ] . - -dcterms:Location rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:geographicIdentifier ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty adms:identifier ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:geometry ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:address ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:geographicName ] . - -:DesignContestRegimeTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasParticipationPayment ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isJuryDecisionBinding ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFollowupContract ] . - -:ReviewObject a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToPreviousReview ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReviewURL ] . - -locn:Address rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:addressID ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:adminUnitL2 ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:locatorName ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:adminUnitL1 ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:locatorDesignator ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:addressArea ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:fullAddress ] . - -:JuryMember rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :playedBy ] . - -:MultipleStageProcedureTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumNumberOfCandidates ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSuccessiveReduction ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNoNegotiationNecessary ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasQualificationSystemDuration ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMinimumNumberOfCandidates ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasQualificationSystemRenewalDescription ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedInvitationToTenderDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedInvitationToExpressInterestDate ] . - -:Procedure rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isDesignContest ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isJointProcurement ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isAccelerated ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :isSubjectToProcedureSpecificTerm ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isExecutedByProcurementServiceProvider ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasProcurementScopeDividedIntoLot ] . - -:ProcedureTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesMediator ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isAwardedByCPB ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumNumberOfLotsToBeAwarded ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isOneLotOnlyAllowed ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSubmissionForAllLotsAllowed ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLotAwardCombination ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumLotSubmissionAllowed ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesBudgetProvider ] . - -:ProcurementServiceProvider rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :actsOnBehalfOf ] . - -:ProcurementObject a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasRecurrenceDescription ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :foreseesConcession ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPurpose ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isRecurrent ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isCoveredByGPA ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSMESuitable ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isUsingEUFunds ] . - -org:Organization a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasBuyerLegalTypeDescription ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOrganisationUnitName ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLegalFormType ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMainActivityDescription ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:registeredAddress ] . - -:FrameworkAgreementTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumParticipantsNumber ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLaunchFrameworkAgreementMaximumValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLaunchGroupFrameworkAgreementMaximumValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasDurationExtensionJustification ] . - -:Document a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasVersion ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceptionDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:title ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasDispatchDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPublicationDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasUUID ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:description ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty dcterms:issued ] . - -:AwardDecision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardDecisionDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAwardedValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasBargainPrice ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalNonAwardJustification ] . - -:ContractTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesContractDuration ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReservedExecution ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesPaymentExecutor ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesSubcontractingTerm ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumNumberOfRenewals ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isRenewalIndicator ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLegalFormRequirement ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesContractPeriod ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEPayment ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEOrdering ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEInvoicing ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOptions ] . - -:SubmissionStatisticalInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOtherCountriesReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNonEUReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceivedParticipationRequests ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasElectronicTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasInadmissibleTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEUReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceivedMicroTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAbnormallyLowTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasHighestReceivedTenderValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNumberOfTenderersInvited ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceivedSmallTenders ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :summarisesInformationForAwardDecision ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasUnverifiedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedTotalSubcontracts ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNonEEAReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLowestReceivedTenderValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasSMEReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEEAReceivedTenders ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMediumTenderPerLots ] . - -:AccessTerm rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :involvesProcurementDocument ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesProcurementProcedureInformationProvider ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalInformationDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isProcurementDocumentRestricted ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasRestrictedAccessURL ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPublicAccessURL ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesOfflineAccessProvider ] . - -:Tender rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSubjectToGrouping ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :isSubmittedForLot ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFinancialOfferValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasElectronicSubmission ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isVariant ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSubmitedBy ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :foreseesConcession ] . - -:Quantity rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasQuantityValue ] . - -adms:Identifier rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty skos:notation ] . - -:Buyer rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasBuyerProfile ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isContractingEntity ] . - -:Contract rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasContractValue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedDuration ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasLotReference ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEntryIntoForceDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasContractConclusionDate ] . - -:Notice a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :refersToNotice ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :refersToLot ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOJSIssueNumber ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasESenderDispatchDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isEUInstitution ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNoticePublicationNumber ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLongTitle ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalInformation ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :refersToProcedure ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEFormsSubtype ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasOJSType ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasFormNumber ] . - -:SubmissionTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isMultipleTenderSubmissionAllowed ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isGuaranteeRequired ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTenderValidityPeriod ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptParticipationRequestDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEAuctionURL ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isAdvancedElectronicSignatureRequired ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptPreliminaryMarketConsultationDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesTenderReceiver ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :definesTenderProcessor ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptTenderDeadline ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasReceiptExpressionDeadline ] . - -:MonetaryValue rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasAmountValue ] . - -[] a owl:AllDisjointClasses ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ExclusionGround :SelectionCriterion ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ProcurementObject :PlannedProcurementPart ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :System org:Organization foaf:Person ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :System org:Organization foaf:Person ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubcontractingEstimate :ConcessionEstimate ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :MiniCompetitionAwardDecision :LotAwardDecision ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Procedure :Lot ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ReviewDecision :ReviewRequest ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :IndefiniteDuration :SpecificDuration ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubcontractingEstimate :ConcessionEstimate ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ProcurementObject :PlannedProcurementPart ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :MiniCompetitionAwardDecision :LotAwardDecision ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :LeadBuyer :CentralPurchasingBody ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubcontractTerm :ContractTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AcquiringCentralPurchasingBody :AwardingCentralPurchasingBody ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ReviewDecision :ReviewRequest ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardEvaluationTerm :SelectionEvaluationTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :LeadBuyer :CentralPurchasingBody ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Procedure :Lot ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubcontractTerm :ContractTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :IndefiniteDuration :SpecificDuration ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ExclusionGround :SelectionCriterion ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardEvaluationTerm :SelectionEvaluationTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ExclusionGroundsSummary :SelectionCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AcquiringCentralPurchasingBody :AwardingCentralPurchasingBody ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :System org:Organization foaf:Person ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ExclusionGroundsSummary :SelectionCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . - diff --git a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM-shacl.rdf b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM-shacl.rdf deleted file mode 100644 index 5208590..0000000 --- a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM-shacl.rdf +++ /dev/null @@ -1,14016 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology - core - This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused. - This artefact provides the datashape specification. - This version is automatically generated from demo_ontology_CM.xml on - 2023-07-11 - - - - - - 2023-07-11 - 4.0.0 - 3.1.0 - - Semantic Specification Realease - 3.1.0 - http://data.europa.eu/a4g/ontology# - epo - The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated. - - European Union - - - - - - - Dynamic purchasing system - - - An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. - -WG approval 23/05/2023 - - - - - - - - - - Mini competition - - - A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. - -Additional Information: -It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. -It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. - -WG approval 30/05/2023 - - - - - - - - - Mini competition award decision - - - Result concerning the Mini-Competition attributed by the Awarder. - - - - - - - - - - Selected candidate list - - - Record of Candidates admitted to take part in award phases of procurements. - -WG approval 30/05/2023 - - - - - - - - - Project - - - A collaborative enterprise that is carefully planned to achieve a particular aim. - - - - - - - - - Procurement object - - - The whole or a division of goods, services or works to be procured. - -Additional Information: -Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. -In a sense, such an "object" can constitute the "object of a Contract". -To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (<i>The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.</i>). - -Note: -Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and "purpose" properties. - - - - - - - - - Lot - - - A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. - -WG approval 12/09/2018 - - - - - - - - - Planned procurement part - - - A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. - -WG Approval 20/06/2019 - - - - - - - - - Procedure - - - A legally defined set of administrative activities conducted to conclude one or more Contracts. - -Additional Information -The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). - -WG Approval 20/08/2019 - - - - - - - - - - Lot group - - - Combination of several Lots to conduct comparative assessment of the Tenders. - -Additional Information: - -The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. - -Pending of discussion with eForms - - - -Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined. - - - - - - - - - Procurement element - - - Gathering class for critical/central elements in the Procurement Process. - -TODO: add definition -Additional information: -Alias: ProcurementComponent - - - - - - - - - Purpose - - - The description of the objectives related to a Procurement. - -Additional information: - -The description of the objectives includes the Subject Matter and Quantities. - - -The quantification of the objectives related to a procurement. - -To be re-reviewed by the WG the soonest. - -(WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) - -The old definition read as follows: - -The description of the objectives related to a procurement. - -(WG approval 05/12/2018) - - - - - - - - - - Tender group - - - Specific Offer in response to a Lot Group. - -Additional Information: -This class is generally used to provide the Monetary Value in response to a Lot Group. - - - - - - - - - - Public organisation - - - An Organisation that is defined as being part of the public sector by a legal framework at any level. - -Additional information: -A body governed by public law: -- (a) established for the specific Purpose of meeting needs in the general interest -- (b) having legal personality; -- (c) financed, for the most part by the State, or regional or local authorities. - -Examples of Public Organisations are municipality, international public body, ministry, others. - -WG Approval 28/04/2020 - - - - - - - - - Person - - - A individual human being who may be dead or alive, but not imaginary. - - - - - - - - - - Ad hoc channel - - - Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. - -Additional Information: - -This corresponds in eForms to BT-724 Tool Atypical. - - -WG Acceptance 10/01/2023 - - - - - - - - - - Business - - - A private law company registered in a national registry. - -WG Approval 28/04/2020 - - - - - - - - - - - Organisation group - - - Agreed collaboration of several Organisations. -Additional Information: -This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. -WG approval 15/04/2021 - - - - - - - - - System - - - Software application used for performing Procurement activities. - -WG Approval 28/04/2020 - - - - - - - - - - - Agent - - - A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. - -WG Approval 28/04/2020 - - - - - - - - - Person - - - The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF. - - - - - - - - - Organization - - - A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. - -(WG approval 23/11/2018). - - - - - - - - - - Acquiring central purchasing body - - - Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. -Additional Information: -In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. - -WG approval 05/08/2021 - - - - - - - - - - Acquiring party - - - The Role of an Agent that acts on the buying side of a Procurement Process. - - - - - - - - - - Agent in role - - - Relative concept that ties an Agent to a part they play in a given Situational Context. - -Additional information: -The classification of roles is based is based on the degree of involvement into the Procurement Process: -- Primary (Procurement) Pole is directly involved in the Procurement Process; -- Secondary (Procurement sub-) Role is secondary to the Procurement Process -- Tertiary (Related) Role is not involved in the Procurement Process. - - - - - - - - - Auxiliary party - - - Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it. - - - - - - - - - Awarder - - - A Role of an Agent that signs the Award Decision. - - - - - - - - - Awarding central purchasing body - - - Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. -Additional Information: -In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. - -WG approval 05/08/2021 - - - - - - - - - - Budget provider - - - A role of an agent whose Budget is used to pay for the Contract. - - - - - - - - - Buyer - - - A Role of an Agent that awards a Contract and/or purchases items. - -Additional information: -In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. -In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. -In Post-Award the buyer generally refers to the purchaser of items. - - - - - - - - - Candidate - - - The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. - -WG approval 30/05/2023 - - - - - - - - - Catalogue provider - - - A Role of an Agent compiling and supplying a Catalogue. - -Additional Information: - -The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. - -WG Approval 28/01/2021 - - - - - - - - - - Catalogue receiver - - - A Role of an Agent processing a Catalogue. - -Additional Information: -The Catalogue Receiver may not only receive it but also validate it, process it, etc. - -The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. - -WG Approval 28/01/2021 - - - - - - - - - Central purchasing body - - - Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. - -Additional Information: -In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. -Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; - -WG approval 05/08/2021 - - - - - - - - - Contractor - - - The Role of an Agent that has signed a Contract with a Buyer. - -WG approval 08/11/2022 - - - - - - - - - Employment information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions. - - - - - - - - - Environmental protection information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection. - - - - - - - - - Jury member - - - - - - - - - Lead buyer - - - A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. - -WG agreement: 2022-11-22 - - - - - - - - - Mediator - - - A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. -WG approval 20/04/2021 - - - - - - - - - Offering party - - - The Role of an Agent that acts on the Economic Operator side during a Procurement Process. - -Additional information: -As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances. - - - - - - - - - Offer issuer - - - The Role of an Agent that distributes an Offer. - -WG approval 09/02/2023 - - - - - - - - - Offline access provider - - - A Role of an Agent responsible for providing offline access to the Procurement Documents. - - - - - - - - - Other entity - - - Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria. - - - - - - - - - Participation request processor - - - A Role of an Agent responsible for processing Requests To Participate. - - - - - - - - - Participation request receiver - - - A Role of an Agent responsible for receiving Requests To Participate. - - - - - - - - - Payment executor - - - A Role of an Agent responsible for executing the Payment. - - - - - - - - - Procurement procedure information provider - - - A Role of an Agent responsible for providing additional information about the Procurement Procedure. - - - - - - - - - Procurement service provider - - - Role of a public or private body which offers ancillary purchasing activities on the market. - -Additional information - -"Ancillary Purchasing Activities" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: -(a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; -(b) advice on the conduct or design of public Procurement Procedures; -(c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; - -Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. - -This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. - -WG Approval 24/03/2020 - - - - - - - - - - Reviewer - - - Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. -Additional Information: -Any Organisation or Person may request a review of a Procurement Procedure. -WG approval: 20/04/2021 - - - - - - - - - Review procedure information provider - - - A Role of an Agent who is providing more information on the time limits for review Procedures. - - - - - - - - - Review requester - - - Role of an Agent who requests the review of a (Procurement) Procedure. - -WG Approval 23/10/2021 - - - - - - - - - Subcontractor - - - A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. -Additional information -For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. - -At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. - -When modelling ESPD we well analyze whether we need or not a Role named "relied upon". - -WG approval 05/08/2021 - - - - - - - - - - Tax information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes. - - - - - - - - - Tenderer - - - A Role of an Agent that has submitted a Tender. - -Additional Information: -A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. -WG approval 05/08/2021 - - - - - - - - - Tender processor - - - A Role of an Agent responsible for processing Tenders. - - - - - - - - - Tender receiver - - - A Role of an Agent responsible for receiving Tenders. - - - - - - - - - Winner - - - A Role of an Agent to whom a Lot is awarded. -WG approval 05/08/2021 (revised 26/10/2021) - - - - - - - - - Contact point - - - Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. - -Additional information: -This class represents the contact information for a Public Service, Channel, Public Organisation, etc. -The Contact Point could be a role, email address, telephone number, etc. - -WG approval 5/11/2019 - - - - - - - - - Channel - - - A medium through which Agents interact. - -Additional Information -Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. - -Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. -Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. - -See also Directive recitals 53 to 56. - -WG approval 2023-02-14 - - - - - - - - - Location - - - An identifiable geographic place or named place. - - - - - - - - - Address - - - The particulars of the place where a Person or an Organisation is located. - -WG Approval 28/04/2020 - -Additional Information: -An "Address Representation" as conceptually defined by the INSPIRE Address Representation data type: "Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.". - - -The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. - - -This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - -- full address (the complete address as a formatted string) -- addressID (a unique identifier for the address) -The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. - -The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL. - - - - - - - - - Geometry - - - The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. - -Additional Information: -This class defines the notion of "Geometry" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats. - - - - - - - - - Contract specific term - - - Gathering class for conditions and stipulations related to a contract in the Post-Award Phase. - - - - - - - - - Lot specific term - - - Gathering class for conditions and stipulations related to a Lot. - - - - - - - - - Procedure specific term - - - Gathering class for conditions and stipulations related to a Procedure. - - - - - - - - - Process planning term - - - Conditions and stipulations defining particularities of the unfolding of the Procurement Process. - - - - - - - - - Term - - - A governing condition or stipulation. - - - - - - - - - Participation request term - - - Conditions and stipulations defining particularities of requesting participation in a Procedure. - - - - - - - - - Access term - - - Conditions and stipulations about where and how to access the Procurement Documents. - -WG Approval 09/03/2021 - - - - - - - - - - - Non disclosure agreement term - - - Conditions and stipulations - - - - - - - - - Opening term - - - Conditions and stipulations defining particularities of the opening of Tenders. -Additional Information: -The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. -WG Approval 15/04/2021 - - - - - - - - - Security clearance term - - - Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. - -Additional information: -This corresponds in eForms to BT-578, BT-78, BT-732 . - -WG approval 20/06/2023 - - - - - - - - - - Direct award term - - - Conditions and stipulations defining particularities of the award of a Contract without prior publication. - -Addtional Information: - -Direct award may refer to a previous Procedure and/or specific Lot(s). - -It may also refer to other justified situations whereby there is no previous Procedure. - -See Directive 2014/24/EU Article 32. - -WG Approval 22/11/2019 - - - - - - - - - - - - Procedure term - - - Conditions and stipulations defining particularities of the Procedure. - -(WG approval 23/11/2018) - - - - - - - - - Submission term - - - Conditions and stipulations defining particularities of submitting Documents to the Buyer. - -Additional Information: -These Documents can be Tenders, Request To Participate and expressions of interest. - -WG Approval 14/07/2020 - - - - - - - - - Contract term - - - Conditions and stipulations defining particularities of the Post Award Phase. - -(WG approval 23/11/2018) - - - - - - - - - - Design contest regime term - - - Conditions and stipulations defining particularities of a Design Contest. - -WG approval: 04-02-2021 - - - - - - - - - Framework agreement term - - - Conditions and stipulations defining particularities in a Framework Agreement. - - - - - - - - - Multiple stage procedure term - - - Conditions and stipulations defining particularities of Procedures carried out in several steps -Additional Information: -Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. -WG Approval 15/04/2021 - - - - - - - - - Prize - - - A reward given in a Contest. -WG approval: 15/04/2021 - - - - - - - - - Subcontract term - - - A concept to describe the main information regarding the share of parts of the Contract to third parties. - - - - - - - - - Award evaluation term - - - Conditions and stipulations defining particularities of the evaluation of Award Criteria. - - - - - - - - - Evaluation term - - - Conditions and stipulations defining particularities of the Tender evaluation. - -(WG approval 23/11/2018) - - - - - - - - - - - - Selection evaluation term - - - Conditions and stipulations defining particularities of the evaluation of Selection Criteria. - - - - - - - - - Constraint - - - Limitation applied to an Information Concept. - -Additional Information: -Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context. - - - - - - - - - Criterion - - - Condition for evaluation or assessment. - -Additional Information: -In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service. - - - - - - - - - Evidence - - - Proof that a Requirement is met. - - - - - - - - - - - Information concept - - - Piece of information that the Evidence provides or the Requirement needs. - - - - - - - - - Requirement - - - Condition or prerequisite that is to be proven by Evidence. - -Additional Information: -Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. -To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. -To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification. - - - - - - - - - Award criteria summary - - - - - - - - - Award criterion - - - Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. - -WG approval 05/11/2018 - - - - - - - - - Economic standing summary - - - - - - - - - Exclusion ground - - - Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. - -Additional Information: -This corresponds in eForms to BG-701 Exclusion Grounds. - -WG approval 31/10/2018 - - - - - - - - - Exclusion grounds summary - - - - - - - - - Participation condition - - - Criterion that describes a Requirement to take part in a procurement. - -WG approval 30/05/2023 - - - - - - - - - Participation conditions summary - - - - - - - - - Procurement criteria summary - - - WG approval 24/01/2023 - - - - - - - - - Procurement criterion - - - A criterion specific to Procurement. - -Additional Information: - -This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). - -WG Approval 23/04/2020 - - - - - - - - - Professional suitability summary - - - - - - - - - Qualification criteria summary - - - - - - - - - Qualification criterion - - - Criterion used in the first stage of procurement. - -WG approval 30/05/2023 - - - - - - - - - Selection criteria summary - - - - - - - - - Selection criterion - - - Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. - -Additional Information: -Selection criteria may relate to: -(a) suitability to pursue the professional activity; -(b) economic and financial standing; -(c) technical and professional ability - -WG approval 31/10/2018 - - - - - - - - - Technical ability summary - - - - - - - - - Green procurement - - - Approach whereby Buyers seek to procure with a reduced Environmental Impact. - -Additional Information: - -The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. - -Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf -An instance of the class GreenProcurement is represented in eForms with the code "env-imp" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf - - - - - - - - - Innovative procurement - - - An instance of the class InnovativeProcurement is represented in eForms with the code "inn-pur" defined in the codelist Strategic-Procurement. - -Research (21/01/2020): - -Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. - -Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions - -Additional Information: -‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; -See: Directive 2014/24 -Articles: 2, 26 (3), 31, 67 (2.a) - -Question: -Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement? - - - - - - - - - Social procurement - - - An instance of the class SocialProcurement is represented in eForms with the code "soc-obj" defined in the codelist Strategic-Procurement. - - -Research (21/01/2020): -Socially Responsible Public Procurement (SRPP): - -‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. -Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en -See Article 18 and Annex X Directive 2014/24. - - - - - - - - - Strategic procurement - - - Public Procurement that contributes to achieving pressing policy goals. - -Additional Information: -Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. - -This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. - -Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on "background information". - -WG Approval 10/03/2020 - - - - - - - - - Dynamic purchase system technique - - - A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. - -WG approval 23/05/2023 - - - - - - - - - E auction technique - - - A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. - -Additional Information: -This corresponds in eForms to BT-767 Electronic Auction . - -WG approval 20/07/2018 - - - - - - - - - Framework agreement technique - - - Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. - -WG approval 18/05/2021 - - - - - - - - - Technique - - - Method used for conducting Procurement Procedures. - -Addtional information: -This corresponds in eForms to BG-706 Techniques. - -Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). - -WG Approval 19/09/2019 - - - - - - - - - - Context specific description - - - A description concerning a Procurement Object or a Notice in a specific Situation Context. - -Additional Information: -The description has its own identity (+I) but is dependent (+D) on the concerned Entity. - -We say that ContextSpecificDescription *concerns* an Entity. - - - - - - - - - - Contextual projection - - - Projection of an Entity and all of its properties that hold in a given Situation Context. - -Additional Information: -The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) - -We say that ContextualProjection *describes* an Entity. - -Adaptation of ContextSlices pattern encoding a 4D view. -http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices - - - - - - - - - Estimate - - - An approximate calculation or a judgement of the value, number, Quantity or extent of something. - - - - - - - - - Procurement process information - - - Information about the temporal unfolding or succession of Procurement Objects. - - - - - - - - - Statistical information - - - Statistical data on the Procedure and the Lot. - -Additional Information - -At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. -Therefore this class is temporal and should cease to exist in fully electronic Procurement. -The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). - -Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. - -WG Approval 12/12/2019 - - - - - - - - - - Concession estimate - - - - - - - - - Subcontracting estimate - - - Information on the approximation of the foreseen Subcontracting. - - - - - - - - - Lot award decision - - - Result concerning the Lot attributed by the Awarder. - - - - - - - - - Lot group award information - - - Award information related to a given Group of Lots. - - - - - - - - - Notice award information - - - Information about an Award Notice. - - - - - - - - - Tender award outcome - - - Result concerning the Tender attributed by the Awarder. - - - - - - - - - Review irregularity summary - - - Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). - -Additional information: -This class corresponds in eForms to BG-613 Buyer Review Requests. - - - - - - - - - - - - Review request summary - - - Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. - -Additional information: -This class corresponds in eForms to BG-612 Buyer Review Summary. - - - - - - - - - Submission statistical information - - - Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. - -WG approval 30/05/2023 - - - - - - - - - Contract lot completion information - - - Information related to a given Lot at the end of the procurement. - - - - - - - - - Electronic signature - - - - - - - - - Originator request - - - Document in which the Originator describes his needs. - -WG approval 09/02/2023 - - - - - - - - - Tender - - - Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. - -(WG approval 03/05/2022) - - - - - - - - - - - - Offer - - - Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. - -Additional information: -A quotation is considered to be an Offer in the eProcurement Ontology. - -WG approval 09/02/2023 - - - - - - - - - Procurement document - - - Document produced or referred to by the Buyer to describe or determine elements of the Procurement. - -Additional information: - -Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. - -Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. - -Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. - -WG Approval 23/05/2019 17:08:30 - - - - - - - - - Notice - - - Document published by the Buyer about market opportunities and results. - -WG Approval 23/05/2019 - - - - - - - - - - Document - - - A set of interrelated Business Information representing the Business facts and associated metadata. -The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. - -WG Approval 23/05/2019 - - - - - - - - - - Award decision - - - Resolution of the Buyer as to the result of the Procurement Procedure. - -WG approval 14/11/2018 - - - - - - - - - Request for participation - - - Application of an Economic Operator to be included in a Procurement Procedure. -WG approval: 20/04/2021 - - - - - - - - - Expression of interest - - - Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. -WG approval 13/04/2021 - - - - - - - - - Request for clarification - - - A demand for elucidation of received information. -Additional Information: -Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. -WG approval 20/04/2021 - - - - - - - - - Direct contract - - - - - - - - - Concession contract - - - A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. - -WG Approval 24/05/2022 - - - - - - - - - Purchase contract - - - A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract. - - - - - - - - - Fund - - - A financial resource used to support the Procurement. - -Additional Information: - -In the context of EU, Funds can be divided into programmes, actions and projects. - -Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). - -Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. - -WG Approved 14/05/2019 - - - - - - - - - - - - - - Framework agreement - - - An agreement between one or more Contracting Authorities and one or more Economic Operators. - -Additional Information: -When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. - -WG approval 18/05/2021 - - - - - - - - - Contract - - - A voluntary, deliberate, and legally binding agreement between two or more competent parties. - -Additional information: -This includes Concession Contracts. - -(WG approval 01/06/2018) - - - - - - - - - Review decision - - - Information about Review Decisions. - - - - - - - - - Review object - - - Information about a Review Request or a Review Decision. - -Additional information: -This class corresponds to the BG-714 Review in eForms. - - - - - - - - - - - Review request - - - Information about requests to review procedures. - - - - - - - - - Contract modification - - - An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer. - - - - - - - - - Element change description - - - Information about a specific field to be changed with regard to a previous Notice. - - - - - - - - - Element confidentiality description - - - Information about a specific field not intended for publication. - -Additional Information: -In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided. - - - - - - - - - - Element description - - - Description about a specific resource. - - - - - - - - - Element modification description - - - Information about a specific field to be changed with regard to the Modification Of a Contract. - - - - - - - - - Notice change - - - Information about a corrigendum in a Notice. - - - - - - - - - Notice description - - - Descriptions about the notice publishing, or providing evolutions of resources. - - - - - - - - - Publication provision - - - Information about fields not intended for publication. - - -Additional Information: -The non-published information may become available at a later date and may differ from one element to another within a given Document. - -Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. - -WG Approval 16/05/2019 - - - - - - - - - - - - - - Identifier - - - A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. - - - - - - - - - Duration - - - The length of time in which a concept occurs. - - - - - - - - - Indefinite duration - - - - - - - - - Monetary value - - - A number of monetary units specified using a given unit of currency. - -Additional information: -In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. - -WG approval 13/04/2021 - - - - - - - - - - Period - - - A time interval or a Duration. - -(WG approval 28/04/2020) - - - - - - - - - - Quantity - - - A counted number of non-monetary units possibly including fractions. - - - - - - - - - - Specific duration - - - - - - - - - Thing - - - Any individual in the domain of discourse is a Thing. - - -Additional Information: - -The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing. - - - - - - - - - - - - Is s m e suitable - - - The Lot is suitable for small and medium enterprises (SMEs). - -Additional Information - -This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. - -For example, number of employees and turnover are applicable to the definition of an SME. - -WG Approval 15/10/2019 - - - - - - - - - - 1 - - - - - - - - - Has additional information - - - Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 - - - - - - - - - - - - - - - Is using e u funds - - - The procurement foresees funding by the Union. - -Additional Information: -The funding may cover the whole procurement or part of the procurement. - -For example the European Structural and Investment Funds or grants awarded by the European Union. - - - - - - - - - - - 1 - - - - - - - - - Is covered by g p a - - - Specifies whether the Agreement on Government Procurement (GPA) applies. - -Additional information: -The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. - -This corresponds in the e Forms to BT-115 GPA Coverage. - -WG Approval 15/10/2019 - - - - - - - - - - - 1 - - - - - - - - - Is recurrent - - - The Procurement being notified is likely to be included in another procedure in the foreseeable future. - -Additional Information: - -For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. - -This corresponds in eForms to BT-94 Recurrence. - -WG Approval 12/05/2020 - - - - - - - - - - 1 - - - - - - - - - Has recurrence description - - - Any additional information about the recurrence of the Procurement. - -Additional Information: -For example estimated timing of the Procedure. - -This corresponds in eForms to BT-95 Recurrence Description. - -(WG approval 2019-01-16) - - - - - - - - - - 1 - - - - - - - - - Has legal basis description - - - - - - - - - - - - - - - Is accelerated - - - Statement about the fact that the procedure will be reduced due to a state of urgency. - -Additional Information - -This modifies the time limit for the receipt of requests to participate or the receipt of tenders. - -WG Approval 20/08/2019 - - - - - - - - - - 1 - - - - - - - - - Has accelerated procedure justification - - - The reasons why the procedure is accelerated. - -Additional Information: -A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. - -WG Approval 09/06/2020 - - - - - - - - - - - - - - - - - Has main feature - - - Main features of the procedure and information about where the full rules for the procedure can be found. - -Additional Information: -This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds. - - - - - - - - - - - - - - - Is joint procurement - - - Multiple buyers procure together within the same procedure. - -Addition Information: -In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . - - - - - - - - - 1 - - - - - - - - - Is design contest - - - A competition which enables the buyer to acquire a plan or design via a jury. - -Additional information: -Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering - -The contest may include or not the award of prizes; - -WG approval 04-02-2021 - - - - - - - - - 1 - - - - - - - - - Title - - - A name given to the resource. - -WG approval 30/05/2023 - - - - - - - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Name - - - The complete name of the Person as one string. - - - - - - - - - - - - - - - Family name - - - The hereditary surname of a family. - - - - - - - - - - - - - - - - Given name - - - The name(s) that identify the Person within a family with a common surname. - - - - - - - - - - - - - - - - Patronymic name - - - Name based on the given name of the Person's father. -WG Approval 09/11/2021 - - - - - - - - - - - - - - - Alternative - - - Any name by which an individual is known other than their full name. -WG 09/11/2021 - - - - - - - - - - - - - - - Birth name - - - Family name of the Person given upon their birth. -WG Approval 09/11/2021 - - - - - - - - - - - - - - - Birth date - - - The point in time on which the Person was born. - - - - - - - - - 1 - - - - - - - - - Is listed company - - - Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange -rules or through law or enforceable means), which impose requirements to ensure adequate transparency of -beneficial ownership. - -<u>Additional Information:</u> - -In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. - -WG Approval 21/11/2019 - - - - - - - - - 1 - - - - - - - - - Has group type - - - Form of collaboration agreement between organisations. - -Additional Information: -This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. - -WG Approval 09/11/2021 - - - - - - - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Title - - - A name given to the resource. - -WG approval 30/05/2023 - - - - - - - - - - - - - - - Has alias - - - Acronym or alternative name of the Agent. -WG Approval 25/03/2021 - - - - - - - - - - - - - - - Has legal name - - - The officially registered name of an organisation. - -WG Approval 10/01/2023 - - - - - - - - - - - - - - - Has organisation unit name - - - The name of a subpart of an organisation. - -Additional Information: -E.g. the relevant department of a large organisation. - -We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well. - - - - - - - - - 1 - - - - - - - - - Has buyer legal type description - - - Self-explanatory text about the Buyer Legal Type. - -Additional information: -This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. - -WG Approval 06/09/2022 - - - - - - - - - 1 - - - - - - - - - Has legal form type - - - The classification of an Organisation according to legislation. - -Additional Information: -Generally, this is defined for Tenderers who want to submit as an Organisation Group. -Note that the codelist provided at national level should be used. - - - - - - - - - - 1 - - - - - - - - - Has main activity description - - - Self-explanatory text about the Main Activity . - -Additional information: -This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. - -WG Approval 06/09/2022 - - - - - - - - - - 1 - - - - - - - - - Has internet address - - - The main web page used by the instance of the concept. - -WG Approval 01/06/2023 - - - - - - - - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Title - - - A name given to the resource. - -WG approval 30/05/2023 - - - - - - - - - - - - - - - - Is contracting entity - - - Role of entities, which: - -(a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. - -(b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. - -Additional Information - -The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. -For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. - -WG Approval 28/04/2020 - - - - - - - - - - 1 - - - - - - - - - Has activity description - - - In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. - -However, in eForms there is the code "other" to cover undefined activities. For mapping to this eForms feature one could also use this property. - - - - - - - - - - - - - - - - Has buyer profile - - - Website address where the buyer publishes information on its procurement procedures and general information. - -Additional information: -This corresponds in the eForms to BT-508 Buyer Profile URL. - -WG approval 04/05/2018 - - - - - - - - - - 1 - - - - - - - - - Has fax - - - The fax number used to reach a person or an organisation. - - - - - - - - - - - - - - - Telephone - - - A telephone number through which the Contact Point can be contacted. - - - - - - - - - - - - - - - - Email - - - The email of the Organisation. - - - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Has contact name - - - A short text by which a contact is known or referred to. - -WG Approval: 27/01/2022 - - - - - - - - - 1 - - - - - - - - - Has internet address - - - The main web page used by the instance of the concept. - -WG Approval 01/06/2023 - - - - - - - - - - - 1 - - - - - - - - - Has address u r l - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - 1 - - - - - - - - - Geographic name - - - A textual description for a Location. - -Additional Information: -The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. - -A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - -- "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) -- "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) -- "Athens"@en (the English language exonym) -INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. - -The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - -- use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; -- use 'EL' in preference to the ISO 3166 code GR for Greece. -Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code. - - - - - - - - - 1 - - - - - - - - - Post name - - - The key postal division of the address, usually the city. (INSPIRE's definition is "One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, "Paris". - - - - - - - - - - - - - - - Address area - - - The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. - -Additional Information: -This would typically be part of a city, a neighbourhood or village, e.g. Montmartre. - - - - - - - - - 1 - - - - - - - - - Locator name - - - Proper noun(s) applied to the real world entity identified by the locator. - -Additional Information: -The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. - -The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator. - - - - - - - - - 1 - - - - - - - - - Admin unit l2 - - - The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. - -Additional Information: -Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" in the ATU controlled vocabulary. - - - - - - - - - - 1 - - - - - - - - - Full address - - - The complete address written as a formatted string. - -Additional Information: -Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is "Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France". - - - - - - - - - 1 - - - - - - - - - Locator designator - - - A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. - -Additional Information: -In simpler terms, this is the building number, apartment number, etc. For an address such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17". - - - - - - - - - 1 - - - - - - - - - Admin unit l1 - - - The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. - -Additional Information: -Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this. - - - - - - - - - 1 - - - - - - - - - Post code - - - The post/zip code of an address. (INSPIRE's definition is "A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.") - -Additional Information: -Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example "75000". - - - - - - - - - - - - - - - Thoroughfare - - - An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. - -Additional Information: -For example, "Avenue des Champs-&#201;lys&#233;es". - - - - - - - - - - - - - - - Coordinates - - - The coordinate list. - - - - - - - - - - - - - - - Longitude - - - The longitude. - - - - - - - - - - - - - - - Latitude - - - The latitude. - - - - - - - - - - - - - - - Has estimated contract notice publication date - - - Foreseen date for publication of Contract Notice. - -Additional information: -This corresponds in eForms BT-127 Future Notice. - - - - - - - - - - - 1 - - - - - - - - - Has estimated tender invitation date - - - The planned date for the dispatch of the invitations to submit tenders. -WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has award date scheduled - - - Planned date for the award decision. -WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Is procurement document restricted - - - The access to certain procurement documents is restricted. - -Additional Information: -This corresponds in eForms to BT-14 Documents Restricted. - -WG Approval 10/10/2019 - - - - - - - - - 1 - - - - - - - - - Has restricted access u r l - - - The internet address with information on accessing the restricted (part of the) procurement document. - -Additional Information: -This corresponds in eForms to BT-615 Documents Restricted URL. - - - - - - - - - - 1 - - - - - - - - - Has additional information deadline - - - The time limit for requesting further information. - -Additional information: - -This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. - -This corresponds in eForms to BT-13 Additional Information Deadline. - -WG Approval 09/06/2020 - - - - - - - - - - 1 - - - - - - - - - Has public access u r l - - - Web page where the procurement documents can be downloaded. - -Additional Information: -This corresponds in the eForms to BT-15 Documents URL. - -WG Approval 09/03/2021 - - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - 1 - - - - - - - - - Is non disclosure agreement required - - - - - - - - - 1 - - - - - - - - - Has opening date time - - - Date and time for the opening of tenders. - -WG Approval 12/03/2019 - - - - - - - - - - - 1 - 1 - - - - - - - - - Has opening description - - - Further information about the opening of tenders. - -Additional Information -For example, who may participate in the opening and whether any authorization is needed. - -WG Approval 12/03/2019 - - - - - - - - - - - - - - - Has opening u r l - - - The identifier of the address of the Opening of Tenders. -WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has deadline - - - The deadline by which the security clearance must be submitted to the buyer. - -WG Approval 12/09/2019 - - - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Is security clearance required - - - - - - - - - 1 - - - - - - - - - Has justification - - - An explanation about the reasons for using the concept. -WG Approval 5/11/2019 - - - - - - - - - - - - - - - - Is submission for all lots allowed - - - Indicates whether tenders may be submitted for all Lots. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) - -WG approval 23/08/2022 - - - - - - - - - - 1 - - - - - - - - - Has cross border law - - - The applicable law when buyers from different countries procure together within one procurement procedure. - -Additional Information: -This corresponds in eForms to BT-09 Cross Border Law. - - - - - - - - - - - - - - - Is one lot only allowed - - - Indicates whether tenders may be submitted for only one Lot. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 23/08/2022 - - - - - - - - - - - 1 - - - - - - - - - Has group lot evaluation method - - - Description of how lots and groups of lots are evaluated against one another in the procedure. - - - - - - - - - - - - - - - - - - - Is awarded by c p b - - - Procedure is awarded by a Central Purchasing Body. - - - - - - - - - - - 1 - - - - - - - - - Has maximum lot submission allowed - - - The total number of lots for which one Tenderer can submit Tenders. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 12/12/2018 - - - - - - - - - - - 1 - - - - - - - - - Has lot award combination - - - The contracting authority reserves the right to award contracts combining lots or groups of lots. - -Additional Information: -This property contains information about the Lots concerned. -This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 23/08/2022 - - - - - - - - - - 1 - - - - - - - - - Has maximum number of lots to be awarded - - - The maximum number of lots for which contract(s) can be awarded to one tenderer. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG Approval 22/08/2019 - - - - - - - - - 1 - - - - - - - - - Has national procedure rules - - - - - - - - - - - - - - - Has e auction u r l - - - The internet address of the electronic auction. - -Additional Information: - -This corresponds in eForms to BT-123 Electronic Auction URL. - - - - - - - - - 1 - - - - - - - - - Has receipt deadline - - - The time limit for receiving submissions. - -Additional Information -This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. -This attribute should be used for standard forms mappings. - -WG Approval 21/07/2020 - - - - - - - - - - 1 - - - - - - - - - Has receipt expression deadline - - - Time limit for receipt of expressions of interest. - -Pending of review by the WG - - - - - - - - - - - 1 - - - - - - - - - Is guarantee required - - - The submitted information must include a financial commitment to be used in case of default. - -Additional Information: -See the additional information provided in the definition of the 'Guarantee Description' element. - -WG Approval 21/07/20 - - - - - - - - - - - 1 - - - - - - - - - Has guarantee description - - - Information on the financial commitment required from the economic operator. - -Additional Information: -1. This information may include the amount and the way of delivering of the guarantee -2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. -3. Usual modalities are bonds, cheques, loans, other. - -WG Approval 21/07/20 - - - - - - - - - - - - - - - - Has submission u r l - - - -Additional Information: -This corresponds to the eForms BT-18 Submission URL. - -This corresponds in eForms to BT-509 Organisation eDelivery Gateway. - - - - - - - - - - - - - - - Has non electronic submission description - - - Textual explanation of how non-electronic information is to be presented. - -WG Approval 21/07/2020 - - - - - - - - - - - - - - - - - Has receipt preliminary market consultation deadline - - - - - - - - - 1 - - - - - - - - - Is advanced electronic signature required - - - Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. - - - -The submitted information is required to be signed electronically. - -Additional Information: - -Signature can be defined as "data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. -For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. - -WG Approval 21/07/2020 - - - - - - - - - - 1 - - - - - - - - - Has receipt participation request deadline - - - - - - - - - 1 - - - - - - - - - Is multiple tender submission allowed - - - Tenderers may submit more than one competing tenders. - -WG Approval 10/10/2019 - - - - - - - - - - - 1 - - - - - - - - - Has receipt tender deadline - - - - - - - - - 1 - - - - - - - - - Has late submission information description - - - A narrative text explaining the content of the economic operator information that can be submitted late. - -Additional Information -This does not apply to requests for clarifications. - - - - - - - - - - - - - - - - Has e ordering - - - Electronic means will be used for requesting and purchasing in the post-award process. - -WG Approval 12/09/2019 - - - - - - - - - - - 1 - - - - - - - - - Has e payment - - - Electronic means must be used for paying. -WG Approval 09/11/2021 - - - - - - - - - - 1 - - - - - - - - - Has options - - - The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid). - - - - - - - - - 1 - - - - - - - - - Has e invoicing - - - Electronic means will be used for invoicing in the post-award process. - -Additional Information: -This attribute is used for standard form mappings. - -WG Approval 12/09/2019 - - - - - - - - - - 1 - - - - - - - - - Is renewal indicator - - - Indicates whether the contract is subject to a renewal clause. -WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has maximum number of renewals - - - The maximum number of times the contract can be renewed. - -Additional Information - -By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. -For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. - -PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. - - - - - - - - - - 1 - - - - - - - - - Has options description - - - The motivation and details about additional purchases that the buyer may undertake while the contract is valid. - -WG Approval 09/04/2019 - - - - - - - - - - - - - - - Has renewal description - - - Any other information about the renewal(s). - -WG approval 16/04/2019 - - - - - - - - - - - - - - - Has payment arrangement - - - Information about financial clauses that will govern some economic aspects of the execution of the contract. - -Additional Information: These clauses usually refer to financial and payment provisions. - -This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. - -WG Pending of discussion with eForms - - - - - - - - - - - - - - - Has legal form requirement - - - The legal form to be taken by a Contractor. - -Additional Information: -Generally, this is defined to cover the case where an Organisation Group is involved. -Note that the codelist provided at national level should be used. - - - - - - - - - 1 - - - - - - - - - Has place of performance additional information - - - Further details on the location of the execution of the contract. - -WG Approval 30/07/2019 - - - - - - - - - - - - - - - Has performance conditions - - - The particular conditions and additional information related to the execution of the contract. - -Additional Information: - -For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. - -WG approval 15-01-2019 - - - - - - - - - - - - - - - Is jury decision binding - - - Indicates whether the procuring entity is bound to apply the decision of the jury. - - - - - - - - - 1 - - - - - - - - - Has participation payment - - - Details on payments to participants -WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has followup contract - - - Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. - -WG Approval 29/08/2019 - - - - - - - - - 1 - - - - - - - - - Has followup contract information - - - Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). - -WG Approval 03/09/2019 - - - - - - - - - - - - - - - Has maximum participants number - - - The maximum number of participants in the framework agreement. - -Additional Information: -Maximum number of tenderers who may be awarded a contract within the framework agreement. - -The number is a positive integer. - -This corresponds in eForms to BT-113 Framework Maximum Participants Number. - -WG Approval 2019-02-05 - - - - - - - - - 1 - - - - - - - - - Has buyer category description - - - A classification of buyers participating in a framework agreement. - -Additional Information: -Buyers that can use the Framework Agreement not mentioned by name. - -For example, the classification "all hospitals in the Tuscany region" is used instead of naming each individual buyer. - -This corresponds in eForms to BT-111 Framework Buyer Categories. - -WG Approval 2019-05-06 - - - - - - - - - - - - - - - Has duration extension justification - - - The explanation of the reason why the framework agreement has an extended duration. - -Additional Information: -This corresponds in eForms to BT-109 Framework Duration Justification. -The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. - -Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. - -WG Approval 26/09/2019 - - - - - - - - - 1 - - - - - - - - - Has maximum number of candidates - - - Maximum number of candidates to be invited for the second stage of the procedure. - -WG Approval 22/08/2019 - - - - - - - - - 1 - - - - - - - - - Has successive reduction - - - The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. - -Additional information: -This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. -WG Approval 22/08/2019 - - - - - - - - - 1 - - - - - - - - - Has minimum number of candidates - - - Minimum number of candidates to be invited for the second stage of the procedure. - -WG Approval 22/08/2019 - - - - - - - - - 1 - - - - - - - - - Has estimated invitation to tender date - - - The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. - -Additional Information: -This corresponds in eForms to BT-130 Dispatch Invitation Tender. - -WG Approval 01/10/2019 - - - - - - - - - 1 - - - - - - - - - Has no negotiation necessary - - - The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. - -Additional information: -See Article 29(4) of Directive 2014/24/EU. - - - - - - - - - - 1 - - - - - - - - - Has estimated invitation to express interest date - - - The estimated date of dispatch of the invitations to confirm interest. - -Additional Information: -This corresponds in eForms to BT-631 Dispatch Invitation Interest. - - - - - - - - - 1 - - - - - - - - - Has qualification system renewal description - - - - - - - - - 1 - - - - - - - - - Has prize rank - - - The position of the prize (e.g. first place, second place) in a design contest list of prizes. - -WG Approval 29/08/2019 - - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Has maximum share - - - The maximum proportion of something to be distributed. - -Additional Information: -In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. - -WG Approval 17/09/2019 - - - - - - - - - - - 1 - - - - - - - - - Has minimum share - - - The minimum proportion of something to be distributed. - -Additional Information: -In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. - -WG Approval 17/09/2019 - - - - - - - - - 1 - - - - - - - - - Has subcontracting involved - - - List of Subcontractors and the subject matter they cover are required. - -Additional Information: -The tenderer will ned to supply this information in the tender. - -WG Approval 28/02/2019 - - - - - - - - - 1 - - - - - - - - - Has minimum subcontractors proposed obligation - - - The minimum percentage of the contract value that the contractor must subcontract. - -Additional information: -This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - -WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has subcontractors proposed above obligation - - - The maximum percentage of the contract value that the contractor must subcontract. - -Additional information: -This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - -WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has award criteria evaluation formula - - - The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. - -Additional Information: -This corresponds in eForms to BT-543 Award Criteria Complicated. - - - - - - - - - - - - - - - Has overall quality award criteria ponderation - - - The weighting given to quality. - -Additional Information: -This weighting covers usually all quality criteria against price or cost criteria. - - - - - - - - - 1 - - - - - - - - - Has overall price award criteria ponderation - - - The weighting given to price. - -Additional Information: -This weighting covers usually all price criteria against cost or quality criteria. - - - - - - - - - 1 - - - - - - - - - Has award criteria order justification - - - The justification for only indicating the award criteria's order of importance, not their weighing. - -Additional Information: -This corresponds in eForms to BT-733 Award Criteria Order Justification. - - - - - - - - - 1 - - - - - - - - - Has overall cost award criteria ponderation - - - The weighting given to cost. - -Additional Information: -This weighting covers usually all cost criteria against price or quality criteria. - - - - - - - - - 1 - - - - - - - - - Has threshold value - - - The cut-off level for a given concept. - -Additional Information: -This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold). - - - - - - - - - 1 - 1 - - - - - - - - - Bias - - - Parameter used to adjust the evaluation of the Criterion. - -Additional Information: -The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the "presence of local preferences distorting international specialisation and resource allocation". When quantified, this systematic error can be removed. - - - - - - - - - 1 - - - - - - - - - Weight - - - Relative importance of the Criterion. - -Additional Information: -The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1. - - - - - - - - - 1 - - - - - - - - - Weighting consideration description - - - Explanation of how the weighting of a Criterion is to be used. - -Additional Information: -This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process. - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Pref label - - - The preferred lexical label for a resource, in a given language. - -WG approval 30/05/2023 - - - - - - - - - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - 1 - - - - - - - - - Pref label - - - The preferred lexical label for a resource, in a given language. - -WG approval 30/05/2023 - - - - - - - - - 1 - - - - - - - - - Has award criteria stated in procurement documents - - - - - - - - - 1 - 1 - - - - - - - - - Has fixed value - - - This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed. - - - - - - - - - 1 - - - - - - - - - Describes objective participation rules - - - - - - - - - 1 - - - - - - - - - Describes verification method - - - - - - - - - 1 - - - - - - - - - Indicates performing staff information requirement - - - - - - - - - 1 - - - - - - - - - Has formula - - - The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. - -Additional Information: -This corresponds in eForms to BT-543. - - - - - - - - - 1 - - - - - - - - - Describes profession relevant law - - - - - - - - - 1 - - - - - - - - - Has service reserved to particular profession - - - - - - - - - 1 - - - - - - - - - Describes profession - - - - - - - - - 1 - - - - - - - - - Has qualification condition - - - - - - - - - - - - - - - Has condition verification method - - - - - - - - - - - - - - - Has selection criteria stated in procurement documents - - - - - - - - - 1 - - - - - - - - - Describes minimum level of standards - - - - - - - - - 1 - - - - - - - - - Is used for candidate restriction - - - The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. - -Additional Information: -This property is only used if a maximum number of candidates was foreseen in the procedure. -This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite - - - - - - - - - 1 - - - - - - - - - Has total vehicles - - - The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information - -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 - - - - - - - - - - 1 - - - - - - - - - Has zero emission vehicles - - - The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information - -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 - - - - - - - - - - 1 - - - - - - - - - Has clean vehicles - - - The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 - - - - - - - - - - 1 - - - - - - - - - Has non accessibility criterion justification - - - Reason for not applying accessibility criteria. - -Additional information: -This corresponds in eForma to BT-755 Accessibility Justification. - -WG Approval 05/03/2019 - - - - - - - - - - - - - - - Has strategic procurement description - - - Self-explanatory text about a concept. - - - - - - - - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Is to be relaunched - - - Indicator of whether the procurement object is to be relaunched. - -Additional information: -This can be instantiated in the post award phase. - -This corresponds in eForms to BT-634 Procurement Relaunch. - -WG Approval: 18/01/2022 - - - - - - - - - - 1 - - - - - - - - - Is competition terminated - - - No further contracts will be awarded in this procedure. - -Additional Information: -This can be instantiated in the post award phase. - -PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. - -This corresponds in eForms to BT-756 PIN Competition Termination. - - - - - - - - - 1 - - - - - - - - - Is d p s terminated - - - End of the Dynamic Purchase System (DPS). - -Additional Information: This property can be used in the contract award notice even if no contracts are awarded. - -WG Approval 22/11/2019 - - - - - - - - - - 1 - - - - - - - - - Has calculation method - - - Formula for obtaining values. - -Additional Information: -The possible values are monetary values, ranking scores, criterion weighting. - -WG Approval 25/05/2018 - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Has estimated percentage - - - The estimated proportion foreseen to be subcontracted. - -WG Approval 07/01/2020 - - - - - - - - - 1 - - - - - - - - - Has subject matter - - - Description of the share of the contract that is to be subcontracted. - -Additional infromation: -This can be an aggregate of several subcontracts. - -WG Approval 09/11/2021 - - - - - - - - - - - - - - - Has non awarded contract title - - - The title the contract would have had if it had been awarded. - -Additional information: - -This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. - -WG agreement: 06/09/2022 - - - - - - - - - 1 - - - - - - - - - Has non awarded contract number - - - The number the contract would have had if it had been awarded. - -Additional information: - -This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. - -WG agreement: 06/09/2022 - - - - - - - - - - 1 - - - - - - - - - Has award rank - - - The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. - -Additional Information: -This corresponds in eForms to BT-171 Tender Rank. - - - - - - - - - - 1 - - - - - - - - - Has review irregularity count - - - The number of requests for a given irregularity. - -Additional information: -This attribute corresponds in eForms to BT-635 Buyer Review Requests Count. - - - - - - - - - 1 - 1 - - - - - - - - - Has total number of complainants - - - The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. - -Additional information: -This attribute corresponds in eForms to BT-712 Buyer Review Complainants - -WG Approval 11/04/2019 - - - - - - - - - 1 - - - - - - - - - Has e e a received tenders - - - The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. - -WG Approval 12/12/2019 - - - - - - - - - 1 - - - - - - - - - Has received participation requests - - - The amount of applications to participate from economic operators. - -WG Approval 12/12/2019 - - - - - - - - - 1 - - - - - - - - - Has non e e a received tenders - - - The amount of tenders received from economic operators in non-EEA countries. - -WG Approval 12/12/2019 15:20:36 - - - - - - - - - 1 - - - - - - - - - Has s m e received tenders - - - The amount of tenders received from micro, small and medium-sized enterprises. - -<u>Additional Information:</u> - -See Commission Recommendation 2003/361/EC. -The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. - -WG Approval 05/03/2020 - - - - - - - - - - 1 - - - - - - - - - Has received micro tenders - - - The amount of tenders received from a micro enterprise. - -<u>Additional Information:</u> - -See Commission Recommendation 2003/361/EC. - - - - - - - - - 1 - - - - - - - - - Has received small tenders - - - Tenders from small enterprise. - -<u>Additional Information:</u> - -See Commission Recommendation 2003/361/EC. - - - - - - - - - - - 1 - - - - - - - - - Has medium tender per lots - - - Tenders from medium-sized enterprise. - -<u>Additional Information:</u> - -See Commission Recommendation 2003/361/EC. - - - - - - - - - - 1 - - - - - - - - - Has received tenders - - - The total amount of tenders received. - -WG Approval 12/12/2019 - - - - - - - - - 1 - - - - - - - - - Has inadmissible tenders - - - Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. - -<u>Additional Information: </u> -Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. - -WG Approval 12/12/2019 - - - - - - - - - 1 - - - - - - - - - Has abnormally low tenders - - - Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. - -Additional Information -The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. - -WG Approval 28/07/2020 - - - - - - - - - - - 1 - - - - - - - - - Has non e u received tenders - - - The amount of tenders received from economic operators in non-EU countries. - - - - - - - - - - 1 - - - - - - - - - Has unverified tenders - - - Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). - -WG Approval 28/07/2020 - - - - - - - - - - 1 - - - - - - - - - Has electronic tenders - - - Electronic Tender Lots received. - -WG Approval 28/07/2020 - - - - - - - - - - 1 - - - - - - - - - Has e u received tenders - - - The amount of tenders received from economic operators in other EU countries other than the country of the buyer. - - - - - - - - - 1 - - - - - - - - - Has other countries received tenders - - - - - - - - - 1 - - - - - - - - - Has estimated total subcontracts - - - The estimated amount of work to be subcontracted in the contract resulting from the lot. -WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has number of tenderers invited - - - Number of economic operators invited to tender. - -Additional Information -This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. - -WG Approval 01/12/2020 - - - - - - - - - - - 1 - - - - - - - - - Has payment value discrepancy justification - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - 1 - 1 - - - - - - - - - Has electronic submission - - - Transmission of tenders is possible by electronic means of communication. - - - - - - - - - 1 - - - - - - - - - Is variant - - - Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. - -Additional Information: - -The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. -The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. - -WG Approval 29/05/2019 - - - - - - - - - - - 1 - - - - - - - - - Has o j s issue number - - - - - - - - - 1 - - - - - - - - - Has o j s type - - - - - - - - - 1 - - - - - - - - - Has long title - - - - - - - - - 1 - - - - - - - - - Has notice publication number - - - - - - - - - 1 - - - - - - - - - Has form number - - - - - - - - - 1 - - - - - - - - - Has e forms subtype - - - - - - - - - 1 - - - - - - - - - Is e u institution - - - - - - - - - 1 - - - - - - - - - Has additional information - - - Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 - - - - - - - - - 1 - - - - - - - - - Has e sender dispatch date - - - The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. - -Additional Information: -Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. - -WG approval 20/06/2023 - - - - - - - - - 1 - - - - - - - - - Title - - - A name given to the resource. - -WG approval 30/05/2023 - - - - - - - - - - - 1 - - - - - - - - - Has publication date - - - Date of formal public issuance of the document. - -WG approval 20/06/2023 - - - - - - - - - 1 - - - - - - - - - Has reception date - - - Notes: Date when a record is acknowledged by an organisation. - -WG Approval 12/05/2020 - - - - - - - - - 1 - - - - - - - - - Has dispatch date - - - Date of transmission of a record to an organisation. - -WG Approval 12/05/2020 - - - - - - - - - 1 - - - - - - - - - Issued - - - Date of formal issuance of the resource. - -Additional information: -This is generally used for modules other than eNotice. -The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. -Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. - -WG approval 26/01/2023 - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - 1 - - - - - - - - - Has access u r l - - - Location where the resource can be accessed. - -WG approval 07/04/2022 - - - - - - - - - - - - - - - Has version - - - A number that identifies a specific state of a document. - -WG approval: 18/11/2021 - - - - - - - - - - 1 - - - - - - - - - Has award decision date - - - The official date of the award decision. - -Additional Information: -This corresponds in eForms to BT-1451 Winner Decision Date. - -WG Approval 09/01/2020 - - - - - - - - - - 1 - - - - - - - - - Has additional non award justification - - - Further justification for the non award . - -Additional information: -This is generally used when the non award reason code is set to "Other". - -WG: 18/01/2022 - - - - - - - - - 1 - - - - - - - - - Title - - - A name given to the resource. - -WG approval 30/05/2023 - - - - - - - - - - - - - - - - Description - - - An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 - - - - - - - - - - - - - - - Has u r l - - - The identifier of a resource. - -Additional Information - -For example: - -1. The URL of the system from where to access the procurement documents; -2. The URL of the system for the submission of tender documents; -3. The URL of the system from where to download a tool to communicate with the Buyer; -4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) -5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; - -WG Approval 30/09/2019 - - - - - - - - - 1 - - - - - - - - - Has contract conclusion date - - - The date the contract was signed by the last signatory party. - -<u>Additional Information:</u> -In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. -This concept is not to be confused with the date of completion/end of the contract. - -This corresponds in eForms to BT-145 Contract Conclusion Date. - -WG Approval 09/01/2020 - - - - - - - - - 1 - - - - - - - - - Has entry into force date - - - The date on which the contract enters into force. - -Additional information: - -This is generally the date on which the fulfillment of the contract begins. - -This corresponds in eForms to - -WG approval 05/11/2019 - - - - - - - - - 1 - - - - - - - - - Has decision date - - - The date of the review decision. - -Additional information: -This attribute corresponds to the BT-787 Review Date in eForms. - - - - - - - - - - 1 - - - - - - - - - Has element reference - - - Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. - - - - - - - - - - - - - - - Has review u r l - - - The internet address of the documents concerning the review instance. - -Additional information: -This attribute corresponds in eForms to BT-794 Review URL. - - - - - - - - - - 1 - - - - - - - - - Has number of review requests - - - The number of requests the buyer received to review any of its decisions. - - - - - - - - - 1 - 1 - - - - - - - - - Is withdrawn - - - The review request was withdrawn. - -Additional information: -This attribute corresponds in eForms to BT-796 Review Request Withdrawn. - - - - - - - - - 1 - - - - - - - - - Has withdrawal date - - - The date and time when the request for review was withdrawn. - -Additional information: -This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date. - - - - - - - - - 1 - - - - - - - - - Has withdrawal reason - - - The explanation for withdrawing the request for review. - -Additional information: -This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons - - - - - - - - - 1 - - - - - - - - - Has request date - - - The date when the review request was submitted. - -Additional information: -This attribute corresponds to the BT-787 Review Date in eForms. - - - - - - - - - - 1 - - - - - - - - - Has element reference - - - Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. - - - - - - - - - 1 - 1 - - - - - - - - - Has previous version of element reference - - - Reference to the class instance in the previous version of the notice, which was changed. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. - - - - - - - - - - 1 - - - - - - - - - Has change description - - - Explanatory text about the instance of the concept. - -WG Approval 30/09/2019 - - - - - - - - - - - - - - - Has change reason description - - - Explanatory text about why the element is altered. - -Additional information: -This corresponds in eForms to BT-762 Change Reason Description. - - - - - - - - - - - - - - - Is procurement document changed - - - One or more procurement documents have been changed. - -Additional information: -This corresponds in eForms to BT-718 Change Procurement Documents - -WG Approval 05/11/2019 - - - - - - - - - 1 - - - - - - - - - Has procurement document change date - - - The date and time of the change. - -Additional information: -This corresponds in eForms to BT-719 Change Procurement Documents Date - -WG Approval 5/11/2019 - - - - - - - - - - 1 - - - - - - - - - Has additional information - - - Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 - - - - - - - - - - 1 - - - - - - - - - Has instance reference - - - The URI of a given class that is being referred to. - - - - - - - - - 1 - 1 - - - - - - - - - Has property reference - - - The URI of a given attribute (property) that is being referred to. - - - - - - - - - 1 - 1 - - - - - - - - - Has accessibility date - - - The date at which unpublished data shall be published. - -WG Approval 11/06/2020 - - - - - - - - - 1 - - - - - - - - - Has confidentiality justification - - - A narrative explanation of why data is not published. - -Additional Information: -This element is generally used when the non-publication-justification code chosen is "other". - -WG Approval 09/11/2021 - - - - - - - - - - 1 - - - - - - - - - Has element reference - - - Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. - - - - - - - - - - 1 - - - - - - - - - Has modification description - - - An explanatory text about this context. - -Additional Information - -This corresponds in Standard forms to Field VII.2.1 in F20 -This corresponds in eForms to BT-202 . - -WG Approval 5/11/2019 - - - - - - - - - - - - - - - Has modification reason description - - - An explanation about the reasons for using the concept. - -Additional Information -This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. - -This corresponds in eForms to BT-201 . - -WG Approval 5/11/2019 - - - - - - - - - - - - - - - Has preferred publication date - - - The date the buyer would like to have the record made publicly available. - -Additional Information: -This corresponds in eForms to BT-738 Notice Publication Date Preferred. - -WG Approval 12/05/2020 - - - - - - - - - 1 - - - - - - - - - Notation - - - The literal identifying an entity, like a person or an object. - - - - - - - - - 1 - 1 - - - - - - - - - Schema agency - - - The name of the agency that issued the identifier. - - - - - - - - - - - - - - - Has scheme - - - The name of the identification scheme. - - - - - - - - - - - - - - - Has scheme version - - - The version of the identification scheme. - - - - - - - - - - - - - - - Has amount value - - - The numeric value of the amount, including decimals. - - - - - - - - - 1 - 1 - - - - - - - - - Has currency code list agency i d - - - Identifier of the agency that maintains the currency code list used. -WG approval 13/04/2021 - - - - - - - - - - - - - - - Has currency code list agency name - - - Name of the agency that maintains the currency code list used. -WG approval 13/04/2021 - - - - - - - - - - - - - - - Has currency code list i d - - - Concept scheme URI used for the currency code list. -WG approval 13/04/2021 - - - - - - - - - - - - - - - Has beginning - - - The date and time on which this period begins. - - - - - - - - - 1 - - - - - - - - - Has end - - - The date and time at which this period ends. - - - - - - - - - 1 - - - - - - - - - Has quantity value - - - The numeric value of the quantity, including decimals. - - - - - - - - - 1 - 1 - - - - - - - - - Has unit description - - - A narrative explanation defining the units of items being counted - -Additional information: This could be for example individual items or pack or two. - -WG Approval 09/11/2021 - - - - - - - - - - - - - - - Numeric duration - - - Value of a temporal extent expressed as a number. - - - - - - - - - 1 - 1 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasCandidateList> ?that . ?that <http://data.europa.eu/a4g/ontology#hasCandidateList> ?this .} - - - - - - - - - - Has candidate list - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsInDynamicPurchasingSystem> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsInDynamicPurchasingSystem> ?this .} - - - - - - - - - - Results in dynamic purchasing system - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#usesCandidateList> ?that . ?that <http://data.europa.eu/a4g/ontology#usesCandidateList> ?this .} - - - - - - - - - - Uses candidate list - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesAwardCriterion> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesAwardCriterion> ?this .} - - - - - - - - - - Specifies award criterion - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#followsRulesSetBy> ?that . ?that <http://data.europa.eu/a4g/ontology#followsRulesSetBy> ?this .} - - - - - - - - - - Follows rules set by - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsMiniCompetition> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsMiniCompetition> ?this .} - - - - - - - - - - Concerns mini competition - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesMiniCompetitionAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesMiniCompetitionAwardDecision> ?this .} - - - - - - - - - - Comprises mini competition award decision - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsFromMiniCompetitionAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsFromMiniCompetitionAwardDecision> ?this .} - - - - - - - - - - Results from mini competition award decision - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#containsCandidate> ?that . ?that <http://data.europa.eu/a4g/ontology#containsCandidate> ?this .} - - - - - - - - - - Contains candidate - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasStartDate> ?that . ?that <http://data.europa.eu/a4g/ontology#hasStartDate> ?this .} - - - - - - - - - - Has start date - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 - - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPurpose> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPurpose> ?this .} - - - - - - - - - - Has purpose - - - Relation indicating a procurement part has a puropse. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isFundedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#isFundedBy> ?this .} - - - - - - - - - - Is funded by - - - Funding is provided either completely or partially by a Fund. - -Additional information: -This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) -Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. - - - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToTerm> ?this .} - - - - - - - - - - Is subject to term - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#fulfillsStrategicProcurement> ?that . ?that <http://data.europa.eu/a4g/ontology#fulfillsStrategicProcurement> ?this .} - - - - - - - - - - Fulfills strategic procurement - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesConcession> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesConcession> ?this .} - - - - - - - - - - Foresees concession - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#usesTechnique> ?that . ?that <http://data.europa.eu/a4g/ontology#usesTechnique> ?this .} - - - - - - - - - - Uses technique - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesContractSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesContractSpecificTerm> ?this .} - - - - - - - - - - Foresees contract specific term - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#contextualisedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#contextualisedBy> ?this .} - - - - - - - - - - Contextualised by - - - The place of the AgentInRole in the procurement is expressed by a ProcurementObject. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesProcurementObject> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesProcurementObject> ?this .} - - - - - - - - - - Foresees procurement object - - - Relation indicating the instance of a Procurement Object that is planned. - -Additional Information: -The properties of the Procurement Object that is foreseen should be read as foreseen properties. -For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. -For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?this .} - - - - - - - - - - Specifies procurement criterion - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToLotSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToLotSpecificTerm> ?this .} - - - - - - - - - - Is subject to lot specific term - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLotReference> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLotReference> ?this .} - - - - - - - - - - Has lot reference - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#setsGroupingContextForLot> ?that . ?that <http://data.europa.eu/a4g/ontology#setsGroupingContextForLot> ?this .} - - - - - - - - - - Sets grouping context for lot - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToLot> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToLot> ?this .} - - - - - - - - - - Refers to lot - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousProcedureLot> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousProcedureLot> ?this .} - - - - - - - - - - Refers to previous procedure lot - - - Reference to one or more Lots in a previous procedure. - -Additional Information: -In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. - -This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier - -WG Approval 22/11/2019 14:33:55 - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubmittedForLot> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubmittedForLot> ?this .} - - - - - - - - - - Is submitted for lot - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsReviewSummaryForLot> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsReviewSummaryForLot> ?this .} - - - - - - - - - - Concerns review summary for lot - - - Relates to Lot review summary. - -Additional information: -This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#describesLotCompletion> ?that . ?that <http://data.europa.eu/a4g/ontology#describesLotCompletion> ?this .} - - - - - - - - - - Describes lot completion - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsLot> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsLot> ?this .} - - - - - - - - - - Concerns lot - - - Relates to Lot. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsLot> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsLot> ?this .} - - - - - - - - - - Concerns lot - - - Relates to Lot. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasProcurementScopeDividedIntoLot> ?that . ?that <http://data.europa.eu/a4g/ontology#hasProcurementScopeDividedIntoLot> ?this .} - - - - - - - - - - Has procurement scope divided into lot - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesTechnique> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesTechnique> ?this .} - - - - - - - - - - Foresees technique - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPlannedPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPlannedPeriod> ?this .} - - - - - - - - - - Has planned period - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPlannedDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPlannedDuration> ?this .} - - - - - - - - - - Has planned duration - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPlannedPart> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPlannedPart> ?this .} - - - - - - - - - - Refers to planned part - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToProcedureSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToProcedureSpecificTerm> ?this .} - - - - - - - - - - Is subject to procedure specific term - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isExecutedByProcurementServiceProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#isExecutedByProcurementServiceProvider> ?this .} - - - - - - - - - - Is executed by procurement service provider - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#involvesBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#involvesBuyer> ?this .} - - - - - - - - - - Involves buyer - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isResponsibilityOfBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#isResponsibilityOfBuyer> ?this .} - - - - - - - - - - Is responsibility of buyer - - - - - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesProcurementCriteriaSummary> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesProcurementCriteriaSummary> ?this .} - - - - - - - - - - Specifies procurement criteria summary - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousProcedure> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousProcedure> ?this .} - - - - - - - - - - Refers to previous procedure - - - Reference to a previous procedure. - -Additional Information: -In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. - -This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsProcedure> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsProcedure> ?this .} - - - - - - - - - - Concerns procedure - - - Relates to Procedure. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToProcedure> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToProcedure> ?this .} - - - - - - - - - - Refers to procedure - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?this .} - - - - - - - - - - Specifies procurement criterion - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesLotGroup> ?that . ?that <http://data.europa.eu/a4g/ontology#definesLotGroup> ?this .} - - - - - - - - - - Defines lot group - - - Relation indicating a ProcedureTerm has a LotGroup. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#describesLotGroup> ?that . ?that <http://data.europa.eu/a4g/ontology#describesLotGroup> ?this .} - - - - - - - - - - Describes lot group - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToGrouping> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToGrouping> ?this .} - - - - - - - - - - Is subject to grouping - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubmittedForLotGroup> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubmittedForLotGroup> ?this .} - - - - - - - - - - Is submitted for lot group - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#usesChannel> ?that . ?that <http://data.europa.eu/a4g/ontology#usesChannel> ?this .} - - - - - - - - - - Uses channel - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasInternalIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasInternalIdentifier> ?this .} - - - - - - - - - - Has internal identifier - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedValue> ?this .} - - - - - - - - - - Has estimated value - - - A forecast of the value of the procurement before competition. - -Additional Information: -Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. -The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. -See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. - -In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. - -This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). -<b> -</b><b>WG Approval 05/12/2019</b> - - - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTotalQuantity> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTotalQuantity> ?this .} - - - - - - - - - - Has total quantity - - - The number of units required. - -Additional Information: -The quantity needs to go along with the unit. - - - - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesTender> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesTender> ?this .} - - - - - - - - - - Comprises tender - - - Incorporates Tender. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTotalValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTotalValue> ?this .} - - - - - - - - - - Has total value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/registeredAddress> ?that . ?that <http://data.europa.eu/m8g/registeredAddress> ?this .} - - - - - - - - - - Registered address - - - The registered address relationship links a Resource with the legally registered Address. - -Additional Information: -It is the address to which formal communications can be sent, such as the postal address. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/person#placeOfBirth> ?that . ?that <http://www.w3.org/ns/person#placeOfBirth> ?this .} - - - - - - - - - - Place of birth - - - The Location where the Person was born. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/person#placeOfDeath> ?that . ?that <http://www.w3.org/ns/person#placeOfDeath> ?this .} - - - - - - - - - - Place of death - - - The Location where the Person died. - - - - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasBeneficialOwner> ?that . ?that <http://data.europa.eu/a4g/ontology#hasBeneficialOwner> ?this .} - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isBeneficialOwnerOf> ?that . ?that <http://data.europa.eu/a4g/ontology#isBeneficialOwnerOf> ?this .} - - - - - - - - - - Has beneficial owner - - - A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. -Additional Information: -This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. -WG approval 14/09/2021 - - - - - - - - - Is beneficial owner of - - - A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. -Additional Information: -This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. -WG approval 14/09/2021 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasMember> ?that . ?that <http://data.europa.eu/a4g/ontology#hasMember> ?this .} - - - - - - - - - - Has member - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#leadBy> ?that . ?that <http://data.europa.eu/a4g/ontology#leadBy> ?this .} - - - - - - - - - - Lead by - - - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isOwnedByAgent> ?that . ?that <http://data.europa.eu/a4g/ontology#isOwnedByAgent> ?this .} - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#ownsSystem> ?that . ?that <http://data.europa.eu/a4g/ontology#ownsSystem> ?this .} - - - - - - - - - - Is owned by agent - - - - - - - - - Owns system - - - - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#playedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#playedBy> ?this .} - - - - - - - - - - Played by - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#playedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#playedBy> ?this .} - - - - - - - - - - Played by - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLegalIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLegalIdentifier> ?this .} - - - - - - - - - - Has legal identifier - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/registeredAddress> ?that . ?that <http://data.europa.eu/m8g/registeredAddress> ?this .} - - - - - - - - - - Registered address - - - The registered address relationship links a Resource with the legally registered Address. - -Additional Information: -It is the address to which formal communications can be sent, such as the postal address. - - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/address> ?that . ?that <http://data.europa.eu/m8g/address> ?this .} - - - - - - - - - - Address - - - Associates any Resource with the corresponding Address. - -Additional Information: -Asserting the address relationship implies that the Resource has an Address. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPrimaryContactPoint> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPrimaryContactPoint> ?this .} - - - - - - - - - - Has primary contact point - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTaxIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTaxIdentifier> ?this .} - - - - - - - - - - Has tax identifier - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#exposesChannel> ?that . ?that <http://data.europa.eu/a4g/ontology#exposesChannel> ?this .} - - - - - - - - - - Exposes channel - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasContactPointInRole> ?that . ?that <http://data.europa.eu/a4g/ontology#hasContactPointInRole> ?this .} - - - - - - - - - - Has contact point in role - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesInformationProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesInformationProvider> ?this .} - - - - - - - - - - Defines information provider - - - Relation indicating a ProcedureTerm has an information provider. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesBudgetProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesBudgetProvider> ?this .} - - - - - - - - - - Defines budget provider - - - Relation indicating a ProcedureTerm has a BudgetProvider. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#signsAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#signsAwardDecision> ?this .} - - - - - - - - - - Signs award decision - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#indicatesInvoiceeContactPoint> ?that . ?that <http://data.europa.eu/a4g/ontology#indicatesInvoiceeContactPoint> ?this .} - - - - - - - - - - Indicates invoicee contact point - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#exposesInvoiceeChannel> ?that . ?that <http://data.europa.eu/a4g/ontology#exposesInvoiceeChannel> ?this .} - - - - - - - - - - Exposes invoicee channel - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#delegatesAncillaryActivitiesTo> ?that . ?that <http://data.europa.eu/a4g/ontology#delegatesAncillaryActivitiesTo> ?this .} - - - - - - - - - - Delegates ancillary activities to - - - Entrusts ancillary purchasing activities to ProcurementServiceProvider. - -Additional Information: -Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: - -(a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; - -(b) advice on the conduct or design of public procurement procedures; - -(c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned; - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#bindsBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#bindsBuyer> ?this .} - - - - - - - - - - Binds buyer - - - Provides legal constraint on the Buyer. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#actsOnBehalfOf> ?that . ?that <http://data.europa.eu/a4g/ontology#actsOnBehalfOf> ?this .} - - - - - - - - - - Acts on behalf of - - - Represents. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#signedByBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#signedByBuyer> ?this .} - - - - - - - - - - Signed by buyer - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesCatalogueProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesCatalogueProvider> ?this .} - - - - - - - - - - Defines catalogue provider - - - Relation indicating an AccessTerm has a CatalogueProvider. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesCatalogueReceiver> ?that . ?that <http://data.europa.eu/a4g/ontology#definesCatalogueReceiver> ?this .} - - - - - - - - - - Defines catalogue receiver - - - Relation indicating an AccessTerm has a CatalogueReceiver. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#needsToBeAWinner> ?that . ?that <http://data.europa.eu/a4g/ontology#needsToBeAWinner> ?this .} - - - - - - - - - - Needs to be a winner - - - The Contractor must be a Winner. - - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#signedByContractor> ?that . ?that <http://data.europa.eu/a4g/ontology#signedByContractor> ?this .} - - - - - - - - - - Signed by contractor - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#bindsContractor> ?that . ?that <http://data.europa.eu/a4g/ontology#bindsContractor> ?this .} - - - - - - - - - - Binds contractor - - - Provides legal constraint on the Contractor. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesMediator> ?that . ?that <http://data.europa.eu/a4g/ontology#definesMediator> ?this .} - - - - - - - - - - Defines mediator - - - Relation indicating a ProcedureTerm has a Mediator. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#distributesOffer> ?that . ?that <http://data.europa.eu/a4g/ontology#distributesOffer> ?this .} - - - - - - - - - - Distributes offer - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesOfflineAccessProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesOfflineAccessProvider> ?this .} - - - - - - - - - - Defines offline access provider - - - Relation indicating an AccessTerm has an OfflineAccessProvider. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesParticipationRequestProcessor> ?that . ?that <http://data.europa.eu/a4g/ontology#definesParticipationRequestProcessor> ?this .} - - - - - - - - - - Defines participation request processor - - - Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesParticipationRequestReceiver> ?that . ?that <http://data.europa.eu/a4g/ontology#definesParticipationRequestReceiver> ?this .} - - - - - - - - - - Defines participation request receiver - - - Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesPaymentExecutor> ?that . ?that <http://data.europa.eu/a4g/ontology#definesPaymentExecutor> ?this .} - - - - - - - - - - Defines payment executor - - - Relation indicating a ContractTerm has a PaymentExecutor. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesProcurementProcedureInformationProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesProcurementProcedureInformationProvider> ?this .} - - - - - - - - - - Defines procurement procedure information provider - - - Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesSubcontractors> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesSubcontractors> ?this .} - - - - - - - - - - Specifies subcontractors - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#substantiatesExclusionGround> ?that . ?that <http://data.europa.eu/a4g/ontology#substantiatesExclusionGround> ?this .} - - - - - - - - - - Substantiates exclusion ground - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#needsToBeATenderer> ?that . ?that <http://data.europa.eu/a4g/ontology#needsToBeATenderer> ?this .} - - - - - - - - - - Needs to be a tenderer - - - The Winner must be a Tenderer. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubmitedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubmitedBy> ?this .} - - - - - - - - - - Is submited by - - - Relation indicating the submission of a tender by an economic operator. -WG approval 18/05/2021 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesTenderProcessor> ?that . ?that <http://data.europa.eu/a4g/ontology#definesTenderProcessor> ?this .} - - - - - - - - - - Defines tender processor - - - Relation indicating a SubmissionTerm has a TenderProcessor. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesTenderReceiver> ?that . ?that <http://data.europa.eu/a4g/ontology#definesTenderReceiver> ?this .} - - - - - - - - - - Defines tender receiver - - - Relation indicating a SubmissionTerm has a TenderReceiver. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#indicatesAwardToWinner> ?that . ?that <http://data.europa.eu/a4g/ontology#indicatesAwardToWinner> ?this .} - - - - - - - - - - Indicates award to winner - - - Reveals the winner to whom the tender award outcome is attributed. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/address> ?that . ?that <http://data.europa.eu/m8g/address> ?this .} - - - - - - - - - - Address - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEndpointIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEndpointIdentifier> ?this .} - - - - - - - - - - Has endpoint identifier - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#geographicIdentifier> ?that . ?that <http://www.w3.org/ns/locn#geographicIdentifier> ?this .} - - - - - - - - - - Geographic identifier - - - A URI that identifies the Location. - -Additional Information: -GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. - -Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. - -The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - -- http://dbpedia.org/resource/ISO_3166-1:GR -- http://dbpedia.org/resource/ISO_3166-1:GB -even when the geographic name is given as EL or UK. - -The use of a URIs has added advantages: - -- it can be used by automated systems to look up additional data (linked data); -- a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#geometry> ?that . ?that <http://www.w3.org/ns/locn#geometry> ?this .} - - - - - - - - - - Geometry - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#address> ?that . ?that <http://www.w3.org/ns/locn#address> ?this .} - - - - - - - - - - Address - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesPlaceOfPerformance> ?that . ?that <http://data.europa.eu/a4g/ontology#definesPlaceOfPerformance> ?this .} - - - - - - - - - - Defines place of performance - - - Relation indicating the place of performance of a Contract. - -WG approval 21/03/2023 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#addressID> ?that . ?that <http://www.w3.org/ns/locn#addressID> ?this .} - - - - - - - - - - Address i d - - - A globally unique identifier for each instance of an Address. - -Additional Information: -The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. - -The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. - -Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. - -To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesOpeningPlace> ?that . ?that <http://data.europa.eu/a4g/ontology#definesOpeningPlace> ?this .} - - - - - - - - - - Defines opening place - - - The place where the tenders will be publicly opened. - -WG Approval 10-10-2019 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToContractSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToContractSpecificTerm> ?this .} - - - - - - - - - - Is subject to contract specific term - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#involvesProcurementDocument> ?that . ?that <http://data.europa.eu/a4g/ontology#involvesProcurementDocument> ?this .} - - - - - - - - - - Involves procurement document - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTenderValidityPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTenderValidityPeriod> ?this .} - - - - - - - - - - Has tender validity period - - - The relation indicating until when a tender instance is applicable. - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesContractDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#definesContractDuration> ?this .} - - - - - - - - - - Defines contract duration - - - Relation indicating a ContractTerm has a Duration. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesSubcontractingTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#definesSubcontractingTerm> ?this .} - - - - - - - - - - Defines subcontracting term - - - Relation indicating a term has a subterm. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesContractPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#definesContractPeriod> ?this .} - - - - - - - - - - Defines contract period - - - Relation indicating a ContractTerm has a Period. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesPrize> ?that . ?that <http://data.europa.eu/a4g/ontology#definesPrize> ?this .} - - - - - - - - - - Defines prize - - - Relation indicating a DesignContestRegimeTerm has a Prize. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLaunchFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLaunchFrameworkAgreementMaximumValue> ?this .} - - - - - - - - - - Has launch framework agreement maximum value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLaunchGroupFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLaunchGroupFrameworkAgreementMaximumValue> ?this .} - - - - - - - - - - Has launch group framework agreement maximum value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasQualificationSystemDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#hasQualificationSystemDuration> ?this .} - - - - - - - - - - Has qualification system duration - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPrizeValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPrizeValue> ?this .} - - - - - - - - - - Has prize value - - - The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. - -Additional Information: -This corresponds to BT-644 in eForms. - -WG Approval 29/08/2019 - - - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/constrains> ?that . ?that <http://data.europa.eu/m8g/constrains> ?this .} - - - - - - - - - - Constrains - - - Information Concept about which a Constraint expresses a limitation. - -Additional Information: -Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasConstraint> ?that . ?that <http://data.europa.eu/a4g/ontology#hasConstraint> ?this .} - - - - - - - - - - Has constraint - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/supportsRequirement> ?that . ?that <http://data.europa.eu/m8g/supportsRequirement> ?this .} - - - - - - - - - - Supports requirement - - - Requirement for which the Evidence provides proof. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/supportsConcept> ?that . ?that <http://data.europa.eu/m8g/supportsConcept> ?this .} - - - - - - - - - - Supports concept - - - Information Concept providing facts found/inferred from the Evidence. - -Additional Information: -Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as "I am older that 18 years" or "this is a FairTrade product". - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/hasRequirement> ?that . ?that <http://data.europa.eu/m8g/hasRequirement> ?this .} - - - - - - - - - - Has requirement - - - A more specific Requirement that is part of the Requirement. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasValidityPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#hasValidityPeriod> ?this .} - - - - - - - - - - Has validity period - - - The relation indicating until when a given instance of a concept is applicable. - -WG approval 30/05/2023 - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasConcessionEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasConcessionEstimatedValue> ?this .} - - - - - - - - - - Has concession estimated value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedUserConcessionRevenue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedUserConcessionRevenue> ?this .} - - - - - - - - - - Has estimated user concession revenue - - - The estimated revenue coming from the use of the concession. - -Additional Information: -Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. - -This corresponds to BT-162 in eForms. - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedBuyerConcessionRevenue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedBuyerConcessionRevenue> ?this .} - - - - - - - - - - Has estimated buyer concession revenue - - - The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. - -<u>Additional Information:</u> -For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. - -This corresponds to BT-160 in eForms. - -WG Approval 07/01/2020 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesConcession> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesConcession> ?this .} - - - - - - - - - - Foresees concession - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasSubcontractingEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasSubcontractingEstimatedValue> ?this .} - - - - - - - - - - Has subcontracting estimated value - - - The estimated value of a single subcontract. - -This relates to BT-553 in eForms. - -WG Approval 01/09/2020 - - - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesSubcontracting> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesSubcontracting> ?this .} - - - - - - - - - - Foresees subcontracting - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasAwardedEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasAwardedEstimatedValue> ?this .} - - - - - - - - - - Has awarded estimated value - - - The estimated value that can be spent as provided by the Award Decision. - -<u>Additional Information</u>: -This property is used for framework agreements and dynamic purchasing systems. -Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. - -WG Approval 12/12/2019 - - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementMaximumValue> ?this .} - - - - - - - - - - Has framework agreement maximum value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementEstimatedValue> ?this .} - - - - - - - - - - Has framework agreement estimated value - - - This refers to BT-660 in eForms. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?this .} - - - - - - - - - - Has approximate framework agreement value - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?this .} - - - - - - - - - - Results from lot award decision - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?this .} - - - - - - - - - - Results from lot award decision - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesLotAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesLotAwardDecision> ?this .} - - - - - - - - - - Comprises lot award decision - - - Incorporates LotAwardOutcome. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasGroupFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasGroupFrameworkAgreementMaximumValue> ?this .} - - - - - - - - - - Has group framework agreement maximum value - - - This corresponds to BT-156 in the eForms. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasMaximumFrameworkAgreementAwardedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasMaximumFrameworkAgreementAwardedValue> ?this .} - - - - - - - - - - Has maximum framework agreement awarded value - - - The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. - -Additional information: - -The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. - -The Framework Agreements in a CAN are to be traced back and added to provide this value. - -This corresponds to the BT-118 in eForms. - -WG Approval 03/12/2019 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasProcurementHighestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasProcurementHighestReceivedTenderValue> ?this .} - - - - - - - - - - Has procurement highest received tender value - - - The highest received tender value for the procurement. - -Additional Information: -This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?this .} - - - - - - - - - - Has approximate framework agreement value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasProcurementLowestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasProcurementLowestReceivedTenderValue> ?this .} - - - - - - - - - - Has procurement lowest received tender value - - - The lowest received tender value for the procurement. - -Additional Information: -This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTotalAwardedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTotalAwardedValue> ?this .} - - - - - - - - - - Has total awarded value - - - The awarded value of all lots announced in this notice, including options and renewals. - -Additional information: -The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. - -The values of the individual lots announced in a CAN are to be traced back and added to provide this value. - -This corresponds to the BT-161 in eForms. - -WG Approval 03/12/2019 - - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsTender> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsTender> ?this .} - - - - - - - - - - Concerns tender - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesTenderAwardOutcome> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesTenderAwardOutcome> ?this .} - - - - - - - - - - Comprises tender award outcome - - - Incorporates TenderAwardOutcome. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasReviewIrregularitySummary> ?that . ?that <http://data.europa.eu/a4g/ontology#hasReviewIrregularitySummary> ?this .} - - - - - - - - - - Has review irregularity summary - - - Additional information: -This relation corresponds in eForms to BG-613 Buyer Review Requests - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasHighestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasHighestReceivedTenderValue> ?this .} - - - - - - - - - - Has highest received tender value - - - Amount of the Tender with the highest value. - -Additional Information -The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. - - -WG Approval 12/12/2019 - - - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLowestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLowestReceivedTenderValue> ?this .} - - - - - - - - - - Has lowest received tender value - - - Amount of the Tender with the lowest value. - -Additional Information -The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. - -WG Approval 12/12/2019 - - - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#summarisesInformationForAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#summarisesInformationForAwardDecision> ?this .} - - - - - - - - - - Summarises information for award decision - - - Relates to submission for the given competition, either at Lot level or Mini-Competition level. - -WG approval 30/05/2023 - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToContract> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToContract> ?this .} - - - - - - - - - - Refers to contract - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#providesContractTotalPenaltyValue> ?that . ?that <http://data.europa.eu/a4g/ontology#providesContractTotalPenaltyValue> ?this .} - - - - - - - - - - Provides contract total penalty value - - - -Additional Information: -This corresponds to BT-782 in eForms. - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#providesContractTotalPaymentValue> ?that . ?that <http://data.europa.eu/a4g/ontology#providesContractTotalPaymentValue> ?this .} - - - - - - - - - - Provides contract total payment value - - - Additional Information: -This corresponds to BT-779 in eForms. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElectronicSignature> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElectronicSignature> ?this .} - - - - - - - - - - Has electronic signature - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasFinancialOfferValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasFinancialOfferValue> ?this .} - - - - - - - - - - Has financial offer value - - - The value offered by the Tenderer for a Lot. - -Additional Information: -This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. - -This corresponds to BT-720 in eForms. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#includesTender> ?that . ?that <http://data.europa.eu/a4g/ontology#includesTender> ?this .} - - - - - - - - - - Includes tender - - - Additional information: -This corresponds in eForms to BT-3202 Contract Tender Identifier. - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToNotice> ?this .} - - - - - - - - - - Refers to notice - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#describesNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#describesNotice> ?this .} - - - - - - - - - - Describes notice - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousNotice> ?this .} - - - - - - - - - - Refers to previous notice - - - -Additional information: -This corresponds in eForms to BT-758 Change Notice Version Identifier. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToOriginalNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToOriginalNotice> ?this .} - - - - - - - - - - Refers to original notice - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasUUID> ?that . ?that <http://data.europa.eu/a4g/ontology#hasUUID> ?this .} - - - - - - - - - - Has u u i d - - - A universally unique identifier for an instance of this document. - -WG Approval 12/05/2020 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#associatedWith> ?that . ?that <http://data.europa.eu/a4g/ontology#associatedWith> ?this .} - - - - - - - - - - Associated with - - - The document to which a document is associated. - -WGM 01/03/2022 - - - - - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElectronicDigest> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElectronicDigest> ?this .} - - - - - - - - - - Has electronic digest - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPrevious> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPrevious> ?this .} - - - - - - - - - - Refers to previous - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasAwardedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasAwardedValue> ?this .} - - - - - - - - - - Has awarded value - - - The value of the procurement provided by the Award Decision. - -Additional Information: -Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. - -In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. - -WG Approval 10/12/2019 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasBargainPrice> ?that . ?that <http://data.europa.eu/a4g/ontology#hasBargainPrice> ?this .} - - - - - - - - - - Has bargain price - - - The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. - -WG approval 23/05/2023 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasContractValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasContractValue> ?this .} - - - - - - - - - - Has contract value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedDuration> ?this .} - - - - - - - - - - Has estimated duration - - - Relation indicating a Contract has an estimated Duration. - -Additional Information - -When the Lot uses a Technique the contract estimated duration applies to the Technique. - - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resolvesReviewRequest> ?that . ?that <http://data.europa.eu/a4g/ontology#resolvesReviewRequest> ?this .} - - - - - - - - - - Resolves review request - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasRemedyValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasRemedyValue> ?this .} - - - - - - - - - - Has remedy value - - - Additional information: -This relation corresponds in eForms to BT-793 Review Remedy Value. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousReview> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousReview> ?this .} - - - - - - - - - - Refers to previous review - - - Additional information: -This relation corresponds in eForms to BT-785 "Review Previous Identifier". - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasReviewRequestFee> ?that . ?that <http://data.europa.eu/a4g/ontology#hasReviewRequestFee> ?this .} - - - - - - - - - - Has review request fee - - - Additional information: -This relation corresponds in eForms to BT-795 Review Request Fee. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementModification> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementModification> ?this .} - - - - - - - - - - Has element modification - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementChange> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementChange> ?this .} - - - - - - - - - - Has element change - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementConfidentiality> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementConfidentiality> ?this .} - - - - - - - - - - Has element confidentiality - - - Relation indication that the publication provision applies to a given field of a document. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementDescription> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementDescription> ?this .} - - - - - - - - - - Has element description - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#containsModificationsOf> ?that . ?that <http://data.europa.eu/a4g/ontology#containsModificationsOf> ?this .} - - - - - - - - - - Contains modifications of - - - - -Additional information -This relation shall be used between Instances of the SAME type/class. - -The "modifying-instance" can be minimally instantiated, carrying the fields/information that override the fields in the "modified-instance". - -This means that the "modifying-instance" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. - - - - - - - - - - - - - Has legal basis - - - The legal basis under which the procurement procedure takes place. - -Additional Information: -For example European Directives or Regulations, national law - -WG 09/11/2021 - -The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis - - - - - - - - - - - - - Has legal regime - - - - - - 1 - 1 - - - - - - - - - Has procedure type - - - Identification of the Procedure used. - -WG Approval 09/06/2020 - - - - - - - 1 - - - - - - - - - Has main classification - - - - - - - - - - - - Has additional classification - - - - - - - - - - - - Has nationality - - - - - - - - - - 1 - - - - - - - - - Has country of birth - - - The country in which the Person was born. - - - - - - - 1 - - - - - - - - - Has business size - - - The category of the business depending on number of employees and turnover. - -Additional information: - -See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. - -WG Approval 28/05/2020 - - - - - - - - 1 - - - - - - - - - Has main activity - - - The principal sectoral area in which an organisation operates. - -Additional information: - -The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. - -The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). - -WG Approval 05/05/2020 - - - - - - - - 1 - - - - - - - - - Has registration country - - - - - - 1 - - - - - - - - - Has buyer legal type - - - A category that indicates the right of an Organisation to play the role of a buyer. - -Additional Information: -The category also effects the rules that the buyer has to abide to within the public procurement procedure. -WG 07/09/2021 - - - - - - - - - - - - - - Has review body type - - - - - - 1 - - - - - - - - - Has country code - - - - - - 1 - - - - - - - - - Has nuts code - - - - - - 1 - - - - - - - - - Has nuts code - - - - - - 1 - - - - - - - - - Has country code - - - - - - - - - - 1 - - - - - - - - - Has document restriction justification - - - An explanation about the reasons why some procurement documents are restricted. - -Additional Information: -This corresponds in eForms to BT-707 Documents Restricted Justification. - -WG Approval 09/03/2021 - - - - - - - 1 - - - - - - - - - Has direct award justification - - - List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. - -WG Approval 28/05/2020 - - - - - - - 1 - - - - - - - - - Has late submission permission - - - Whether economic operator-related information can be supplemented even after the submission deadline. - -Additional Information -This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. - -WG Approval 21/07/2020 - - - - - - - - - - - - - Has non electronic submission justification - - - -Reason for not accepting electronic information. - -WG Approval 21/07/2020 - - - - - - - 1 - - - - - - - - - Has variant permission - - - The obligation or possibility for tenderers to submit variants or not. - -Additional Information: - -Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. - -eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. - -Additional Information: - -Further conditions for submitting variant tenders are in the procurement documents. - - - - - - - 1 - - - - - - - - - Has e submission permission - - - The requirements as to what extent electronic submission is allowed. - -WG Approval 03/10/2019 - - - - - - - - - - - - - - Has tender subcontracting information - - - The information about subcontracting that must be indicated in the tender. - -WG Approval 10/10/2019 - - - - - - - - 1 - - - - - - - - - Has e catalogue permission - - - The extent to which electronic catalogues may be used in tenders. - -WG Approval 03/10/2019 - - - - - - - - - - - - - Has language - - - Language in which the submitted information is to be expressed. - -WG Approval 21/07/2020 - - - - - - - - 1 - - - - - - - - - Has broad place of performance - - - Geopolitical zone where the contract can be executed. - -Additional Information - -Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). - - - - - - - 1 - - - - - - - - - Has e invoicing permission - - - - - - 1 - - - - - - - - - Has reserved execution - - - - - - 1 - - - - - - - - - Has contract nature type - - - Subject of the acquisition. - -WG Approval 11/06/2020 - - - - - - - - - - - - - - Has additional contract nature - - - Additional type of acquisition taken into consideration in the contract. - -WG Approval 11/06/2020 - - - - - - - - 1 - 1 - - - - - - - - - Has framework agreement type - - - The form of framework agreement used in a procurement procedure. - -Addition information: - -A concept to distinguish the different types of framework agreement, which are: -1. Framework agreement without reopening of competition, -2. Framework agreement with reopening of competition, or -3. Framework agreement partly without reopening of competition. - -WG Approval 19/09/2019 - - - - - - - - - - - - - - Has subcontracting obligation - - - The requirement the tender must meet with regard to subcontracting parts of the contract. -WG Approval 09/11/2021 - - - - - - - - - - - - - - Has threshold type - - - The method to interpret the threshold value as minimum or a maximum. - -WG Approval 17/09/2019 - - - - - - - 1 - - - - - - - - - Type - - - Category to which the Requirement belongs. - - - - - - 1 - - - - - - - - - Confidentiality level type - - - Security classification assigned to an Evidence e.g. classified, sensitive, public. - -Additional Information: - -Classifications should be defined by an organisation/country as an outcome of a security assessment. - - - - - - - 1 - - - - - - - - - Has award criterion type - - - Category of award criterion. - - - - - - - - 1 - - - - - - - - - Has fixed value type - - - The method to interpret the fixed value as pertaining to a total or unit. - -WG Approval 17/09/2019 - - - - - - - - - - - - - - Has reserved procurement - - - Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. - -Additional information: -This property corresponds in eForms to the BT-71 -WG Approval 09/11/2021 - - - - - - - - - - - - - Has reserved procurement - - - Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. - -Additional information: -This property corresponds in eForms to the BT-71 -WG Approval 09/11/2021 - - - - - - - 1 - - - - - - - - - Has weight value type - - - No definition. Waiting on CCCEV alignment. - - - - - - - - - - - - - - - Has performing staff qualification information - - - Explanation as to if and/or when information of the persons to carry out the contract is to be provided. -WG Approval 09/11/2021 - -The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage - - - - - - - 1 - - - - - - - - - Has selection criteria usage - - - -Additional Information: -This corresponds in eForms to BT-748 Selection Criteria Used. - - - - - - 1 - - - - - - - - - Has selection criterion type - - - The classification of the selection criteria. - - -Additional Information: - -This corresponds in eForms to BT-747 Selection Criteria Type. - -WG Approval 09/11/2021 - - - - - - - 1 - - - - - - - - - Fulfills requirement - - - The requirement to which the concept meets. -WG Approval 09/11/2021 - - - - - - - - 1 - - - - - - - - - Fulfills requirement - - - The requirement to which the concept meets. -WG Approval 09/11/2021 - - - - - - - - 1 - - - - - - - - - Fulfills requirement - - - The requirement to which the concept meets. -WG Approval 09/11/2021 - - - - - - - - - - - - - - Includes accessibility criterion - - - Explanation as to whether accessibility Criterion are used or not. -WG Approval 09/11/2021 - - - - - - - - 1 - - - - - - - - - Has d p s scope - - - Explanation as to whether a dps is used and by whom. -WG Approval 09/11/2021 - -The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usage - - - - - - 1 - - - - - - - - - Has usage - - - The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage - - - - - - - 1 - 1 - - - - - - - - - Has irregularity type - - - Additional information: -This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type - - - - - - 1 - - - - - - - - - Has received submission type - - - - - - - - - - - - Has item country of origin - - - The source country of the product or service. - -Additional Information: - -The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. - -WG Approval 07/01/2020 - -The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country - - - - - - 1 - - - - - - - - - Is based on implementing regulation - - - Indicates under which regulation a notice is created. - -WG Acceptance 06/09/2022 - - - - - - 1 - - - - - - - - - Conforms to legal basis - - - The Notice was designed in accordance with the given legal basis. - -Additional Information: -This Notice can be used for Procedures which do not have the same legal basis. -This holds for standard forms. - - - - - - 1 - 1 - - - - - - - - - Has notice type - - - - - - 1 - - - - - - - - - Has notification content type - - - A categorisation of templates for sets of Procurement information to be conveyed in Notices. - -WG Approval 12/05/2020 - - - - - - 1 - - - - - - - - - Conforms to specific legal basis - - - - - - 1 - - - - - - - - - Has form type - - - A categorisation of the steps in which the Notice is used. - -WG Approval 12/05/2020 - - - - - - - - 1 - - - - - - - - - Has official language - - - The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. - -WG Approval 03/10/2019 - - - - - - - - - - - - - - Has unofficial language - - - The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. - -WG Approval 03/10/2019 - - - - - - - 1 - - - - - - - - - Has award status - - - Indicates whether the lot is awarded, not awarded or still open. -WG Approval 03/12/2019 - - - - - - - - 1 - - - - - - - - - Has non award justification - - - On hold; Enumeration. - - - - - - - - - 1 - - - - - - - - - Has fund programme - - - - - - 1 - - - - - - - - - Has procurement classification - - - - - - - - - - - - Provides ruling on remedy - - - States the measures to be taken after a review procedure. - - - - - - - - - - - - Has confirmed irregularity type - - - Additional information: -This relation corresponds in eForms to BT-791 Review Irregularity Type - - - - - - - - - - - - Has review decision type - - - Additional information: -This relation corresponds in eForms to BT-790 Review Decision Type. - - - - - - 1 - - - - - - - - - Has alleged irregularity type - - - Additional information: -This relation corresponds in eForms to BT-791 Review Irregularity Type - - - - - - - - - - - - - Requests remedy type - - - Additional information: -This relation corresponds in eForms to BT-792 Review Remedy Type - - - - - - 1 - 1 - - - - - - - - - Has change justification - - - The motives for the change. - -WG 5/11/2019 - -The codelist to be used is at-voc:change-corrig-justification which is available at -http://publications.europa.eu/resource/dataset/change-corrig-justification - - - - - - 1 - 1 - - - - - - - - - Has non publication justification - - - The reason why data is not published. -WG Approval 11/06/2020 - - - - - - - - 1 - 1 - - - - - - - - - Has modification justification - - - Explanation of why a contract was modified. -WG Approval 09/11/2021 - -The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification - -Additional Information - -This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - -This corresponds in eForms to BT-200. - - - - - - - - 1 - - - - - - - - - Has currency - - - The identifier of the currency as in the standard code list used. - - - - - - - - 1 - - - - - - - - - Has time period - - - - - - - - - - - 1 - 1 - - - - - - - - - Has unit code - - - - - - 1 - 1 - - - - - - - - - Unit type - - diff --git a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM-shacl.ttl b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM-shacl.ttl deleted file mode 100644 index e0809d7..0000000 --- a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM-shacl.ttl +++ /dev/null @@ -1,7219 +0,0 @@ -@prefix : . -@prefix adms: . -@prefix at-voc: . -@prefix bibo: . -@prefix cc: . -@prefix cccev: . -@prefix core-shape: . -@prefix dcterms: . -@prefix foaf: . -@prefix locn: . -@prefix org: . -@prefix owl: . -@prefix person: . -@prefix rdf: . -@prefix rdfs: . -@prefix sh: . -@prefix skos: . -@prefix time: . -@prefix vann: . -@prefix xsd: . - -core-shape:adms-Identifier a sh:NodeShape ; - rdfs:label "Identifier" ; - rdfs:comment "A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:adms-Identifier-adms-schemaAgency, - core-shape:adms-Identifier-epo-hasScheme, - core-shape:adms-Identifier-epo-hasSchemeVersion, - core-shape:adms-Identifier-skos-notation ; - sh:targetClass adms:Identifier . - -core-shape:cccev-Constraint a sh:NodeShape ; - rdfs:label "Constraint" ; - rdfs:comment """Limitation applied to an Information Concept. - -Additional Information: -Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-Constraint-cccev-constrains, - core-shape:cccev-Constraint-epo-hasThresholdType, - core-shape:cccev-Constraint-epo-hasThresholdValue ; - sh:targetClass cccev:Constraint . - -core-shape:cccev-Criterion a sh:NodeShape ; - rdfs:label "Criterion" ; - rdfs:comment """Condition for evaluation or assessment. - -Additional Information: -In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-Criterion-cccev-bias, - core-shape:cccev-Criterion-cccev-weight, - core-shape:cccev-Criterion-cccev-weightingConsiderationDescription, - core-shape:cccev-Criterion-dct-type ; - sh:targetClass cccev:Criterion . - -core-shape:cccev-Evidence a sh:NodeShape ; - rdfs:label "Evidence" ; - rdfs:comment """Proof that a Requirement is met. - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-Evidence-cccev-confidentialityLevelType, - core-shape:cccev-Evidence-cccev-supportsConcept, - core-shape:cccev-Evidence-cccev-supportsRequirement ; - sh:targetClass cccev:Evidence . - -core-shape:cccev-InformationConcept a sh:NodeShape ; - rdfs:label "Information concept" ; - rdfs:comment "Piece of information that the Evidence provides or the Requirement needs." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-InformationConcept-adms-identifier, - core-shape:cccev-InformationConcept-dct-description, - core-shape:cccev-InformationConcept-skos-prefLabel ; - sh:targetClass cccev:InformationConcept . - -core-shape:cccev-Requirement a sh:NodeShape ; - rdfs:label "Requirement" ; - rdfs:comment """Condition or prerequisite that is to be proven by Evidence. - -Additional Information: -Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. -To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. -To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-Requirement-cccev-hasRequirement, - core-shape:cccev-Requirement-dct-description, - core-shape:cccev-Requirement-skos-prefLabel ; - sh:targetClass cccev:Requirement . - -core-shape:cpov-ContactPoint a sh:NodeShape ; - rdfs:label "Contact point" ; - rdfs:comment """Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. - -Additional information: -This class represents the contact information for a Public Service, Channel, Public Organisation, etc. -The Contact Point could be a role, email address, telephone number, etc. - -WG approval 5/11/2019""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cpov-ContactPoint-cpov-email, - core-shape:cpov-ContactPoint-cpov-telephone, - core-shape:cpov-ContactPoint-cv-address, - core-shape:cpov-ContactPoint-dct-description, - core-shape:cpov-ContactPoint-epo-hasContactName, - core-shape:cpov-ContactPoint-epo-hasFax, - core-shape:cpov-ContactPoint-epo-hasInternetAddress ; - sh:targetClass cccev:ContactPoint . - -core-shape:cpov-PublicOrganisation a sh:NodeShape ; - rdfs:label "Public organisation" ; - rdfs:comment """An Organisation that is defined as being part of the public sector by a legal framework at any level. - -Additional information: -A body governed by public law: -- (a) established for the specific Purpose of meeting needs in the general interest -- (b) having legal personality; -- (c) financed, for the most part by the State, or regional or local authorities. - -Examples of Public Organisations are municipality, international public body, ministry, others. - -WG Approval 28/04/2020""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass cccev:PublicOrganisation . - -core-shape:cpv-Person a sh:NodeShape ; - rdfs:label "Person" ; - rdfs:comment """A individual human being who may be dead or alive, but not imaginary. -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cpv-Person-cv-birthDate, - core-shape:cpv-Person-cv-registeredAddress, - core-shape:cpv-Person-dct-alternative, - core-shape:cpv-Person-epo-hasCountryOfBirth, - core-shape:cpv-Person-epo-hasNationality, - core-shape:cpv-Person-epo-isBeneficialOwnerOf, - core-shape:cpv-Person-foaf-familyName, - core-shape:cpv-Person-foaf-givenName, - core-shape:cpv-Person-foaf-name, - core-shape:cpv-Person-person-birthName, - core-shape:cpv-Person-person-patronymicName, - core-shape:cpv-Person-person-placeOfBirth, - core-shape:cpv-Person-person-placeOfDeath ; - sh:targetClass cccev:Person . - -core-shape:cv-Channel a sh:NodeShape ; - rdfs:label "Channel" ; - rdfs:comment """A medium through which Agents interact. - -Additional Information -Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. - -Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. -Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. - -See also Directive recitals 53 to 56. - -WG approval 2023-02-14""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cv-Channel-dct-description, - core-shape:cv-Channel-epo-hasAddressURL, - core-shape:cv-Channel-epo-hasEndpointIdentifier ; - sh:targetClass cccev:Channel . - -core-shape:dct-Location a sh:NodeShape ; - rdfs:label "Location" ; - rdfs:comment "An identifiable geographic place or named place." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:dct-Location-adms-identifier, - core-shape:dct-Location-epo-hasCountryCode, - core-shape:dct-Location-epo-hasNutsCode, - core-shape:dct-Location-locn-address, - core-shape:dct-Location-locn-geographicIdentifier, - core-shape:dct-Location-locn-geographicName, - core-shape:dct-Location-locn-geometry ; - sh:targetClass dcterms:Location . - -core-shape:epo-AccessTerm a sh:NodeShape ; - rdfs:label "Access term" ; - rdfs:comment """Conditions and stipulations about where and how to access the Procurement Documents. - -WG Approval 09/03/2021 - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AccessTerm-epo-definesCatalogueProvider, - core-shape:epo-AccessTerm-epo-definesCatalogueReceiver, - core-shape:epo-AccessTerm-epo-definesOfflineAccessProvider, - core-shape:epo-AccessTerm-epo-definesProcurementProcedureInformationProvider, - core-shape:epo-AccessTerm-epo-hasAdditionalInformationDeadline, - core-shape:epo-AccessTerm-epo-hasDocumentRestrictionJustification, - core-shape:epo-AccessTerm-epo-hasPublicAccessURL, - core-shape:epo-AccessTerm-epo-hasRestrictedAccessURL, - core-shape:epo-AccessTerm-epo-involvesProcurementDocument, - core-shape:epo-AccessTerm-epo-isProcurementDocumentRestricted, - core-shape:epo-AccessTerm-epo-refersToPlannedPart ; - sh:targetClass :AccessTerm . - -core-shape:epo-AcquiringCentralPurchasingBody a sh:NodeShape ; - rdfs:label "Acquiring central purchasing body" ; - rdfs:comment """Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. -Additional Information: -In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. - -WG approval 05/08/2021 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AcquiringCentralPurchasingBody . - -core-shape:epo-AcquiringParty a sh:NodeShape ; - rdfs:label "Acquiring party" ; - rdfs:comment """The Role of an Agent that acts on the buying side of a Procurement Process. -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AcquiringParty . - -core-shape:epo-AdHocChannel a sh:NodeShape ; - rdfs:label "Ad hoc channel" ; - rdfs:comment """Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. - -Additional Information: - -This corresponds in eForms to BT-724 Tool Atypical. - - -WG Acceptance 10/01/2023 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AdHocChannel . - -core-shape:epo-AgentInRole a sh:NodeShape ; - rdfs:label "Agent in role" ; - rdfs:comment """Relative concept that ties an Agent to a part they play in a given Situational Context. - -Additional information: -The classification of roles is based is based on the degree of involvement into the Procurement Process: -- Primary (Procurement) Pole is directly involved in the Procurement Process; -- Secondary (Procurement sub-) Role is secondary to the Procurement Process -- Tertiary (Related) Role is not involved in the Procurement Process.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AgentInRole-dct-description, - core-shape:epo-AgentInRole-dct-title, - core-shape:epo-AgentInRole-epo-contextualisedBy, - core-shape:epo-AgentInRole-epo-exposesChannel, - core-shape:epo-AgentInRole-epo-hasContactPointInRole, - core-shape:epo-AgentInRole-epo-playedBy ; - sh:targetClass :AgentInRole . - -core-shape:epo-AuxiliaryParty a sh:NodeShape ; - rdfs:label "Auxiliary party" ; - rdfs:comment "Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AuxiliaryParty . - -core-shape:epo-AwardCriteriaSummary a sh:NodeShape ; - rdfs:label "Award criteria summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AwardCriteriaSummary . - -core-shape:epo-AwardCriterion a sh:NodeShape ; - rdfs:label "Award criterion" ; - rdfs:comment """Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. - -WG approval 05/11/2018""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AwardCriterion-epo-hasAwardCriteriaStatedInProcurementDocuments, - core-shape:epo-AwardCriterion-epo-hasAwardCriterionType, - core-shape:epo-AwardCriterion-epo-hasFixedValue, - core-shape:epo-AwardCriterion-epo-hasFixedValueType ; - sh:targetClass :AwardCriterion . - -core-shape:epo-AwardDecision a sh:NodeShape ; - rdfs:label "Award decision" ; - rdfs:comment """Resolution of the Buyer as to the result of the Procurement Procedure. - -WG approval 14/11/2018""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AwardDecision-epo-comprisesLotAwardDecision, - core-shape:epo-AwardDecision-epo-comprisesMiniCompetitionAwardDecision, - core-shape:epo-AwardDecision-epo-comprisesTenderAwardOutcome, - core-shape:epo-AwardDecision-epo-hasAdditionalNonAwardJustification, - core-shape:epo-AwardDecision-epo-hasAwardDecisionDate, - core-shape:epo-AwardDecision-epo-hasAwardStatus, - core-shape:epo-AwardDecision-epo-hasAwardedValue, - core-shape:epo-AwardDecision-epo-hasBargainPrice, - core-shape:epo-AwardDecision-epo-hasNonAwardJustification ; - sh:targetClass :AwardDecision . - -core-shape:epo-AwardEvaluationTerm a sh:NodeShape ; - rdfs:label "Award evaluation term" ; - rdfs:comment "Conditions and stipulations defining particularities of the evaluation of Award Criteria." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaEvaluationFormula, - core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaOrderJustification, - core-shape:epo-AwardEvaluationTerm-epo-hasOverallCostAwardCriteriaPonderation, - core-shape:epo-AwardEvaluationTerm-epo-hasOverallPriceAwardCriteriaPonderation, - core-shape:epo-AwardEvaluationTerm-epo-hasOverallQualityAwardCriteriaPonderation ; - sh:targetClass :AwardEvaluationTerm . - -core-shape:epo-Awarder a sh:NodeShape ; - rdfs:label "Awarder" ; - rdfs:comment "A Role of an Agent that signs the Award Decision." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Awarder . - -core-shape:epo-AwardingCentralPurchasingBody a sh:NodeShape ; - rdfs:label "Awarding central purchasing body" ; - rdfs:comment """Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. -Additional Information: -In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. - -WG approval 05/08/2021 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AwardingCentralPurchasingBody . - -core-shape:epo-BudgetProvider a sh:NodeShape ; - rdfs:label "Budget provider" ; - rdfs:comment "A role of an agent whose Budget is used to pay for the Contract." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :BudgetProvider . - -core-shape:epo-Business a sh:NodeShape ; - rdfs:label "Business" ; - rdfs:comment """A private law company registered in a national registry. - -WG Approval 28/04/2020 - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Business-epo-hasBeneficialOwner, - core-shape:epo-Business-epo-hasBusinessSize, - core-shape:epo-Business-epo-isListedCompany ; - sh:targetClass :Business . - -core-shape:epo-Buyer a sh:NodeShape ; - rdfs:label "Buyer" ; - rdfs:comment """A Role of an Agent that awards a Contract and/or purchases items. - -Additional information: -In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. -In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. -In Post-Award the buyer generally refers to the purchaser of items.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Buyer-epo-delegatesAncillaryActivitiesTo, - core-shape:epo-Buyer-epo-exposesInvoiceeChannel, - core-shape:epo-Buyer-epo-hasActivityDescription, - core-shape:epo-Buyer-epo-hasBuyerProfile, - core-shape:epo-Buyer-epo-indicatesInvoiceeContactPoint, - core-shape:epo-Buyer-epo-isContractingEntity, - core-shape:epo-Buyer-epo-signsAwardDecision ; - sh:targetClass :Buyer . - -core-shape:epo-Candidate a sh:NodeShape ; - rdfs:label "Candidate" ; - rdfs:comment """The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. - -WG approval 30/05/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Candidate . - -core-shape:epo-CatalogueProvider a sh:NodeShape ; - rdfs:label "Catalogue provider" ; - rdfs:comment """A Role of an Agent compiling and supplying a Catalogue. - -Additional Information: - -The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. - -WG Approval 28/01/2021 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :CatalogueProvider . - -core-shape:epo-CatalogueReceiver a sh:NodeShape ; - rdfs:label "Catalogue receiver" ; - rdfs:comment """A Role of an Agent processing a Catalogue. - -Additional Information: -The Catalogue Receiver may not only receive it but also validate it, process it, etc. - -The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. - -WG Approval 28/01/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :CatalogueReceiver . - -core-shape:epo-CentralPurchasingBody a sh:NodeShape ; - rdfs:label "Central purchasing body" ; - rdfs:comment """Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. - -Additional Information: -In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. -Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; - -WG approval 05/08/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :CentralPurchasingBody . - -core-shape:epo-ConcessionContract a sh:NodeShape ; - rdfs:label "Concession contract" ; - rdfs:comment """A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. - -WG Approval 24/05/2022""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ConcessionContract . - -core-shape:epo-ConcessionEstimate a sh:NodeShape ; - rdfs:label "Concession estimate" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ConcessionEstimate-epo-hasCalculationMethod, - core-shape:epo-ConcessionEstimate-epo-hasConcessionEstimatedValue, - core-shape:epo-ConcessionEstimate-epo-hasEstimatedBuyerConcessionRevenue, - core-shape:epo-ConcessionEstimate-epo-hasEstimatedUserConcessionRevenue ; - sh:targetClass :ConcessionEstimate . - -core-shape:epo-ContextSpecificDescription a sh:NodeShape ; - rdfs:label "Context specific description" ; - rdfs:comment """A description concerning a Procurement Object or a Notice in a specific Situation Context. - -Additional Information: -The description has its own identity (+I) but is dependent (+D) on the concerned Entity. - -We say that ContextSpecificDescription *concerns* an Entity. -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ContextSpecificDescription . - -core-shape:epo-ContextualProjection a sh:NodeShape ; - rdfs:label "Contextual projection" ; - rdfs:comment """Projection of an Entity and all of its properties that hold in a given Situation Context. - -Additional Information: -The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) - -We say that ContextualProjection *describes* an Entity. - -Adaptation of ContextSlices pattern encoding a 4D view. -http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ContextualProjection . - -core-shape:epo-Contract a sh:NodeShape ; - rdfs:label "Contract" ; - 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)""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Contract-epo-bindsBuyer, - core-shape:epo-Contract-epo-bindsContractor, - core-shape:epo-Contract-epo-hasContractConclusionDate, - core-shape:epo-Contract-epo-hasContractValue, - core-shape:epo-Contract-epo-hasEntryIntoForceDate, - core-shape:epo-Contract-epo-hasEstimatedDuration, - core-shape:epo-Contract-epo-hasLotReference, - core-shape:epo-Contract-epo-hasProcurementClassification, - core-shape:epo-Contract-epo-includesTender, - core-shape:epo-Contract-epo-isSubjectToContractSpecificTerm, - core-shape:epo-Contract-epo-signedByBuyer, - core-shape:epo-Contract-epo-signedByContractor ; - sh:targetClass :Contract . - -core-shape:epo-ContractLotCompletionInformation a sh:NodeShape ; - rdfs:label "Contract lot completion information" ; - rdfs:comment "Information related to a given Lot at the end of the procurement." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ContractLotCompletionInformation-epo-describesLotCompletion, - core-shape:epo-ContractLotCompletionInformation-epo-hasPaymentValueDiscrepancyJustification, - core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPaymentValue, - core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPenaltyValue, - core-shape:epo-ContractLotCompletionInformation-epo-refersToContract ; - sh:targetClass :ContractLotCompletionInformation . - -core-shape:epo-ContractModification a sh:NodeShape ; - rdfs:label "Contract modification" ; - rdfs:comment "An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ContractModification-epo-hasElementModification, - core-shape:epo-ContractModification-epo-refersToOriginalNotice ; - sh:targetClass :ContractModification . - -core-shape:epo-ContractSpecificTerm a sh:NodeShape ; - rdfs:label "Contract specific term" ; - rdfs:comment "Gathering class for conditions and stipulations related to a contract in the Post-Award Phase." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ContractSpecificTerm . - -core-shape:epo-ContractTerm a sh:NodeShape ; - rdfs:label "Contract term" ; - rdfs:comment """Conditions and stipulations defining particularities of the Post Award Phase. - -(WG approval 23/11/2018) -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ContractTerm-epo-definesContractDuration, - core-shape:epo-ContractTerm-epo-definesContractPeriod, - core-shape:epo-ContractTerm-epo-definesPaymentExecutor, - core-shape:epo-ContractTerm-epo-definesPlaceOfPerformance, - core-shape:epo-ContractTerm-epo-definesSubcontractingTerm, - core-shape:epo-ContractTerm-epo-hasAdditionalContractNature, - core-shape:epo-ContractTerm-epo-hasBroadPlaceOfPerformance, - core-shape:epo-ContractTerm-epo-hasContractNatureType, - core-shape:epo-ContractTerm-epo-hasEInvoicing, - core-shape:epo-ContractTerm-epo-hasEInvoicingPermission, - core-shape:epo-ContractTerm-epo-hasEOrdering, - core-shape:epo-ContractTerm-epo-hasEPayment, - core-shape:epo-ContractTerm-epo-hasLegalFormRequirement, - core-shape:epo-ContractTerm-epo-hasMaximumNumberOfRenewals, - core-shape:epo-ContractTerm-epo-hasOptions, - core-shape:epo-ContractTerm-epo-hasOptionsDescription, - core-shape:epo-ContractTerm-epo-hasPaymentArrangement, - core-shape:epo-ContractTerm-epo-hasPerformanceConditions, - core-shape:epo-ContractTerm-epo-hasPlaceOfPerformanceAdditionalInformation, - core-shape:epo-ContractTerm-epo-hasRenewalDescription, - core-shape:epo-ContractTerm-epo-hasReservedExecution, - core-shape:epo-ContractTerm-epo-isRenewalIndicator ; - sh:targetClass :ContractTerm . - -core-shape:epo-Contractor a sh:NodeShape ; - rdfs:label "Contractor" ; - rdfs:comment """The Role of an Agent that has signed a Contract with a Buyer. - -WG approval 08/11/2022""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Contractor-epo-needsToBeAWinner ; - sh:targetClass :Contractor . - -core-shape:epo-DesignContestRegimeTerm a sh:NodeShape ; - rdfs:label "Design contest regime term" ; - rdfs:comment """Conditions and stipulations defining particularities of a Design Contest. - -WG approval: 04-02-2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DesignContestRegimeTerm-epo-definesPrize, - core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContract, - core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContractInformation, - core-shape:epo-DesignContestRegimeTerm-epo-hasParticipationPayment, - core-shape:epo-DesignContestRegimeTerm-epo-isJuryDecisionBinding ; - sh:targetClass :DesignContestRegimeTerm . - -core-shape:epo-DirectAwardTerm a sh:NodeShape ; - rdfs:label "Direct award term" ; - rdfs:comment """Conditions and stipulations defining particularities of the award of a Contract without prior publication. - -Addtional Information: - -Direct award may refer to a previous Procedure and/or specific Lot(s). - -It may also refer to other justified situations whereby there is no previous Procedure. - -See Directive 2014/24/EU Article 32. - -WG Approval 22/11/2019 - - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DirectAwardTerm-epo-hasDirectAwardJustification, - core-shape:epo-DirectAwardTerm-epo-hasJustification, - core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedure, - core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedureLot ; - sh:targetClass :DirectAwardTerm . - -core-shape:epo-DirectContract a sh:NodeShape ; - rdfs:label "Direct contract" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DirectContract-epo-resultsFromLotAwardDecision ; - sh:targetClass :DirectContract . - -core-shape:epo-Document a sh:NodeShape ; - rdfs:label "Document" ; - rdfs:comment """A set of interrelated Business Information representing the Business facts and associated metadata. -The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. - -WG Approval 23/05/2019 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Document-adms-identifier, - core-shape:epo-Document-dct-description, - core-shape:epo-Document-dct-issued, - core-shape:epo-Document-dct-title, - core-shape:epo-Document-epo-associatedWith, - core-shape:epo-Document-epo-hasAccessURL, - core-shape:epo-Document-epo-hasDispatchDate, - core-shape:epo-Document-epo-hasElectronicDigest, - core-shape:epo-Document-epo-hasElectronicSignature, - core-shape:epo-Document-epo-hasOfficialLanguage, - core-shape:epo-Document-epo-hasPublicationDate, - core-shape:epo-Document-epo-hasReceptionDate, - core-shape:epo-Document-epo-hasUUID, - core-shape:epo-Document-epo-hasUnofficialLanguage, - core-shape:epo-Document-epo-hasVersion, - core-shape:epo-Document-epo-refersToPrevious ; - sh:targetClass :Document . - -core-shape:epo-Duration a sh:NodeShape ; - rdfs:label "Duration" ; - rdfs:comment "The length of time in which a concept occurs." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Duration . - -core-shape:epo-DynamicPurchaseSystemTechnique a sh:NodeShape ; - rdfs:label "Dynamic purchase system technique" ; - rdfs:comment """A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. - -WG approval 23/05/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DynamicPurchaseSystemTechnique-epo-hasDPSScope, - core-shape:epo-DynamicPurchaseSystemTechnique-epo-resultsInDynamicPurchasingSystem ; - sh:targetClass :DynamicPurchaseSystemTechnique . - -core-shape:epo-DynamicPurchasingSystem a sh:NodeShape ; - rdfs:label "Dynamic purchasing system" ; - rdfs:comment """An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. - -WG approval 23/05/2023 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DynamicPurchasingSystem-epo-hasCandidateList ; - sh:targetClass :DynamicPurchasingSystem . - -core-shape:epo-EAuctionTechnique a sh:NodeShape ; - rdfs:label "E auction technique" ; - rdfs:comment """A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. - -Additional Information: -This corresponds in eForms to BT-767 Electronic Auction . - -WG approval 20/07/2018""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EAuctionTechnique . - -core-shape:epo-EconomicStandingSummary a sh:NodeShape ; - rdfs:label "Economic standing summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EconomicStandingSummary . - -core-shape:epo-ElectronicSignature a sh:NodeShape ; - rdfs:label "Electronic signature" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ElectronicSignature-dct-description ; - sh:targetClass :ElectronicSignature . - -core-shape:epo-ElementChangeDescription a sh:NodeShape ; - rdfs:label "Element change description" ; - rdfs:comment "Information about a specific field to be changed with regard to a previous Notice." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ElementChangeDescription-epo-hasAdditionalInformation, - core-shape:epo-ElementChangeDescription-epo-hasChangeDescription, - core-shape:epo-ElementChangeDescription-epo-hasChangeJustification, - core-shape:epo-ElementChangeDescription-epo-hasChangeReasonDescription, - core-shape:epo-ElementChangeDescription-epo-hasElementReference, - core-shape:epo-ElementChangeDescription-epo-hasPreviousVersionOfElementReference, - core-shape:epo-ElementChangeDescription-epo-hasProcurementDocumentChangeDate, - core-shape:epo-ElementChangeDescription-epo-isProcurementDocumentChanged ; - sh:targetClass :ElementChangeDescription . - -core-shape:epo-ElementConfidentialityDescription a sh:NodeShape ; - rdfs:label "Element confidentiality description" ; - rdfs:comment """Information about a specific field not intended for publication. - -Additional Information: -In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided. -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ElementConfidentialityDescription-epo-hasAccessibilityDate, - core-shape:epo-ElementConfidentialityDescription-epo-hasConfidentialityJustification, - core-shape:epo-ElementConfidentialityDescription-epo-hasInstanceReference, - core-shape:epo-ElementConfidentialityDescription-epo-hasNonPublicationJustification, - core-shape:epo-ElementConfidentialityDescription-epo-hasPropertyReference ; - sh:targetClass :ElementConfidentialityDescription . - -core-shape:epo-ElementDescription a sh:NodeShape ; - rdfs:label "Element description" ; - rdfs:comment "Description about a specific resource." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ElementDescription . - -core-shape:epo-ElementModificationDescription a sh:NodeShape ; - rdfs:label "Element modification description" ; - rdfs:comment "Information about a specific field to be changed with regard to the Modification Of a Contract." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ElementModificationDescription-epo-hasElementReference, - core-shape:epo-ElementModificationDescription-epo-hasModificationDescription, - core-shape:epo-ElementModificationDescription-epo-hasModificationJustification, - core-shape:epo-ElementModificationDescription-epo-hasModificationReasonDescription ; - sh:targetClass :ElementModificationDescription . - -core-shape:epo-EmploymentInformationProvider a sh:NodeShape ; - rdfs:label "Employment information provider" ; - rdfs:comment "A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EmploymentInformationProvider . - -core-shape:epo-EnvironmentalProtectionInformationProvider a sh:NodeShape ; - rdfs:label "Environmental protection information provider" ; - rdfs:comment "A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EnvironmentalProtectionInformationProvider . - -core-shape:epo-Estimate a sh:NodeShape ; - rdfs:label "Estimate" ; - rdfs:comment "An approximate calculation or a judgement of the value, number, Quantity or extent of something." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Estimate . - -core-shape:epo-EvaluationTerm a sh:NodeShape ; - rdfs:label "Evaluation term" ; - rdfs:comment """Conditions and stipulations defining particularities of the Tender evaluation. - -(WG approval 23/11/2018) - - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EvaluationTerm . - -core-shape:epo-ExclusionGround a sh:NodeShape ; - rdfs:label "Exclusion ground" ; - rdfs:comment """Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. - -Additional Information: -This corresponds in eForms to BG-701 Exclusion Grounds. - -WG approval 31/10/2018""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ExclusionGround . - -core-shape:epo-ExclusionGroundsSummary a sh:NodeShape ; - rdfs:label "Exclusion grounds summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ExclusionGroundsSummary . - -core-shape:epo-ExpressionOfInterest a sh:NodeShape ; - rdfs:label "Expression of interest" ; - rdfs:comment """Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. -WG approval 13/04/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ExpressionOfInterest . - -core-shape:epo-FrameworkAgreement a sh:NodeShape ; - rdfs:label "Framework agreement" ; - rdfs:comment """An agreement between one or more Contracting Authorities and one or more Economic Operators. - -Additional Information: -When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. - -WG approval 18/05/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-FrameworkAgreement-epo-resultsFromLotAwardDecision ; - sh:targetClass :FrameworkAgreement . - -core-shape:epo-FrameworkAgreementTechnique a sh:NodeShape ; - rdfs:label "Framework agreement technique" ; - rdfs:comment """Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. - -WG approval 18/05/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :FrameworkAgreementTechnique . - -core-shape:epo-FrameworkAgreementTerm a sh:NodeShape ; - rdfs:label "Framework agreement term" ; - rdfs:comment "Conditions and stipulations defining particularities in a Framework Agreement." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-FrameworkAgreementTerm-epo-hasBuyerCategoryDescription, - core-shape:epo-FrameworkAgreementTerm-epo-hasDurationExtensionJustification, - core-shape:epo-FrameworkAgreementTerm-epo-hasFrameworkAgreementType, - core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchFrameworkAgreementMaximumValue, - core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchGroupFrameworkAgreementMaximumValue, - core-shape:epo-FrameworkAgreementTerm-epo-hasMaximumParticipantsNumber ; - sh:targetClass :FrameworkAgreementTerm . - -core-shape:epo-Fund a sh:NodeShape ; - rdfs:label "Fund" ; - rdfs:comment """A financial resource used to support the Procurement. - -Additional Information: - -In the context of EU, Funds can be divided into programmes, actions and projects. - -Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). - -Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. - -WG Approved 14/05/2019 - - - - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Fund-adms-identifier, - core-shape:epo-Fund-dct-description, - core-shape:epo-Fund-dct-title, - core-shape:epo-Fund-epo-hasFundProgramme, - core-shape:epo-Fund-epo-hasURL ; - sh:targetClass :Fund . - -core-shape:epo-GreenProcurement a sh:NodeShape ; - rdfs:label "Green procurement" ; - rdfs:comment """Approach whereby Buyers seek to procure with a reduced Environmental Impact. - -Additional Information: - -The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. - -Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf -An instance of the class GreenProcurement is represented in eForms with the code "env-imp" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-GreenProcurement-epo-fulfillsRequirement, - core-shape:epo-GreenProcurement-epo-hasCleanVehicles, - core-shape:epo-GreenProcurement-epo-hasTotalVehicles, - core-shape:epo-GreenProcurement-epo-hasZeroEmissionVehicles ; - sh:targetClass :GreenProcurement . - -core-shape:epo-IndefiniteDuration a sh:NodeShape ; - rdfs:label "Indefinite duration" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :IndefiniteDuration . - -core-shape:epo-InnovativeProcurement a sh:NodeShape ; - rdfs:label "Innovative procurement" ; - rdfs:comment """An instance of the class InnovativeProcurement is represented in eForms with the code "inn-pur" defined in the codelist Strategic-Procurement. - -Research (21/01/2020): - -Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. - -Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions - -Additional Information: -‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; -See: Directive 2014/24 -Articles: 2, 26 (3), 31, 67 (2.a) - -Question: -Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-InnovativeProcurement-epo-fulfillsRequirement ; - sh:targetClass :InnovativeProcurement . - -core-shape:epo-JuryMember a sh:NodeShape ; - rdfs:label "Jury member" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-JuryMember-epo-playedBy ; - sh:targetClass :JuryMember . - -core-shape:epo-LeadBuyer a sh:NodeShape ; - rdfs:label "Lead buyer" ; - rdfs:comment """A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. - -WG agreement: 2022-11-22""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :LeadBuyer . - -core-shape:epo-Lot a sh:NodeShape ; - rdfs:label "Lot" ; - rdfs:comment """A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. - -WG approval 12/09/2018""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Lot-epo-isSubjectToLotSpecificTerm, - core-shape:epo-Lot-epo-specifiesProcurementCriterion ; - sh:targetClass :Lot . - -core-shape:epo-LotAwardDecision a sh:NodeShape ; - rdfs:label "Lot award decision" ; - rdfs:comment "Result concerning the Lot attributed by the Awarder." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-LotAwardDecision-epo-concernsLot, - core-shape:epo-LotAwardDecision-epo-hasApproximateFrameworkAgreementValue, - core-shape:epo-LotAwardDecision-epo-hasAwardedEstimatedValue, - core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementEstimatedValue, - core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementMaximumValue, - core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractNumber, - core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractTitle ; - sh:targetClass :LotAwardDecision . - -core-shape:epo-LotGroup a sh:NodeShape ; - rdfs:label "Lot group" ; - rdfs:comment """Combination of several Lots to conduct comparative assessment of the Tenders. - -Additional Information: - -The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. - -Pending of discussion with eForms - - - -Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-LotGroup-adms-identifier, - core-shape:epo-LotGroup-epo-setsGroupingContextForLot, - core-shape:epo-LotGroup-epo-specifiesProcurementCriterion ; - sh:targetClass :LotGroup . - -core-shape:epo-LotGroupAwardInformation a sh:NodeShape ; - rdfs:label "Lot group award information" ; - rdfs:comment "Award information related to a given Group of Lots." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-LotGroupAwardInformation-epo-describesLotGroup, - core-shape:epo-LotGroupAwardInformation-epo-hasGroupFrameworkAgreementMaximumValue ; - sh:targetClass :LotGroupAwardInformation . - -core-shape:epo-LotSpecificTerm a sh:NodeShape ; - rdfs:label "Lot specific term" ; - rdfs:comment "Gathering class for conditions and stipulations related to a Lot." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :LotSpecificTerm . - -core-shape:epo-Mediator a sh:NodeShape ; - rdfs:label "Mediator" ; - rdfs:comment """A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. -WG approval 20/04/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Mediator . - -core-shape:epo-MiniCompetition a sh:NodeShape ; - rdfs:label "Mini competition" ; - rdfs:comment """A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. - -Additional Information: -It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. -It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. - -WG approval 30/05/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-MiniCompetition-epo-followsRulesSetBy, - core-shape:epo-MiniCompetition-epo-specifiesAwardCriterion, - core-shape:epo-MiniCompetition-epo-usesCandidateList ; - sh:targetClass :MiniCompetition . - -core-shape:epo-MiniCompetitionAwardDecision a sh:NodeShape ; - rdfs:label "Mini competition award decision" ; - rdfs:comment """Result concerning the Mini-Competition attributed by the Awarder. -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-MiniCompetitionAwardDecision-epo-concernsMiniCompetition ; - sh:targetClass :MiniCompetitionAwardDecision . - -core-shape:epo-MonetaryValue a sh:NodeShape ; - rdfs:label "Monetary value" ; - rdfs:comment """A number of monetary units specified using a given unit of currency. - -Additional information: -In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. - -WG approval 13/04/2021 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-MonetaryValue-epo-hasAmountValue, - core-shape:epo-MonetaryValue-epo-hasCurrency, - core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyID, - core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyName, - core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListID ; - sh:targetClass :MonetaryValue . - -core-shape:epo-MultipleStageProcedureTerm a sh:NodeShape ; - rdfs:label "Multiple stage procedure term" ; - rdfs:comment """Conditions and stipulations defining particularities of Procedures carried out in several steps -Additional Information: -Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. -WG Approval 15/04/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToExpressInterestDate, - core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToTenderDate, - core-shape:epo-MultipleStageProcedureTerm-epo-hasMaximumNumberOfCandidates, - core-shape:epo-MultipleStageProcedureTerm-epo-hasMinimumNumberOfCandidates, - core-shape:epo-MultipleStageProcedureTerm-epo-hasNoNegotiationNecessary, - core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemDuration, - core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemRenewalDescription, - core-shape:epo-MultipleStageProcedureTerm-epo-hasSuccessiveReduction ; - sh:targetClass :MultipleStageProcedureTerm . - -core-shape:epo-NonDisclosureAgreementTerm a sh:NodeShape ; - rdfs:label "Non disclosure agreement term" ; - rdfs:comment "Conditions and stipulations" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-NonDisclosureAgreementTerm-dct-description, - core-shape:epo-NonDisclosureAgreementTerm-epo-isNonDisclosureAgreementRequired ; - sh:targetClass :NonDisclosureAgreementTerm . - -core-shape:epo-Notice a sh:NodeShape ; - rdfs:label "Notice" ; - rdfs:comment """Document published by the Buyer about market opportunities and results. - -WG Approval 23/05/2019 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Notice-epo-conformsToLegalBasis, - core-shape:epo-Notice-epo-conformsToSpecificLegalBasis, - core-shape:epo-Notice-epo-hasAdditionalInformation, - core-shape:epo-Notice-epo-hasEFormsSubtype, - core-shape:epo-Notice-epo-hasESenderDispatchDate, - core-shape:epo-Notice-epo-hasFormNumber, - core-shape:epo-Notice-epo-hasFormType, - core-shape:epo-Notice-epo-hasLongTitle, - core-shape:epo-Notice-epo-hasNoticePublicationNumber, - core-shape:epo-Notice-epo-hasNoticeType, - core-shape:epo-Notice-epo-hasNotificationContentType, - core-shape:epo-Notice-epo-hasOJSIssueNumber, - core-shape:epo-Notice-epo-hasOJSType, - core-shape:epo-Notice-epo-isBasedOnImplementingRegulation, - core-shape:epo-Notice-epo-isEUInstitution, - core-shape:epo-Notice-epo-refersToLot, - core-shape:epo-Notice-epo-refersToNotice, - core-shape:epo-Notice-epo-refersToProcedure ; - sh:targetClass :Notice . - -core-shape:epo-NoticeAwardInformation a sh:NodeShape ; - rdfs:label "Notice award information" ; - rdfs:comment "Information about an Award Notice." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-NoticeAwardInformation-epo-hasApproximateFrameworkAgreementValue, - core-shape:epo-NoticeAwardInformation-epo-hasMaximumFrameworkAgreementAwardedValue, - core-shape:epo-NoticeAwardInformation-epo-hasProcurementHighestReceivedTenderValue, - core-shape:epo-NoticeAwardInformation-epo-hasProcurementLowestReceivedTenderValue, - core-shape:epo-NoticeAwardInformation-epo-hasTotalAwardedValue ; - sh:targetClass :NoticeAwardInformation . - -core-shape:epo-NoticeChange a sh:NodeShape ; - rdfs:label "Notice change" ; - rdfs:comment "Information about a corrigendum in a Notice." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-NoticeChange-epo-hasElementChange, - core-shape:epo-NoticeChange-epo-refersToPreviousNotice ; - sh:targetClass :NoticeChange . - -core-shape:epo-NoticeDescription a sh:NodeShape ; - rdfs:label "Notice description" ; - rdfs:comment "Descriptions about the notice publishing, or providing evolutions of resources." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-NoticeDescription-epo-describesNotice, - core-shape:epo-NoticeDescription-epo-hasElementDescription ; - sh:targetClass :NoticeDescription . - -core-shape:epo-Offer a sh:NodeShape ; - rdfs:label "Offer" ; - rdfs:comment """Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. - -Additional information: -A quotation is considered to be an Offer in the eProcurement Ontology. - -WG approval 09/02/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Offer . - -core-shape:epo-OfferIssuer a sh:NodeShape ; - rdfs:label "Offer issuer" ; - rdfs:comment """The Role of an Agent that distributes an Offer. - -WG approval 09/02/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-OfferIssuer-epo-distributesOffer ; - sh:targetClass :OfferIssuer . - -core-shape:epo-OfferingParty a sh:NodeShape ; - rdfs:label "Offering party" ; - rdfs:comment """The Role of an Agent that acts on the Economic Operator side during a Procurement Process. - -Additional information: -As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :OfferingParty . - -core-shape:epo-OfflineAccessProvider a sh:NodeShape ; - rdfs:label "Offline access provider" ; - rdfs:comment "A Role of an Agent responsible for providing offline access to the Procurement Documents." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :OfflineAccessProvider . - -core-shape:epo-OpeningTerm a sh:NodeShape ; - rdfs:label "Opening term" ; - rdfs:comment """Conditions and stipulations defining particularities of the opening of Tenders. -Additional Information: -The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. -WG Approval 15/04/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-OpeningTerm-epo-definesOpeningPlace, - core-shape:epo-OpeningTerm-epo-hasOpeningDateTime, - core-shape:epo-OpeningTerm-epo-hasOpeningDescription, - core-shape:epo-OpeningTerm-epo-hasOpeningURL ; - sh:targetClass :OpeningTerm . - -core-shape:epo-OrganisationGroup a sh:NodeShape ; - rdfs:label "Organisation group" ; - rdfs:comment """Agreed collaboration of several Organisations. -Additional Information: -This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. -WG approval 15/04/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-OrganisationGroup-epo-hasGroupType, - core-shape:epo-OrganisationGroup-epo-hasMember, - core-shape:epo-OrganisationGroup-epo-leadBy ; - sh:targetClass :OrganisationGroup . - -core-shape:epo-OriginatorRequest a sh:NodeShape ; - rdfs:label "Originator request" ; - rdfs:comment """Document in which the Originator describes his needs. - -WG approval 09/02/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :OriginatorRequest . - -core-shape:epo-OtherEntity a sh:NodeShape ; - rdfs:label "Other entity" ; - rdfs:comment "Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :OtherEntity . - -core-shape:epo-ParticipationCondition a sh:NodeShape ; - rdfs:label "Participation condition" ; - rdfs:comment """Criterion that describes a Requirement to take part in a procurement. - -WG approval 30/05/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ParticipationCondition-epo-hasReservedProcurement ; - sh:targetClass :ParticipationCondition . - -core-shape:epo-ParticipationConditionsSummary a sh:NodeShape ; - rdfs:label "Participation conditions summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ParticipationConditionsSummary-epo-describesObjectiveParticipationRules, - core-shape:epo-ParticipationConditionsSummary-epo-describesVerificationMethod, - core-shape:epo-ParticipationConditionsSummary-epo-hasReservedProcurement ; - sh:targetClass :ParticipationConditionsSummary . - -core-shape:epo-ParticipationRequestProcessor a sh:NodeShape ; - rdfs:label "Participation request processor" ; - rdfs:comment "A Role of an Agent responsible for processing Requests To Participate." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ParticipationRequestProcessor . - -core-shape:epo-ParticipationRequestReceiver a sh:NodeShape ; - rdfs:label "Participation request receiver" ; - rdfs:comment "A Role of an Agent responsible for receiving Requests To Participate." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ParticipationRequestReceiver . - -core-shape:epo-ParticipationRequestTerm a sh:NodeShape ; - rdfs:label "Participation request term" ; - rdfs:comment "Conditions and stipulations defining particularities of requesting participation in a Procedure." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestProcessor, - core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestReceiver ; - sh:targetClass :ParticipationRequestTerm . - -core-shape:epo-PaymentExecutor a sh:NodeShape ; - rdfs:label "Payment executor" ; - rdfs:comment "A Role of an Agent responsible for executing the Payment." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :PaymentExecutor . - -core-shape:epo-Period a sh:NodeShape ; - rdfs:label "Period" ; - rdfs:comment """A time interval or a Duration. - -(WG approval 28/04/2020) -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Period-epo-hasBeginning, - core-shape:epo-Period-epo-hasEnd, - core-shape:epo-Period-epo-hasTimePeriod ; - sh:targetClass :Period . - -core-shape:epo-PlannedProcurementPart a sh:NodeShape ; - rdfs:label "Planned procurement part" ; - rdfs:comment """A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. - -WG Approval 20/06/2019""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-PlannedProcurementPart-epo-foreseesProcurementObject, - core-shape:epo-PlannedProcurementPart-epo-foreseesTechnique, - core-shape:epo-PlannedProcurementPart-epo-hasPlannedDuration, - core-shape:epo-PlannedProcurementPart-epo-hasPlannedPeriod ; - sh:targetClass :PlannedProcurementPart . - -core-shape:epo-Prize a sh:NodeShape ; - rdfs:label "Prize" ; - rdfs:comment """A reward given in a Contest. -WG approval: 15/04/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Prize-epo-hasPrizeRank, - core-shape:epo-Prize-epo-hasPrizeValue ; - sh:targetClass :Prize . - -core-shape:epo-Procedure a sh:NodeShape ; - rdfs:label "Procedure" ; - rdfs:comment """A legally defined set of administrative activities conducted to conclude one or more Contracts. - -Additional Information -The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). - -WG Approval 20/08/2019 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Procedure-epo-hasAcceleratedProcedureJustification, - core-shape:epo-Procedure-epo-hasMainFeature, - core-shape:epo-Procedure-epo-hasProcedureType, - core-shape:epo-Procedure-epo-hasProcurementScopeDividedIntoLot, - core-shape:epo-Procedure-epo-involvesBuyer, - core-shape:epo-Procedure-epo-isAccelerated, - core-shape:epo-Procedure-epo-isDesignContest, - core-shape:epo-Procedure-epo-isExecutedByProcurementServiceProvider, - core-shape:epo-Procedure-epo-isJointProcurement, - core-shape:epo-Procedure-epo-isResponsibilityOfBuyer, - core-shape:epo-Procedure-epo-isSubjectToProcedureSpecificTerm, - core-shape:epo-Procedure-epo-specifiesProcurementCriteriaSummary ; - sh:targetClass :Procedure . - -core-shape:epo-ProcedureSpecificTerm a sh:NodeShape ; - rdfs:label "Procedure specific term" ; - rdfs:comment "Gathering class for conditions and stipulations related to a Procedure." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ProcedureSpecificTerm . - -core-shape:epo-ProcedureTerm a sh:NodeShape ; - rdfs:label "Procedure term" ; - rdfs:comment """Conditions and stipulations defining particularities of the Procedure. - -(WG approval 23/11/2018)""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcedureTerm-epo-definesBudgetProvider, - core-shape:epo-ProcedureTerm-epo-definesInformationProvider, - core-shape:epo-ProcedureTerm-epo-definesLotGroup, - core-shape:epo-ProcedureTerm-epo-definesMediator, - core-shape:epo-ProcedureTerm-epo-hasCrossBorderLaw, - core-shape:epo-ProcedureTerm-epo-hasGroupLotEvaluationMethod, - core-shape:epo-ProcedureTerm-epo-hasLotAwardCombination, - core-shape:epo-ProcedureTerm-epo-hasMaximumLotSubmissionAllowed, - core-shape:epo-ProcedureTerm-epo-hasMaximumNumberOfLotsToBeAwarded, - core-shape:epo-ProcedureTerm-epo-hasNationalProcedureRules, - core-shape:epo-ProcedureTerm-epo-isAwardedByCPB, - core-shape:epo-ProcedureTerm-epo-isOneLotOnlyAllowed, - core-shape:epo-ProcedureTerm-epo-isSubmissionForAllLotsAllowed ; - sh:targetClass :ProcedureTerm . - -core-shape:epo-ProcessPlanningTerm a sh:NodeShape ; - rdfs:label "Process planning term" ; - rdfs:comment "Conditions and stipulations defining particularities of the unfolding of the Procurement Process." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcessPlanningTerm-epo-hasAwardDateScheduled, - core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedContractNoticePublicationDate, - core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedTenderInvitationDate ; - sh:targetClass :ProcessPlanningTerm . - -core-shape:epo-ProcurementCriteriaSummary a sh:NodeShape ; - rdfs:label "Procurement criteria summary" ; - rdfs:comment "WG approval 24/01/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementCriteriaSummary-epo-indicatesPerformingStaffInformationRequirement ; - sh:targetClass :ProcurementCriteriaSummary . - -core-shape:epo-ProcurementCriterion a sh:NodeShape ; - rdfs:label "Procurement criterion" ; - rdfs:comment """A criterion specific to Procurement. - -Additional Information: - -This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). - -WG Approval 23/04/2020""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementCriterion-epo-hasConstraint, - core-shape:epo-ProcurementCriterion-epo-hasFormula, - core-shape:epo-ProcurementCriterion-epo-hasPerformingStaffQualificationInformation, - core-shape:epo-ProcurementCriterion-epo-hasWeightValueType ; - sh:targetClass :ProcurementCriterion . - -core-shape:epo-ProcurementDocument a sh:NodeShape ; - rdfs:label "Procurement document" ; - rdfs:comment """Document produced or referred to by the Buyer to describe or determine elements of the Procurement. - -Additional information: - -Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. - -Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. - -Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. - -WG Approval 23/05/2019 17:08:30""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ProcurementDocument . - -core-shape:epo-ProcurementElement a sh:NodeShape ; - rdfs:label "Procurement element" ; - rdfs:comment """Gathering class for critical/central elements in the Procurement Process. - -TODO: add definition -Additional information: -Alias: ProcurementComponent""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementElement-adms-identifier, - core-shape:epo-ProcurementElement-dct-description, - core-shape:epo-ProcurementElement-dct-title, - core-shape:epo-ProcurementElement-epo-hasEstimatedValue, - core-shape:epo-ProcurementElement-epo-hasInternalIdentifier, - core-shape:epo-ProcurementElement-epo-usesChannel ; - sh:targetClass :ProcurementElement . - -core-shape:epo-ProcurementObject a sh:NodeShape ; - rdfs:label "Procurement object" ; - rdfs:comment """The whole or a division of goods, services or works to be procured. - -Additional Information: -Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. -In a sense, such an "object" can constitute the "object of a Contract". -To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.). - -Note: -Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and "purpose" properties. """ ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementObject-epo-foreseesConcession, - core-shape:epo-ProcurementObject-epo-foreseesContractSpecificTerm, - core-shape:epo-ProcurementObject-epo-fulfillsStrategicProcurement, - core-shape:epo-ProcurementObject-epo-hasAdditionalInformation, - core-shape:epo-ProcurementObject-epo-hasLegalBasis, - core-shape:epo-ProcurementObject-epo-hasLegalBasisDescription, - core-shape:epo-ProcurementObject-epo-hasLegalRegime, - core-shape:epo-ProcurementObject-epo-hasPurpose, - core-shape:epo-ProcurementObject-epo-hasRecurrenceDescription, - core-shape:epo-ProcurementObject-epo-isCoveredByGPA, - core-shape:epo-ProcurementObject-epo-isFundedBy, - core-shape:epo-ProcurementObject-epo-isRecurrent, - core-shape:epo-ProcurementObject-epo-isSMESuitable, - core-shape:epo-ProcurementObject-epo-isSubjectToTerm, - core-shape:epo-ProcurementObject-epo-isUsingEUFunds, - core-shape:epo-ProcurementObject-epo-usesTechnique ; - sh:targetClass :ProcurementObject . - -core-shape:epo-ProcurementProcedureInformationProvider a sh:NodeShape ; - rdfs:label "Procurement procedure information provider" ; - rdfs:comment "A Role of an Agent responsible for providing additional information about the Procurement Procedure." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ProcurementProcedureInformationProvider . - -core-shape:epo-ProcurementProcessInformation a sh:NodeShape ; - rdfs:label "Procurement process information" ; - rdfs:comment "Information about the temporal unfolding or succession of Procurement Objects." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementProcessInformation-epo-concernsLot, - core-shape:epo-ProcurementProcessInformation-epo-concernsProcedure, - core-shape:epo-ProcurementProcessInformation-epo-isCompetitionTerminated, - core-shape:epo-ProcurementProcessInformation-epo-isDPSTerminated, - core-shape:epo-ProcurementProcessInformation-epo-isToBeRelaunched ; - sh:targetClass :ProcurementProcessInformation . - -core-shape:epo-ProcurementServiceProvider a sh:NodeShape ; - rdfs:label "Procurement service provider" ; - rdfs:comment """Role of a public or private body which offers ancillary purchasing activities on the market. - -Additional information - -"Ancillary Purchasing Activities" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: -(a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; -(b) advice on the conduct or design of public Procurement Procedures; -(c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; - -Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. - -This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. - -WG Approval 24/03/2020 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementServiceProvider-epo-actsOnBehalfOf ; - sh:targetClass :ProcurementServiceProvider . - -core-shape:epo-ProfessionalSuitabilitySummary a sh:NodeShape ; - rdfs:label "Professional suitability summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfession, - core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfessionRelevantLaw, - core-shape:epo-ProfessionalSuitabilitySummary-epo-hasServiceReservedToParticularProfession ; - sh:targetClass :ProfessionalSuitabilitySummary . - -core-shape:epo-Project a sh:NodeShape ; - rdfs:label "Project" ; - rdfs:comment "A collaborative enterprise that is carefully planned to achieve a particular aim." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Project-adms-identifier ; - sh:targetClass :Project . - -core-shape:epo-PublicationProvision a sh:NodeShape ; - rdfs:label "Publication provision" ; - rdfs:comment """Information about fields not intended for publication. - - -Additional Information: -The non-published information may become available at a later date and may differ from one element to another within a given Document. - -Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. - -WG Approval 16/05/2019 - - - - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-PublicationProvision-epo-hasElementConfidentiality, - core-shape:epo-PublicationProvision-epo-hasPreferredPublicationDate ; - sh:targetClass :PublicationProvision . - -core-shape:epo-PurchaseContract a sh:NodeShape ; - rdfs:label "Purchase contract" ; - rdfs:comment "A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-PurchaseContract-epo-resultsFromMiniCompetitionAwardDecision ; - sh:targetClass :PurchaseContract . - -core-shape:epo-Purpose a sh:NodeShape ; - rdfs:label "Purpose" ; - rdfs:comment """The description of the objectives related to a Procurement. - -Additional information: - -The description of the objectives includes the Subject Matter and Quantities. - - -The quantification of the objectives related to a procurement. - -To be re-reviewed by the WG the soonest. - -(WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) - -The old definition read as follows: - -The description of the objectives related to a procurement. - -(WG approval 05/12/2018) -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Purpose-epo-hasAdditionalClassification, - core-shape:epo-Purpose-epo-hasMainClassification, - core-shape:epo-Purpose-epo-hasTotalQuantity ; - sh:targetClass :Purpose . - -core-shape:epo-QualificationCriteriaSummary a sh:NodeShape ; - rdfs:label "Qualification criteria summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-QualificationCriteriaSummary-epo-hasConditionVerificationMethod, - core-shape:epo-QualificationCriteriaSummary-epo-hasQualificationCondition ; - sh:targetClass :QualificationCriteriaSummary . - -core-shape:epo-QualificationCriterion a sh:NodeShape ; - rdfs:label "Qualification criterion" ; - rdfs:comment """Criterion used in the first stage of procurement. - -WG approval 30/05/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :QualificationCriterion . - -core-shape:epo-Quantity a sh:NodeShape ; - rdfs:label "Quantity" ; - rdfs:comment """A counted number of non-monetary units possibly including fractions. -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Quantity-epo-hasQuantityValue, - core-shape:epo-Quantity-epo-hasUnitCode, - core-shape:epo-Quantity-epo-hasUnitDescription ; - sh:targetClass :Quantity . - -core-shape:epo-RequestForClarification a sh:NodeShape ; - rdfs:label "Request for clarification" ; - rdfs:comment """A demand for elucidation of received information. -Additional Information: -Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. -WG approval 20/04/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :RequestForClarification . - -core-shape:epo-RequestForParticipation a sh:NodeShape ; - rdfs:label "Request for participation" ; - rdfs:comment """Application of an Economic Operator to be included in a Procurement Procedure. -WG approval: 20/04/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :RequestForParticipation . - -core-shape:epo-ReviewDecision a sh:NodeShape ; - rdfs:label "Review decision" ; - rdfs:comment "Information about Review Decisions. " ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewDecision-epo-hasConfirmedIrregularityType, - core-shape:epo-ReviewDecision-epo-hasDecisionDate, - core-shape:epo-ReviewDecision-epo-hasRemedyValue, - core-shape:epo-ReviewDecision-epo-hasReviewDecisionType, - core-shape:epo-ReviewDecision-epo-providesRulingOnRemedy, - core-shape:epo-ReviewDecision-epo-resolvesReviewRequest ; - sh:targetClass :ReviewDecision . - -core-shape:epo-ReviewIrregularitySummary a sh:NodeShape ; - rdfs:label "Review irregularity summary" ; - rdfs:comment """Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). - -Additional information: -This class corresponds in eForms to BG-613 Buyer Review Requests. - - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewIrregularitySummary-epo-hasIrregularityType, - core-shape:epo-ReviewIrregularitySummary-epo-hasReviewIrregularityCount ; - sh:targetClass :ReviewIrregularitySummary . - -core-shape:epo-ReviewObject a sh:NodeShape ; - rdfs:label "Review object" ; - rdfs:comment """Information about a Review Request or a Review Decision. - -Additional information: -This class corresponds to the BG-714 Review in eForms. - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewObject-epo-hasElementReference, - core-shape:epo-ReviewObject-epo-hasReviewURL, - core-shape:epo-ReviewObject-epo-refersToPreviousReview ; - sh:targetClass :ReviewObject . - -core-shape:epo-ReviewProcedureInformationProvider a sh:NodeShape ; - rdfs:label "Review procedure information provider" ; - rdfs:comment "A Role of an Agent who is providing more information on the time limits for review Procedures." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ReviewProcedureInformationProvider . - -core-shape:epo-ReviewRequest a sh:NodeShape ; - rdfs:label "Review request" ; - rdfs:comment "Information about requests to review procedures. " ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewRequest-epo-hasAllegedIrregularityType, - core-shape:epo-ReviewRequest-epo-hasNumberOfReviewRequests, - core-shape:epo-ReviewRequest-epo-hasRequestDate, - core-shape:epo-ReviewRequest-epo-hasReviewRequestFee, - core-shape:epo-ReviewRequest-epo-hasWithdrawalDate, - core-shape:epo-ReviewRequest-epo-hasWithdrawalReason, - core-shape:epo-ReviewRequest-epo-isWithdrawn, - core-shape:epo-ReviewRequest-epo-requestsRemedyType ; - sh:targetClass :ReviewRequest . - -core-shape:epo-ReviewRequestSummary a sh:NodeShape ; - rdfs:label "Review request summary" ; - rdfs:comment """Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. - -Additional information: -This class corresponds in eForms to BG-612 Buyer Review Summary.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewRequestSummary-epo-concernsReviewSummaryForLot, - core-shape:epo-ReviewRequestSummary-epo-hasReviewIrregularitySummary, - core-shape:epo-ReviewRequestSummary-epo-hasTotalNumberOfComplainants ; - sh:targetClass :ReviewRequestSummary . - -core-shape:epo-ReviewRequester a sh:NodeShape ; - rdfs:label "Review requester" ; - rdfs:comment """Role of an Agent who requests the review of a (Procurement) Procedure. - -WG Approval 23/10/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ReviewRequester . - -core-shape:epo-Reviewer a sh:NodeShape ; - rdfs:label "Reviewer" ; - rdfs:comment """Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. -Additional Information: -Any Organisation or Person may request a review of a Procurement Procedure. -WG approval: 20/04/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Reviewer-epo-hasReviewBodyType ; - sh:targetClass :Reviewer . - -core-shape:epo-SecurityClearanceTerm a sh:NodeShape ; - rdfs:label "Security clearance term" ; - rdfs:comment """Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. - -Additional information: -This corresponds in eForms to BT-578, BT-78, BT-732 . - -WG approval 20/06/2023 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SecurityClearanceTerm-dct-description, - core-shape:epo-SecurityClearanceTerm-epo-hasDeadline, - core-shape:epo-SecurityClearanceTerm-epo-isSecurityClearanceRequired ; - sh:targetClass :SecurityClearanceTerm . - -core-shape:epo-SelectedCandidateList a sh:NodeShape ; - rdfs:label "Selected candidate list" ; - rdfs:comment """Record of Candidates admitted to take part in award phases of procurements. - -WG approval 30/05/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SelectedCandidateList-epo-containsCandidate, - core-shape:epo-SelectedCandidateList-epo-hasStartDate ; - sh:targetClass :SelectedCandidateList . - -core-shape:epo-SelectionCriteriaSummary a sh:NodeShape ; - rdfs:label "Selection criteria summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SelectionCriteriaSummary-epo-describesMinimumLevelOfStandards, - core-shape:epo-SelectionCriteriaSummary-epo-hasSelectionCriteriaStatedInProcurementDocuments ; - sh:targetClass :SelectionCriteriaSummary . - -core-shape:epo-SelectionCriterion a sh:NodeShape ; - rdfs:label "Selection criterion" ; - rdfs:comment """Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. - -Additional Information: -Selection criteria may relate to: -(a) suitability to pursue the professional activity; -(b) economic and financial standing; -(c) technical and professional ability - -WG approval 31/10/2018""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SelectionCriterion-epo-hasSelectionCriteriaUsage, - core-shape:epo-SelectionCriterion-epo-hasSelectionCriterionType, - core-shape:epo-SelectionCriterion-epo-isUsedForCandidateRestriction ; - sh:targetClass :SelectionCriterion . - -core-shape:epo-SelectionEvaluationTerm a sh:NodeShape ; - rdfs:label "Selection evaluation term" ; - rdfs:comment "Conditions and stipulations defining particularities of the evaluation of Selection Criteria." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :SelectionEvaluationTerm . - -core-shape:epo-SocialProcurement a sh:NodeShape ; - rdfs:label "Social procurement" ; - rdfs:comment """An instance of the class SocialProcurement is represented in eForms with the code "soc-obj" defined in the codelist Strategic-Procurement. - - -Research (21/01/2020): -Socially Responsible Public Procurement (SRPP): - -‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. -Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en -See Article 18 and Annex X Directive 2014/24.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SocialProcurement-epo-fulfillsRequirement ; - sh:targetClass :SocialProcurement . - -core-shape:epo-SpecificDuration a sh:NodeShape ; - rdfs:label "Specific duration" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SpecificDuration-time-numericDuration, - core-shape:epo-SpecificDuration-time-unitType ; - sh:targetClass :SpecificDuration . - -core-shape:epo-StatisticalInformation a sh:NodeShape ; - rdfs:label "Statistical information" ; - rdfs:comment """Statistical data on the Procedure and the Lot. - -Additional Information - -At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. -Therefore this class is temporal and should cease to exist in fully electronic Procurement. -The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). - -Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. - -WG Approval 12/12/2019 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :StatisticalInformation . - -core-shape:epo-StrategicProcurement a sh:NodeShape ; - rdfs:label "Strategic procurement" ; - rdfs:comment """Public Procurement that contributes to achieving pressing policy goals. - -Additional Information: -Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. - -This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. - -Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on "background information". - -WG Approval 10/03/2020""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-StrategicProcurement-epo-hasNonAccessibilityCriterionJustification, - core-shape:epo-StrategicProcurement-epo-hasStrategicProcurementDescription, - core-shape:epo-StrategicProcurement-epo-includesAccessibilityCriterion ; - sh:targetClass :StrategicProcurement . - -core-shape:epo-SubcontractTerm a sh:NodeShape ; - rdfs:label "Subcontract term" ; - rdfs:comment "A concept to describe the main information regarding the share of parts of the Contract to third parties." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SubcontractTerm-dct-description, - core-shape:epo-SubcontractTerm-epo-hasMaximumShare, - core-shape:epo-SubcontractTerm-epo-hasMinimumShare, - core-shape:epo-SubcontractTerm-epo-hasMinimumSubcontractorsProposedObligation, - core-shape:epo-SubcontractTerm-epo-hasSubcontractingInvolved, - core-shape:epo-SubcontractTerm-epo-hasSubcontractingObligation, - core-shape:epo-SubcontractTerm-epo-hasSubcontractorsProposedAboveObligation ; - sh:targetClass :SubcontractTerm . - -core-shape:epo-SubcontractingEstimate a sh:NodeShape ; - rdfs:label "Subcontracting estimate" ; - rdfs:comment "Information on the approximation of the foreseen Subcontracting." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SubcontractingEstimate-dct-description, - core-shape:epo-SubcontractingEstimate-epo-hasEstimatedPercentage, - core-shape:epo-SubcontractingEstimate-epo-hasSubcontractingEstimatedValue, - core-shape:epo-SubcontractingEstimate-epo-hasSubjectMatter ; - sh:targetClass :SubcontractingEstimate . - -core-shape:epo-Subcontractor a sh:NodeShape ; - rdfs:label "Subcontractor" ; - rdfs:comment """A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. -Additional information -For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. - -At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. - -When modelling ESPD we well analyze whether we need or not a Role named "relied upon". - -WG approval 05/08/2021 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Subcontractor . - -core-shape:epo-SubmissionStatisticalInformation a sh:NodeShape ; - rdfs:label "Submission statistical information" ; - rdfs:comment """Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. - -WG approval 30/05/2023""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SubmissionStatisticalInformation-epo-hasAbnormallyLowTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasEEAReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasEUReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasElectronicTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasEstimatedTotalSubcontracts, - core-shape:epo-SubmissionStatisticalInformation-epo-hasHighestReceivedTenderValue, - core-shape:epo-SubmissionStatisticalInformation-epo-hasInadmissibleTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasLowestReceivedTenderValue, - core-shape:epo-SubmissionStatisticalInformation-epo-hasMediumTenderPerLots, - core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEEAReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEUReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasNumberOfTenderersInvited, - core-shape:epo-SubmissionStatisticalInformation-epo-hasOtherCountriesReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedMicroTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedParticipationRequests, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSmallTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSubmissionType, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasSMEReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasUnverifiedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-summarisesInformationForAwardDecision ; - sh:targetClass :SubmissionStatisticalInformation . - -core-shape:epo-SubmissionTerm a sh:NodeShape ; - rdfs:label "Submission term" ; - rdfs:comment """Conditions and stipulations defining particularities of submitting Documents to the Buyer. - -Additional Information: -These Documents can be Tenders, Request To Participate and expressions of interest. - -WG Approval 14/07/2020""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SubmissionTerm-epo-definesTenderProcessor, - core-shape:epo-SubmissionTerm-epo-definesTenderReceiver, - core-shape:epo-SubmissionTerm-epo-hasEAuctionURL, - core-shape:epo-SubmissionTerm-epo-hasECataloguePermission, - core-shape:epo-SubmissionTerm-epo-hasESubmissionPermission, - core-shape:epo-SubmissionTerm-epo-hasGuaranteeDescription, - core-shape:epo-SubmissionTerm-epo-hasLanguage, - core-shape:epo-SubmissionTerm-epo-hasLateSubmissionInformationDescription, - core-shape:epo-SubmissionTerm-epo-hasLateSubmissionPermission, - core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionDescription, - core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionJustification, - core-shape:epo-SubmissionTerm-epo-hasReceiptDeadline, - core-shape:epo-SubmissionTerm-epo-hasReceiptExpressionDeadline, - core-shape:epo-SubmissionTerm-epo-hasReceiptParticipationRequestDeadline, - core-shape:epo-SubmissionTerm-epo-hasReceiptPreliminaryMarketConsultationDeadline, - core-shape:epo-SubmissionTerm-epo-hasReceiptTenderDeadline, - core-shape:epo-SubmissionTerm-epo-hasSubmissionURL, - core-shape:epo-SubmissionTerm-epo-hasTenderSubcontractingInformation, - core-shape:epo-SubmissionTerm-epo-hasTenderValidityPeriod, - core-shape:epo-SubmissionTerm-epo-hasVariantPermission, - core-shape:epo-SubmissionTerm-epo-isAdvancedElectronicSignatureRequired, - core-shape:epo-SubmissionTerm-epo-isGuaranteeRequired, - core-shape:epo-SubmissionTerm-epo-isMultipleTenderSubmissionAllowed ; - sh:targetClass :SubmissionTerm . - -core-shape:epo-System a sh:NodeShape ; - rdfs:label "System" ; - rdfs:comment """Software application used for performing Procurement activities. - -WG Approval 28/04/2020 - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-System-dct-description, - core-shape:epo-System-epo-isOwnedByAgent ; - sh:targetClass :System . - -core-shape:epo-TaxInformationProvider a sh:NodeShape ; - rdfs:label "Tax information provider" ; - rdfs:comment "A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :TaxInformationProvider . - -core-shape:epo-TechnicalAbilitySummary a sh:NodeShape ; - rdfs:label "Technical ability summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :TechnicalAbilitySummary . - -core-shape:epo-Technique a sh:NodeShape ; - rdfs:label "Technique" ; - rdfs:comment """Method used for conducting Procurement Procedures. - -Addtional information: -This corresponds in eForms to BG-706 Techniques. - -Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). - -WG Approval 19/09/2019 -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Technique-dct-description, - core-shape:epo-Technique-epo-hasUsage, - core-shape:epo-Technique-epo-hasValidityPeriod ; - sh:targetClass :Technique . - -core-shape:epo-Tender a sh:NodeShape ; - rdfs:label "Tender" ; - rdfs:comment """Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. - -(WG approval 03/05/2022) - - -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Tender-epo-foreseesConcession, - core-shape:epo-Tender-epo-foreseesSubcontracting, - core-shape:epo-Tender-epo-hasElectronicSubmission, - core-shape:epo-Tender-epo-hasFinancialOfferValue, - core-shape:epo-Tender-epo-hasItemCountryOfOrigin, - core-shape:epo-Tender-epo-isSubjectToGrouping, - core-shape:epo-Tender-epo-isSubmitedBy, - core-shape:epo-Tender-epo-isSubmittedForLot, - core-shape:epo-Tender-epo-isVariant, - core-shape:epo-Tender-epo-specifiesSubcontractors ; - sh:targetClass :Tender . - -core-shape:epo-TenderAwardOutcome a sh:NodeShape ; - rdfs:label "Tender award outcome" ; - rdfs:comment "Result concerning the Tender attributed by the Awarder." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-TenderAwardOutcome-epo-concernsTender, - core-shape:epo-TenderAwardOutcome-epo-hasAwardRank, - core-shape:epo-TenderAwardOutcome-epo-indicatesAwardToWinner ; - sh:targetClass :TenderAwardOutcome . - -core-shape:epo-TenderGroup a sh:NodeShape ; - rdfs:label "Tender group" ; - rdfs:comment """Specific Offer in response to a Lot Group. - -Additional Information: -This class is generally used to provide the Monetary Value in response to a Lot Group. -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-TenderGroup-epo-comprisesTender, - core-shape:epo-TenderGroup-epo-hasTotalValue, - core-shape:epo-TenderGroup-epo-isSubmittedForLotGroup ; - sh:targetClass :TenderGroup . - -core-shape:epo-TenderProcessor a sh:NodeShape ; - rdfs:label "Tender processor" ; - rdfs:comment "A Role of an Agent responsible for processing Tenders." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :TenderProcessor . - -core-shape:epo-TenderReceiver a sh:NodeShape ; - rdfs:label "Tender receiver" ; - rdfs:comment "A Role of an Agent responsible for receiving Tenders." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :TenderReceiver . - -core-shape:epo-Tenderer a sh:NodeShape ; - rdfs:label "Tenderer" ; - rdfs:comment """A Role of an Agent that has submitted a Tender. - -Additional Information: -A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. -WG approval 05/08/2021""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Tenderer-epo-substantiatesExclusionGround ; - sh:targetClass :Tenderer . - -core-shape:epo-Term a sh:NodeShape ; - rdfs:label "Term" ; - rdfs:comment "A governing condition or stipulation." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Term . - -core-shape:epo-Winner a sh:NodeShape ; - rdfs:label "Winner" ; - rdfs:comment """A Role of an Agent to whom a Lot is awarded. -WG approval 05/08/2021 (revised 26/10/2021)""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Winner-epo-needsToBeATenderer ; - sh:targetClass :Winner . - -core-shape:foaf-Agent a sh:NodeShape ; - rdfs:label "Agent" ; - rdfs:comment """A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. - -WG Approval 28/04/2020""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:foaf-Agent-adms-identifier, - core-shape:foaf-Agent-dct-title, - core-shape:foaf-Agent-epo-hasAlias, - core-shape:foaf-Agent-epo-ownsSystem ; - sh:targetClass foaf:Agent . - -core-shape:foaf-Person a sh:NodeShape ; - rdfs:label "Person" ; - rdfs:comment "The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass foaf:Person . - -core-shape:locn-Address a sh:NodeShape ; - rdfs:label "Address" ; - rdfs:comment """The particulars of the place where a Person or an Organisation is located. - -WG Approval 28/04/2020 - -Additional Information: -An "Address Representation" as conceptually defined by the INSPIRE Address Representation data type: "Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.". - - -The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. - - -This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - -- full address (the complete address as a formatted string) -- addressID (a unique identifier for the address) -The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. - -The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:locn-Address-epo-hasCountryCode, - core-shape:locn-Address-epo-hasNutsCode, - core-shape:locn-Address-locn-addressArea, - core-shape:locn-Address-locn-addressID, - core-shape:locn-Address-locn-adminUnitL1, - core-shape:locn-Address-locn-adminUnitL2, - core-shape:locn-Address-locn-fullAddress, - core-shape:locn-Address-locn-locatorDesignator, - core-shape:locn-Address-locn-locatorName, - core-shape:locn-Address-locn-postCode, - core-shape:locn-Address-locn-postName, - core-shape:locn-Address-locn-thoroughfare ; - sh:targetClass locn:Address . - -core-shape:locn-Geometry a sh:NodeShape ; - rdfs:label "Geometry" ; - rdfs:comment """The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. - -Additional Information: -This class defines the notion of "Geometry" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:locn-Geometry-cv-coordinates, - core-shape:locn-Geometry-cv-latitude, - core-shape:locn-Geometry-cv-longitude ; - sh:targetClass locn:Geometry . - -core-shape:org-Organization a sh:NodeShape ; - rdfs:label "Organization" ; - rdfs:comment """A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. - -(WG approval 23/11/2018). -""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:org-Organization-cv-address, - core-shape:org-Organization-cv-registeredAddress, - core-shape:org-Organization-epo-hasBuyerLegalType, - core-shape:org-Organization-epo-hasBuyerLegalTypeDescription, - core-shape:org-Organization-epo-hasInternetAddress, - core-shape:org-Organization-epo-hasLegalFormType, - core-shape:org-Organization-epo-hasLegalIdentifier, - core-shape:org-Organization-epo-hasLegalName, - core-shape:org-Organization-epo-hasMainActivity, - core-shape:org-Organization-epo-hasMainActivityDescription, - core-shape:org-Organization-epo-hasOrganisationUnitName, - core-shape:org-Organization-epo-hasPrimaryContactPoint, - core-shape:org-Organization-epo-hasRegistrationCountry, - core-shape:org-Organization-epo-hasTaxIdentifier ; - sh:targetClass org:Organization . - -core-shape:owl-Thing a sh:NodeShape ; - rdfs:label "Thing" ; - rdfs:comment """Any individual in the domain of discourse is a Thing. - - -Additional Information: - -The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing.""" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:owl-Thing-epo-containsModificationsOf ; - sh:targetClass owl:Thing . - -core-shape:adms-Identifier-adms-schemaAgency a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The name of the agency that issued the identifier." ; - sh:name "Schema agency" ; - sh:path adms:schemaAgency . - -core-shape:adms-Identifier-epo-hasScheme a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The name of the identification scheme." ; - sh:name "Has scheme" ; - sh:path :hasScheme . - -core-shape:adms-Identifier-epo-hasSchemeVersion a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The version of the identification scheme." ; - sh:name "Has scheme version" ; - sh:path :hasSchemeVersion . - -core-shape:adms-Identifier-skos-notation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The literal identifying an entity, like a person or an object." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Notation" ; - sh:path skos:notation . - -core-shape:cccev-Constraint-cccev-constrains a sh:PropertyShape ; - sh:class cccev:InformationConcept ; - sh:description """Information Concept about which a Constraint expresses a limitation. - -Additional Information: -Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation.""" ; - sh:name "Constrains" ; - sh:path cccev:constrains ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cccev-Constraint-epo-hasThresholdType a sh:PropertyShape ; - sh:class at-voc:number-threshold ; - sh:description """The method to interpret the threshold value as minimum or a maximum. - -WG Approval 17/09/2019 -""" ; - sh:name "Has threshold type" ; - sh:path :hasThresholdType . - -core-shape:cccev-Constraint-epo-hasThresholdValue a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """The cut-off level for a given concept. - -Additional Information: -This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold).""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has threshold value" ; - sh:path :hasThresholdValue . - -core-shape:cccev-Criterion-cccev-bias a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """Parameter used to adjust the evaluation of the Criterion. - -Additional Information: -The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the "presence of local preferences distorting international specialisation and resource allocation". When quantified, this systematic error can be removed.""" ; - sh:maxCount 1 ; - sh:name "Bias" ; - sh:path cccev:bias . - -core-shape:cccev-Criterion-cccev-weight a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """Relative importance of the Criterion. - -Additional Information: -The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1.""" ; - sh:maxCount 1 ; - sh:name "Weight" ; - sh:path cccev:weight . - -core-shape:cccev-Criterion-cccev-weightingConsiderationDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Explanation of how the weighting of a Criterion is to be used. - -Additional Information: -This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process.""" ; - sh:maxCount 1 ; - sh:name "Weighting consideration description" ; - sh:path cccev:weightingConsiderationDescription . - -core-shape:cccev-Criterion-dct-type a sh:PropertyShape ; - sh:class at-voc:criterion ; - sh:description "Category to which the Requirement belongs." ; - sh:maxCount 1 ; - sh:name "Type" ; - sh:path dcterms:type . - -core-shape:cccev-Evidence-cccev-confidentialityLevelType a sh:PropertyShape ; - sh:class at-voc:confidentiality-level ; - sh:description """Security classification assigned to an Evidence e.g. classified, sensitive, public. - -Additional Information: - -Classifications should be defined by an organisation/country as an outcome of a security assessment. -""" ; - sh:maxCount 1 ; - sh:name "Confidentiality level type" ; - sh:path cccev:confidentialityLevelType . - -core-shape:cccev-Evidence-cccev-supportsConcept a sh:PropertyShape ; - sh:class cccev:InformationConcept ; - sh:description """Information Concept providing facts found/inferred from the Evidence. - -Additional Information: -Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as "I am older that 18 years" or "this is a FairTrade product".""" ; - sh:name "Supports concept" ; - sh:path cccev:supportsConcept ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cccev-Evidence-cccev-supportsRequirement a sh:PropertyShape ; - sh:class cccev:Requirement ; - sh:description "Requirement for which the Evidence provides proof." ; - sh:name "Supports requirement" ; - sh:path cccev:supportsRequirement ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cccev-InformationConcept-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cccev-InformationConcept-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:cccev-InformationConcept-skos-prefLabel a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The preferred lexical label for a resource, in a given language. - -WG approval 30/05/2023 - -""" ; - sh:name "Pref label" ; - sh:path skos:prefLabel . - -core-shape:cccev-Requirement-cccev-hasRequirement a sh:PropertyShape ; - sh:class cccev:Requirement ; - sh:description "A more specific Requirement that is part of the Requirement." ; - sh:name "Has requirement" ; - sh:path cccev:hasRequirement ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cccev-Requirement-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:maxCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:cccev-Requirement-skos-prefLabel a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The preferred lexical label for a resource, in a given language. - -WG approval 30/05/2023""" ; - sh:maxCount 1 ; - sh:name "Pref label" ; - sh:path skos:prefLabel . - -core-shape:cpov-ContactPoint-cpov-email a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The email of the Organisation. - -""" ; - sh:maxCount 1 ; - sh:name "Email" ; - sh:path cccev:email . - -core-shape:cpov-ContactPoint-cpov-telephone a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A telephone number through which the Contact Point can be contacted. -""" ; - sh:name "Telephone" ; - sh:path cccev:telephone . - -core-shape:cpov-ContactPoint-cv-address a sh:PropertyShape ; - sh:class locn:Address ; - sh:maxCount 1 ; - sh:name "Address" ; - sh:path cccev:address ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cpov-ContactPoint-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:cpov-ContactPoint-epo-hasContactName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A short text by which a contact is known or referred to. - -WG Approval: 27/01/2022""" ; - sh:maxCount 1 ; - sh:name "Has contact name" ; - sh:path :hasContactName . - -core-shape:cpov-ContactPoint-epo-hasFax a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The fax number used to reach a person or an organisation." ; - sh:name "Has fax" ; - sh:path :hasFax . - -core-shape:cpov-ContactPoint-epo-hasInternetAddress a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """The main web page used by the instance of the concept. - -WG Approval 01/06/2023 - -""" ; - sh:maxCount 1 ; - sh:name "Has internet address" ; - sh:path :hasInternetAddress . - -core-shape:cpv-Person-cv-birthDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The point in time on which the Person was born." ; - sh:maxCount 1 ; - sh:name "Birth date" ; - sh:path cccev:birthDate . - -core-shape:cpv-Person-cv-registeredAddress a sh:PropertyShape ; - sh:class locn:Address ; - sh:description """The registered address relationship links a Resource with the legally registered Address. - -Additional Information: -It is the address to which formal communications can be sent, such as the postal address.""" ; - sh:maxCount 1 ; - sh:name "Registered address" ; - sh:path cccev:registeredAddress ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cpv-Person-dct-alternative a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """Any name by which an individual is known other than their full name. -WG 09/11/2021""" ; - sh:name "Alternative" ; - sh:path dcterms:alternative . - -core-shape:cpv-Person-epo-hasCountryOfBirth a sh:PropertyShape ; - sh:class at-voc:country ; - sh:description """The country in which the Person was born. -""" ; - sh:maxCount 1 ; - sh:name "Has country of birth" ; - sh:path :hasCountryOfBirth . - -core-shape:cpv-Person-epo-hasNationality a sh:PropertyShape ; - sh:class at-voc:country ; - sh:description """ -""" ; - sh:name "Has nationality" ; - sh:path :hasNationality . - -core-shape:cpv-Person-epo-isBeneficialOwnerOf a sh:PropertyShape ; - sh:class :Business ; - sh:description """A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. -Additional Information: -This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. -WG approval 14/09/2021""" ; - sh:name "Is beneficial owner of" ; - sh:path :isBeneficialOwnerOf ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cpv-Person-foaf-familyName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """The hereditary surname of a family. -""" ; - sh:name "Family name" ; - sh:path foaf:familyName . - -core-shape:cpv-Person-foaf-givenName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """The name(s) that identify the Person within a family with a common surname. -""" ; - sh:name "Given name" ; - sh:path foaf:givenName . - -core-shape:cpv-Person-foaf-name a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The complete name of the Person as one string." ; - sh:name "Name" ; - sh:path foaf:name . - -core-shape:cpv-Person-person-birthName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """Family name of the Person given upon their birth. -WG Approval 09/11/2021""" ; - sh:name "Birth name" ; - sh:path person:birthName . - -core-shape:cpv-Person-person-patronymicName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """Name based on the given name of the Person's father. -WG Approval 09/11/2021""" ; - sh:name "Patronymic name" ; - sh:path person:patronymicName . - -core-shape:cpv-Person-person-placeOfBirth a sh:PropertyShape ; - sh:class dcterms:Location ; - sh:description "The Location where the Person was born." ; - sh:maxCount 1 ; - sh:name "Place of birth" ; - sh:path person:placeOfBirth ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cpv-Person-person-placeOfDeath a sh:PropertyShape ; - sh:class dcterms:Location ; - sh:description "The Location where the Person died." ; - sh:maxCount 1 ; - sh:name "Place of death" ; - sh:path person:placeOfDeath ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:cv-Channel-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:maxCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:cv-Channel-epo-hasAddressURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:maxCount 1 ; - sh:name "Has address u r l" ; - sh:path :hasAddressURL . - -core-shape:cv-Channel-epo-hasEndpointIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:name "Has endpoint identifier" ; - sh:path :hasEndpointIdentifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:dct-Location-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:dct-Location-epo-hasCountryCode a sh:PropertyShape ; - sh:class at-voc:country ; - sh:maxCount 1 ; - sh:name "Has country code" ; - sh:path :hasCountryCode . - -core-shape:dct-Location-epo-hasNutsCode a sh:PropertyShape ; - sh:class at-voc:nuts ; - sh:maxCount 1 ; - sh:name "Has nuts code" ; - sh:path :hasNutsCode . - -core-shape:dct-Location-locn-address a sh:PropertyShape ; - sh:class locn:Address ; - sh:maxCount 1 ; - sh:name "Address" ; - sh:path locn:address ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:dct-Location-locn-geographicIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description """A URI that identifies the Location. - -Additional Information: -GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. - -Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. - -The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - -- http://dbpedia.org/resource/ISO_3166-1:GR -- http://dbpedia.org/resource/ISO_3166-1:GB -even when the geographic name is given as EL or UK. - -The use of a URIs has added advantages: - -- it can be used by automated systems to look up additional data (linked data); -- a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. -""" ; - sh:maxCount 1 ; - sh:name "Geographic identifier" ; - sh:path locn:geographicIdentifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:dct-Location-locn-geographicName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """A textual description for a Location. - -Additional Information: -The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. - -A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - -- "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) -- "Athína"@gr-Latn (the standard Romanisation of the endonym) -- "Athens"@en (the English language exonym) -INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. - -The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - -- use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; -- use 'EL' in preference to the ISO 3166 code GR for Greece. -Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code.""" ; - sh:maxCount 1 ; - sh:name "Geographic name" ; - sh:path locn:geographicName . - -core-shape:dct-Location-locn-geometry a sh:PropertyShape ; - sh:class locn:Geometry ; - sh:maxCount 1 ; - sh:name "Geometry" ; - sh:path locn:geometry ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AccessTerm-epo-definesCatalogueProvider a sh:PropertyShape ; - sh:class :CatalogueProvider ; - sh:description "Relation indicating an AccessTerm has a CatalogueProvider." ; - sh:name "Defines catalogue provider" ; - sh:path :definesCatalogueProvider ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AccessTerm-epo-definesCatalogueReceiver a sh:PropertyShape ; - sh:class :CatalogueReceiver ; - sh:description "Relation indicating an AccessTerm has a CatalogueReceiver." ; - sh:name "Defines catalogue receiver" ; - sh:path :definesCatalogueReceiver ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AccessTerm-epo-definesOfflineAccessProvider a sh:PropertyShape ; - sh:class :OfflineAccessProvider ; - sh:description "Relation indicating an AccessTerm has an OfflineAccessProvider." ; - sh:maxCount 1 ; - sh:name "Defines offline access provider" ; - sh:path :definesOfflineAccessProvider ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AccessTerm-epo-definesProcurementProcedureInformationProvider a sh:PropertyShape ; - sh:class :ProcurementProcedureInformationProvider ; - sh:description "Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider." ; - sh:maxCount 1 ; - sh:name "Defines procurement procedure information provider" ; - sh:path :definesProcurementProcedureInformationProvider ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AccessTerm-epo-hasAdditionalInformationDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description """The time limit for requesting further information. - -Additional information: - -This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. - -This corresponds in eForms to BT-13 Additional Information Deadline. - -WG Approval 09/06/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has additional information deadline" ; - sh:path :hasAdditionalInformationDeadline . - -core-shape:epo-AccessTerm-epo-hasDocumentRestrictionJustification a sh:PropertyShape ; - sh:class at-voc:communication-justification ; - sh:description """An explanation about the reasons why some procurement documents are restricted. - -Additional Information: -This corresponds in eForms to BT-707 Documents Restricted Justification. - -WG Approval 09/03/2021 -""" ; - sh:maxCount 1 ; - sh:name "Has document restriction justification" ; - sh:path :hasDocumentRestrictionJustification . - -core-shape:epo-AccessTerm-epo-hasPublicAccessURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """Web page where the procurement documents can be downloaded. - -Additional Information: -This corresponds in the eForms to BT-15 Documents URL. - -WG Approval 09/03/2021 -""" ; - sh:maxCount 1 ; - sh:name "Has public access u r l" ; - sh:path :hasPublicAccessURL . - -core-shape:epo-AccessTerm-epo-hasRestrictedAccessURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """The internet address with information on accessing the restricted (part of the) procurement document. - -Additional Information: -This corresponds in eForms to BT-615 Documents Restricted URL. -""" ; - sh:maxCount 1 ; - sh:name "Has restricted access u r l" ; - sh:path :hasRestrictedAccessURL . - -core-shape:epo-AccessTerm-epo-involvesProcurementDocument a sh:PropertyShape ; - sh:class :ProcurementDocument ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Involves procurement document" ; - sh:path :involvesProcurementDocument ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AccessTerm-epo-isProcurementDocumentRestricted a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """The access to certain procurement documents is restricted. - -Additional Information: -This corresponds in eForms to BT-14 Documents Restricted. - -WG Approval 10/10/2019""" ; - sh:maxCount 1 ; - sh:name "Is procurement document restricted" ; - sh:path :isProcurementDocumentRestricted . - -core-shape:epo-AccessTerm-epo-refersToPlannedPart a sh:PropertyShape ; - sh:class :PlannedProcurementPart ; - sh:name "Refers to planned part" ; - sh:path :refersToPlannedPart ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AgentInRole-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-AgentInRole-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A name given to the resource. - -WG approval 30/05/2023 -""" ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:epo-AgentInRole-epo-contextualisedBy a sh:PropertyShape ; - sh:class :ProcurementObject ; - sh:description "The place of the AgentInRole in the procurement is expressed by a ProcurementObject." ; - sh:name "Contextualised by" ; - sh:path :contextualisedBy ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AgentInRole-epo-exposesChannel a sh:PropertyShape ; - sh:class cccev:Channel ; - sh:name "Exposes channel" ; - sh:path :exposesChannel ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AgentInRole-epo-hasContactPointInRole a sh:PropertyShape ; - sh:class cccev:ContactPoint ; - sh:name "Has contact point in role" ; - sh:path :hasContactPointInRole ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AgentInRole-epo-playedBy a sh:PropertyShape ; - sh:class foaf:Agent ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Played by" ; - sh:path :playedBy ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AwardCriterion-epo-hasAwardCriteriaStatedInProcurementDocuments a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has award criteria stated in procurement documents" ; - sh:path :hasAwardCriteriaStatedInProcurementDocuments . - -core-shape:epo-AwardCriterion-epo-hasAwardCriterionType a sh:PropertyShape ; - sh:class at-voc:award-criterion-type ; - sh:description """Category of award criterion. - -""" ; - sh:maxCount 1 ; - sh:name "Has award criterion type" ; - sh:path :hasAwardCriterionType . - -core-shape:epo-AwardCriterion-epo-hasFixedValue a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed." ; - sh:maxCount 1 ; - sh:name "Has fixed value" ; - sh:path :hasFixedValue . - -core-shape:epo-AwardCriterion-epo-hasFixedValueType a sh:PropertyShape ; - sh:class at-voc:number-fixed ; - sh:description """The method to interpret the fixed value as pertaining to a total or unit. - -WG Approval 17/09/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has fixed value type" ; - sh:path :hasFixedValueType . - -core-shape:epo-AwardDecision-epo-comprisesLotAwardDecision a sh:PropertyShape ; - sh:class :LotAwardDecision ; - sh:description "Incorporates LotAwardOutcome." ; - sh:name "Comprises lot award decision" ; - sh:path :comprisesLotAwardDecision ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AwardDecision-epo-comprisesMiniCompetitionAwardDecision a sh:PropertyShape ; - sh:class :MiniCompetitionAwardDecision ; - sh:name "Comprises mini competition award decision" ; - sh:path :comprisesMiniCompetitionAwardDecision ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AwardDecision-epo-comprisesTenderAwardOutcome a sh:PropertyShape ; - sh:class :TenderAwardOutcome ; - sh:description "Incorporates TenderAwardOutcome." ; - sh:name "Comprises tender award outcome" ; - sh:path :comprisesTenderAwardOutcome ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AwardDecision-epo-hasAdditionalNonAwardJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Further justification for the non award . - -Additional information: -This is generally used when the non award reason code is set to "Other". - -WG: 18/01/2022""" ; - sh:maxCount 1 ; - sh:name "Has additional non award justification" ; - sh:path :hasAdditionalNonAwardJustification . - -core-shape:epo-AwardDecision-epo-hasAwardDecisionDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description """The official date of the award decision. - -Additional Information: -This corresponds in eForms to BT-1451 Winner Decision Date. - -WG Approval 09/01/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has award decision date" ; - sh:path :hasAwardDecisionDate . - -core-shape:epo-AwardDecision-epo-hasAwardStatus a sh:PropertyShape ; - sh:class at-voc:winner-selection-status ; - sh:description """Indicates whether the lot is awarded, not awarded or still open. -WG Approval 03/12/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has award status" ; - sh:path :hasAwardStatus . - -core-shape:epo-AwardDecision-epo-hasAwardedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The value of the procurement provided by the Award Decision. - -Additional Information: -Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. - -In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. - -WG Approval 10/12/2019""" ; - sh:maxCount 1 ; - sh:name "Has awarded value" ; - sh:path :hasAwardedValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AwardDecision-epo-hasBargainPrice a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. - -WG approval 23/05/2023""" ; - sh:maxCount 1 ; - sh:name "Has bargain price" ; - sh:path :hasBargainPrice ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-AwardDecision-epo-hasNonAwardJustification a sh:PropertyShape ; - sh:class at-voc:non-award-justification ; - sh:description """On hold; Enumeration. - - -""" ; - sh:maxCount 1 ; - sh:name "Has non award justification" ; - sh:path :hasNonAwardJustification . - -core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaEvaluationFormula a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. - -Additional Information: -This corresponds in eForms to BT-543 Award Criteria Complicated.""" ; - sh:name "Has award criteria evaluation formula" ; - sh:path :hasAwardCriteriaEvaluationFormula . - -core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaOrderJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The justification for only indicating the award criteria's order of importance, not their weighing. - -Additional Information: -This corresponds in eForms to BT-733 Award Criteria Order Justification.""" ; - sh:maxCount 1 ; - sh:name "Has award criteria order justification" ; - sh:path :hasAwardCriteriaOrderJustification . - -core-shape:epo-AwardEvaluationTerm-epo-hasOverallCostAwardCriteriaPonderation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """The weighting given to cost. - -Additional Information: -This weighting covers usually all cost criteria against price or quality criteria.""" ; - sh:maxCount 1 ; - sh:name "Has overall cost award criteria ponderation" ; - sh:path :hasOverallCostAwardCriteriaPonderation . - -core-shape:epo-AwardEvaluationTerm-epo-hasOverallPriceAwardCriteriaPonderation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """The weighting given to price. - -Additional Information: -This weighting covers usually all price criteria against cost or quality criteria.""" ; - sh:maxCount 1 ; - sh:name "Has overall price award criteria ponderation" ; - sh:path :hasOverallPriceAwardCriteriaPonderation . - -core-shape:epo-AwardEvaluationTerm-epo-hasOverallQualityAwardCriteriaPonderation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """The weighting given to quality. - -Additional Information: -This weighting covers usually all quality criteria against price or cost criteria.""" ; - sh:maxCount 1 ; - sh:name "Has overall quality award criteria ponderation" ; - sh:path :hasOverallQualityAwardCriteriaPonderation . - -core-shape:epo-Business-epo-hasBeneficialOwner a sh:PropertyShape ; - sh:class cccev:Person ; - sh:description """A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. -Additional Information: -This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. -WG approval 14/09/2021""" ; - sh:name "Has beneficial owner" ; - sh:path :hasBeneficialOwner ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Business-epo-hasBusinessSize a sh:PropertyShape ; - sh:class at-voc:economic-operator-size ; - sh:description """The category of the business depending on number of employees and turnover. - -Additional information: - -See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. - -WG Approval 28/05/2020 - -""" ; - sh:maxCount 1 ; - sh:name "Has business size" ; - sh:path :hasBusinessSize . - -core-shape:epo-Business-epo-isListedCompany a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange -rules or through law or enforceable means), which impose requirements to ensure adequate transparency of -beneficial ownership. - -Additional Information: - -In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. - -WG Approval 21/11/2019""" ; - sh:maxCount 1 ; - sh:name "Is listed company" ; - sh:path :isListedCompany . - -core-shape:epo-Buyer-epo-delegatesAncillaryActivitiesTo a sh:PropertyShape ; - sh:class :ProcurementServiceProvider ; - sh:description """Entrusts ancillary purchasing activities to ProcurementServiceProvider. - -Additional Information: -Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: - -(a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; - -(b) advice on the conduct or design of public procurement procedures; - -(c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned;""" ; - sh:name "Delegates ancillary activities to" ; - sh:path :delegatesAncillaryActivitiesTo ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Buyer-epo-exposesInvoiceeChannel a sh:PropertyShape ; - sh:class cccev:Channel ; - sh:name "Exposes invoicee channel" ; - sh:path :exposesInvoiceeChannel ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Buyer-epo-hasActivityDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. - -However, in eForms there is the code "other" to cover undefined activities. For mapping to this eForms feature one could also use this property. -""" ; - sh:name "Has activity description" ; - sh:path :hasActivityDescription . - -core-shape:epo-Buyer-epo-hasBuyerProfile a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """Website address where the buyer publishes information on its procurement procedures and general information. - -Additional information: -This corresponds in the eForms to BT-508 Buyer Profile URL. - -WG approval 04/05/2018 -""" ; - sh:maxCount 1 ; - sh:name "Has buyer profile" ; - sh:path :hasBuyerProfile . - -core-shape:epo-Buyer-epo-indicatesInvoiceeContactPoint a sh:PropertyShape ; - sh:class cccev:ContactPoint ; - sh:name "Indicates invoicee contact point" ; - sh:path :indicatesInvoiceeContactPoint ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Buyer-epo-isContractingEntity a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Role of entities, which: - -(a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. - -(b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. - -Additional Information - -The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. -For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. - -WG Approval 28/04/2020 -""" ; - sh:maxCount 1 ; - sh:name "Is contracting entity" ; - sh:path :isContractingEntity . - -core-shape:epo-Buyer-epo-signsAwardDecision a sh:PropertyShape ; - sh:class :AwardDecision ; - sh:name "Signs award decision" ; - sh:path :signsAwardDecision ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ConcessionEstimate-epo-hasCalculationMethod a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Formula for obtaining values. - -Additional Information: -The possible values are monetary values, ranking scores, criterion weighting. - -WG Approval 25/05/2018""" ; - sh:maxCount 1 ; - sh:name "Has calculation method" ; - sh:path :hasCalculationMethod . - -core-shape:epo-ConcessionEstimate-epo-hasConcessionEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has concession estimated value" ; - sh:path :hasConcessionEstimatedValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ConcessionEstimate-epo-hasEstimatedBuyerConcessionRevenue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. - -Additional Information: -For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. - -This corresponds to BT-160 in eForms. - -WG Approval 07/01/2020""" ; - sh:maxCount 1 ; - sh:name "Has estimated buyer concession revenue" ; - sh:path :hasEstimatedBuyerConcessionRevenue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ConcessionEstimate-epo-hasEstimatedUserConcessionRevenue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The estimated revenue coming from the use of the concession. - -Additional Information: -Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. - -This corresponds to BT-162 in eForms. -""" ; - sh:maxCount 1 ; - sh:name "Has estimated user concession revenue" ; - sh:path :hasEstimatedUserConcessionRevenue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Contract-epo-bindsBuyer a sh:PropertyShape ; - sh:class :Buyer ; - sh:description "Provides legal constraint on the Buyer." ; - sh:name "Binds buyer" ; - sh:path :bindsBuyer ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Contract-epo-bindsContractor a sh:PropertyShape ; - sh:class :Contractor ; - sh:description "Provides legal constraint on the Contractor." ; - sh:name "Binds contractor" ; - sh:path :bindsContractor ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Contract-epo-hasContractConclusionDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The date the contract was signed by the last signatory party. - -Additional Information: -In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. -This concept is not to be confused with the date of completion/end of the contract. - -This corresponds in eForms to BT-145 Contract Conclusion Date. - -WG Approval 09/01/2020""" ; - sh:maxCount 1 ; - sh:name "Has contract conclusion date" ; - sh:path :hasContractConclusionDate . - -core-shape:epo-Contract-epo-hasContractValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has contract value" ; - sh:path :hasContractValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Contract-epo-hasEntryIntoForceDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The date on which the contract enters into force. - -Additional information: - -This is generally the date on which the fulfillment of the contract begins. - -This corresponds in eForms to - -WG approval 05/11/2019""" ; - sh:maxCount 1 ; - sh:name "Has entry into force date" ; - sh:path :hasEntryIntoForceDate . - -core-shape:epo-Contract-epo-hasEstimatedDuration a sh:PropertyShape ; - sh:class :Duration ; - sh:description """Relation indicating a Contract has an estimated Duration. - -Additional Information - -When the Lot uses a Technique the contract estimated duration applies to the Technique. -""" ; - sh:maxCount 1 ; - sh:name "Has estimated duration" ; - sh:path :hasEstimatedDuration ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Contract-epo-hasLotReference a sh:PropertyShape ; - sh:class :Lot ; - sh:minCount 1 ; - sh:name "Has lot reference" ; - sh:path :hasLotReference ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Contract-epo-hasProcurementClassification a sh:PropertyShape ; - sh:class at-voc:cpv ; - sh:maxCount 1 ; - sh:name "Has procurement classification" ; - sh:path :hasProcurementClassification . - -core-shape:epo-Contract-epo-includesTender a sh:PropertyShape ; - sh:class :Tender ; - sh:description """Additional information: -This corresponds in eForms to BT-3202 Contract Tender Identifier. -""" ; - sh:name "Includes tender" ; - sh:path :includesTender ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Contract-epo-isSubjectToContractSpecificTerm a sh:PropertyShape ; - sh:class :ContractSpecificTerm ; - sh:name "Is subject to contract specific term" ; - sh:path :isSubjectToContractSpecificTerm ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Contract-epo-signedByBuyer a sh:PropertyShape ; - sh:class :Buyer ; - sh:name "Signed by buyer" ; - sh:path :signedByBuyer ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Contract-epo-signedByContractor a sh:PropertyShape ; - sh:class :Contractor ; - sh:name "Signed by contractor" ; - sh:path :signedByContractor ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractLotCompletionInformation-epo-describesLotCompletion a sh:PropertyShape ; - sh:class :Lot ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Describes lot completion" ; - sh:path :describesLotCompletion ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractLotCompletionInformation-epo-hasPaymentValueDiscrepancyJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has payment value discrepancy justification" ; - sh:path :hasPaymentValueDiscrepancyJustification . - -core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPaymentValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """Additional Information: -This corresponds to BT-779 in eForms. """ ; - sh:maxCount 1 ; - sh:name "Provides contract total payment value" ; - sh:path :providesContractTotalPaymentValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPenaltyValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """ -Additional Information: -This corresponds to BT-782 in eForms. -""" ; - sh:maxCount 1 ; - sh:name "Provides contract total penalty value" ; - sh:path :providesContractTotalPenaltyValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractLotCompletionInformation-epo-refersToContract a sh:PropertyShape ; - sh:class :Contract ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Refers to contract" ; - sh:path :refersToContract ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractModification-epo-hasElementModification a sh:PropertyShape ; - sh:class :ElementModificationDescription ; - sh:minCount 1 ; - sh:name "Has element modification" ; - sh:path :hasElementModification ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractModification-epo-refersToOriginalNotice a sh:PropertyShape ; - sh:class :Notice ; - sh:maxCount 1 ; - sh:name "Refers to original notice" ; - sh:path :refersToOriginalNotice ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractTerm-epo-definesContractDuration a sh:PropertyShape ; - sh:class :Duration ; - sh:description "Relation indicating a ContractTerm has a Duration." ; - sh:maxCount 1 ; - sh:name "Defines contract duration" ; - sh:path :definesContractDuration ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractTerm-epo-definesContractPeriod a sh:PropertyShape ; - sh:class :Period ; - sh:description "Relation indicating a ContractTerm has a Period." ; - sh:maxCount 1 ; - sh:name "Defines contract period" ; - sh:path :definesContractPeriod ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractTerm-epo-definesPaymentExecutor a sh:PropertyShape ; - sh:class :PaymentExecutor ; - sh:description "Relation indicating a ContractTerm has a PaymentExecutor." ; - sh:maxCount 1 ; - sh:name "Defines payment executor" ; - sh:path :definesPaymentExecutor ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractTerm-epo-definesPlaceOfPerformance a sh:PropertyShape ; - sh:class dcterms:Location ; - sh:description """Relation indicating the place of performance of a Contract. - -WG approval 21/03/2023""" ; - sh:name "Defines place of performance" ; - sh:path :definesPlaceOfPerformance ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractTerm-epo-definesSubcontractingTerm a sh:PropertyShape ; - sh:class :SubcontractTerm ; - sh:description "Relation indicating a term has a subterm." ; - sh:maxCount 1 ; - sh:name "Defines subcontracting term" ; - sh:path :definesSubcontractingTerm ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ContractTerm-epo-hasAdditionalContractNature a sh:PropertyShape ; - sh:class at-voc:contract-nature ; - sh:description """Additional type of acquisition taken into consideration in the contract. - -WG Approval 11/06/2020 - -""" ; - sh:name "Has additional contract nature" ; - sh:path :hasAdditionalContractNature . - -core-shape:epo-ContractTerm-epo-hasBroadPlaceOfPerformance a sh:PropertyShape ; - sh:class at-voc:other-place-service ; - sh:description """Geopolitical zone where the contract can be executed. - -Additional Information - -Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). -""" ; - sh:maxCount 1 ; - sh:name "Has broad place of performance" ; - sh:path :hasBroadPlaceOfPerformance . - -core-shape:epo-ContractTerm-epo-hasContractNatureType a sh:PropertyShape ; - sh:class at-voc:contract-nature ; - sh:description """Subject of the acquisition. - -WG Approval 11/06/2020 - -""" ; - sh:maxCount 1 ; - sh:name "Has contract nature type" ; - sh:path :hasContractNatureType . - -core-shape:epo-ContractTerm-epo-hasEInvoicing a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Electronic means will be used for invoicing in the post-award process. - -Additional Information: -This attribute is used for standard form mappings. - -WG Approval 12/09/2019 -""" ; - sh:maxCount 1 ; - sh:name "Has e invoicing" ; - sh:path :hasEInvoicing . - -core-shape:epo-ContractTerm-epo-hasEInvoicingPermission a sh:PropertyShape ; - sh:class at-voc:permission ; - sh:maxCount 1 ; - sh:name "Has e invoicing permission" ; - sh:path :hasEInvoicingPermission . - -core-shape:epo-ContractTerm-epo-hasEOrdering a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Electronic means will be used for requesting and purchasing in the post-award process. - -WG Approval 12/09/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has e ordering" ; - sh:path :hasEOrdering . - -core-shape:epo-ContractTerm-epo-hasEPayment a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Electronic means must be used for paying. -WG Approval 09/11/2021 -""" ; - sh:maxCount 1 ; - sh:name "Has e payment" ; - sh:path :hasEPayment . - -core-shape:epo-ContractTerm-epo-hasLegalFormRequirement a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The legal form to be taken by a Contractor. - -Additional Information: -Generally, this is defined to cover the case where an Organisation Group is involved. -Note that the codelist provided at national level should be used.""" ; - sh:maxCount 1 ; - sh:name "Has legal form requirement" ; - sh:path :hasLegalFormRequirement . - -core-shape:epo-ContractTerm-epo-hasMaximumNumberOfRenewals a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The maximum number of times the contract can be renewed. - -Additional Information - -By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. -For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. - -PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. -""" ; - sh:maxCount 1 ; - sh:name "Has maximum number of renewals" ; - sh:path :hasMaximumNumberOfRenewals . - -core-shape:epo-ContractTerm-epo-hasOptions a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid)." ; - sh:maxCount 1 ; - sh:name "Has options" ; - sh:path :hasOptions . - -core-shape:epo-ContractTerm-epo-hasOptionsDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The motivation and details about additional purchases that the buyer may undertake while the contract is valid. - -WG Approval 09/04/2019 """ ; - sh:name "Has options description" ; - sh:path :hasOptionsDescription . - -core-shape:epo-ContractTerm-epo-hasPaymentArrangement a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Information about financial clauses that will govern some economic aspects of the execution of the contract. - -Additional Information: These clauses usually refer to financial and payment provisions. - -This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. - -WG Pending of discussion with eForms""" ; - sh:name "Has payment arrangement" ; - sh:path :hasPaymentArrangement . - -core-shape:epo-ContractTerm-epo-hasPerformanceConditions a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The particular conditions and additional information related to the execution of the contract. - -Additional Information: - -For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. - -WG approval 15-01-2019""" ; - sh:name "Has performance conditions" ; - sh:path :hasPerformanceConditions . - -core-shape:epo-ContractTerm-epo-hasPlaceOfPerformanceAdditionalInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Further details on the location of the execution of the contract. - -WG Approval 30/07/2019""" ; - sh:name "Has place of performance additional information" ; - sh:path :hasPlaceOfPerformanceAdditionalInformation . - -core-shape:epo-ContractTerm-epo-hasRenewalDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Any other information about the renewal(s). - -WG approval 16/04/2019 """ ; - sh:name "Has renewal description" ; - sh:path :hasRenewalDescription . - -core-shape:epo-ContractTerm-epo-hasReservedExecution a sh:PropertyShape ; - sh:class at-voc:applicability ; - sh:maxCount 1 ; - sh:name "Has reserved execution" ; - sh:path :hasReservedExecution . - -core-shape:epo-ContractTerm-epo-isRenewalIndicator a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Indicates whether the contract is subject to a renewal clause. -WG Approval 09/11/2021""" ; - sh:maxCount 1 ; - sh:name "Is renewal indicator" ; - sh:path :isRenewalIndicator . - -core-shape:epo-Contractor-epo-needsToBeAWinner a sh:PropertyShape ; - sh:class :Winner ; - sh:description """The Contractor must be a Winner. -""" ; - sh:maxCount 1 ; - sh:name "Needs to be a winner" ; - sh:path :needsToBeAWinner ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-DesignContestRegimeTerm-epo-definesPrize a sh:PropertyShape ; - sh:class :Prize ; - sh:description "Relation indicating a DesignContestRegimeTerm has a Prize." ; - sh:name "Defines prize" ; - sh:path :definesPrize ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContract a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. - -WG Approval 29/08/2019 """ ; - sh:maxCount 1 ; - sh:name "Has followup contract" ; - sh:path :hasFollowupContract . - -core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContractInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). - -WG Approval 03/09/2019""" ; - sh:name "Has followup contract information" ; - sh:path :hasFollowupContractInformation . - -core-shape:epo-DesignContestRegimeTerm-epo-hasParticipationPayment a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Details on payments to participants -WG Approval 09/11/2021""" ; - sh:maxCount 1 ; - sh:name "Has participation payment" ; - sh:path :hasParticipationPayment . - -core-shape:epo-DesignContestRegimeTerm-epo-isJuryDecisionBinding a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Indicates whether the procuring entity is bound to apply the decision of the jury." ; - sh:maxCount 1 ; - sh:name "Is jury decision binding" ; - sh:path :isJuryDecisionBinding . - -core-shape:epo-DirectAwardTerm-epo-hasDirectAwardJustification a sh:PropertyShape ; - sh:class at-voc:direct-award-justification ; - sh:description """List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. - -WG Approval 28/05/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has direct award justification" ; - sh:path :hasDirectAwardJustification . - -core-shape:epo-DirectAwardTerm-epo-hasJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An explanation about the reasons for using the concept. -WG Approval 5/11/2019 -""" ; - sh:name "Has justification" ; - sh:path :hasJustification . - -core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedure a sh:PropertyShape ; - sh:class :Procedure ; - sh:description """Reference to a previous procedure. - -Additional Information: -In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. - -This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier""" ; - sh:maxCount 1 ; - sh:name "Refers to previous procedure" ; - sh:path :refersToPreviousProcedure ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedureLot a sh:PropertyShape ; - sh:class :Lot ; - sh:description """Reference to one or more Lots in a previous procedure. - -Additional Information: -In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. - -This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier - -WG Approval 22/11/2019 14:33:55""" ; - sh:name "Refers to previous procedure lot" ; - sh:path :refersToPreviousProcedureLot ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-DirectContract-epo-resultsFromLotAwardDecision a sh:PropertyShape ; - sh:class :LotAwardDecision ; - sh:name "Results from lot award decision" ; - sh:path :resultsFromLotAwardDecision ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Document-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Document-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 -""" ; - sh:maxCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-Document-dct-issued a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description """Date of formal issuance of the resource. - -Additional information: -This is generally used for modules other than eNotice. -The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. -Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. - -WG approval 26/01/2023""" ; - sh:maxCount 1 ; - sh:name "Issued" ; - sh:path dcterms:issued . - -core-shape:epo-Document-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A name given to the resource. - -WG approval 30/05/2023 - -""" ; - sh:maxCount 1 ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:epo-Document-epo-associatedWith a sh:PropertyShape ; - sh:class :Document ; - sh:description """The document to which a document is associated. - -WGM 01/03/2022 -""" ; - sh:name "Associated with" ; - sh:path :associatedWith ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Document-epo-hasAccessURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """Location where the resource can be accessed. - -WG approval 07/04/2022""" ; - sh:name "Has access u r l" ; - sh:path :hasAccessURL . - -core-shape:epo-Document-epo-hasDispatchDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """Date of transmission of a record to an organisation. - -WG Approval 12/05/2020""" ; - sh:maxCount 1 ; - sh:name "Has dispatch date" ; - sh:path :hasDispatchDate . - -core-shape:epo-Document-epo-hasElectronicDigest a sh:PropertyShape ; - sh:class :Document ; - sh:name "Has electronic digest" ; - sh:path :hasElectronicDigest ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Document-epo-hasElectronicSignature a sh:PropertyShape ; - sh:class :ElectronicSignature ; - sh:name "Has electronic signature" ; - sh:path :hasElectronicSignature ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Document-epo-hasOfficialLanguage a sh:PropertyShape ; - sh:class at-voc:language ; - sh:description """The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. - -WG Approval 03/10/2019 - -""" ; - sh:minCount 1 ; - sh:name "Has official language" ; - sh:path :hasOfficialLanguage . - -core-shape:epo-Document-epo-hasPublicationDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """Date of formal public issuance of the document. - -WG approval 20/06/2023""" ; - sh:maxCount 1 ; - sh:name "Has publication date" ; - sh:path :hasPublicationDate . - -core-shape:epo-Document-epo-hasReceptionDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """Notes: Date when a record is acknowledged by an organisation. - -WG Approval 12/05/2020""" ; - sh:maxCount 1 ; - sh:name "Has reception date" ; - sh:path :hasReceptionDate . - -core-shape:epo-Document-epo-hasUUID a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description """A universally unique identifier for an instance of this document. - -WG Approval 12/05/2020""" ; - sh:maxCount 1 ; - sh:name "Has u u i d" ; - sh:path :hasUUID ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Document-epo-hasUnofficialLanguage a sh:PropertyShape ; - sh:class at-voc:language ; - sh:description """The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. - -WG Approval 03/10/2019 -""" ; - sh:name "Has unofficial language" ; - sh:path :hasUnofficialLanguage . - -core-shape:epo-Document-epo-hasVersion a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A number that identifies a specific state of a document. - -WG approval: 18/11/2021 -""" ; - sh:maxCount 1 ; - sh:name "Has version" ; - sh:path :hasVersion . - -core-shape:epo-Document-epo-refersToPrevious a sh:PropertyShape ; - sh:class :Document ; - sh:name "Refers to previous" ; - sh:path :refersToPrevious ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-DynamicPurchaseSystemTechnique-epo-hasDPSScope a sh:PropertyShape ; - sh:class at-voc:dps-usage ; - sh:description """Explanation as to whether a dps is used and by whom. -WG Approval 09/11/2021 - -The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usage""" ; - sh:maxCount 1 ; - sh:name "Has d p s scope" ; - sh:path :hasDPSScope . - -core-shape:epo-DynamicPurchaseSystemTechnique-epo-resultsInDynamicPurchasingSystem a sh:PropertyShape ; - sh:class :DynamicPurchasingSystem ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Results in dynamic purchasing system" ; - sh:path :resultsInDynamicPurchasingSystem ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-DynamicPurchasingSystem-epo-hasCandidateList a sh:PropertyShape ; - sh:class :SelectedCandidateList ; - sh:name "Has candidate list" ; - sh:path :hasCandidateList ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ElectronicSignature-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-ElementChangeDescription-epo-hasAdditionalInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Supplementary data about the instance of the concept. - -WG Approval 15/10/2019 -""" ; - sh:maxCount 1 ; - sh:name "Has additional information" ; - sh:path :hasAdditionalInformation . - -core-shape:epo-ElementChangeDescription-epo-hasChangeDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Explanatory text about the instance of the concept. - -WG Approval 30/09/2019""" ; - sh:name "Has change description" ; - sh:path :hasChangeDescription . - -core-shape:epo-ElementChangeDescription-epo-hasChangeJustification a sh:PropertyShape ; - sh:class at-voc:change-corrig-justification ; - sh:description """The motives for the change. - -WG 5/11/2019 - -The codelist to be used is at-voc:change-corrig-justification which is available at -http://publications.europa.eu/resource/dataset/change-corrig-justification""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has change justification" ; - sh:path :hasChangeJustification . - -core-shape:epo-ElementChangeDescription-epo-hasChangeReasonDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Explanatory text about why the element is altered. - -Additional information: -This corresponds in eForms to BT-762 Change Reason Description.""" ; - sh:name "Has change reason description" ; - sh:path :hasChangeReasonDescription . - -core-shape:epo-ElementChangeDescription-epo-hasElementReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier.""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has element reference" ; - sh:path :hasElementReference . - -core-shape:epo-ElementChangeDescription-epo-hasPreviousVersionOfElementReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """Reference to the class instance in the previous version of the notice, which was changed. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. -""" ; - sh:maxCount 1 ; - sh:name "Has previous version of element reference" ; - sh:path :hasPreviousVersionOfElementReference . - -core-shape:epo-ElementChangeDescription-epo-hasProcurementDocumentChangeDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The date and time of the change. - -Additional information: -This corresponds in eForms to BT-719 Change Procurement Documents Date - -WG Approval 5/11/2019 -""" ; - sh:maxCount 1 ; - sh:name "Has procurement document change date" ; - sh:path :hasProcurementDocumentChangeDate . - -core-shape:epo-ElementChangeDescription-epo-isProcurementDocumentChanged a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """One or more procurement documents have been changed. - -Additional information: -This corresponds in eForms to BT-718 Change Procurement Documents - -WG Approval 05/11/2019""" ; - sh:maxCount 1 ; - sh:name "Is procurement document changed" ; - sh:path :isProcurementDocumentChanged . - -core-shape:epo-ElementConfidentialityDescription-epo-hasAccessibilityDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The date at which unpublished data shall be published. - -WG Approval 11/06/2020""" ; - sh:maxCount 1 ; - sh:name "Has accessibility date" ; - sh:path :hasAccessibilityDate . - -core-shape:epo-ElementConfidentialityDescription-epo-hasConfidentialityJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A narrative explanation of why data is not published. - -Additional Information: -This element is generally used when the non-publication-justification code chosen is "other". - -WG Approval 09/11/2021 -""" ; - sh:maxCount 1 ; - sh:name "Has confidentiality justification" ; - sh:path :hasConfidentialityJustification . - -core-shape:epo-ElementConfidentialityDescription-epo-hasInstanceReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The URI of a given class that is being referred to." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has instance reference" ; - sh:path :hasInstanceReference . - -core-shape:epo-ElementConfidentialityDescription-epo-hasNonPublicationJustification a sh:PropertyShape ; - sh:class at-voc:non-publication-justification ; - sh:description """The reason why data is not published. -WG Approval 11/06/2020 - -""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has non publication justification" ; - sh:path :hasNonPublicationJustification . - -core-shape:epo-ElementConfidentialityDescription-epo-hasPropertyReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The URI of a given attribute (property) that is being referred to." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has property reference" ; - sh:path :hasPropertyReference . - -core-shape:epo-ElementModificationDescription-epo-hasElementReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. -""" ; - sh:maxCount 1 ; - sh:name "Has element reference" ; - sh:path :hasElementReference . - -core-shape:epo-ElementModificationDescription-epo-hasModificationDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An explanatory text about this context. - -Additional Information - -This corresponds in Standard forms to Field VII.2.1 in F20 -This corresponds in eForms to BT-202 . - -WG Approval 5/11/2019""" ; - sh:name "Has modification description" ; - sh:path :hasModificationDescription . - -core-shape:epo-ElementModificationDescription-epo-hasModificationJustification a sh:PropertyShape ; - sh:class at-voc:modification-justification ; - sh:description """Explanation of why a contract was modified. -WG Approval 09/11/2021 - -The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification - -Additional Information - -This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . - -This corresponds in eForms to BT-200. - -""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has modification justification" ; - sh:path :hasModificationJustification . - -core-shape:epo-ElementModificationDescription-epo-hasModificationReasonDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An explanation about the reasons for using the concept. - -Additional Information -This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. - -This corresponds in eForms to BT-201 . - -WG Approval 5/11/2019""" ; - sh:name "Has modification reason description" ; - sh:path :hasModificationReasonDescription . - -core-shape:epo-FrameworkAgreement-epo-resultsFromLotAwardDecision a sh:PropertyShape ; - sh:class :LotAwardDecision ; - sh:name "Results from lot award decision" ; - sh:path :resultsFromLotAwardDecision ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-FrameworkAgreementTerm-epo-hasBuyerCategoryDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A classification of buyers participating in a framework agreement. - -Additional Information: -Buyers that can use the Framework Agreement not mentioned by name. - -For example, the classification "all hospitals in the Tuscany region" is used instead of naming each individual buyer. - -This corresponds in eForms to BT-111 Framework Buyer Categories. - -WG Approval 2019-05-06""" ; - sh:name "Has buyer category description" ; - sh:path :hasBuyerCategoryDescription . - -core-shape:epo-FrameworkAgreementTerm-epo-hasDurationExtensionJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The explanation of the reason why the framework agreement has an extended duration. - -Additional Information: -This corresponds in eForms to BT-109 Framework Duration Justification. -The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. - -Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. - -WG Approval 26/09/2019""" ; - sh:maxCount 1 ; - sh:name "Has duration extension justification" ; - sh:path :hasDurationExtensionJustification . - -core-shape:epo-FrameworkAgreementTerm-epo-hasFrameworkAgreementType a sh:PropertyShape ; - sh:class at-voc:framework-agreement ; - sh:description """The form of framework agreement used in a procurement procedure. - -Addition information: - -A concept to distinguish the different types of framework agreement, which are: -1. Framework agreement without reopening of competition, -2. Framework agreement with reopening of competition, or -3. Framework agreement partly without reopening of competition. - -WG Approval 19/09/2019 - -""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has framework agreement type" ; - sh:path :hasFrameworkAgreementType . - -core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchFrameworkAgreementMaximumValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has launch framework agreement maximum value" ; - sh:path :hasLaunchFrameworkAgreementMaximumValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchGroupFrameworkAgreementMaximumValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has launch group framework agreement maximum value" ; - sh:path :hasLaunchGroupFrameworkAgreementMaximumValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-FrameworkAgreementTerm-epo-hasMaximumParticipantsNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The maximum number of participants in the framework agreement. - -Additional Information: -Maximum number of tenderers who may be awarded a contract within the framework agreement. - -The number is a positive integer. - -This corresponds in eForms to BT-113 Framework Maximum Participants Number. - -WG Approval 2019-02-05""" ; - sh:maxCount 1 ; - sh:name "Has maximum participants number" ; - sh:path :hasMaximumParticipantsNumber . - -core-shape:epo-Fund-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Fund-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-Fund-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A name given to the resource. - -WG approval 30/05/2023 -""" ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:epo-Fund-epo-hasFundProgramme a sh:PropertyShape ; - sh:class at-voc:EU-programme ; - sh:maxCount 1 ; - sh:name "Has fund programme" ; - sh:path :hasFundProgramme . - -core-shape:epo-Fund-epo-hasURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """The identifier of a resource. - -Additional Information - -For example: - -1. The URL of the system from where to access the procurement documents; -2. The URL of the system for the submission of tender documents; -3. The URL of the system from where to download a tool to communicate with the Buyer; -4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) -5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; - -WG Approval 30/09/2019""" ; - sh:maxCount 1 ; - sh:name "Has u r l" ; - sh:path :hasURL . - -core-shape:epo-GreenProcurement-epo-fulfillsRequirement a sh:PropertyShape ; - sh:class at-voc:environmental-impact ; - sh:description """The requirement to which the concept meets. -WG Approval 09/11/2021 - -""" ; - sh:minCount 1 ; - sh:name "Fulfills requirement" ; - sh:path :fulfillsRequirement . - -core-shape:epo-GreenProcurement-epo-hasCleanVehicles a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has clean vehicles" ; - sh:path :hasCleanVehicles . - -core-shape:epo-GreenProcurement-epo-hasTotalVehicles a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information - -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has total vehicles" ; - sh:path :hasTotalVehicles . - -core-shape:epo-GreenProcurement-epo-hasZeroEmissionVehicles a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. - -Additional Information - -In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. - -WG Approval 28/07/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has zero emission vehicles" ; - sh:path :hasZeroEmissionVehicles . - -core-shape:epo-InnovativeProcurement-epo-fulfillsRequirement a sh:PropertyShape ; - sh:class at-voc:innovative-acquisition ; - sh:description """The requirement to which the concept meets. -WG Approval 09/11/2021 - -""" ; - sh:minCount 1 ; - sh:name "Fulfills requirement" ; - sh:path :fulfillsRequirement . - -core-shape:epo-JuryMember-epo-playedBy a sh:PropertyShape ; - sh:class foaf:Person ; - sh:maxCount 1 ; - sh:name "Played by" ; - sh:path :playedBy ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Lot-epo-isSubjectToLotSpecificTerm a sh:PropertyShape ; - sh:class :LotSpecificTerm ; - sh:name "Is subject to lot specific term" ; - sh:path :isSubjectToLotSpecificTerm ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Lot-epo-specifiesProcurementCriterion a sh:PropertyShape ; - sh:class :ProcurementCriterion ; - sh:name "Specifies procurement criterion" ; - sh:path :specifiesProcurementCriterion ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotAwardDecision-epo-concernsLot a sh:PropertyShape ; - sh:class :Lot ; - sh:description "Relates to Lot." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Concerns lot" ; - sh:path :concernsLot ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotAwardDecision-epo-hasApproximateFrameworkAgreementValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has approximate framework agreement value" ; - sh:path :hasApproximateFrameworkAgreementValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotAwardDecision-epo-hasAwardedEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The estimated value that can be spent as provided by the Award Decision. - -Additional Information: -This property is used for framework agreements and dynamic purchasing systems. -Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. - -WG Approval 12/12/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has awarded estimated value" ; - sh:path :hasAwardedEstimatedValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "This refers to BT-660 in eForms." ; - sh:maxCount 1 ; - sh:name "Has framework agreement estimated value" ; - sh:path :hasFrameworkAgreementEstimatedValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementMaximumValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has framework agreement maximum value" ; - sh:path :hasFrameworkAgreementMaximumValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The number the contract would have had if it had been awarded. - -Additional information: - -This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. - -WG agreement: 06/09/2022 -""" ; - sh:maxCount 1 ; - sh:name "Has non awarded contract number" ; - sh:path :hasNonAwardedContractNumber . - -core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractTitle a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The title the contract would have had if it had been awarded. - -Additional information: - -This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. - -WG agreement: 06/09/2022""" ; - sh:maxCount 1 ; - sh:name "Has non awarded contract title" ; - sh:path :hasNonAwardedContractTitle . - -core-shape:epo-LotGroup-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description """A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019""" ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotGroup-epo-setsGroupingContextForLot a sh:PropertyShape ; - sh:class :Lot ; - sh:minCount 1 ; - sh:name "Sets grouping context for lot" ; - sh:path :setsGroupingContextForLot ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotGroup-epo-specifiesProcurementCriterion a sh:PropertyShape ; - sh:class :ProcurementCriterion ; - sh:name "Specifies procurement criterion" ; - sh:path :specifiesProcurementCriterion ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotGroupAwardInformation-epo-describesLotGroup a sh:PropertyShape ; - sh:class :LotGroup ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Describes lot group" ; - sh:path :describesLotGroup ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-LotGroupAwardInformation-epo-hasGroupFrameworkAgreementMaximumValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "This corresponds to BT-156 in the eForms." ; - sh:maxCount 1 ; - sh:name "Has group framework agreement maximum value" ; - sh:path :hasGroupFrameworkAgreementMaximumValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-MiniCompetition-epo-followsRulesSetBy a sh:PropertyShape ; - sh:class :FrameworkAgreement ; - sh:maxCount 1 ; - sh:name "Follows rules set by" ; - sh:path :followsRulesSetBy ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-MiniCompetition-epo-specifiesAwardCriterion a sh:PropertyShape ; - sh:class :AwardCriterion ; - sh:name "Specifies award criterion" ; - sh:path :specifiesAwardCriterion ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-MiniCompetition-epo-usesCandidateList a sh:PropertyShape ; - sh:class :SelectedCandidateList ; - sh:maxCount 1 ; - sh:name "Uses candidate list" ; - sh:path :usesCandidateList ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-MiniCompetitionAwardDecision-epo-concernsMiniCompetition a sh:PropertyShape ; - sh:class :MiniCompetition ; - sh:maxCount 1 ; - sh:name "Concerns mini competition" ; - sh:path :concernsMiniCompetition ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-MonetaryValue-epo-hasAmountValue a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The numeric value of the amount, including decimals." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has amount value" ; - sh:path :hasAmountValue . - -core-shape:epo-MonetaryValue-epo-hasCurrency a sh:PropertyShape ; - sh:class at-voc:currency ; - sh:description """The identifier of the currency as in the standard code list used. - -""" ; - sh:maxCount 1 ; - sh:name "Has currency" ; - sh:path :hasCurrency . - -core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyID a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Identifier of the agency that maintains the currency code list used. -WG approval 13/04/2021""" ; - sh:name "Has currency code list agency i d" ; - sh:path :hasCurrencyCodeListAgencyID . - -core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Name of the agency that maintains the currency code list used. -WG approval 13/04/2021""" ; - sh:name "Has currency code list agency name" ; - sh:path :hasCurrencyCodeListAgencyName . - -core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListID a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Concept scheme URI used for the currency code list. -WG approval 13/04/2021""" ; - sh:name "Has currency code list i d" ; - sh:path :hasCurrencyCodeListID . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToExpressInterestDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The estimated date of dispatch of the invitations to confirm interest. - -Additional Information: -This corresponds in eForms to BT-631 Dispatch Invitation Interest.""" ; - sh:maxCount 1 ; - sh:name "Has estimated invitation to express interest date" ; - sh:path :hasEstimatedInvitationToExpressInterestDate . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToTenderDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. - -Additional Information: -This corresponds in eForms to BT-130 Dispatch Invitation Tender. - -WG Approval 01/10/2019""" ; - sh:maxCount 1 ; - sh:name "Has estimated invitation to tender date" ; - sh:path :hasEstimatedInvitationToTenderDate . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasMaximumNumberOfCandidates a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """Maximum number of candidates to be invited for the second stage of the procedure. - -WG Approval 22/08/2019""" ; - sh:maxCount 1 ; - sh:name "Has maximum number of candidates" ; - sh:path :hasMaximumNumberOfCandidates . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasMinimumNumberOfCandidates a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """Minimum number of candidates to be invited for the second stage of the procedure. - -WG Approval 22/08/2019 """ ; - sh:maxCount 1 ; - sh:name "Has minimum number of candidates" ; - sh:path :hasMinimumNumberOfCandidates . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasNoNegotiationNecessary a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. - -Additional information: -See Article 29(4) of Directive 2014/24/EU. -""" ; - sh:maxCount 1 ; - sh:name "Has no negotiation necessary" ; - sh:path :hasNoNegotiationNecessary . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemDuration a sh:PropertyShape ; - sh:class :Duration ; - sh:maxCount 1 ; - sh:name "Has qualification system duration" ; - sh:path :hasQualificationSystemDuration ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemRenewalDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has qualification system renewal description" ; - sh:path :hasQualificationSystemRenewalDescription . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasSuccessiveReduction a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. - -Additional information: -This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. -WG Approval 22/08/2019 """ ; - sh:maxCount 1 ; - sh:name "Has successive reduction" ; - sh:path :hasSuccessiveReduction . - -core-shape:epo-NonDisclosureAgreementTerm-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023 -""" ; - sh:maxCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-NonDisclosureAgreementTerm-epo-isNonDisclosureAgreementRequired a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Is non disclosure agreement required" ; - sh:path :isNonDisclosureAgreementRequired . - -core-shape:epo-Notice-epo-conformsToLegalBasis a sh:PropertyShape ; - sh:class at-voc:legal-basis ; - sh:description """The Notice was designed in accordance with the given legal basis. - -Additional Information: -This Notice can be used for Procedures which do not have the same legal basis. -This holds for standard forms.""" ; - sh:maxCount 1 ; - sh:name "Conforms to legal basis" ; - sh:path :conformsToLegalBasis . - -core-shape:epo-Notice-epo-conformsToSpecificLegalBasis a sh:PropertyShape ; - sh:class at-voc:legal-basis ; - sh:maxCount 1 ; - sh:name "Conforms to specific legal basis" ; - sh:path :conformsToSpecificLegalBasis . - -core-shape:epo-Notice-epo-hasAdditionalInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Supplementary data about the instance of the concept. - -WG Approval 15/10/2019""" ; - sh:maxCount 1 ; - sh:name "Has additional information" ; - sh:path :hasAdditionalInformation . - -core-shape:epo-Notice-epo-hasEFormsSubtype a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:maxCount 1 ; - sh:name "Has e forms subtype" ; - sh:path :hasEFormsSubtype . - -core-shape:epo-Notice-epo-hasESenderDispatchDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description """The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. - -Additional Information: -Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. - -WG approval 20/06/2023""" ; - sh:maxCount 1 ; - sh:name "Has e sender dispatch date" ; - sh:path :hasESenderDispatchDate . - -core-shape:epo-Notice-epo-hasFormNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:maxCount 1 ; - sh:name "Has form number" ; - sh:path :hasFormNumber . - -core-shape:epo-Notice-epo-hasFormType a sh:PropertyShape ; - sh:class at-voc:form-type ; - sh:description """A categorisation of the steps in which the Notice is used. - -WG Approval 12/05/2020 - -""" ; - sh:maxCount 1 ; - sh:name "Has form type" ; - sh:path :hasFormType . - -core-shape:epo-Notice-epo-hasLongTitle a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has long title" ; - sh:path :hasLongTitle . - -core-shape:epo-Notice-epo-hasNoticePublicationNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has notice publication number" ; - sh:path :hasNoticePublicationNumber . - -core-shape:epo-Notice-epo-hasNoticeType a sh:PropertyShape ; - sh:class at-voc:notice-type ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has notice type" ; - sh:path :hasNoticeType . - -core-shape:epo-Notice-epo-hasNotificationContentType a sh:PropertyShape ; - sh:class :notification-phases-content-types ; - sh:description """A categorisation of templates for sets of Procurement information to be conveyed in Notices. - -WG Approval 12/05/2020""" ; - sh:maxCount 1 ; - sh:name "Has notification content type" ; - sh:path :hasNotificationContentType . - -core-shape:epo-Notice-epo-hasOJSIssueNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:maxCount 1 ; - sh:name "Has o j s issue number" ; - sh:path :hasOJSIssueNumber . - -core-shape:epo-Notice-epo-hasOJSType a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has o j s type" ; - sh:path :hasOJSType . - -core-shape:epo-Notice-epo-isBasedOnImplementingRegulation a sh:PropertyShape ; - sh:class at-voc:legal-basis ; - sh:description """Indicates under which regulation a notice is created. - -WG Acceptance 06/09/2022""" ; - sh:maxCount 1 ; - sh:name "Is based on implementing regulation" ; - sh:path :isBasedOnImplementingRegulation . - -core-shape:epo-Notice-epo-isEUInstitution a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Is e u institution" ; - sh:path :isEUInstitution . - -core-shape:epo-Notice-epo-refersToLot a sh:PropertyShape ; - sh:class :Lot ; - sh:minCount 1 ; - sh:name "Refers to lot" ; - sh:path :refersToLot ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Notice-epo-refersToNotice a sh:PropertyShape ; - sh:class :Notice ; - sh:maxCount 1 ; - sh:name "Refers to notice" ; - sh:path :refersToNotice ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Notice-epo-refersToProcedure a sh:PropertyShape ; - sh:class :Procedure ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Refers to procedure" ; - sh:path :refersToProcedure ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-NoticeAwardInformation-epo-hasApproximateFrameworkAgreementValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has approximate framework agreement value" ; - sh:path :hasApproximateFrameworkAgreementValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-NoticeAwardInformation-epo-hasMaximumFrameworkAgreementAwardedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. - -Additional information: - -The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. - -The Framework Agreements in a CAN are to be traced back and added to provide this value. - -This corresponds to the BT-118 in eForms. - -WG Approval 03/12/2019""" ; - sh:maxCount 1 ; - sh:name "Has maximum framework agreement awarded value" ; - sh:path :hasMaximumFrameworkAgreementAwardedValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-NoticeAwardInformation-epo-hasProcurementHighestReceivedTenderValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The highest received tender value for the procurement. - -Additional Information: -This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986.""" ; - sh:maxCount 1 ; - sh:name "Has procurement highest received tender value" ; - sh:path :hasProcurementHighestReceivedTenderValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-NoticeAwardInformation-epo-hasProcurementLowestReceivedTenderValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The lowest received tender value for the procurement. - -Additional Information: -This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986.""" ; - sh:maxCount 1 ; - sh:name "Has procurement lowest received tender value" ; - sh:path :hasProcurementLowestReceivedTenderValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-NoticeAwardInformation-epo-hasTotalAwardedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The awarded value of all lots announced in this notice, including options and renewals. - -Additional information: -The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. - -The values of the individual lots announced in a CAN are to be traced back and added to provide this value. - -This corresponds to the BT-161 in eForms. - -WG Approval 03/12/2019 -""" ; - sh:maxCount 1 ; - sh:name "Has total awarded value" ; - sh:path :hasTotalAwardedValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-NoticeChange-epo-hasElementChange a sh:PropertyShape ; - sh:class :ElementChangeDescription ; - sh:minCount 1 ; - sh:name "Has element change" ; - sh:path :hasElementChange ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-NoticeChange-epo-refersToPreviousNotice a sh:PropertyShape ; - sh:class :Notice ; - sh:description """ -Additional information: -This corresponds in eForms to BT-758 Change Notice Version Identifier.""" ; - sh:maxCount 1 ; - sh:name "Refers to previous notice" ; - sh:path :refersToPreviousNotice ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-NoticeDescription-epo-describesNotice a sh:PropertyShape ; - sh:class :Notice ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Describes notice" ; - sh:path :describesNotice ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-NoticeDescription-epo-hasElementDescription a sh:PropertyShape ; - sh:class :ElementDescription ; - sh:name "Has element description" ; - sh:path :hasElementDescription ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-OfferIssuer-epo-distributesOffer a sh:PropertyShape ; - sh:class :Offer ; - sh:name "Distributes offer" ; - sh:path :distributesOffer ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-OpeningTerm-epo-definesOpeningPlace a sh:PropertyShape ; - sh:class locn:Address ; - sh:description """The place where the tenders will be publicly opened. - -WG Approval 10-10-2019""" ; - sh:maxCount 1 ; - sh:name "Defines opening place" ; - sh:path :definesOpeningPlace ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-OpeningTerm-epo-hasOpeningDateTime a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description """Date and time for the opening of tenders. - -WG Approval 12/03/2019 - -""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has opening date time" ; - sh:path :hasOpeningDateTime . - -core-shape:epo-OpeningTerm-epo-hasOpeningDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Further information about the opening of tenders. - -Additional Information -For example, who may participate in the opening and whether any authorization is needed. - -WG Approval 12/03/2019""" ; - sh:name "Has opening description" ; - sh:path :hasOpeningDescription . - -core-shape:epo-OpeningTerm-epo-hasOpeningURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """The identifier of the address of the Opening of Tenders. -WG Approval 09/11/2021""" ; - sh:maxCount 1 ; - sh:name "Has opening u r l" ; - sh:path :hasOpeningURL . - -core-shape:epo-OrganisationGroup-epo-hasGroupType a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Form of collaboration agreement between organisations. - -Additional Information: -This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. - -WG Approval 09/11/2021""" ; - sh:name "Has group type" ; - sh:path :hasGroupType . - -core-shape:epo-OrganisationGroup-epo-hasMember a sh:PropertyShape ; - sh:class org:Organization ; - sh:minCount 1 ; - sh:name "Has member" ; - sh:path :hasMember ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-OrganisationGroup-epo-leadBy a sh:PropertyShape ; - sh:class org:Organization ; - sh:maxCount 1 ; - sh:name "Lead by" ; - sh:path :leadBy ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ParticipationCondition-epo-hasReservedProcurement a sh:PropertyShape ; - sh:class at-voc:reserved-procurement ; - sh:description """Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. - -Additional information: -This property corresponds in eForms to the BT-71 -WG Approval 09/11/2021 -""" ; - sh:name "Has reserved procurement" ; - sh:path :hasReservedProcurement . - -core-shape:epo-ParticipationConditionsSummary-epo-describesObjectiveParticipationRules a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes objective participation rules" ; - sh:path :describesObjectiveParticipationRules . - -core-shape:epo-ParticipationConditionsSummary-epo-describesVerificationMethod a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes verification method" ; - sh:path :describesVerificationMethod . - -core-shape:epo-ParticipationConditionsSummary-epo-hasReservedProcurement a sh:PropertyShape ; - sh:class at-voc:reserved-procurement ; - sh:description """Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. - -Additional information: -This property corresponds in eForms to the BT-71 -WG Approval 09/11/2021 -""" ; - sh:name "Has reserved procurement" ; - sh:path :hasReservedProcurement . - -core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestProcessor a sh:PropertyShape ; - sh:class :ParticipationRequestProcessor ; - sh:description "Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor." ; - sh:maxCount 1 ; - sh:name "Defines participation request processor" ; - sh:path :definesParticipationRequestProcessor ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestReceiver a sh:PropertyShape ; - sh:class :ParticipationRequestReceiver ; - sh:description "Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver." ; - sh:maxCount 1 ; - sh:name "Defines participation request receiver" ; - sh:path :definesParticipationRequestReceiver ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Period-epo-hasBeginning a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "The date and time on which this period begins." ; - sh:maxCount 1 ; - sh:name "Has beginning" ; - sh:path :hasBeginning . - -core-shape:epo-Period-epo-hasEnd a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "The date and time at which this period ends." ; - sh:maxCount 1 ; - sh:name "Has end" ; - sh:path :hasEnd . - -core-shape:epo-Period-epo-hasTimePeriod a sh:PropertyShape ; - sh:class at-voc:timeperiod ; - sh:description """ - -""" ; - sh:minCount 1 ; - sh:name "Has time period" ; - sh:path :hasTimePeriod . - -core-shape:epo-PlannedProcurementPart-epo-foreseesProcurementObject a sh:PropertyShape ; - sh:class :ProcurementObject ; - sh:description """Relation indicating the instance of a Procurement Object that is planned. - -Additional Information: -The properties of the Procurement Object that is foreseen should be read as foreseen properties. -For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. -For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy.""" ; - sh:maxCount 1 ; - sh:name "Foresees procurement object" ; - sh:path :foreseesProcurementObject ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-PlannedProcurementPart-epo-foreseesTechnique a sh:PropertyShape ; - sh:class :Technique ; - sh:name "Foresees technique" ; - sh:path :foreseesTechnique ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-PlannedProcurementPart-epo-hasPlannedDuration a sh:PropertyShape ; - sh:class :Duration ; - sh:maxCount 1 ; - sh:name "Has planned duration" ; - sh:path :hasPlannedDuration ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-PlannedProcurementPart-epo-hasPlannedPeriod a sh:PropertyShape ; - sh:class :Period ; - sh:maxCount 1 ; - sh:name "Has planned period" ; - sh:path :hasPlannedPeriod ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Prize-epo-hasPrizeRank a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The position of the prize (e.g. first place, second place) in a design contest list of prizes. - -WG Approval 29/08/2019 -""" ; - sh:maxCount 1 ; - sh:name "Has prize rank" ; - sh:path :hasPrizeRank . - -core-shape:epo-Prize-epo-hasPrizeValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. - -Additional Information: -This corresponds to BT-644 in eForms. - -WG Approval 29/08/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has prize value" ; - sh:path :hasPrizeValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Procedure-epo-hasAcceleratedProcedureJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The reasons why the procedure is accelerated. - -Additional Information: -A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. - -WG Approval 09/06/2020 - -""" ; - sh:name "Has accelerated procedure justification" ; - sh:path :hasAcceleratedProcedureJustification . - -core-shape:epo-Procedure-epo-hasMainFeature a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Main features of the procedure and information about where the full rules for the procedure can be found. - -Additional Information: -This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds.""" ; - sh:name "Has main feature" ; - sh:path :hasMainFeature . - -core-shape:epo-Procedure-epo-hasProcedureType a sh:PropertyShape ; - sh:class at-voc:procurement-procedure-type ; - sh:description """Identification of the Procedure used. - -WG Approval 09/06/2020 -""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has procedure type" ; - sh:path :hasProcedureType . - -core-shape:epo-Procedure-epo-hasProcurementScopeDividedIntoLot a sh:PropertyShape ; - sh:class :Lot ; - sh:minCount 1 ; - sh:name "Has procurement scope divided into lot" ; - sh:path :hasProcurementScopeDividedIntoLot ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Procedure-epo-involvesBuyer a sh:PropertyShape ; - sh:class :Buyer ; - sh:name "Involves buyer" ; - sh:path :involvesBuyer ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Procedure-epo-isAccelerated a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Statement about the fact that the procedure will be reduced due to a state of urgency. - -Additional Information - -This modifies the time limit for the receipt of requests to participate or the receipt of tenders. - -WG Approval 20/08/2019 -""" ; - sh:maxCount 1 ; - sh:name "Is accelerated" ; - sh:path :isAccelerated . - -core-shape:epo-Procedure-epo-isDesignContest a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """A competition which enables the buyer to acquire a plan or design via a jury. - -Additional information: -Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering - -The contest may include or not the award of prizes; - -WG approval 04-02-2021 """ ; - sh:maxCount 1 ; - sh:name "Is design contest" ; - sh:path :isDesignContest . - -core-shape:epo-Procedure-epo-isExecutedByProcurementServiceProvider a sh:PropertyShape ; - sh:class :ProcurementServiceProvider ; - sh:maxCount 1 ; - sh:name "Is executed by procurement service provider" ; - sh:path :isExecutedByProcurementServiceProvider ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Procedure-epo-isJointProcurement a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Multiple buyers procure together within the same procedure. - -Addition Information: -In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . """ ; - sh:maxCount 1 ; - sh:name "Is joint procurement" ; - sh:path :isJointProcurement . - -core-shape:epo-Procedure-epo-isResponsibilityOfBuyer a sh:PropertyShape ; - sh:class :Buyer ; - sh:description """ -""" ; - sh:name "Is responsibility of buyer" ; - sh:path :isResponsibilityOfBuyer ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Procedure-epo-isSubjectToProcedureSpecificTerm a sh:PropertyShape ; - sh:class :ProcedureSpecificTerm ; - sh:minCount 1 ; - sh:name "Is subject to procedure specific term" ; - sh:path :isSubjectToProcedureSpecificTerm ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Procedure-epo-specifiesProcurementCriteriaSummary a sh:PropertyShape ; - sh:class :ProcurementCriteriaSummary ; - sh:name "Specifies procurement criteria summary" ; - sh:path :specifiesProcurementCriteriaSummary ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcedureTerm-epo-definesBudgetProvider a sh:PropertyShape ; - sh:class :BudgetProvider ; - sh:description "Relation indicating a ProcedureTerm has a BudgetProvider." ; - sh:maxCount 1 ; - sh:name "Defines budget provider" ; - sh:path :definesBudgetProvider ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcedureTerm-epo-definesInformationProvider a sh:PropertyShape ; - sh:class :AuxiliaryParty ; - sh:description "Relation indicating a ProcedureTerm has an information provider." ; - sh:name "Defines information provider" ; - sh:path :definesInformationProvider ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcedureTerm-epo-definesLotGroup a sh:PropertyShape ; - sh:class :LotGroup ; - sh:description "Relation indicating a ProcedureTerm has a LotGroup." ; - sh:name "Defines lot group" ; - sh:path :definesLotGroup ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcedureTerm-epo-definesMediator a sh:PropertyShape ; - sh:class :Mediator ; - sh:description "Relation indicating a ProcedureTerm has a Mediator." ; - sh:maxCount 1 ; - sh:name "Defines mediator" ; - sh:path :definesMediator ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcedureTerm-epo-hasCrossBorderLaw a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The applicable law when buyers from different countries procure together within one procurement procedure. - -Additional Information: -This corresponds in eForms to BT-09 Cross Border Law.""" ; - sh:name "Has cross border law" ; - sh:path :hasCrossBorderLaw . - -core-shape:epo-ProcedureTerm-epo-hasGroupLotEvaluationMethod a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Description of how lots and groups of lots are evaluated against one another in the procedure. - - - -""" ; - sh:name "Has group lot evaluation method" ; - sh:path :hasGroupLotEvaluationMethod . - -core-shape:epo-ProcedureTerm-epo-hasLotAwardCombination a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The contracting authority reserves the right to award contracts combining lots or groups of lots. - -Additional Information: -This property contains information about the Lots concerned. -This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 23/08/2022 -""" ; - sh:maxCount 1 ; - sh:name "Has lot award combination" ; - sh:path :hasLotAwardCombination . - -core-shape:epo-ProcedureTerm-epo-hasMaximumLotSubmissionAllowed a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The total number of lots for which one Tenderer can submit Tenders. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 12/12/2018 - -""" ; - sh:maxCount 1 ; - sh:name "Has maximum lot submission allowed" ; - sh:path :hasMaximumLotSubmissionAllowed . - -core-shape:epo-ProcedureTerm-epo-hasMaximumNumberOfLotsToBeAwarded a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The maximum number of lots for which contract(s) can be awarded to one tenderer. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG Approval 22/08/2019""" ; - sh:maxCount 1 ; - sh:name "Has maximum number of lots to be awarded" ; - sh:path :hasMaximumNumberOfLotsToBeAwarded . - -core-shape:epo-ProcedureTerm-epo-hasNationalProcedureRules a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:name "Has national procedure rules" ; - sh:path :hasNationalProcedureRules . - -core-shape:epo-ProcedureTerm-epo-isAwardedByCPB a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Procedure is awarded by a Central Purchasing Body. - -""" ; - sh:maxCount 1 ; - sh:name "Is awarded by c p b" ; - sh:path :isAwardedByCPB . - -core-shape:epo-ProcedureTerm-epo-isOneLotOnlyAllowed a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Indicates whether tenders may be submitted for only one Lot. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). - -WG approval 23/08/2022 - -""" ; - sh:maxCount 1 ; - sh:name "Is one lot only allowed" ; - sh:path :isOneLotOnlyAllowed . - -core-shape:epo-ProcedureTerm-epo-isSubmissionForAllLotsAllowed a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Indicates whether tenders may be submitted for all Lots. - -Additional information: -This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) - -WG approval 23/08/2022 -""" ; - sh:maxCount 1 ; - sh:name "Is submission for all lots allowed" ; - sh:path :isSubmissionForAllLotsAllowed . - -core-shape:epo-ProcessPlanningTerm-epo-hasAwardDateScheduled a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """Planned date for the award decision. -WG Approval 09/11/2021""" ; - sh:maxCount 1 ; - sh:name "Has award date scheduled" ; - sh:path :hasAwardDateScheduled . - -core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedContractNoticePublicationDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """Foreseen date for publication of Contract Notice. - -Additional information: -This corresponds in eForms BT-127 Future Notice. - -""" ; - sh:maxCount 1 ; - sh:name "Has estimated contract notice publication date" ; - sh:path :hasEstimatedContractNoticePublicationDate . - -core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedTenderInvitationDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The planned date for the dispatch of the invitations to submit tenders. -WG Approval 09/11/2021""" ; - sh:maxCount 1 ; - sh:name "Has estimated tender invitation date" ; - sh:path :hasEstimatedTenderInvitationDate . - -core-shape:epo-ProcurementCriteriaSummary-epo-indicatesPerformingStaffInformationRequirement a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Indicates performing staff information requirement" ; - sh:path :indicatesPerformingStaffInformationRequirement . - -core-shape:epo-ProcurementCriterion-epo-hasConstraint a sh:PropertyShape ; - sh:class cccev:Constraint ; - sh:name "Has constraint" ; - sh:path :hasConstraint ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementCriterion-epo-hasFormula a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. - -Additional Information: -This corresponds in eForms to BT-543.""" ; - sh:maxCount 1 ; - sh:name "Has formula" ; - sh:path :hasFormula . - -core-shape:epo-ProcurementCriterion-epo-hasPerformingStaffQualificationInformation a sh:PropertyShape ; - sh:class at-voc:requirement-stage ; - sh:description """Explanation as to if and/or when information of the persons to carry out the contract is to be provided. -WG Approval 09/11/2021 - -The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage -""" ; - sh:name "Has performing staff qualification information" ; - sh:path :hasPerformingStaffQualificationInformation . - -core-shape:epo-ProcurementCriterion-epo-hasWeightValueType a sh:PropertyShape ; - sh:class at-voc:number-weight ; - sh:description """No definition. Waiting on CCCEV alignment. - - -""" ; - sh:maxCount 1 ; - sh:name "Has weight value type" ; - sh:path :hasWeightValueType . - -core-shape:epo-ProcurementElement-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description """A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 -""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementElement-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-ProcurementElement-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A name given to the resource. - -WG approval 30/05/2023""" ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:epo-ProcurementElement-epo-hasEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """A forecast of the value of the procurement before competition. - -Additional Information: -Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. -The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. -See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. - -In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. - -This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). - -WG Approval 05/12/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has estimated value" ; - sh:path :hasEstimatedValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementElement-epo-hasInternalIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:name "Has internal identifier" ; - sh:path :hasInternalIdentifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementElement-epo-usesChannel a sh:PropertyShape ; - sh:class cccev:Channel ; - sh:name "Uses channel" ; - sh:path :usesChannel ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementObject-epo-foreseesConcession a sh:PropertyShape ; - sh:class :ConcessionEstimate ; - sh:maxCount 1 ; - sh:name "Foresees concession" ; - sh:path :foreseesConcession ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementObject-epo-foreseesContractSpecificTerm a sh:PropertyShape ; - sh:class :ContractSpecificTerm ; - sh:name "Foresees contract specific term" ; - sh:path :foreseesContractSpecificTerm ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementObject-epo-fulfillsStrategicProcurement a sh:PropertyShape ; - sh:class :StrategicProcurement ; - sh:name "Fulfills strategic procurement" ; - sh:path :fulfillsStrategicProcurement ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementObject-epo-hasAdditionalInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Supplementary data about the instance of the concept. - -WG Approval 15/10/2019""" ; - sh:name "Has additional information" ; - sh:path :hasAdditionalInformation . - -core-shape:epo-ProcurementObject-epo-hasLegalBasis a sh:PropertyShape ; - sh:class at-voc:legal-basis ; - sh:description """The legal basis under which the procurement procedure takes place. - -Additional Information: -For example European Directives or Regulations, national law - -WG 09/11/2021 - -The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis -""" ; - sh:name "Has legal basis" ; - sh:path :hasLegalBasis . - -core-shape:epo-ProcurementObject-epo-hasLegalBasisDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:name "Has legal basis description" ; - sh:path :hasLegalBasisDescription . - -core-shape:epo-ProcurementObject-epo-hasLegalRegime a sh:PropertyShape ; - sh:class :legal-regime ; - sh:name "Has legal regime" ; - sh:path :hasLegalRegime . - -core-shape:epo-ProcurementObject-epo-hasPurpose a sh:PropertyShape ; - sh:class :Purpose ; - sh:description "Relation indicating a procurement part has a puropse." ; - sh:maxCount 1 ; - sh:name "Has purpose" ; - sh:path :hasPurpose ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementObject-epo-hasRecurrenceDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Any additional information about the recurrence of the Procurement. - -Additional Information: -For example estimated timing of the Procedure. - -This corresponds in eForms to BT-95 Recurrence Description. - -(WG approval 2019-01-16) -""" ; - sh:maxCount 1 ; - sh:name "Has recurrence description" ; - sh:path :hasRecurrenceDescription . - -core-shape:epo-ProcurementObject-epo-isCoveredByGPA a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Specifies whether the Agreement on Government Procurement (GPA) applies. - -Additional information: -The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. - -This corresponds in the e Forms to BT-115 GPA Coverage. - -WG Approval 15/10/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Is covered by g p a" ; - sh:path :isCoveredByGPA . - -core-shape:epo-ProcurementObject-epo-isFundedBy a sh:PropertyShape ; - sh:class :Fund ; - sh:description """Funding is provided either completely or partially by a Fund. - -Additional information: -This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) -Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. - -""" ; - sh:name "Is funded by" ; - sh:path :isFundedBy ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementObject-epo-isRecurrent a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """The Procurement being notified is likely to be included in another procedure in the foreseeable future. - -Additional Information: - -For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. - -This corresponds in eForms to BT-94 Recurrence. - -WG Approval 12/05/2020 -""" ; - sh:maxCount 1 ; - sh:name "Is recurrent" ; - sh:path :isRecurrent . - -core-shape:epo-ProcurementObject-epo-isSMESuitable a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """The Lot is suitable for small and medium enterprises (SMEs). - -Additional Information - -This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. - -For example, number of employees and turnover are applicable to the definition of an SME. - -WG Approval 15/10/2019 -""" ; - sh:maxCount 1 ; - sh:name "Is s m e suitable" ; - sh:path :isSMESuitable . - -core-shape:epo-ProcurementObject-epo-isSubjectToTerm a sh:PropertyShape ; - sh:class :Term ; - sh:name "Is subject to term" ; - sh:path :isSubjectToTerm ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementObject-epo-isUsingEUFunds a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """The procurement foresees funding by the Union. - -Additional Information: -The funding may cover the whole procurement or part of the procurement. - -For example the European Structural and Investment Funds or grants awarded by the European Union. - -""" ; - sh:maxCount 1 ; - sh:name "Is using e u funds" ; - sh:path :isUsingEUFunds . - -core-shape:epo-ProcurementObject-epo-usesTechnique a sh:PropertyShape ; - sh:class :Technique ; - sh:name "Uses technique" ; - sh:path :usesTechnique ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementProcessInformation-epo-concernsLot a sh:PropertyShape ; - sh:class :Lot ; - sh:description "Relates to Lot." ; - sh:maxCount 1 ; - sh:name "Concerns lot" ; - sh:path :concernsLot ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementProcessInformation-epo-concernsProcedure a sh:PropertyShape ; - sh:class :Procedure ; - sh:description "Relates to Procedure." ; - sh:maxCount 1 ; - sh:name "Concerns procedure" ; - sh:path :concernsProcedure ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProcurementProcessInformation-epo-isCompetitionTerminated a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """No further contracts will be awarded in this procedure. - -Additional Information: -This can be instantiated in the post award phase. - -PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. - -This corresponds in eForms to BT-756 PIN Competition Termination.""" ; - sh:maxCount 1 ; - sh:name "Is competition terminated" ; - sh:path :isCompetitionTerminated . - -core-shape:epo-ProcurementProcessInformation-epo-isDPSTerminated a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """End of the Dynamic Purchase System (DPS). - -Additional Information: This property can be used in the contract award notice even if no contracts are awarded. - -WG Approval 22/11/2019 -""" ; - sh:maxCount 1 ; - sh:name "Is d p s terminated" ; - sh:path :isDPSTerminated . - -core-shape:epo-ProcurementProcessInformation-epo-isToBeRelaunched a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Indicator of whether the procurement object is to be relaunched. - -Additional information: -This can be instantiated in the post award phase. - -This corresponds in eForms to BT-634 Procurement Relaunch. - -WG Approval: 18/01/2022 -""" ; - sh:maxCount 1 ; - sh:name "Is to be relaunched" ; - sh:path :isToBeRelaunched . - -core-shape:epo-ProcurementServiceProvider-epo-actsOnBehalfOf a sh:PropertyShape ; - sh:class :Buyer ; - sh:description "Represents." ; - sh:minCount 1 ; - sh:name "Acts on behalf of" ; - sh:path :actsOnBehalfOf ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfession a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes profession" ; - sh:path :describesProfession . - -core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfessionRelevantLaw a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes profession relevant law" ; - sh:path :describesProfessionRelevantLaw . - -core-shape:epo-ProfessionalSuitabilitySummary-epo-hasServiceReservedToParticularProfession a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Has service reserved to particular profession" ; - sh:path :hasServiceReservedToParticularProfession . - -core-shape:epo-Project-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description """A unique identifier of the instance of the concept. - -Additional Information - -For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. - -WG Approval 12/11/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-PublicationProvision-epo-hasElementConfidentiality a sh:PropertyShape ; - sh:class :ElementConfidentialityDescription ; - sh:description "Relation indication that the publication provision applies to a given field of a document." ; - sh:minCount 1 ; - sh:name "Has element confidentiality" ; - sh:path :hasElementConfidentiality ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-PublicationProvision-epo-hasPreferredPublicationDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The date the buyer would like to have the record made publicly available. - -Additional Information: -This corresponds in eForms to BT-738 Notice Publication Date Preferred. - -WG Approval 12/05/2020""" ; - sh:maxCount 1 ; - sh:name "Has preferred publication date" ; - sh:path :hasPreferredPublicationDate . - -core-shape:epo-PurchaseContract-epo-resultsFromMiniCompetitionAwardDecision a sh:PropertyShape ; - sh:class :MiniCompetitionAwardDecision ; - sh:maxCount 1 ; - sh:name "Results from mini competition award decision" ; - sh:path :resultsFromMiniCompetitionAwardDecision ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Purpose-epo-hasAdditionalClassification a sh:PropertyShape ; - sh:class at-voc:cpv ; - sh:name "Has additional classification" ; - sh:path :hasAdditionalClassification . - -core-shape:epo-Purpose-epo-hasMainClassification a sh:PropertyShape ; - sh:class at-voc:cpv ; - sh:minCount 1 ; - sh:name "Has main classification" ; - sh:path :hasMainClassification . - -core-shape:epo-Purpose-epo-hasTotalQuantity a sh:PropertyShape ; - sh:class :Quantity ; - sh:description """The number of units required. - -Additional Information: -The quantity needs to go along with the unit. - - - -""" ; - sh:maxCount 1 ; - sh:name "Has total quantity" ; - sh:path :hasTotalQuantity ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-QualificationCriteriaSummary-epo-hasConditionVerificationMethod a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:name "Has condition verification method" ; - sh:path :hasConditionVerificationMethod . - -core-shape:epo-QualificationCriteriaSummary-epo-hasQualificationCondition a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:name "Has qualification condition" ; - sh:path :hasQualificationCondition . - -core-shape:epo-Quantity-epo-hasQuantityValue a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The numeric value of the quantity, including decimals." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has quantity value" ; - sh:path :hasQuantityValue . - -core-shape:epo-Quantity-epo-hasUnitCode a sh:PropertyShape ; - sh:class at-voc:measurement-unit ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has unit code" ; - sh:path :hasUnitCode . - -core-shape:epo-Quantity-epo-hasUnitDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A narrative explanation defining the units of items being counted - -Additional information: This could be for example individual items or pack or two. - -WG Approval 09/11/2021""" ; - sh:name "Has unit description" ; - sh:path :hasUnitDescription . - -core-shape:epo-ReviewDecision-epo-hasConfirmedIrregularityType a sh:PropertyShape ; - sh:class at-voc:irregularity-type ; - sh:description """Additional information: -This relation corresponds in eForms to BT-791 Review Irregularity Type""" ; - sh:name "Has confirmed irregularity type" ; - sh:path :hasConfirmedIrregularityType . - -core-shape:epo-ReviewDecision-epo-hasDecisionDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The date of the review decision. - -Additional information: -This attribute corresponds to the BT-787 Review Date in eForms. -""" ; - sh:maxCount 1 ; - sh:name "Has decision date" ; - sh:path :hasDecisionDate . - -core-shape:epo-ReviewDecision-epo-hasRemedyValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """Additional information: -This relation corresponds in eForms to BT-793 Review Remedy Value.""" ; - sh:maxCount 1 ; - sh:name "Has remedy value" ; - sh:path :hasRemedyValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ReviewDecision-epo-hasReviewDecisionType a sh:PropertyShape ; - sh:class at-voc:review-decision-type ; - sh:description """Additional information: -This relation corresponds in eForms to BT-790 Review Decision Type.""" ; - sh:name "Has review decision type" ; - sh:path :hasReviewDecisionType . - -core-shape:epo-ReviewDecision-epo-providesRulingOnRemedy a sh:PropertyShape ; - sh:class at-voc:remedy-type ; - sh:description "States the measures to be taken after a review procedure." ; - sh:name "Provides ruling on remedy" ; - sh:path :providesRulingOnRemedy . - -core-shape:epo-ReviewDecision-epo-resolvesReviewRequest a sh:PropertyShape ; - sh:class :ReviewRequest ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Resolves review request" ; - sh:path :resolvesReviewRequest ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ReviewIrregularitySummary-epo-hasIrregularityType a sh:PropertyShape ; - sh:class at-voc:irregularity-type ; - sh:description """Additional information: -This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has irregularity type" ; - sh:path :hasIrregularityType . - -core-shape:epo-ReviewIrregularitySummary-epo-hasReviewIrregularityCount a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The number of requests for a given irregularity. - -Additional information: -This attribute corresponds in eForms to BT-635 Buyer Review Requests Count.""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has review irregularity count" ; - sh:path :hasReviewIrregularityCount . - -core-shape:epo-ReviewObject-epo-hasElementReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """Reference to the class instance in the current notice. - -Additional information: -This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier.""" ; - sh:name "Has element reference" ; - sh:path :hasElementReference . - -core-shape:epo-ReviewObject-epo-hasReviewURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """The internet address of the documents concerning the review instance. - -Additional information: -This attribute corresponds in eForms to BT-794 Review URL. -""" ; - sh:maxCount 1 ; - sh:name "Has review u r l" ; - sh:path :hasReviewURL . - -core-shape:epo-ReviewObject-epo-refersToPreviousReview a sh:PropertyShape ; - sh:class :ReviewObject ; - sh:description """Additional information: -This relation corresponds in eForms to BT-785 "Review Previous Identifier".""" ; - sh:maxCount 1 ; - sh:name "Refers to previous review" ; - sh:path :refersToPreviousReview ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ReviewRequest-epo-hasAllegedIrregularityType a sh:PropertyShape ; - sh:class at-voc:irregularity-type ; - sh:description """Additional information: -This relation corresponds in eForms to BT-791 Review Irregularity Type -""" ; - sh:minCount 1 ; - sh:name "Has alleged irregularity type" ; - sh:path :hasAllegedIrregularityType . - -core-shape:epo-ReviewRequest-epo-hasNumberOfReviewRequests a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The number of requests the buyer received to review any of its decisions." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has number of review requests" ; - sh:path :hasNumberOfReviewRequests . - -core-shape:epo-ReviewRequest-epo-hasRequestDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The date when the review request was submitted. - -Additional information: -This attribute corresponds to the BT-787 Review Date in eForms. -""" ; - sh:maxCount 1 ; - sh:name "Has request date" ; - sh:path :hasRequestDate . - -core-shape:epo-ReviewRequest-epo-hasReviewRequestFee a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """Additional information: -This relation corresponds in eForms to BT-795 Review Request Fee.""" ; - sh:maxCount 1 ; - sh:name "Has review request fee" ; - sh:path :hasReviewRequestFee ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ReviewRequest-epo-hasWithdrawalDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description """The date and time when the request for review was withdrawn. - -Additional information: -This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date.""" ; - sh:maxCount 1 ; - sh:name "Has withdrawal date" ; - sh:path :hasWithdrawalDate . - -core-shape:epo-ReviewRequest-epo-hasWithdrawalReason a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The explanation for withdrawing the request for review. - -Additional information: -This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons""" ; - sh:maxCount 1 ; - sh:name "Has withdrawal reason" ; - sh:path :hasWithdrawalReason . - -core-shape:epo-ReviewRequest-epo-isWithdrawn a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """The review request was withdrawn. - -Additional information: -This attribute corresponds in eForms to BT-796 Review Request Withdrawn.""" ; - sh:maxCount 1 ; - sh:name "Is withdrawn" ; - sh:path :isWithdrawn . - -core-shape:epo-ReviewRequest-epo-requestsRemedyType a sh:PropertyShape ; - sh:class at-voc:remedy-type ; - sh:description """Additional information: -This relation corresponds in eForms to BT-792 Review Remedy Type""" ; - sh:name "Requests remedy type" ; - sh:path :requestsRemedyType . - -core-shape:epo-ReviewRequestSummary-epo-concernsReviewSummaryForLot a sh:PropertyShape ; - sh:class :Lot ; - sh:description """Relates to Lot review summary. - -Additional information: -This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier.""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Concerns review summary for lot" ; - sh:path :concernsReviewSummaryForLot ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ReviewRequestSummary-epo-hasReviewIrregularitySummary a sh:PropertyShape ; - sh:class :ReviewIrregularitySummary ; - sh:description """Additional information: -This relation corresponds in eForms to BG-613 Buyer Review Requests""" ; - sh:name "Has review irregularity summary" ; - sh:path :hasReviewIrregularitySummary ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-ReviewRequestSummary-epo-hasTotalNumberOfComplainants a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. - -Additional information: -This attribute corresponds in eForms to BT-712 Buyer Review Complainants - -WG Approval 11/04/2019""" ; - sh:maxCount 1 ; - sh:name "Has total number of complainants" ; - sh:path :hasTotalNumberOfComplainants . - -core-shape:epo-Reviewer-epo-hasReviewBodyType a sh:PropertyShape ; - sh:class at-voc:review-body-type ; - sh:name "Has review body type" ; - sh:path :hasReviewBodyType . - -core-shape:epo-SecurityClearanceTerm-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-SecurityClearanceTerm-epo-hasDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description """The deadline by which the security clearance must be submitted to the buyer. - -WG Approval 12/09/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has deadline" ; - sh:path :hasDeadline . - -core-shape:epo-SecurityClearanceTerm-epo-isSecurityClearanceRequired a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Is security clearance required" ; - sh:path :isSecurityClearanceRequired . - -core-shape:epo-SelectedCandidateList-epo-containsCandidate a sh:PropertyShape ; - sh:class :Candidate ; - sh:name "Contains candidate" ; - sh:path :containsCandidate ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-SelectedCandidateList-epo-hasStartDate a sh:PropertyShape ; - sh:class :Period ; - sh:maxCount 1 ; - sh:name "Has start date" ; - sh:path :hasStartDate ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-SelectionCriteriaSummary-epo-describesMinimumLevelOfStandards a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes minimum level of standards" ; - sh:path :describesMinimumLevelOfStandards . - -core-shape:epo-SelectionCriteriaSummary-epo-hasSelectionCriteriaStatedInProcurementDocuments a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Has selection criteria stated in procurement documents" ; - sh:path :hasSelectionCriteriaStatedInProcurementDocuments . - -core-shape:epo-SelectionCriterion-epo-hasSelectionCriteriaUsage a sh:PropertyShape ; - sh:class at-voc:usage ; - sh:description """ -Additional Information: -This corresponds in eForms to BT-748 Selection Criteria Used.""" ; - sh:maxCount 1 ; - sh:name "Has selection criteria usage" ; - sh:path :hasSelectionCriteriaUsage . - -core-shape:epo-SelectionCriterion-epo-hasSelectionCriterionType a sh:PropertyShape ; - sh:class at-voc:selection-criterion ; - sh:description """The classification of the selection criteria. - - -Additional Information: - -This corresponds in eForms to BT-747 Selection Criteria Type. - -WG Approval 09/11/2021 -""" ; - sh:maxCount 1 ; - sh:name "Has selection criterion type" ; - sh:path :hasSelectionCriterionType . - -core-shape:epo-SelectionCriterion-epo-isUsedForCandidateRestriction a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. - -Additional Information: -This property is only used if a maximum number of candidates was foreseen in the procedure. -This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite""" ; - sh:maxCount 1 ; - sh:name "Is used for candidate restriction" ; - sh:path :isUsedForCandidateRestriction . - -core-shape:epo-SocialProcurement-epo-fulfillsRequirement a sh:PropertyShape ; - sh:class at-voc:social-objective ; - sh:description """The requirement to which the concept meets. -WG Approval 09/11/2021 - -""" ; - sh:minCount 1 ; - sh:name "Fulfills requirement" ; - sh:path :fulfillsRequirement . - -core-shape:epo-SpecificDuration-time-numericDuration a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "Value of a temporal extent expressed as a number." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Numeric duration" ; - sh:path time:numericDuration . - -core-shape:epo-SpecificDuration-time-unitType a sh:PropertyShape ; - sh:class time:TemporalUnit ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Unit type" ; - sh:path time:unitType . - -core-shape:epo-StrategicProcurement-epo-hasNonAccessibilityCriterionJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Reason for not applying accessibility criteria. - -Additional information: -This corresponds in eForma to BT-755 Accessibility Justification. - -WG Approval 05/03/2019""" ; - sh:name "Has non accessibility criterion justification" ; - sh:path :hasNonAccessibilityCriterionJustification . - -core-shape:epo-StrategicProcurement-epo-hasStrategicProcurementDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Self-explanatory text about a concept. -""" ; - sh:name "Has strategic procurement description" ; - sh:path :hasStrategicProcurementDescription . - -core-shape:epo-StrategicProcurement-epo-includesAccessibilityCriterion a sh:PropertyShape ; - sh:class at-voc:accessibility ; - sh:description """Explanation as to whether accessibility Criterion are used or not. -WG Approval 09/11/2021 - -""" ; - sh:name "Includes accessibility criterion" ; - sh:path :includesAccessibilityCriterion . - -core-shape:epo-SubcontractTerm-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-SubcontractTerm-epo-hasMaximumShare a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """The maximum proportion of something to be distributed. - -Additional Information: -In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. - -WG Approval 17/09/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has maximum share" ; - sh:path :hasMaximumShare . - -core-shape:epo-SubcontractTerm-epo-hasMinimumShare a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """The minimum proportion of something to be distributed. - -Additional Information: -In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. - -WG Approval 17/09/2019""" ; - sh:maxCount 1 ; - sh:name "Has minimum share" ; - sh:path :hasMinimumShare . - -core-shape:epo-SubcontractTerm-epo-hasMinimumSubcontractorsProposedObligation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """The minimum percentage of the contract value that the contractor must subcontract. - -Additional information: -This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - -WG Approval 09/11/2021""" ; - sh:maxCount 1 ; - sh:name "Has minimum subcontractors proposed obligation" ; - sh:path :hasMinimumSubcontractorsProposedObligation . - -core-shape:epo-SubcontractTerm-epo-hasSubcontractingInvolved a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """List of Subcontractors and the subject matter they cover are required. - -Additional Information: -The tenderer will ned to supply this information in the tender. - -WG Approval 28/02/2019""" ; - sh:maxCount 1 ; - sh:name "Has subcontracting involved" ; - sh:path :hasSubcontractingInvolved . - -core-shape:epo-SubcontractTerm-epo-hasSubcontractingObligation a sh:PropertyShape ; - sh:class at-voc:subcontracting-obligation ; - sh:description """The requirement the tender must meet with regard to subcontracting parts of the contract. -WG Approval 09/11/2021 - -""" ; - sh:name "Has subcontracting obligation" ; - sh:path :hasSubcontractingObligation . - -core-shape:epo-SubcontractTerm-epo-hasSubcontractorsProposedAboveObligation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """The maximum percentage of the contract value that the contractor must subcontract. - -Additional information: -This is used for the competitive procedure described in Title III of Directive 2009/81/EC. - -WG Approval 09/11/2021""" ; - sh:maxCount 1 ; - sh:name "Has subcontractors proposed above obligation" ; - sh:path :hasSubcontractorsProposedAboveObligation . - -core-shape:epo-SubcontractingEstimate-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-SubcontractingEstimate-epo-hasEstimatedPercentage a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description """The estimated proportion foreseen to be subcontracted. - -WG Approval 07/01/2020""" ; - sh:maxCount 1 ; - sh:name "Has estimated percentage" ; - sh:path :hasEstimatedPercentage . - -core-shape:epo-SubcontractingEstimate-epo-hasSubcontractingEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The estimated value of a single subcontract. - -This relates to BT-553 in eForms. - -WG Approval 01/09/2020 - -""" ; - sh:maxCount 1 ; - sh:name "Has subcontracting estimated value" ; - sh:path :hasSubcontractingEstimatedValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-SubcontractingEstimate-epo-hasSubjectMatter a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Description of the share of the contract that is to be subcontracted. - -Additional infromation: -This can be an aggregate of several subcontracts. - -WG Approval 09/11/2021""" ; - sh:name "Has subject matter" ; - sh:path :hasSubjectMatter . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasAbnormallyLowTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. - -Additional Information -The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. - -WG Approval 28/07/2020 - -""" ; - sh:maxCount 1 ; - sh:name "Has abnormally low tenders" ; - sh:path :hasAbnormallyLowTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasEEAReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. - -WG Approval 12/12/2019""" ; - sh:maxCount 1 ; - sh:name "Has e e a received tenders" ; - sh:path :hasEEAReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasEUReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The amount of tenders received from economic operators in other EU countries other than the country of the buyer." ; - sh:maxCount 1 ; - sh:name "Has e u received tenders" ; - sh:path :hasEUReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasElectronicTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """Electronic Tender Lots received. - -WG Approval 28/07/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has electronic tenders" ; - sh:path :hasElectronicTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasEstimatedTotalSubcontracts a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The estimated amount of work to be subcontracted in the contract resulting from the lot. -WG Approval 09/11/2021""" ; - sh:maxCount 1 ; - sh:name "Has estimated total subcontracts" ; - sh:path :hasEstimatedTotalSubcontracts . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasHighestReceivedTenderValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """Amount of the Tender with the highest value. - -Additional Information -The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. - - -WG Approval 12/12/2019 - - -""" ; - sh:maxCount 1 ; - sh:name "Has highest received tender value" ; - sh:path :hasHighestReceivedTenderValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasInadmissibleTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. - -Additional Information: -Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. - -WG Approval 12/12/2019""" ; - sh:maxCount 1 ; - sh:name "Has inadmissible tenders" ; - sh:path :hasInadmissibleTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasLowestReceivedTenderValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """Amount of the Tender with the lowest value. - -Additional Information -The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. - -WG Approval 12/12/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has lowest received tender value" ; - sh:path :hasLowestReceivedTenderValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasMediumTenderPerLots a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """Tenders from medium-sized enterprise. - -Additional Information: - -See Commission Recommendation 2003/361/EC. -""" ; - sh:maxCount 1 ; - sh:name "Has medium tender per lots" ; - sh:path :hasMediumTenderPerLots . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEEAReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The amount of tenders received from economic operators in non-EEA countries. - -WG Approval 12/12/2019 15:20:36""" ; - sh:maxCount 1 ; - sh:name "Has non e e a received tenders" ; - sh:path :hasNonEEAReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEUReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The amount of tenders received from economic operators in non-EU countries. -""" ; - sh:maxCount 1 ; - sh:name "Has non e u received tenders" ; - sh:path :hasNonEUReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasNumberOfTenderersInvited a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """Number of economic operators invited to tender. - -Additional Information -This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. - -WG Approval 01/12/2020 - -""" ; - sh:maxCount 1 ; - sh:name "Has number of tenderers invited" ; - sh:path :hasNumberOfTenderersInvited . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasOtherCountriesReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:maxCount 1 ; - sh:name "Has other countries received tenders" ; - sh:path :hasOtherCountriesReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedMicroTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The amount of tenders received from a micro enterprise. - -Additional Information: - -See Commission Recommendation 2003/361/EC.""" ; - sh:maxCount 1 ; - sh:name "Has received micro tenders" ; - sh:path :hasReceivedMicroTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedParticipationRequests a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The amount of applications to participate from economic operators. - -WG Approval 12/12/2019""" ; - sh:maxCount 1 ; - sh:name "Has received participation requests" ; - sh:path :hasReceivedParticipationRequests . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSmallTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """Tenders from small enterprise. - -Additional Information: - -See Commission Recommendation 2003/361/EC. - -""" ; - sh:maxCount 1 ; - sh:name "Has received small tenders" ; - sh:path :hasReceivedSmallTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSubmissionType a sh:PropertyShape ; - sh:class at-voc:received-submission-type ; - sh:maxCount 1 ; - sh:name "Has received submission type" ; - sh:path :hasReceivedSubmissionType . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The total amount of tenders received. - -WG Approval 12/12/2019""" ; - sh:maxCount 1 ; - sh:name "Has received tenders" ; - sh:path :hasReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasSMEReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The amount of tenders received from micro, small and medium-sized enterprises. - -Additional Information: - -See Commission Recommendation 2003/361/EC. -The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. - -WG Approval 05/03/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has s m e received tenders" ; - sh:path :hasSMEReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasUnverifiedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). - -WG Approval 28/07/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has unverified tenders" ; - sh:path :hasUnverifiedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-summarisesInformationForAwardDecision a sh:PropertyShape ; - sh:class :AwardDecision ; - sh:description """Relates to submission for the given competition, either at Lot level or Mini-Competition level. - -WG approval 30/05/2023""" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Summarises information for award decision" ; - sh:path :summarisesInformationForAwardDecision ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-SubmissionTerm-epo-definesTenderProcessor a sh:PropertyShape ; - sh:class :TenderProcessor ; - sh:description "Relation indicating a SubmissionTerm has a TenderProcessor." ; - sh:maxCount 1 ; - sh:name "Defines tender processor" ; - sh:path :definesTenderProcessor ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-SubmissionTerm-epo-definesTenderReceiver a sh:PropertyShape ; - sh:class :TenderReceiver ; - sh:description "Relation indicating a SubmissionTerm has a TenderReceiver." ; - sh:maxCount 1 ; - sh:name "Defines tender receiver" ; - sh:path :definesTenderReceiver ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-SubmissionTerm-epo-hasEAuctionURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """The internet address of the electronic auction. - -Additional Information: - -This corresponds in eForms to BT-123 Electronic Auction URL.""" ; - sh:maxCount 1 ; - sh:name "Has e auction u r l" ; - sh:path :hasEAuctionURL . - -core-shape:epo-SubmissionTerm-epo-hasECataloguePermission a sh:PropertyShape ; - sh:class at-voc:permission ; - sh:description """The extent to which electronic catalogues may be used in tenders. - -WG Approval 03/10/2019 -""" ; - sh:maxCount 1 ; - sh:name "Has e catalogue permission" ; - sh:path :hasECataloguePermission . - -core-shape:epo-SubmissionTerm-epo-hasESubmissionPermission a sh:PropertyShape ; - sh:class at-voc:permission ; - sh:description """The requirements as to what extent electronic submission is allowed. - -WG Approval 03/10/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Has e submission permission" ; - sh:path :hasESubmissionPermission . - -core-shape:epo-SubmissionTerm-epo-hasGuaranteeDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Information on the financial commitment required from the economic operator. - -Additional Information: -1. This information may include the amount and the way of delivering of the guarantee -2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. -3. Usual modalities are bonds, cheques, loans, other. - -WG Approval 21/07/20 -""" ; - sh:name "Has guarantee description" ; - sh:path :hasGuaranteeDescription . - -core-shape:epo-SubmissionTerm-epo-hasLanguage a sh:PropertyShape ; - sh:class at-voc:language ; - sh:description """Language in which the submitted information is to be expressed. - -WG Approval 21/07/2020 - -""" ; - sh:name "Has language" ; - sh:path :hasLanguage . - -core-shape:epo-SubmissionTerm-epo-hasLateSubmissionInformationDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A narrative text explaining the content of the economic operator information that can be submitted late. - -Additional Information -This does not apply to requests for clarifications. -""" ; - sh:name "Has late submission information description" ; - sh:path :hasLateSubmissionInformationDescription . - -core-shape:epo-SubmissionTerm-epo-hasLateSubmissionPermission a sh:PropertyShape ; - sh:class at-voc:missing-info-submission ; - sh:description """Whether economic operator-related information can be supplemented even after the submission deadline. - -Additional Information -This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. - -WG Approval 21/07/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has late submission permission" ; - sh:path :hasLateSubmissionPermission . - -core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Textual explanation of how non-electronic information is to be presented. - -WG Approval 21/07/2020 - -""" ; - sh:name "Has non electronic submission description" ; - sh:path :hasNonElectronicSubmissionDescription . - -core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionJustification a sh:PropertyShape ; - sh:class at-voc:communication-justification ; - sh:description """ -Reason for not accepting electronic information. - -WG Approval 21/07/2020 -""" ; - sh:name "Has non electronic submission justification" ; - sh:path :hasNonElectronicSubmissionJustification . - -core-shape:epo-SubmissionTerm-epo-hasReceiptDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description """The time limit for receiving submissions. - -Additional Information -This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. -This attribute should be used for standard forms mappings. - -WG Approval 21/07/2020 -""" ; - sh:maxCount 1 ; - sh:name "Has receipt deadline" ; - sh:path :hasReceiptDeadline . - -core-shape:epo-SubmissionTerm-epo-hasReceiptExpressionDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description """Time limit for receipt of expressions of interest. - -Pending of review by the WG - -""" ; - sh:maxCount 1 ; - sh:name "Has receipt expression deadline" ; - sh:path :hasReceiptExpressionDeadline . - -core-shape:epo-SubmissionTerm-epo-hasReceiptParticipationRequestDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:maxCount 1 ; - sh:name "Has receipt participation request deadline" ; - sh:path :hasReceiptParticipationRequestDeadline . - -core-shape:epo-SubmissionTerm-epo-hasReceiptPreliminaryMarketConsultationDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:maxCount 1 ; - sh:name "Has receipt preliminary market consultation deadline" ; - sh:path :hasReceiptPreliminaryMarketConsultationDeadline . - -core-shape:epo-SubmissionTerm-epo-hasReceiptTenderDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:maxCount 1 ; - sh:name "Has receipt tender deadline" ; - sh:path :hasReceiptTenderDeadline . - -core-shape:epo-SubmissionTerm-epo-hasSubmissionURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """ -Additional Information: -This corresponds to the eForms BT-18 Submission URL. - -This corresponds in eForms to BT-509 Organisation eDelivery Gateway.""" ; - sh:name "Has submission u r l" ; - sh:path :hasSubmissionURL . - -core-shape:epo-SubmissionTerm-epo-hasTenderSubcontractingInformation a sh:PropertyShape ; - sh:class at-voc:subcontracting-indication ; - sh:description """The information about subcontracting that must be indicated in the tender. - -WG Approval 10/10/2019 - -""" ; - sh:name "Has tender subcontracting information" ; - sh:path :hasTenderSubcontractingInformation . - -core-shape:epo-SubmissionTerm-epo-hasTenderValidityPeriod a sh:PropertyShape ; - sh:class :Period ; - sh:description """The relation indicating until when a tender instance is applicable. -""" ; - sh:maxCount 1 ; - sh:name "Has tender validity period" ; - sh:path :hasTenderValidityPeriod ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-SubmissionTerm-epo-hasVariantPermission a sh:PropertyShape ; - sh:class at-voc:permission ; - sh:description """The obligation or possibility for tenderers to submit variants or not. - -Additional Information: - -Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. - -eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. - -Additional Information: - -Further conditions for submitting variant tenders are in the procurement documents. -""" ; - sh:maxCount 1 ; - sh:name "Has variant permission" ; - sh:path :hasVariantPermission . - -core-shape:epo-SubmissionTerm-epo-isAdvancedElectronicSignatureRequired a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. - - - -The submitted information is required to be signed electronically. - -Additional Information: - -Signature can be defined as "data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. -For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. - -WG Approval 21/07/2020 -""" ; - sh:maxCount 1 ; - sh:name "Is advanced electronic signature required" ; - sh:path :isAdvancedElectronicSignatureRequired . - -core-shape:epo-SubmissionTerm-epo-isGuaranteeRequired a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """The submitted information must include a financial commitment to be used in case of default. - -Additional Information: -See the additional information provided in the definition of the 'Guarantee Description' element. - -WG Approval 21/07/20 - -""" ; - sh:maxCount 1 ; - sh:name "Is guarantee required" ; - sh:path :isGuaranteeRequired . - -core-shape:epo-SubmissionTerm-epo-isMultipleTenderSubmissionAllowed a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Tenderers may submit more than one competing tenders. - -WG Approval 10/10/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Is multiple tender submission allowed" ; - sh:path :isMultipleTenderSubmissionAllowed . - -core-shape:epo-System-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-System-epo-isOwnedByAgent a sh:PropertyShape ; - sh:class foaf:Agent ; - sh:maxCount 1 ; - sh:name "Is owned by agent" ; - sh:path :isOwnedByAgent ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Technique-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """An account of the resource. - -Additional Information: -Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. - -WG Approval 30/05/2023""" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-Technique-epo-hasUsage a sh:PropertyShape ; - sh:class at-voc:usage ; - sh:description """The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage -""" ; - sh:maxCount 1 ; - sh:name "Has usage" ; - sh:path :hasUsage . - -core-shape:epo-Technique-epo-hasValidityPeriod a sh:PropertyShape ; - sh:class :Period ; - sh:description """The relation indicating until when a given instance of a concept is applicable. - -WG approval 30/05/2023 -""" ; - sh:maxCount 1 ; - sh:name "Has validity period" ; - sh:path :hasValidityPeriod ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Tender-epo-foreseesConcession a sh:PropertyShape ; - sh:class :ConcessionEstimate ; - sh:maxCount 1 ; - sh:name "Foresees concession" ; - sh:path :foreseesConcession ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Tender-epo-foreseesSubcontracting a sh:PropertyShape ; - sh:class :SubcontractingEstimate ; - sh:name "Foresees subcontracting" ; - sh:path :foreseesSubcontracting ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Tender-epo-hasElectronicSubmission a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Transmission of tenders is possible by electronic means of communication. " ; - sh:maxCount 1 ; - sh:name "Has electronic submission" ; - sh:path :hasElectronicSubmission . - -core-shape:epo-Tender-epo-hasFinancialOfferValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description """The value offered by the Tenderer for a Lot. - -Additional Information: -This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. - -This corresponds to BT-720 in eForms.""" ; - sh:maxCount 1 ; - sh:name "Has financial offer value" ; - sh:path :hasFinancialOfferValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Tender-epo-hasItemCountryOfOrigin a sh:PropertyShape ; - sh:class at-voc:country ; - sh:description """The source country of the product or service. - -Additional Information: - -The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. - -WG Approval 07/01/2020 - -The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country""" ; - sh:name "Has item country of origin" ; - sh:path :hasItemCountryOfOrigin . - -core-shape:epo-Tender-epo-isSubjectToGrouping a sh:PropertyShape ; - sh:class :LotGroup ; - sh:maxCount 1 ; - sh:name "Is subject to grouping" ; - sh:path :isSubjectToGrouping ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Tender-epo-isSubmitedBy a sh:PropertyShape ; - sh:class :Tenderer ; - sh:description """Relation indicating the submission of a tender by an economic operator. -WG approval 18/05/2021""" ; - sh:maxCount 1 ; - sh:name "Is submited by" ; - sh:path :isSubmitedBy ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Tender-epo-isSubmittedForLot a sh:PropertyShape ; - sh:class :Lot ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Is submitted for lot" ; - sh:path :isSubmittedForLot ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Tender-epo-isVariant a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description """Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. - -Additional Information: - -The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. -The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. - -WG Approval 29/05/2019 - -""" ; - sh:maxCount 1 ; - sh:name "Is variant" ; - sh:path :isVariant . - -core-shape:epo-Tender-epo-specifiesSubcontractors a sh:PropertyShape ; - sh:class :Subcontractor ; - sh:name "Specifies subcontractors" ; - sh:path :specifiesSubcontractors ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-TenderAwardOutcome-epo-concernsTender a sh:PropertyShape ; - sh:class :Tender ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Concerns tender" ; - sh:path :concernsTender ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-TenderAwardOutcome-epo-hasAwardRank a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description """The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. - -Additional Information: -This corresponds in eForms to BT-171 Tender Rank. -""" ; - sh:maxCount 1 ; - sh:name "Has award rank" ; - sh:path :hasAwardRank . - -core-shape:epo-TenderAwardOutcome-epo-indicatesAwardToWinner a sh:PropertyShape ; - sh:class :Winner ; - sh:description "Reveals the winner to whom the tender award outcome is attributed." ; - sh:maxCount 1 ; - sh:name "Indicates award to winner" ; - sh:path :indicatesAwardToWinner ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-TenderGroup-epo-comprisesTender a sh:PropertyShape ; - sh:class :Tender ; - sh:description "Incorporates Tender." ; - sh:minCount 1 ; - sh:name "Comprises tender" ; - sh:path :comprisesTender ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-TenderGroup-epo-hasTotalValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has total value" ; - sh:path :hasTotalValue ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-TenderGroup-epo-isSubmittedForLotGroup a sh:PropertyShape ; - sh:class :LotGroup ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Is submitted for lot group" ; - sh:path :isSubmittedForLotGroup ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Tenderer-epo-substantiatesExclusionGround a sh:PropertyShape ; - sh:class :ExclusionGround ; - sh:maxCount 1 ; - sh:name "Substantiates exclusion ground" ; - sh:path :substantiatesExclusionGround ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:epo-Winner-epo-needsToBeATenderer a sh:PropertyShape ; - sh:class :Tenderer ; - sh:description "The Winner must be a Tenderer." ; - sh:maxCount 1 ; - sh:name "Needs to be a tenderer" ; - sh:path :needsToBeATenderer ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:foaf-Agent-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:foaf-Agent-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A name given to the resource. - -WG approval 30/05/2023""" ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:foaf-Agent-epo-hasAlias a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Acronym or alternative name of the Agent. -WG Approval 25/03/2021""" ; - sh:name "Has alias" ; - sh:path :hasAlias . - -core-shape:foaf-Agent-epo-ownsSystem a sh:PropertyShape ; - sh:class :System ; - sh:name "Owns system" ; - sh:path :ownsSystem ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:locn-Address-epo-hasCountryCode a sh:PropertyShape ; - sh:class at-voc:country ; - sh:description """ -""" ; - sh:maxCount 1 ; - sh:name "Has country code" ; - sh:path :hasCountryCode . - -core-shape:locn-Address-epo-hasNutsCode a sh:PropertyShape ; - sh:class at-voc:nuts ; - sh:maxCount 1 ; - sh:name "Has nuts code" ; - sh:path :hasNutsCode . - -core-shape:locn-Address-locn-addressArea a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. - -Additional Information: -This would typically be part of a city, a neighbourhood or village, e.g. Montmartre.""" ; - sh:maxCount 1 ; - sh:name "Address area" ; - sh:path locn:addressArea . - -core-shape:locn-Address-locn-addressID a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description """A globally unique identifier for each instance of an Address. - -Additional Information: -The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. - -The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. - -Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. - -To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID.""" ; - sh:maxCount 1 ; - sh:name "Address i d" ; - sh:path locn:addressID ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:locn-Address-locn-adminUnitL1 a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. - -Additional Information: -Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this.""" ; - sh:maxCount 1 ; - sh:name "Admin unit l1" ; - sh:path locn:adminUnitL1 . - -core-shape:locn-Address-locn-adminUnitL2 a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. - -Additional Information: -Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" in the ATU controlled vocabulary. -""" ; - sh:maxCount 1 ; - sh:name "Admin unit l2" ; - sh:path locn:adminUnitL2 . - -core-shape:locn-Address-locn-fullAddress a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """The complete address written as a formatted string. - -Additional Information: -Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is "Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France".""" ; - sh:maxCount 1 ; - sh:name "Full address" ; - sh:path locn:fullAddress . - -core-shape:locn-Address-locn-locatorDesignator a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. - -Additional Information: -In simpler terms, this is the building number, apartment number, etc. For an address such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17".""" ; - sh:maxCount 1 ; - sh:name "Locator designator" ; - sh:path locn:locatorDesignator . - -core-shape:locn-Address-locn-locatorName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """Proper noun(s) applied to the real world entity identified by the locator. - -Additional Information: -The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. - -The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator.""" ; - sh:maxCount 1 ; - sh:name "Locator name" ; - sh:path locn:locatorName . - -core-shape:locn-Address-locn-postCode a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The post/zip code of an address. (INSPIRE's definition is "A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.") - -Additional Information: -Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example "75000".""" ; - sh:name "Post code" ; - sh:path locn:postCode . - -core-shape:locn-Address-locn-postName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The key postal division of the address, usually the city. (INSPIRE's definition is \"One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, \"Paris\"." ; - sh:name "Post name" ; - sh:path locn:postName . - -core-shape:locn-Address-locn-thoroughfare a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description """An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. - -Additional Information: -For example, "Avenue des Champs-Élysées".""" ; - sh:name "Thoroughfare" ; - sh:path locn:thoroughfare . - -core-shape:locn-Geometry-cv-coordinates a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The coordinate list." ; - sh:name "Coordinates" ; - sh:path cccev:coordinates . - -core-shape:locn-Geometry-cv-latitude a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The latitude." ; - sh:name "Latitude" ; - sh:path cccev:latitude . - -core-shape:locn-Geometry-cv-longitude a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The longitude." ; - sh:name "Longitude" ; - sh:path cccev:longitude . - -core-shape:org-Organization-cv-address a sh:PropertyShape ; - sh:class locn:Address ; - sh:description """Associates any Resource with the corresponding Address. - -Additional Information: -Asserting the address relationship implies that the Resource has an Address.""" ; - sh:name "Address" ; - sh:path cccev:address ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:org-Organization-cv-registeredAddress a sh:PropertyShape ; - sh:class locn:Address ; - sh:description """The registered address relationship links a Resource with the legally registered Address. - -Additional Information: -It is the address to which formal communications can be sent, such as the postal address. -""" ; - sh:maxCount 1 ; - sh:name "Registered address" ; - sh:path cccev:registeredAddress ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:org-Organization-epo-hasBuyerLegalType a sh:PropertyShape ; - sh:class at-voc:buyer-legal-type ; - sh:description """A category that indicates the right of an Organisation to play the role of a buyer. - -Additional Information: -The category also effects the rules that the buyer has to abide to within the public procurement procedure. -WG 07/09/2021 - -""" ; - sh:maxCount 1 ; - sh:name "Has buyer legal type" ; - sh:path :hasBuyerLegalType . - -core-shape:org-Organization-epo-hasBuyerLegalTypeDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Self-explanatory text about the Buyer Legal Type. - -Additional information: -This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. - -WG Approval 06/09/2022""" ; - sh:maxCount 1 ; - sh:name "Has buyer legal type description" ; - sh:path :hasBuyerLegalTypeDescription . - -core-shape:org-Organization-epo-hasInternetAddress a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description """The main web page used by the instance of the concept. - -WG Approval 01/06/2023 -""" ; - sh:name "Has internet address" ; - sh:path :hasInternetAddress . - -core-shape:org-Organization-epo-hasLegalFormType a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The classification of an Organisation according to legislation. - -Additional Information: -Generally, this is defined for Tenderers who want to submit as an Organisation Group. -Note that the codelist provided at national level should be used. -""" ; - sh:maxCount 1 ; - sh:name "Has legal form type" ; - sh:path :hasLegalFormType . - -core-shape:org-Organization-epo-hasLegalIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:name "Has legal identifier" ; - sh:path :hasLegalIdentifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:org-Organization-epo-hasLegalName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The officially registered name of an organisation. - -WG Approval 10/01/2023""" ; - sh:name "Has legal name" ; - sh:path :hasLegalName . - -core-shape:org-Organization-epo-hasMainActivity a sh:PropertyShape ; - sh:class at-voc:main-activity ; - sh:description """The principal sectoral area in which an organisation operates. - -Additional information: - -The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. - -The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). - -WG Approval 05/05/2020 - -""" ; - sh:maxCount 1 ; - sh:name "Has main activity" ; - sh:path :hasMainActivity . - -core-shape:org-Organization-epo-hasMainActivityDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """Self-explanatory text about the Main Activity . - -Additional information: -This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. - -WG Approval 06/09/2022 -""" ; - sh:maxCount 1 ; - sh:name "Has main activity description" ; - sh:path :hasMainActivityDescription . - -core-shape:org-Organization-epo-hasOrganisationUnitName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description """The name of a subpart of an organisation. - -Additional Information: -E.g. the relevant department of a large organisation. - -We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well.""" ; - sh:maxCount 1 ; - sh:name "Has organisation unit name" ; - sh:path :hasOrganisationUnitName . - -core-shape:org-Organization-epo-hasPrimaryContactPoint a sh:PropertyShape ; - sh:class cccev:ContactPoint ; - sh:name "Has primary contact point" ; - sh:path :hasPrimaryContactPoint ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:org-Organization-epo-hasRegistrationCountry a sh:PropertyShape ; - sh:class at-voc:country ; - sh:maxCount 1 ; - sh:name "Has registration country" ; - sh:path :hasRegistrationCountry . - -core-shape:org-Organization-epo-hasTaxIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:name "Has tax identifier" ; - sh:path :hasTaxIdentifier ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:owl-Thing-epo-containsModificationsOf a sh:PropertyShape ; - sh:class owl:Thing ; - sh:description """ - -Additional information -This relation shall be used between Instances of the SAME type/class. - -The "modifying-instance" can be minimally instantiated, carrying the fields/information that override the fields in the "modified-instance". - -This means that the "modifying-instance" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. -""" ; - sh:maxCount 1 ; - sh:name "Contains modifications of" ; - sh:path :containsModificationsOf ; - sh:sparql [ sh:select " SELECT ?this ?that WHERE { ?this ?that . ?that ?this .} " ] . - -core-shape:core-shape a owl:Ontology ; - cc:attributionName "European Union" ; - cc:attributionURL ; - dcterms:abstract "This artefact provides the datashape specification. " ; - dcterms:created ""^^xsd:date ; - dcterms:description "This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused."@en ; - dcterms:issued "2023-07-11"^^xsd:date ; - dcterms:license ; - dcterms:rights "The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated." ; - dcterms:title "eProcurement Ontology - core"@en ; - bibo:status "Semantic Specification Realease" ; - vann:preferredNamespacePrefix "epo" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:seeAlso , - , - , - ; - owl:imports :core, - :core-restriction, - cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "3.1.0" ; - owl:versionIRI core-shape:core-shape-4.0.0 ; - owl:versionInfo "4.0.0" ; - skos:changeNote """This version is automatically generated from demo_ontology_CM.xml on - 2023-07-11""" . - diff --git a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf deleted file mode 100644 index 8d5657c..0000000 --- a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf +++ /dev/null @@ -1,12215 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology - core shapes - http://publications.europa.eu/resource/authority/corporate-body/PUBL - The eProcurement Ontology core shapes provides the generic datashape specifications for the eProcurement Ontology core. - This version is automatically generated from demo_ontology_CM.xml on 2023-11-01 - - - - - 2023-11-01 - 2021-06-01 - 4.0.0 - 3.1.0 - - http://data.europa.eu/a4g/data-shape#core-shape-3.1.0 - http://data.europa.eu/a4g/ontology# - epo - © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). - - - - - - Dynamic purchasing system - - - An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. WG approval 23/05/2023 - - - - - - - - - Mini competition - - - A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. Additional Information: It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. WG approval 30/05/2023 - - - - - - - - - Mini competition award decision - - - Result concerning the Mini-Competition attributed by the Awarder. - - - - - - - - - Selected candidate list - - - Record of Candidates admitted to take part in award phases of procurements. WG approval 30/05/2023 - - - - - - - - - Project - - - A collaborative enterprise that is carefully planned to achieve a particular aim. - - - - - - - - - Procurement object - - - The whole or a division of goods, services or works to be procured. Additional Information: Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. In a sense, such an "object" can constitute the "object of a Contract". To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (<i>The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.</i>). Note: Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and "purpose" properties. - - - - - - - - - Lot - - - A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. WG approval 12/09/2018 - - - - - - - - - Planned procurement part - - - A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. WG Approval 20/06/2019 - - - - - - - - - Procedure - - - A legally defined set of administrative activities conducted to conclude one or more Contracts. Additional Information The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). WG Approval 20/08/2019 - - - - - - - - - Lot group - - - Combination of several Lots to conduct comparative assessment of the Tenders. Additional Information: The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. Pending of discussion with eForms Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined. - - - - - - - - - Procurement element - - - Gathering class for critical/central elements in the Procurement Process. TODO: add definition Additional information: Alias: ProcurementComponent - - - - - - - - - Purpose - - - The description of the objectives related to a Procurement. Additional information: The description of the objectives includes the Subject Matter and Quantities. The quantification of the objectives related to a procurement. To be re-reviewed by the WG the soonest. (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) The old definition read as follows: The description of the objectives related to a procurement. (WG approval 05/12/2018) - - - - - - - - - Tender group - - - Specific Offer in response to a Lot Group. Additional Information: This class is generally used to provide the Monetary Value in response to a Lot Group. - - - - - - - - - Public organisation - - - An Organisation that is defined as being part of the public sector by a legal framework at any level. Additional information: A body governed by public law: - (a) established for the specific Purpose of meeting needs in the general interest - (b) having legal personality; - (c) financed, for the most part by the State, or regional or local authorities. Examples of Public Organisations are municipality, international public body, ministry, others. WG Approval 28/04/2020 - - - - - - - - - Person - - - A individual human being who may be dead or alive, but not imaginary. - - - - - - - - - Ad hoc channel - - - Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023 - - - - - - - - - Business - - - A private law company registered in a national registry. WG Approval 28/04/2020 - - - - - - - - - Organisation group - - - Agreed collaboration of several Organisations. Additional Information: This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. WG approval 15/04/2021 - - - - - - - - - System - - - Software application used for performing Procurement activities. WG Approval 28/04/2020 - - - - - - - - - Agent - - - A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. WG Approval 28/04/2020 - - - - - - - - - Person - - - The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF. - - - - - - - - - Organization - - - A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. (WG approval 23/11/2018). - - - - - - - - - Acquiring central purchasing body - - - Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021 - - - - - - - - - Acquiring party - - - The Role of an Agent that acts on the buying side of a Procurement Process. - - - - - - - - - Agent in role - - - Relative concept that ties an Agent to a part they play in a given Situational Context. Additional information: The classification of roles is based is based on the degree of involvement into the Procurement Process: - Primary (Procurement) Pole is directly involved in the Procurement Process; - Secondary (Procurement sub-) Role is secondary to the Procurement Process - Tertiary (Related) Role is not involved in the Procurement Process. - - - - - - - - - Auxiliary party - - - Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it. - - - - - - - - - Awarder - - - A Role of an Agent that signs the Award Decision. - - - - - - - - - Awarding central purchasing body - - - Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. Additional Information: In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021 - - - - - - - - - Budget provider - - - A role of an agent whose Budget is used to pay for the Contract. - - - - - - - - - Buyer - - - A Role of an Agent that awards a Contract and/or purchases items. Additional information: In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. In Post-Award the buyer generally refers to the purchaser of items. - - - - - - - - - Candidate - - - The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. WG approval 30/05/2023 - - - - - - - - - Catalogue provider - - - A Role of an Agent compiling and supplying a Catalogue. Additional Information: The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. WG Approval 28/01/2021 - - - - - - - - - Catalogue receiver - - - A Role of an Agent processing a Catalogue. Additional Information: The Catalogue Receiver may not only receive it but also validate it, process it, etc. The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. WG Approval 28/01/2021 - - - - - - - - - Central purchasing body - - - Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. Additional Information: In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; WG approval 05/08/2021 - - - - - - - - - Contractor - - - The Role of an Agent that has signed a Contract with a Buyer. WG approval 08/11/2022 - - - - - - - - - Employment information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions. - - - - - - - - - Environmental protection information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection. - - - - - - - - - Jury member - - - - - - - - - Lead buyer - - - A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. WG agreement: 2022-11-22 - - - - - - - - - Mediator - - - A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. WG approval 20/04/2021 - - - - - - - - - Offering party - - - The Role of an Agent that acts on the Economic Operator side during a Procurement Process. Additional information: As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances. - - - - - - - - - Offer issuer - - - The Role of an Agent that distributes an Offer. WG approval 09/02/2023 - - - - - - - - - Offline access provider - - - A Role of an Agent responsible for providing offline access to the Procurement Documents. - - - - - - - - - Other entity - - - Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria. - - - - - - - - - Participation request processor - - - A Role of an Agent responsible for processing Requests To Participate. - - - - - - - - - Participation request receiver - - - A Role of an Agent responsible for receiving Requests To Participate. - - - - - - - - - Payment executor - - - A Role of an Agent responsible for executing the Payment. - - - - - - - - - Procurement procedure information provider - - - A Role of an Agent responsible for providing additional information about the Procurement Procedure. - - - - - - - - - Procurement service provider - - - Role of a public or private body which offers ancillary purchasing activities on the market. Additional information "Ancillary Purchasing Activities" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; (b) advice on the conduct or design of public Procurement Procedures; (c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. WG Approval 24/03/2020 - - - - - - - - - Reviewer - - - Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. Additional Information: Any Organisation or Person may request a review of a Procurement Procedure. WG approval: 20/04/2021 - - - - - - - - - Review procedure information provider - - - A Role of an Agent who is providing more information on the time limits for review Procedures. - - - - - - - - - Review requester - - - Role of an Agent who requests the review of a (Procurement) Procedure. WG Approval 23/10/2021 - - - - - - - - - Subcontractor - - - A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. Additional information For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. When modelling ESPD we well analyze whether we need or not a Role named "relied upon". WG approval 05/08/2021 - - - - - - - - - Tax information provider - - - A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes. - - - - - - - - - Tenderer - - - A Role of an Agent that has submitted a Tender. Additional Information: A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. WG approval 05/08/2021 - - - - - - - - - Tender processor - - - A Role of an Agent responsible for processing Tenders. - - - - - - - - - Tender receiver - - - A Role of an Agent responsible for receiving Tenders. - - - - - - - - - Winner - - - A Role of an Agent to whom a Lot is awarded. WG approval 05/08/2021 (revised 26/10/2021) - - - - - - - - - Contact point - - - Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. Additional information: This class represents the contact information for a Public Service, Channel, Public Organisation, etc. The Contact Point could be a role, email address, telephone number, etc. WG approval 5/11/2019 - - - - - - - - - Channel - - - A medium through which Agents interact. Additional Information Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. See also Directive recitals 53 to 56. WG approval 2023-02-14 - - - - - - - - - Location - - - An identifiable geographic place or named place. - - - - - - - - - Address - - - The particulars of the place where a Person or an Organisation is located. WG Approval 28/04/2020 Additional Information: An "Address Representation" as conceptually defined by the INSPIRE Address Representation data type: "Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.". The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - full address (the complete address as a formatted string) - addressID (a unique identifier for the address) The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL. - - - - - - - - - Geometry - - - The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. Additional Information: This class defines the notion of "Geometry" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats. - - - - - - - - - Contract specific term - - - Gathering class for conditions and stipulations related to a contract in the Post-Award Phase. - - - - - - - - - Lot specific term - - - Gathering class for conditions and stipulations related to a Lot. - - - - - - - - - Procedure specific term - - - Gathering class for conditions and stipulations related to a Procedure. - - - - - - - - - Process planning term - - - Conditions and stipulations defining particularities of the unfolding of the Procurement Process. - - - - - - - - - Term - - - A governing condition or stipulation. - - - - - - - - - Participation request term - - - Conditions and stipulations defining particularities of requesting participation in a Procedure. - - - - - - - - - Access term - - - Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021 - - - - - - - - - Non disclosure agreement term - - - Conditions and stipulations - - - - - - - - - Opening term - - - Conditions and stipulations defining particularities of the opening of Tenders. Additional Information: The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. WG Approval 15/04/2021 - - - - - - - - - Security clearance term - - - Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. Additional information: This corresponds in eForms to BT-578, BT-78, BT-732 . WG approval 20/06/2023 - - - - - - - - - Direct award term - - - Conditions and stipulations defining particularities of the award of a Contract without prior publication. Addtional Information: Direct award may refer to a previous Procedure and/or specific Lot(s). It may also refer to other justified situations whereby there is no previous Procedure. See Directive 2014/24/EU Article 32. WG Approval 22/11/2019 - - - - - - - - - Procedure term - - - Conditions and stipulations defining particularities of the Procedure. (WG approval 23/11/2018) - - - - - - - - - Submission term - - - Conditions and stipulations defining particularities of submitting Documents to the Buyer. Additional Information: These Documents can be Tenders, Request To Participate and expressions of interest. WG Approval 14/07/2020 - - - - - - - - - Contract term - - - Conditions and stipulations defining particularities of the Post Award Phase. (WG approval 23/11/2018) - - - - - - - - - Design contest regime term - - - Conditions and stipulations defining particularities of a Design Contest. WG approval: 04-02-2021 - - - - - - - - - Framework agreement term - - - Conditions and stipulations defining particularities in a Framework Agreement. - - - - - - - - - Multiple stage procedure term - - - Conditions and stipulations defining particularities of Procedures carried out in several steps Additional Information: Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. WG Approval 15/04/2021 - - - - - - - - - Prize - - - A reward given in a Contest. WG approval: 15/04/2021 - - - - - - - - - Subcontract term - - - A concept to describe the main information regarding the share of parts of the Contract to third parties. - - - - - - - - - Award evaluation term - - - Conditions and stipulations defining particularities of the evaluation of Award Criteria. - - - - - - - - - Evaluation term - - - Conditions and stipulations defining particularities of the Tender evaluation. (WG approval 23/11/2018) - - - - - - - - - Selection evaluation term - - - Conditions and stipulations defining particularities of the evaluation of Selection Criteria. - - - - - - - - - Constraint - - - Limitation applied to an Information Concept. Additional Information: Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context. - - - - - - - - - Criterion - - - Condition for evaluation or assessment. Additional Information: In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service. - - - - - - - - - Evidence - - - Proof that a Requirement is met. - - - - - - - - - Information concept - - - Piece of information that the Evidence provides or the Requirement needs. - - - - - - - - - Requirement - - - Condition or prerequisite that is to be proven by Evidence. Additional Information: Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification. - - - - - - - - - Award criteria summary - - - - - - - - - Award criterion - - - Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018 - - - - - - - - - Economic standing summary - - - - - - - - - Exclusion ground - - - Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. Additional Information: This corresponds in eForms to BG-701 Exclusion Grounds. WG approval 31/10/2018 - - - - - - - - - Exclusion grounds summary - - - - - - - - - Participation condition - - - Criterion that describes a Requirement to take part in a procurement. WG approval 30/05/2023 - - - - - - - - - Participation conditions summary - - - - - - - - - Procurement criteria summary - - - WG approval 24/01/2023 - - - - - - - - - Procurement criterion - - - A criterion specific to Procurement. Additional Information: This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). WG Approval 23/04/2020 - - - - - - - - - Professional suitability summary - - - - - - - - - Qualification criteria summary - - - - - - - - - Qualification criterion - - - Criterion used in the first stage of procurement. WG approval 30/05/2023 - - - - - - - - - Selection criteria summary - - - - - - - - - Selection criterion - - - Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. Additional Information: Selection criteria may relate to: (a) suitability to pursue the professional activity; (b) economic and financial standing; (c) technical and professional ability WG approval 31/10/2018 - - - - - - - - - Technical ability summary - - - - - - - - - Green procurement - - - Approach whereby Buyers seek to procure with a reduced Environmental Impact. Additional Information: The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf An instance of the class GreenProcurement is represented in eForms with the code "env-imp" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf - - - - - - - - - Innovative procurement - - - An instance of the class InnovativeProcurement is represented in eForms with the code "inn-pur" defined in the codelist Strategic-Procurement. Research (21/01/2020): Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions Additional Information: ‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; See: Directive 2014/24 Articles: 2, 26 (3), 31, 67 (2.a) Question: Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement? - - - - - - - - - Social procurement - - - An instance of the class SocialProcurement is represented in eForms with the code "soc-obj" defined in the codelist Strategic-Procurement. Research (21/01/2020): Socially Responsible Public Procurement (SRPP): ‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en See Article 18 and Annex X Directive 2014/24. - - - - - - - - - Strategic procurement - - - Public Procurement that contributes to achieving pressing policy goals. Additional Information: Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on "background information". WG Approval 10/03/2020 - - - - - - - - - Dynamic purchase system technique - - - A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. WG approval 23/05/2023 - - - - - - - - - E auction technique - - - A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. Additional Information: This corresponds in eForms to BT-767 Electronic Auction . WG approval 20/07/2018 - - - - - - - - - Framework agreement technique - - - Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. WG approval 18/05/2021 - - - - - - - - - Technique - - - Method used for conducting Procurement Procedures. Addtional information: This corresponds in eForms to BG-706 Techniques. Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). WG Approval 19/09/2019 - - - - - - - - - Context specific description - - - A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity. - - - - - - - - - Contextual projection - - - Projection of an Entity and all of its properties that hold in a given Situation Context. Additional Information: The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) We say that ContextualProjection *describes* an Entity. Adaptation of ContextSlices pattern encoding a 4D view. http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices - - - - - - - - - Estimate - - - An approximate calculation or a judgement of the value, number, Quantity or extent of something. - - - - - - - - - Procurement process information - - - Information about the temporal unfolding or succession of Procurement Objects. - - - - - - - - - Statistical information - - - Statistical data on the Procedure and the Lot. Additional Information At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. Therefore this class is temporal and should cease to exist in fully electronic Procurement. The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. WG Approval 12/12/2019 - - - - - - - - - Concession estimate - - - - - - - - - Subcontracting estimate - - - Information on the approximation of the foreseen Subcontracting. - - - - - - - - - Lot award decision - - - Result concerning the Lot attributed by the Awarder. - - - - - - - - - Lot group award information - - - Award information related to a given Group of Lots. - - - - - - - - - Notice award information - - - Information about an Award Notice. - - - - - - - - - Tender award outcome - - - Result concerning the Tender attributed by the Awarder. - - - - - - - - - Review irregularity summary - - - Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). Additional information: This class corresponds in eForms to BG-613 Buyer Review Requests. - - - - - - - - - Review request summary - - - Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. Additional information: This class corresponds in eForms to BG-612 Buyer Review Summary. - - - - - - - - - Submission statistical information - - - Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 - - - - - - - - - Contract lot completion information - - - Information related to a given Lot at the end of the procurement. - - - - - - - - - Electronic signature - - - - - - - - - Originator request - - - Document in which the Originator describes his needs. WG approval 09/02/2023 - - - - - - - - - Tender - - - Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. (WG approval 03/05/2022) - - - - - - - - - Offer - - - Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. Additional information: A quotation is considered to be an Offer in the eProcurement Ontology. WG approval 09/02/2023 - - - - - - - - - Procurement document - - - Document produced or referred to by the Buyer to describe or determine elements of the Procurement. Additional information: Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. WG Approval 23/05/2019 17:08:30 - - - - - - - - - Notice - - - Document published by the Buyer about market opportunities and results. WG Approval 23/05/2019 - - - - - - - - - Document - - - A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019 - - - - - - - - - Award decision - - - Resolution of the Buyer as to the result of the Procurement Procedure. WG approval 14/11/2018 - - - - - - - - - Request for participation - - - Application of an Economic Operator to be included in a Procurement Procedure. WG approval: 20/04/2021 - - - - - - - - - Expression of interest - - - Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. WG approval 13/04/2021 - - - - - - - - - Request for clarification - - - A demand for elucidation of received information. Additional Information: Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. WG approval 20/04/2021 - - - - - - - - - Direct contract - - - - - - - - - Concession contract - - - A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. WG Approval 24/05/2022 - - - - - - - - - Purchase contract - - - A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract. - - - - - - - - - Fund - - - A financial resource used to support the Procurement. Additional Information: In the context of EU, Funds can be divided into programmes, actions and projects. Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. WG Approved 14/05/2019 - - - - - - - - - Framework agreement - - - An agreement between one or more Contracting Authorities and one or more Economic Operators. Additional Information: When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. WG approval 18/05/2021 - - - - - - - - - Contract - - - A voluntary, deliberate, and legally binding agreement between two or more competent parties. Additional information: This includes Concession Contracts. (WG approval 01/06/2018) - - - - - - - - - Review decision - - - Information about Review Decisions. - - - - - - - - - Review object - - - Information about a Review Request or a Review Decision. Additional information: This class corresponds to the BG-714 Review in eForms. - - - - - - - - - Review request - - - Information about requests to review procedures. - - - - - - - - - Contract modification - - - An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer. - - - - - - - - - Element change description - - - Information about a specific field to be changed with regard to a previous Notice. - - - - - - - - - Element confidentiality description - - - Information about a specific field not intended for publication. Additional Information: In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided. - - - - - - - - - Element description - - - Description about a specific resource. - - - - - - - - - Element modification description - - - Information about a specific field to be changed with regard to the Modification Of a Contract. - - - - - - - - - Notice change - - - Information about a corrigendum in a Notice. - - - - - - - - - Notice description - - - Descriptions about the notice publishing, or providing evolutions of resources. - - - - - - - - - Publication provision - - - Information about fields not intended for publication. Additional Information: The non-published information may become available at a later date and may differ from one element to another within a given Document. Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. WG Approval 16/05/2019 - - - - - - - - - Identifier - - - A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. - - - - - - - - - Duration - - - The length of time in which a concept occurs. - - - - - - - - - Indefinite duration - - - - - - - - - Monetary value - - - A number of monetary units specified using a given unit of currency. Additional information: In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. WG approval 13/04/2021 - - - - - - - - - Period - - - A time interval or a Duration. (WG approval 28/04/2020) - - - - - - - - - Quantity - - - A counted number of non-monetary units possibly including fractions. - - - - - - - - - Specific duration - - - - - - - - - Thing - - - Any individual in the domain of discourse is a Thing. Additional Information: The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing. - - - - - - - - - - - - Is s m e suitable - - - The Lot is suitable for small and medium enterprises (SMEs). Additional Information This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. For example, number of employees and turnover are applicable to the definition of an SME. WG Approval 15/10/2019 - - - - - - - - - 1 - - - - - - - - - Has additional information - - - Supplementary data about the instance of the concept. WG Approval 15/10/2019 - - - - - - - - - - - - - - - Is using e u funds - - - The procurement foresees funding by the Union. Additional Information: The funding may cover the whole procurement or part of the procurement. For example the European Structural and Investment Funds or grants awarded by the European Union. - - - - - - - - - 1 - - - - - - - - - Is covered by g p a - - - Specifies whether the Agreement on Government Procurement (GPA) applies. Additional information: The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. This corresponds in the e Forms to BT-115 GPA Coverage. WG Approval 15/10/2019 - - - - - - - - - 1 - - - - - - - - - Is recurrent - - - The Procurement being notified is likely to be included in another procedure in the foreseeable future. Additional Information: For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. This corresponds in eForms to BT-94 Recurrence. WG Approval 12/05/2020 - - - - - - - - - 1 - - - - - - - - - Has recurrence description - - - Any additional information about the recurrence of the Procurement. Additional Information: For example estimated timing of the Procedure. This corresponds in eForms to BT-95 Recurrence Description. (WG approval 2019-01-16) - - - - - - - - - 1 - - - - - - - - - Has legal basis description - - - - - - - - - - - - - - - Is accelerated - - - Statement about the fact that the procedure will be reduced due to a state of urgency. Additional Information This modifies the time limit for the receipt of requests to participate or the receipt of tenders. WG Approval 20/08/2019 - - - - - - - - - 1 - - - - - - - - - Has accelerated procedure justification - - - The reasons why the procedure is accelerated. Additional Information: A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. WG Approval 09/06/2020 - - - - - - - - - - - - - - - Has main feature - - - Main features of the procedure and information about where the full rules for the procedure can be found. Additional Information: This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds. - - - - - - - - - - - - - - - Is joint procurement - - - Multiple buyers procure together within the same procedure. Addition Information: In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . - - - - - - - - - 1 - - - - - - - - - Is design contest - - - A competition which enables the buyer to acquire a plan or design via a jury. Additional information: Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering The contest may include or not the award of prizes; WG approval 04-02-2021 - - - - - - - - - 1 - - - - - - - - - Title - - - A name given to the resource. WG approval 30/05/2023 - - - - - - - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Name - - - The complete name of the Person as one string. - - - - - - - - - - - - - - - Family name - - - The hereditary surname of a family. - - - - - - - - - - - - - - - Given name - - - The name(s) that identify the Person within a family with a common surname. - - - - - - - - - - - - - - - Patronymic name - - - Name based on the given name of the Person's father. WG Approval 09/11/2021 - - - - - - - - - - - - - - - Alternative - - - Any name by which an individual is known other than their full name. WG 09/11/2021 - - - - - - - - - - - - - - - Birth name - - - Family name of the Person given upon their birth. WG Approval 09/11/2021 - - - - - - - - - - - - - - - Birth date - - - The point in time on which the Person was born. - - - - - - - - - 1 - - - - - - - - - Is listed company - - - Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange rules or through law or enforceable means), which impose requirements to ensure adequate transparency of beneficial ownership. <u>Additional Information:</u> In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. WG Approval 21/11/2019 - - - - - - - - - 1 - - - - - - - - - Has group type - - - Form of collaboration agreement between organisations. Additional Information: This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. WG Approval 09/11/2021 - - - - - - - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Title - - - A name given to the resource. WG approval 30/05/2023 - - - - - - - - - - - - - - - Has alias - - - Acronym or alternative name of the Agent. WG Approval 25/03/2021 - - - - - - - - - - - - - - - Has legal name - - - The officially registered name of an organisation. WG Approval 10/01/2023 - - - - - - - - - - - - - - - Has organisation unit name - - - The name of a subpart of an organisation. Additional Information: E.g. the relevant department of a large organisation. We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well. - - - - - - - - - 1 - - - - - - - - - Has buyer legal type description - - - Self-explanatory text about the Buyer Legal Type. Additional information: This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 - - - - - - - - - 1 - - - - - - - - - Has legal form type - - - The classification of an Organisation according to legislation. Additional Information: Generally, this is defined for Tenderers who want to submit as an Organisation Group. Note that the codelist provided at national level should be used. - - - - - - - - - 1 - - - - - - - - - Has main activity description - - - Self-explanatory text about the Main Activity . Additional information: This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 - - - - - - - - - 1 - - - - - - - - - Has internet address - - - The main web page used by the instance of the concept. WG Approval 01/06/2023 - - - - - - - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Title - - - A name given to the resource. WG approval 30/05/2023 - - - - - - - - - - - - - - - Is contracting entity - - - Role of entities, which: (a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. (b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. Additional Information The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. WG Approval 28/04/2020 - - - - - - - - - 1 - - - - - - - - - Has activity description - - - In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. However, in eForms there is the code "other" to cover undefined activities. For mapping to this eForms feature one could also use this property. - - - - - - - - - - - - - - - Has buyer profile - - - Website address where the buyer publishes information on its procurement procedures and general information. Additional information: This corresponds in the eForms to BT-508 Buyer Profile URL. WG approval 04/05/2018 - - - - - - - - - 1 - - - - - - - - - Has fax - - - The fax number used to reach a person or an organisation. - - - - - - - - - - - - - - - Telephone - - - A telephone number through which the Contact Point can be contacted. - - - - - - - - - - - - - - - Email - - - The email of the Organisation. - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Has contact name - - - A short text by which a contact is known or referred to. WG Approval: 27/01/2022 - - - - - - - - - 1 - - - - - - - - - Has internet address - - - The main web page used by the instance of the concept. WG Approval 01/06/2023 - - - - - - - - - 1 - - - - - - - - - Has address u r l - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - 1 - - - - - - - - - Geographic name - - - A textual description for a Location. Additional Information: The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) - "Athens"@en (the English language exonym) INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - use 'EL' in preference to the ISO 3166 code GR for Greece. Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code. - - - - - - - - - 1 - - - - - - - - - Post name - - - The key postal division of the address, usually the city. (INSPIRE's definition is "One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, "Paris". - - - - - - - - - - - - - - - Address area - - - The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. Additional Information: This would typically be part of a city, a neighbourhood or village, e.g. Montmartre. - - - - - - - - - 1 - - - - - - - - - Locator name - - - Proper noun(s) applied to the real world entity identified by the locator. Additional Information: The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator. - - - - - - - - - 1 - - - - - - - - - Admin unit l2 - - - The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. Additional Information: Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" in the ATU controlled vocabulary. - - - - - - - - - 1 - - - - - - - - - Full address - - - The complete address written as a formatted string. Additional Information: Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is "Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France". - - - - - - - - - 1 - - - - - - - - - Locator designator - - - A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. Additional Information: In simpler terms, this is the building number, apartment number, etc. For an address such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17". - - - - - - - - - 1 - - - - - - - - - Admin unit l1 - - - The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. Additional Information: Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this. - - - - - - - - - 1 - - - - - - - - - Post code - - - The post/zip code of an address. (INSPIRE's definition is "A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.") Additional Information: Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example "75000". - - - - - - - - - - - - - - - Thoroughfare - - - An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. Additional Information: For example, "Avenue des Champs-&#201;lys&#233;es". - - - - - - - - - - - - - - - Coordinates - - - The coordinate list. - - - - - - - - - - - - - - - Longitude - - - The longitude. - - - - - - - - - - - - - - - Latitude - - - The latitude. - - - - - - - - - - - - - - - Has estimated contract notice publication date - - - Foreseen date for publication of Contract Notice. Additional information: This corresponds in eForms BT-127 Future Notice. - - - - - - - - - 1 - - - - - - - - - Has estimated tender invitation date - - - The planned date for the dispatch of the invitations to submit tenders. WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has award date scheduled - - - Planned date for the award decision. WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Is procurement document restricted - - - The access to certain procurement documents is restricted. Additional Information: This corresponds in eForms to BT-14 Documents Restricted. WG Approval 10/10/2019 - - - - - - - - - 1 - - - - - - - - - Has restricted access u r l - - - The internet address with information on accessing the restricted (part of the) procurement document. Additional Information: This corresponds in eForms to BT-615 Documents Restricted URL. - - - - - - - - - 1 - - - - - - - - - Has additional information deadline - - - The time limit for requesting further information. Additional information: This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. This corresponds in eForms to BT-13 Additional Information Deadline. WG Approval 09/06/2020 - - - - - - - - - 1 - - - - - - - - - Has public access u r l - - - Web page where the procurement documents can be downloaded. Additional Information: This corresponds in the eForms to BT-15 Documents URL. WG Approval 09/03/2021 - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - 1 - - - - - - - - - Is non disclosure agreement required - - - - - - - - - 1 - - - - - - - - - Has opening date time - - - Date and time for the opening of tenders. WG Approval 12/03/2019 - - - - - - - - - 1 - 1 - - - - - - - - - Has opening description - - - Further information about the opening of tenders. Additional Information For example, who may participate in the opening and whether any authorization is needed. WG Approval 12/03/2019 - - - - - - - - - - - - - - - Has opening u r l - - - The identifier of the address of the Opening of Tenders. WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has deadline - - - The deadline by which the security clearance must be submitted to the buyer. WG Approval 12/09/2019 - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Is security clearance required - - - - - - - - - 1 - - - - - - - - - Has justification - - - An explanation about the reasons for using the concept. WG Approval 5/11/2019 - - - - - - - - - - - - - - - Is submission for all lots allowed - - - Indicates whether tenders may be submitted for all Lots. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) WG approval 23/08/2022 - - - - - - - - - 1 - - - - - - - - - Has cross border law - - - The applicable law when buyers from different countries procure together within one procurement procedure. Additional Information: This corresponds in eForms to BT-09 Cross Border Law. - - - - - - - - - - - - - - - Is one lot only allowed - - - Indicates whether tenders may be submitted for only one Lot. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 - - - - - - - - - 1 - - - - - - - - - Has group lot evaluation method - - - Description of how lots and groups of lots are evaluated against one another in the procedure. - - - - - - - - - - - - - - - Is awarded by c p b - - - Procedure is awarded by a Central Purchasing Body. - - - - - - - - - 1 - - - - - - - - - Has maximum lot submission allowed - - - The total number of lots for which one Tenderer can submit Tenders. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 12/12/2018 - - - - - - - - - 1 - - - - - - - - - Has lot award combination - - - The contracting authority reserves the right to award contracts combining lots or groups of lots. Additional Information: This property contains information about the Lots concerned. This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 - - - - - - - - - 1 - - - - - - - - - Has maximum number of lots to be awarded - - - The maximum number of lots for which contract(s) can be awarded to one tenderer. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG Approval 22/08/2019 - - - - - - - - - 1 - - - - - - - - - Has national procedure rules - - - - - - - - - - - - - - - Has e auction u r l - - - The internet address of the electronic auction. Additional Information: This corresponds in eForms to BT-123 Electronic Auction URL. - - - - - - - - - 1 - - - - - - - - - Has receipt deadline - - - The time limit for receiving submissions. Additional Information This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. This attribute should be used for standard forms mappings. WG Approval 21/07/2020 - - - - - - - - - 1 - - - - - - - - - Has receipt expression deadline - - - Time limit for receipt of expressions of interest. Pending of review by the WG - - - - - - - - - 1 - - - - - - - - - Is guarantee required - - - The submitted information must include a financial commitment to be used in case of default. Additional Information: See the additional information provided in the definition of the 'Guarantee Description' element. WG Approval 21/07/20 - - - - - - - - - 1 - - - - - - - - - Has guarantee description - - - Information on the financial commitment required from the economic operator. Additional Information: 1. This information may include the amount and the way of delivering of the guarantee 2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. 3. Usual modalities are bonds, cheques, loans, other. WG Approval 21/07/20 - - - - - - - - - - - - - - - Has submission u r l - - - Additional Information: This corresponds to the eForms BT-18 Submission URL. This corresponds in eForms to BT-509 Organisation eDelivery Gateway. - - - - - - - - - - - - - - - Has non electronic submission description - - - Textual explanation of how non-electronic information is to be presented. WG Approval 21/07/2020 - - - - - - - - - - - - - - - Has receipt preliminary market consultation deadline - - - - - - - - - 1 - - - - - - - - - Is advanced electronic signature required - - - Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. The submitted information is required to be signed electronically. Additional Information: Signature can be defined as "data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. WG Approval 21/07/2020 - - - - - - - - - 1 - - - - - - - - - Has receipt participation request deadline - - - - - - - - - 1 - - - - - - - - - Is multiple tender submission allowed - - - Tenderers may submit more than one competing tenders. WG Approval 10/10/2019 - - - - - - - - - 1 - - - - - - - - - Has receipt tender deadline - - - - - - - - - 1 - - - - - - - - - Has late submission information description - - - A narrative text explaining the content of the economic operator information that can be submitted late. Additional Information This does not apply to requests for clarifications. - - - - - - - - - - - - - - - Has e ordering - - - Electronic means will be used for requesting and purchasing in the post-award process. WG Approval 12/09/2019 - - - - - - - - - 1 - - - - - - - - - Has e payment - - - Electronic means must be used for paying. WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has options - - - The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid). - - - - - - - - - 1 - - - - - - - - - Has e invoicing - - - Electronic means will be used for invoicing in the post-award process. Additional Information: This attribute is used for standard form mappings. WG Approval 12/09/2019 - - - - - - - - - 1 - - - - - - - - - Is renewal indicator - - - Indicates whether the contract is subject to a renewal clause. WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has maximum number of renewals - - - The maximum number of times the contract can be renewed. Additional Information By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. - - - - - - - - - 1 - - - - - - - - - Has options description - - - The motivation and details about additional purchases that the buyer may undertake while the contract is valid. WG Approval 09/04/2019 - - - - - - - - - - - - - - - Has renewal description - - - Any other information about the renewal(s). WG approval 16/04/2019 - - - - - - - - - - - - - - - Has payment arrangement - - - Information about financial clauses that will govern some economic aspects of the execution of the contract. Additional Information: These clauses usually refer to financial and payment provisions. This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. WG Pending of discussion with eForms - - - - - - - - - - - - - - - Has legal form requirement - - - The legal form to be taken by a Contractor. Additional Information: Generally, this is defined to cover the case where an Organisation Group is involved. Note that the codelist provided at national level should be used. - - - - - - - - - 1 - - - - - - - - - Has place of performance additional information - - - Further details on the location of the execution of the contract. WG Approval 30/07/2019 - - - - - - - - - - - - - - - Has performance conditions - - - The particular conditions and additional information related to the execution of the contract. Additional Information: For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. WG approval 15-01-2019 - - - - - - - - - - - - - - - Is jury decision binding - - - Indicates whether the procuring entity is bound to apply the decision of the jury. - - - - - - - - - 1 - - - - - - - - - Has participation payment - - - Details on payments to participants WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has followup contract - - - Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. WG Approval 29/08/2019 - - - - - - - - - 1 - - - - - - - - - Has followup contract information - - - Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). WG Approval 03/09/2019 - - - - - - - - - - - - - - - Has maximum participants number - - - The maximum number of participants in the framework agreement. Additional Information: Maximum number of tenderers who may be awarded a contract within the framework agreement. The number is a positive integer. This corresponds in eForms to BT-113 Framework Maximum Participants Number. WG Approval 2019-02-05 - - - - - - - - - 1 - - - - - - - - - Has buyer category description - - - A classification of buyers participating in a framework agreement. Additional Information: Buyers that can use the Framework Agreement not mentioned by name. For example, the classification "all hospitals in the Tuscany region" is used instead of naming each individual buyer. This corresponds in eForms to BT-111 Framework Buyer Categories. WG Approval 2019-05-06 - - - - - - - - - - - - - - - Has duration extension justification - - - The explanation of the reason why the framework agreement has an extended duration. Additional Information: This corresponds in eForms to BT-109 Framework Duration Justification. The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. WG Approval 26/09/2019 - - - - - - - - - 1 - - - - - - - - - Has maximum number of candidates - - - Maximum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 - - - - - - - - - 1 - - - - - - - - - Has successive reduction - - - The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. Additional information: This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. WG Approval 22/08/2019 - - - - - - - - - 1 - - - - - - - - - Has minimum number of candidates - - - Minimum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 - - - - - - - - - 1 - - - - - - - - - Has estimated invitation to tender date - - - The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. Additional Information: This corresponds in eForms to BT-130 Dispatch Invitation Tender. WG Approval 01/10/2019 - - - - - - - - - 1 - - - - - - - - - Has no negotiation necessary - - - The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. Additional information: See Article 29(4) of Directive 2014/24/EU. - - - - - - - - - 1 - - - - - - - - - Has estimated invitation to express interest date - - - The estimated date of dispatch of the invitations to confirm interest. Additional Information: This corresponds in eForms to BT-631 Dispatch Invitation Interest. - - - - - - - - - 1 - - - - - - - - - Has qualification system renewal description - - - - - - - - - 1 - - - - - - - - - Has prize rank - - - The position of the prize (e.g. first place, second place) in a design contest list of prizes. WG Approval 29/08/2019 - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Has maximum share - - - The maximum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 - - - - - - - - - 1 - - - - - - - - - Has minimum share - - - The minimum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 - - - - - - - - - 1 - - - - - - - - - Has subcontracting involved - - - List of Subcontractors and the subject matter they cover are required. Additional Information: The tenderer will ned to supply this information in the tender. WG Approval 28/02/2019 - - - - - - - - - 1 - - - - - - - - - Has minimum subcontractors proposed obligation - - - The minimum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has subcontractors proposed above obligation - - - The maximum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has award criteria evaluation formula - - - The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543 Award Criteria Complicated. - - - - - - - - - - - - - - - Has overall quality award criteria ponderation - - - The weighting given to quality. Additional Information: This weighting covers usually all quality criteria against price or cost criteria. - - - - - - - - - 1 - - - - - - - - - Has overall price award criteria ponderation - - - The weighting given to price. Additional Information: This weighting covers usually all price criteria against cost or quality criteria. - - - - - - - - - 1 - - - - - - - - - Has award criteria order justification - - - The justification for only indicating the award criteria's order of importance, not their weighing. Additional Information: This corresponds in eForms to BT-733 Award Criteria Order Justification. - - - - - - - - - 1 - - - - - - - - - Has overall cost award criteria ponderation - - - The weighting given to cost. Additional Information: This weighting covers usually all cost criteria against price or quality criteria. - - - - - - - - - 1 - - - - - - - - - Has threshold value - - - The cut-off level for a given concept. Additional Information: This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold). - - - - - - - - - 1 - 1 - - - - - - - - - Bias - - - Parameter used to adjust the evaluation of the Criterion. Additional Information: The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the "presence of local preferences distorting international specialisation and resource allocation". When quantified, this systematic error can be removed. - - - - - - - - - 1 - - - - - - - - - Weight - - - Relative importance of the Criterion. Additional Information: The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1. - - - - - - - - - 1 - - - - - - - - - Weighting consideration description - - - Explanation of how the weighting of a Criterion is to be used. Additional Information: This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process. - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Pref label - - - The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 - - - - - - - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - 1 - - - - - - - - - Pref label - - - The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 - - - - - - - - - 1 - - - - - - - - - Has award criteria stated in procurement documents - - - - - - - - - 1 - 1 - - - - - - - - - Has fixed value - - - This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed. - - - - - - - - - 1 - - - - - - - - - Describes objective participation rules - - - - - - - - - 1 - - - - - - - - - Describes verification method - - - - - - - - - 1 - - - - - - - - - Indicates performing staff information requirement - - - - - - - - - 1 - - - - - - - - - Has formula - - - The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543. - - - - - - - - - 1 - - - - - - - - - Describes profession relevant law - - - - - - - - - 1 - - - - - - - - - Has service reserved to particular profession - - - - - - - - - 1 - - - - - - - - - Describes profession - - - - - - - - - 1 - - - - - - - - - Has qualification condition - - - - - - - - - - - - - - - Has condition verification method - - - - - - - - - - - - - - - Has selection criteria stated in procurement documents - - - - - - - - - 1 - - - - - - - - - Describes minimum level of standards - - - - - - - - - 1 - - - - - - - - - Is used for candidate restriction - - - The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. Additional Information: This property is only used if a maximum number of candidates was foreseen in the procedure. This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite - - - - - - - - - 1 - - - - - - - - - Has total vehicles - - - The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 - - - - - - - - - 1 - - - - - - - - - Has zero emission vehicles - - - The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 - - - - - - - - - 1 - - - - - - - - - Has clean vehicles - - - The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 - - - - - - - - - 1 - - - - - - - - - Has non accessibility criterion justification - - - Reason for not applying accessibility criteria. Additional information: This corresponds in eForma to BT-755 Accessibility Justification. WG Approval 05/03/2019 - - - - - - - - - - - - - - - Has strategic procurement description - - - Self-explanatory text about a concept. - - - - - - - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Is to be relaunched - - - Indicator of whether the procurement object is to be relaunched. Additional information: This can be instantiated in the post award phase. This corresponds in eForms to BT-634 Procurement Relaunch. WG Approval: 18/01/2022 - - - - - - - - - 1 - - - - - - - - - Is competition terminated - - - No further contracts will be awarded in this procedure. Additional Information: This can be instantiated in the post award phase. PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. This corresponds in eForms to BT-756 PIN Competition Termination. - - - - - - - - - 1 - - - - - - - - - Is d p s terminated - - - End of the Dynamic Purchase System (DPS). Additional Information: This property can be used in the contract award notice even if no contracts are awarded. WG Approval 22/11/2019 - - - - - - - - - 1 - - - - - - - - - Has calculation method - - - Formula for obtaining values. Additional Information: The possible values are monetary values, ranking scores, criterion weighting. WG Approval 25/05/2018 - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Has estimated percentage - - - The estimated proportion foreseen to be subcontracted. WG Approval 07/01/2020 - - - - - - - - - 1 - - - - - - - - - Has subject matter - - - Description of the share of the contract that is to be subcontracted. Additional infromation: This can be an aggregate of several subcontracts. WG Approval 09/11/2021 - - - - - - - - - - - - - - - Has non awarded contract title - - - The title the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 - - - - - - - - - 1 - - - - - - - - - Has non awarded contract number - - - The number the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 - - - - - - - - - 1 - - - - - - - - - Has award rank - - - The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. Additional Information: This corresponds in eForms to BT-171 Tender Rank. - - - - - - - - - 1 - - - - - - - - - Has review irregularity count - - - The number of requests for a given irregularity. Additional information: This attribute corresponds in eForms to BT-635 Buyer Review Requests Count. - - - - - - - - - 1 - 1 - - - - - - - - - Has total number of complainants - - - The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. Additional information: This attribute corresponds in eForms to BT-712 Buyer Review Complainants WG Approval 11/04/2019 - - - - - - - - - 1 - - - - - - - - - Has e e a received tenders - - - The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. WG Approval 12/12/2019 - - - - - - - - - 1 - - - - - - - - - Has received participation requests - - - The amount of applications to participate from economic operators. WG Approval 12/12/2019 - - - - - - - - - 1 - - - - - - - - - Has non e e a received tenders - - - The amount of tenders received from economic operators in non-EEA countries. WG Approval 12/12/2019 15:20:36 - - - - - - - - - 1 - - - - - - - - - Has s m e received tenders - - - The amount of tenders received from micro, small and medium-sized enterprises. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. WG Approval 05/03/2020 - - - - - - - - - 1 - - - - - - - - - Has received micro tenders - - - The amount of tenders received from a micro enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. - - - - - - - - - 1 - - - - - - - - - Has received small tenders - - - Tenders from small enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. - - - - - - - - - 1 - - - - - - - - - Has medium tender per lots - - - Tenders from medium-sized enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. - - - - - - - - - 1 - - - - - - - - - Has received tenders - - - The total amount of tenders received. WG Approval 12/12/2019 - - - - - - - - - 1 - - - - - - - - - Has inadmissible tenders - - - Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. <u>Additional Information: </u> Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. WG Approval 12/12/2019 - - - - - - - - - 1 - - - - - - - - - Has abnormally low tenders - - - Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. Additional Information The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. WG Approval 28/07/2020 - - - - - - - - - 1 - - - - - - - - - Has non e u received tenders - - - The amount of tenders received from economic operators in non-EU countries. - - - - - - - - - 1 - - - - - - - - - Has unverified tenders - - - Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). WG Approval 28/07/2020 - - - - - - - - - 1 - - - - - - - - - Has electronic tenders - - - Electronic Tender Lots received. WG Approval 28/07/2020 - - - - - - - - - 1 - - - - - - - - - Has e u received tenders - - - The amount of tenders received from economic operators in other EU countries other than the country of the buyer. - - - - - - - - - 1 - - - - - - - - - Has other countries received tenders - - - - - - - - - 1 - - - - - - - - - Has estimated total subcontracts - - - The estimated amount of work to be subcontracted in the contract resulting from the lot. WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has number of tenderers invited - - - Number of economic operators invited to tender. Additional Information This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. WG Approval 01/12/2020 - - - - - - - - - 1 - - - - - - - - - Has payment value discrepancy justification - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - 1 - 1 - - - - - - - - - Has electronic submission - - - Transmission of tenders is possible by electronic means of communication. - - - - - - - - - 1 - - - - - - - - - Is variant - - - Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. Additional Information: The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. WG Approval 29/05/2019 - - - - - - - - - 1 - - - - - - - - - Has o j s issue number - - - - - - - - - 1 - - - - - - - - - Has o j s type - - - - - - - - - 1 - - - - - - - - - Has long title - - - - - - - - - 1 - - - - - - - - - Has notice publication number - - - - - - - - - 1 - - - - - - - - - Has form number - - - - - - - - - 1 - - - - - - - - - Has e forms subtype - - - - - - - - - 1 - - - - - - - - - Is e u institution - - - - - - - - - 1 - - - - - - - - - Has additional information - - - Supplementary data about the instance of the concept. WG Approval 15/10/2019 - - - - - - - - - 1 - - - - - - - - - Has e sender dispatch date - - - The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. Additional Information: Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. WG approval 20/06/2023 - - - - - - - - - 1 - - - - - - - - - Title - - - A name given to the resource. WG approval 30/05/2023 - - - - - - - - - 1 - - - - - - - - - Has publication date - - - Date of formal public issuance of the document. WG approval 20/06/2023 - - - - - - - - - 1 - - - - - - - - - Has reception date - - - Notes: Date when a record is acknowledged by an organisation. WG Approval 12/05/2020 - - - - - - - - - 1 - - - - - - - - - Has dispatch date - - - Date of transmission of a record to an organisation. WG Approval 12/05/2020 - - - - - - - - - 1 - - - - - - - - - Issued - - - Date of formal issuance of the resource. Additional information: This is generally used for modules other than eNotice. The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. WG approval 26/01/2023 - - - - - - - - - 1 - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - 1 - - - - - - - - - Has access u r l - - - Location where the resource can be accessed. WG approval 07/04/2022 - - - - - - - - - - - - - - - Has version - - - A number that identifies a specific state of a document. WG approval: 18/11/2021 - - - - - - - - - 1 - - - - - - - - - Has award decision date - - - The official date of the award decision. Additional Information: This corresponds in eForms to BT-1451 Winner Decision Date. WG Approval 09/01/2020 - - - - - - - - - 1 - - - - - - - - - Has additional non award justification - - - Further justification for the non award . Additional information: This is generally used when the non award reason code is set to "Other". WG: 18/01/2022 - - - - - - - - - 1 - - - - - - - - - Title - - - A name given to the resource. WG approval 30/05/2023 - - - - - - - - - - - - - - - Description - - - An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 - - - - - - - - - - - - - - - Has u r l - - - The identifier of a resource. Additional Information For example: 1. The URL of the system from where to access the procurement documents; 2. The URL of the system for the submission of tender documents; 3. The URL of the system from where to download a tool to communicate with the Buyer; 4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) 5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; WG Approval 30/09/2019 - - - - - - - - - 1 - - - - - - - - - Has contract conclusion date - - - The date the contract was signed by the last signatory party. <u>Additional Information:</u> In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. This concept is not to be confused with the date of completion/end of the contract. This corresponds in eForms to BT-145 Contract Conclusion Date. WG Approval 09/01/2020 - - - - - - - - - 1 - - - - - - - - - Has entry into force date - - - The date on which the contract enters into force. Additional information: This is generally the date on which the fulfillment of the contract begins. This corresponds in eForms to WG approval 05/11/2019 - - - - - - - - - 1 - - - - - - - - - Has decision date - - - The date of the review decision. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. - - - - - - - - - 1 - - - - - - - - - Has element reference - - - Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. - - - - - - - - - - - - - - - Has review u r l - - - The internet address of the documents concerning the review instance. Additional information: This attribute corresponds in eForms to BT-794 Review URL. - - - - - - - - - 1 - - - - - - - - - Has number of review requests - - - The number of requests the buyer received to review any of its decisions. - - - - - - - - - 1 - 1 - - - - - - - - - Is withdrawn - - - The review request was withdrawn. Additional information: This attribute corresponds in eForms to BT-796 Review Request Withdrawn. - - - - - - - - - 1 - - - - - - - - - Has withdrawal date - - - The date and time when the request for review was withdrawn. Additional information: This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date. - - - - - - - - - 1 - - - - - - - - - Has withdrawal reason - - - The explanation for withdrawing the request for review. Additional information: This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons - - - - - - - - - 1 - - - - - - - - - Has request date - - - The date when the review request was submitted. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. - - - - - - - - - 1 - - - - - - - - - Has element reference - - - Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. - - - - - - - - - 1 - 1 - - - - - - - - - Has previous version of element reference - - - Reference to the class instance in the previous version of the notice, which was changed. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. - - - - - - - - - 1 - - - - - - - - - Has change description - - - Explanatory text about the instance of the concept. WG Approval 30/09/2019 - - - - - - - - - - - - - - - Has change reason description - - - Explanatory text about why the element is altered. Additional information: This corresponds in eForms to BT-762 Change Reason Description. - - - - - - - - - - - - - - - Is procurement document changed - - - One or more procurement documents have been changed. Additional information: This corresponds in eForms to BT-718 Change Procurement Documents WG Approval 05/11/2019 - - - - - - - - - 1 - - - - - - - - - Has procurement document change date - - - The date and time of the change. Additional information: This corresponds in eForms to BT-719 Change Procurement Documents Date WG Approval 5/11/2019 - - - - - - - - - 1 - - - - - - - - - Has additional information - - - Supplementary data about the instance of the concept. WG Approval 15/10/2019 - - - - - - - - - 1 - - - - - - - - - Has instance reference - - - The URI of a given class that is being referred to. - - - - - - - - - 1 - 1 - - - - - - - - - Has property reference - - - The URI of a given attribute (property) that is being referred to. - - - - - - - - - 1 - 1 - - - - - - - - - Has accessibility date - - - The date at which unpublished data shall be published. WG Approval 11/06/2020 - - - - - - - - - 1 - - - - - - - - - Has confidentiality justification - - - A narrative explanation of why data is not published. Additional Information: This element is generally used when the non-publication-justification code chosen is "other". WG Approval 09/11/2021 - - - - - - - - - 1 - - - - - - - - - Has element reference - - - Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. - - - - - - - - - 1 - - - - - - - - - Has modification description - - - An explanatory text about this context. Additional Information This corresponds in Standard forms to Field VII.2.1 in F20 This corresponds in eForms to BT-202 . WG Approval 5/11/2019 - - - - - - - - - - - - - - - Has modification reason description - - - An explanation about the reasons for using the concept. Additional Information This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. This corresponds in eForms to BT-201 . WG Approval 5/11/2019 - - - - - - - - - - - - - - - Has preferred publication date - - - The date the buyer would like to have the record made publicly available. Additional Information: This corresponds in eForms to BT-738 Notice Publication Date Preferred. WG Approval 12/05/2020 - - - - - - - - - 1 - - - - - - - - - Notation - - - The literal identifying an entity, like a person or an object. - - - - - - - - - 1 - 1 - - - - - - - - - Schema agency - - - The name of the agency that issued the identifier. - - - - - - - - - - - - - - - Has scheme - - - The name of the identification scheme. - - - - - - - - - - - - - - - Has scheme version - - - The version of the identification scheme. - - - - - - - - - - - - - - - Has amount value - - - The numeric value of the amount, including decimals. - - - - - - - - - 1 - 1 - - - - - - - - - Has currency code list agency i d - - - Identifier of the agency that maintains the currency code list used. WG approval 13/04/2021 - - - - - - - - - - - - - - - Has currency code list agency name - - - Name of the agency that maintains the currency code list used. WG approval 13/04/2021 - - - - - - - - - - - - - - - Has currency code list i d - - - Concept scheme URI used for the currency code list. WG approval 13/04/2021 - - - - - - - - - - - - - - - Has beginning - - - The date and time on which this period begins. - - - - - - - - - 1 - - - - - - - - - Has end - - - The date and time at which this period ends. - - - - - - - - - 1 - - - - - - - - - Has quantity value - - - The numeric value of the quantity, including decimals. - - - - - - - - - 1 - 1 - - - - - - - - - Has unit description - - - A narrative explanation defining the units of items being counted Additional information: This could be for example individual items or pack or two. WG Approval 09/11/2021 - - - - - - - - - - - - - - - Numeric duration - - - Value of a temporal extent expressed as a number. - - - - - - - - - 1 - 1 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasCandidateList> ?that . ?that <http://data.europa.eu/a4g/ontology#hasCandidateList> ?this .} - - - - - - - - - - Has candidate list - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsInDynamicPurchasingSystem> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsInDynamicPurchasingSystem> ?this .} - - - - - - - - - - Results in dynamic purchasing system - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#usesCandidateList> ?that . ?that <http://data.europa.eu/a4g/ontology#usesCandidateList> ?this .} - - - - - - - - - - Uses candidate list - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesAwardCriterion> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesAwardCriterion> ?this .} - - - - - - - - - - Specifies award criterion - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#followsRulesSetBy> ?that . ?that <http://data.europa.eu/a4g/ontology#followsRulesSetBy> ?this .} - - - - - - - - - - Follows rules set by - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsMiniCompetition> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsMiniCompetition> ?this .} - - - - - - - - - - Concerns mini competition - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesMiniCompetitionAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesMiniCompetitionAwardDecision> ?this .} - - - - - - - - - - Comprises mini competition award decision - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsFromMiniCompetitionAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsFromMiniCompetitionAwardDecision> ?this .} - - - - - - - - - - Results from mini competition award decision - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#containsCandidate> ?that . ?that <http://data.europa.eu/a4g/ontology#containsCandidate> ?this .} - - - - - - - - - - Contains candidate - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasStartDate> ?that . ?that <http://data.europa.eu/a4g/ontology#hasStartDate> ?this .} - - - - - - - - - - Has start date - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPurpose> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPurpose> ?this .} - - - - - - - - - - Has purpose - - - Relation indicating a procurement part has a puropse. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isFundedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#isFundedBy> ?this .} - - - - - - - - - - Is funded by - - - Funding is provided either completely or partially by a Fund. Additional information: This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToTerm> ?this .} - - - - - - - - - - Is subject to term - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#fulfillsStrategicProcurement> ?that . ?that <http://data.europa.eu/a4g/ontology#fulfillsStrategicProcurement> ?this .} - - - - - - - - - - Fulfills strategic procurement - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesConcession> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesConcession> ?this .} - - - - - - - - - - Foresees concession - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#usesTechnique> ?that . ?that <http://data.europa.eu/a4g/ontology#usesTechnique> ?this .} - - - - - - - - - - Uses technique - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesContractSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesContractSpecificTerm> ?this .} - - - - - - - - - - Foresees contract specific term - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#contextualisedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#contextualisedBy> ?this .} - - - - - - - - - - Contextualised by - - - The place of the AgentInRole in the procurement is expressed by a ProcurementObject. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesProcurementObject> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesProcurementObject> ?this .} - - - - - - - - - - Foresees procurement object - - - Relation indicating the instance of a Procurement Object that is planned. Additional Information: The properties of the Procurement Object that is foreseen should be read as foreseen properties. For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?this .} - - - - - - - - - - Specifies procurement criterion - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToLotSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToLotSpecificTerm> ?this .} - - - - - - - - - - Is subject to lot specific term - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLotReference> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLotReference> ?this .} - - - - - - - - - - Has lot reference - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#setsGroupingContextForLot> ?that . ?that <http://data.europa.eu/a4g/ontology#setsGroupingContextForLot> ?this .} - - - - - - - - - - Sets grouping context for lot - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToLot> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToLot> ?this .} - - - - - - - - - - Refers to lot - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousProcedureLot> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousProcedureLot> ?this .} - - - - - - - - - - Refers to previous procedure lot - - - Reference to one or more Lots in a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier WG Approval 22/11/2019 14:33:55 - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubmittedForLot> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubmittedForLot> ?this .} - - - - - - - - - - Is submitted for lot - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsReviewSummaryForLot> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsReviewSummaryForLot> ?this .} - - - - - - - - - - Concerns review summary for lot - - - Relates to Lot review summary. Additional information: This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#describesLotCompletion> ?that . ?that <http://data.europa.eu/a4g/ontology#describesLotCompletion> ?this .} - - - - - - - - - - Describes lot completion - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsLot> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsLot> ?this .} - - - - - - - - - - Concerns lot - - - Relates to Lot. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsLot> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsLot> ?this .} - - - - - - - - - - Concerns lot - - - Relates to Lot. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasProcurementScopeDividedIntoLot> ?that . ?that <http://data.europa.eu/a4g/ontology#hasProcurementScopeDividedIntoLot> ?this .} - - - - - - - - - - Has procurement scope divided into lot - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesTechnique> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesTechnique> ?this .} - - - - - - - - - - Foresees technique - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPlannedPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPlannedPeriod> ?this .} - - - - - - - - - - Has planned period - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPlannedDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPlannedDuration> ?this .} - - - - - - - - - - Has planned duration - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPlannedPart> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPlannedPart> ?this .} - - - - - - - - - - Refers to planned part - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToProcedureSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToProcedureSpecificTerm> ?this .} - - - - - - - - - - Is subject to procedure specific term - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isExecutedByProcurementServiceProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#isExecutedByProcurementServiceProvider> ?this .} - - - - - - - - - - Is executed by procurement service provider - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#involvesBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#involvesBuyer> ?this .} - - - - - - - - - - Involves buyer - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isResponsibilityOfBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#isResponsibilityOfBuyer> ?this .} - - - - - - - - - - Is responsibility of buyer - - - - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesProcurementCriteriaSummary> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesProcurementCriteriaSummary> ?this .} - - - - - - - - - - Specifies procurement criteria summary - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousProcedure> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousProcedure> ?this .} - - - - - - - - - - Refers to previous procedure - - - Reference to a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsProcedure> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsProcedure> ?this .} - - - - - - - - - - Concerns procedure - - - Relates to Procedure. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToProcedure> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToProcedure> ?this .} - - - - - - - - - - Refers to procedure - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?this .} - - - - - - - - - - Specifies procurement criterion - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesLotGroup> ?that . ?that <http://data.europa.eu/a4g/ontology#definesLotGroup> ?this .} - - - - - - - - - - Defines lot group - - - Relation indicating a ProcedureTerm has a LotGroup. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#describesLotGroup> ?that . ?that <http://data.europa.eu/a4g/ontology#describesLotGroup> ?this .} - - - - - - - - - - Describes lot group - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToGrouping> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToGrouping> ?this .} - - - - - - - - - - Is subject to grouping - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubmittedForLotGroup> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubmittedForLotGroup> ?this .} - - - - - - - - - - Is submitted for lot group - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#usesChannel> ?that . ?that <http://data.europa.eu/a4g/ontology#usesChannel> ?this .} - - - - - - - - - - Uses channel - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasInternalIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasInternalIdentifier> ?this .} - - - - - - - - - - Has internal identifier - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedValue> ?this .} - - - - - - - - - - Has estimated value - - - A forecast of the value of the procurement before competition. Additional Information: Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). <b> </b><b>WG Approval 05/12/2019</b> - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTotalQuantity> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTotalQuantity> ?this .} - - - - - - - - - - Has total quantity - - - The number of units required. Additional Information: The quantity needs to go along with the unit. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesTender> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesTender> ?this .} - - - - - - - - - - Comprises tender - - - Incorporates Tender. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTotalValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTotalValue> ?this .} - - - - - - - - - - Has total value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/registeredAddress> ?that . ?that <http://data.europa.eu/m8g/registeredAddress> ?this .} - - - - - - - - - - Registered address - - - The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/person#placeOfBirth> ?that . ?that <http://www.w3.org/ns/person#placeOfBirth> ?this .} - - - - - - - - - - Place of birth - - - The Location where the Person was born. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/person#placeOfDeath> ?that . ?that <http://www.w3.org/ns/person#placeOfDeath> ?this .} - - - - - - - - - - Place of death - - - The Location where the Person died. - - - - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasBeneficialOwner> ?that . ?that <http://data.europa.eu/a4g/ontology#hasBeneficialOwner> ?this .} - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isBeneficialOwnerOf> ?that . ?that <http://data.europa.eu/a4g/ontology#isBeneficialOwnerOf> ?this .} - - - - - - - - - - Has beneficial owner - - - A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 - - - - - - - - - Is beneficial owner of - - - A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasMember> ?that . ?that <http://data.europa.eu/a4g/ontology#hasMember> ?this .} - - - - - - - - - - Has member - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#leadBy> ?that . ?that <http://data.europa.eu/a4g/ontology#leadBy> ?this .} - - - - - - - - - - Lead by - - - - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isOwnedByAgent> ?that . ?that <http://data.europa.eu/a4g/ontology#isOwnedByAgent> ?this .} - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#ownsSystem> ?that . ?that <http://data.europa.eu/a4g/ontology#ownsSystem> ?this .} - - - - - - - - - - Is owned by agent - - - - - - - - - Owns system - - - - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#playedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#playedBy> ?this .} - - - - - - - - - - Played by - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#playedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#playedBy> ?this .} - - - - - - - - - - Played by - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLegalIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLegalIdentifier> ?this .} - - - - - - - - - - Has legal identifier - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/registeredAddress> ?that . ?that <http://data.europa.eu/m8g/registeredAddress> ?this .} - - - - - - - - - - Registered address - - - The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/address> ?that . ?that <http://data.europa.eu/m8g/address> ?this .} - - - - - - - - - - Address - - - Associates any Resource with the corresponding Address. Additional Information: Asserting the address relationship implies that the Resource has an Address. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPrimaryContactPoint> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPrimaryContactPoint> ?this .} - - - - - - - - - - Has primary contact point - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTaxIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTaxIdentifier> ?this .} - - - - - - - - - - Has tax identifier - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#exposesChannel> ?that . ?that <http://data.europa.eu/a4g/ontology#exposesChannel> ?this .} - - - - - - - - - - Exposes channel - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasContactPointInRole> ?that . ?that <http://data.europa.eu/a4g/ontology#hasContactPointInRole> ?this .} - - - - - - - - - - Has contact point in role - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesInformationProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesInformationProvider> ?this .} - - - - - - - - - - Defines information provider - - - Relation indicating a ProcedureTerm has an information provider. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesBudgetProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesBudgetProvider> ?this .} - - - - - - - - - - Defines budget provider - - - Relation indicating a ProcedureTerm has a BudgetProvider. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#signsAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#signsAwardDecision> ?this .} - - - - - - - - - - Signs award decision - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#indicatesInvoiceeContactPoint> ?that . ?that <http://data.europa.eu/a4g/ontology#indicatesInvoiceeContactPoint> ?this .} - - - - - - - - - - Indicates invoicee contact point - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#exposesInvoiceeChannel> ?that . ?that <http://data.europa.eu/a4g/ontology#exposesInvoiceeChannel> ?this .} - - - - - - - - - - Exposes invoicee channel - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#delegatesAncillaryActivitiesTo> ?that . ?that <http://data.europa.eu/a4g/ontology#delegatesAncillaryActivitiesTo> ?this .} - - - - - - - - - - Delegates ancillary activities to - - - Entrusts ancillary purchasing activities to ProcurementServiceProvider. Additional Information: Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; (b) advice on the conduct or design of public procurement procedures; (c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned; - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#bindsBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#bindsBuyer> ?this .} - - - - - - - - - - Binds buyer - - - Provides legal constraint on the Buyer. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#actsOnBehalfOf> ?that . ?that <http://data.europa.eu/a4g/ontology#actsOnBehalfOf> ?this .} - - - - - - - - - - Acts on behalf of - - - Represents. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#signedByBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#signedByBuyer> ?this .} - - - - - - - - - - Signed by buyer - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesCatalogueProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesCatalogueProvider> ?this .} - - - - - - - - - - Defines catalogue provider - - - Relation indicating an AccessTerm has a CatalogueProvider. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesCatalogueReceiver> ?that . ?that <http://data.europa.eu/a4g/ontology#definesCatalogueReceiver> ?this .} - - - - - - - - - - Defines catalogue receiver - - - Relation indicating an AccessTerm has a CatalogueReceiver. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#needsToBeAWinner> ?that . ?that <http://data.europa.eu/a4g/ontology#needsToBeAWinner> ?this .} - - - - - - - - - - Needs to be a winner - - - The Contractor must be a Winner. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#signedByContractor> ?that . ?that <http://data.europa.eu/a4g/ontology#signedByContractor> ?this .} - - - - - - - - - - Signed by contractor - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#bindsContractor> ?that . ?that <http://data.europa.eu/a4g/ontology#bindsContractor> ?this .} - - - - - - - - - - Binds contractor - - - Provides legal constraint on the Contractor. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesMediator> ?that . ?that <http://data.europa.eu/a4g/ontology#definesMediator> ?this .} - - - - - - - - - - Defines mediator - - - Relation indicating a ProcedureTerm has a Mediator. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#distributesOffer> ?that . ?that <http://data.europa.eu/a4g/ontology#distributesOffer> ?this .} - - - - - - - - - - Distributes offer - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesOfflineAccessProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesOfflineAccessProvider> ?this .} - - - - - - - - - - Defines offline access provider - - - Relation indicating an AccessTerm has an OfflineAccessProvider. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesParticipationRequestProcessor> ?that . ?that <http://data.europa.eu/a4g/ontology#definesParticipationRequestProcessor> ?this .} - - - - - - - - - - Defines participation request processor - - - Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesParticipationRequestReceiver> ?that . ?that <http://data.europa.eu/a4g/ontology#definesParticipationRequestReceiver> ?this .} - - - - - - - - - - Defines participation request receiver - - - Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesPaymentExecutor> ?that . ?that <http://data.europa.eu/a4g/ontology#definesPaymentExecutor> ?this .} - - - - - - - - - - Defines payment executor - - - Relation indicating a ContractTerm has a PaymentExecutor. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesProcurementProcedureInformationProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesProcurementProcedureInformationProvider> ?this .} - - - - - - - - - - Defines procurement procedure information provider - - - Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesSubcontractors> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesSubcontractors> ?this .} - - - - - - - - - - Specifies subcontractors - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#substantiatesExclusionGround> ?that . ?that <http://data.europa.eu/a4g/ontology#substantiatesExclusionGround> ?this .} - - - - - - - - - - Substantiates exclusion ground - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#needsToBeATenderer> ?that . ?that <http://data.europa.eu/a4g/ontology#needsToBeATenderer> ?this .} - - - - - - - - - - Needs to be a tenderer - - - The Winner must be a Tenderer. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubmitedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubmitedBy> ?this .} - - - - - - - - - - Is submited by - - - Relation indicating the submission of a tender by an economic operator. WG approval 18/05/2021 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesTenderProcessor> ?that . ?that <http://data.europa.eu/a4g/ontology#definesTenderProcessor> ?this .} - - - - - - - - - - Defines tender processor - - - Relation indicating a SubmissionTerm has a TenderProcessor. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesTenderReceiver> ?that . ?that <http://data.europa.eu/a4g/ontology#definesTenderReceiver> ?this .} - - - - - - - - - - Defines tender receiver - - - Relation indicating a SubmissionTerm has a TenderReceiver. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#indicatesAwardToWinner> ?that . ?that <http://data.europa.eu/a4g/ontology#indicatesAwardToWinner> ?this .} - - - - - - - - - - Indicates award to winner - - - Reveals the winner to whom the tender award outcome is attributed. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/address> ?that . ?that <http://data.europa.eu/m8g/address> ?this .} - - - - - - - - - - Address - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEndpointIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEndpointIdentifier> ?this .} - - - - - - - - - - Has endpoint identifier - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#geographicIdentifier> ?that . ?that <http://www.w3.org/ns/locn#geographicIdentifier> ?this .} - - - - - - - - - - Geographic identifier - - - A URI that identifies the Location. Additional Information: GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - http://dbpedia.org/resource/ISO_3166-1:GR - http://dbpedia.org/resource/ISO_3166-1:GB even when the geographic name is given as EL or UK. The use of a URIs has added advantages: - it can be used by automated systems to look up additional data (linked data); - a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#geometry> ?that . ?that <http://www.w3.org/ns/locn#geometry> ?this .} - - - - - - - - - - Geometry - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#address> ?that . ?that <http://www.w3.org/ns/locn#address> ?this .} - - - - - - - - - - Address - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesPlaceOfPerformance> ?that . ?that <http://data.europa.eu/a4g/ontology#definesPlaceOfPerformance> ?this .} - - - - - - - - - - Defines place of performance - - - Relation indicating the place of performance of a Contract. WG approval 21/03/2023 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#addressID> ?that . ?that <http://www.w3.org/ns/locn#addressID> ?this .} - - - - - - - - - - Address i d - - - A globally unique identifier for each instance of an Address. Additional Information: The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesOpeningPlace> ?that . ?that <http://data.europa.eu/a4g/ontology#definesOpeningPlace> ?this .} - - - - - - - - - - Defines opening place - - - The place where the tenders will be publicly opened. WG Approval 10-10-2019 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToContractSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToContractSpecificTerm> ?this .} - - - - - - - - - - Is subject to contract specific term - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#involvesProcurementDocument> ?that . ?that <http://data.europa.eu/a4g/ontology#involvesProcurementDocument> ?this .} - - - - - - - - - - Involves procurement document - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTenderValidityPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTenderValidityPeriod> ?this .} - - - - - - - - - - Has tender validity period - - - The relation indicating until when a tender instance is applicable. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesContractDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#definesContractDuration> ?this .} - - - - - - - - - - Defines contract duration - - - Relation indicating a ContractTerm has a Duration. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesSubcontractingTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#definesSubcontractingTerm> ?this .} - - - - - - - - - - Defines subcontracting term - - - Relation indicating a term has a subterm. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesContractPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#definesContractPeriod> ?this .} - - - - - - - - - - Defines contract period - - - Relation indicating a ContractTerm has a Period. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesPrize> ?that . ?that <http://data.europa.eu/a4g/ontology#definesPrize> ?this .} - - - - - - - - - - Defines prize - - - Relation indicating a DesignContestRegimeTerm has a Prize. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLaunchFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLaunchFrameworkAgreementMaximumValue> ?this .} - - - - - - - - - - Has launch framework agreement maximum value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLaunchGroupFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLaunchGroupFrameworkAgreementMaximumValue> ?this .} - - - - - - - - - - Has launch group framework agreement maximum value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasQualificationSystemDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#hasQualificationSystemDuration> ?this .} - - - - - - - - - - Has qualification system duration - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPrizeValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPrizeValue> ?this .} - - - - - - - - - - Has prize value - - - The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. Additional Information: This corresponds to BT-644 in eForms. WG Approval 29/08/2019 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/constrains> ?that . ?that <http://data.europa.eu/m8g/constrains> ?this .} - - - - - - - - - - Constrains - - - Information Concept about which a Constraint expresses a limitation. Additional Information: Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasConstraint> ?that . ?that <http://data.europa.eu/a4g/ontology#hasConstraint> ?this .} - - - - - - - - - - Has constraint - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/supportsRequirement> ?that . ?that <http://data.europa.eu/m8g/supportsRequirement> ?this .} - - - - - - - - - - Supports requirement - - - Requirement for which the Evidence provides proof. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/supportsConcept> ?that . ?that <http://data.europa.eu/m8g/supportsConcept> ?this .} - - - - - - - - - - Supports concept - - - Information Concept providing facts found/inferred from the Evidence. Additional Information: Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as "I am older that 18 years" or "this is a FairTrade product". - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/hasRequirement> ?that . ?that <http://data.europa.eu/m8g/hasRequirement> ?this .} - - - - - - - - - - Has requirement - - - A more specific Requirement that is part of the Requirement. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasValidityPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#hasValidityPeriod> ?this .} - - - - - - - - - - Has validity period - - - The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasConcessionEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasConcessionEstimatedValue> ?this .} - - - - - - - - - - Has concession estimated value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedUserConcessionRevenue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedUserConcessionRevenue> ?this .} - - - - - - - - - - Has estimated user concession revenue - - - The estimated revenue coming from the use of the concession. Additional Information: Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. This corresponds to BT-162 in eForms. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedBuyerConcessionRevenue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedBuyerConcessionRevenue> ?this .} - - - - - - - - - - Has estimated buyer concession revenue - - - The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. <u>Additional Information:</u> For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. This corresponds to BT-160 in eForms. WG Approval 07/01/2020 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesConcession> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesConcession> ?this .} - - - - - - - - - - Foresees concession - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasSubcontractingEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasSubcontractingEstimatedValue> ?this .} - - - - - - - - - - Has subcontracting estimated value - - - The estimated value of a single subcontract. This relates to BT-553 in eForms. WG Approval 01/09/2020 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesSubcontracting> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesSubcontracting> ?this .} - - - - - - - - - - Foresees subcontracting - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasAwardedEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasAwardedEstimatedValue> ?this .} - - - - - - - - - - Has awarded estimated value - - - The estimated value that can be spent as provided by the Award Decision. <u>Additional Information</u>: This property is used for framework agreements and dynamic purchasing systems. Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. WG Approval 12/12/2019 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementMaximumValue> ?this .} - - - - - - - - - - Has framework agreement maximum value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementEstimatedValue> ?this .} - - - - - - - - - - Has framework agreement estimated value - - - This refers to BT-660 in eForms. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?this .} - - - - - - - - - - Has approximate framework agreement value - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?this .} - - - - - - - - - - Results from lot award decision - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?this .} - - - - - - - - - - Results from lot award decision - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesLotAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesLotAwardDecision> ?this .} - - - - - - - - - - Comprises lot award decision - - - Incorporates LotAwardOutcome. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasGroupFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasGroupFrameworkAgreementMaximumValue> ?this .} - - - - - - - - - - Has group framework agreement maximum value - - - This corresponds to BT-156 in the eForms. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasMaximumFrameworkAgreementAwardedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasMaximumFrameworkAgreementAwardedValue> ?this .} - - - - - - - - - - Has maximum framework agreement awarded value - - - The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. Additional information: The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. The Framework Agreements in a CAN are to be traced back and added to provide this value. This corresponds to the BT-118 in eForms. WG Approval 03/12/2019 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasProcurementHighestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasProcurementHighestReceivedTenderValue> ?this .} - - - - - - - - - - Has procurement highest received tender value - - - The highest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?this .} - - - - - - - - - - Has approximate framework agreement value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasProcurementLowestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasProcurementLowestReceivedTenderValue> ?this .} - - - - - - - - - - Has procurement lowest received tender value - - - The lowest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTotalAwardedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTotalAwardedValue> ?this .} - - - - - - - - - - Has total awarded value - - - The awarded value of all lots announced in this notice, including options and renewals. Additional information: The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. The values of the individual lots announced in a CAN are to be traced back and added to provide this value. This corresponds to the BT-161 in eForms. WG Approval 03/12/2019 - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsTender> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsTender> ?this .} - - - - - - - - - - Concerns tender - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesTenderAwardOutcome> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesTenderAwardOutcome> ?this .} - - - - - - - - - - Comprises tender award outcome - - - Incorporates TenderAwardOutcome. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasReviewIrregularitySummary> ?that . ?that <http://data.europa.eu/a4g/ontology#hasReviewIrregularitySummary> ?this .} - - - - - - - - - - Has review irregularity summary - - - Additional information: This relation corresponds in eForms to BG-613 Buyer Review Requests - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasHighestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasHighestReceivedTenderValue> ?this .} - - - - - - - - - - Has highest received tender value - - - Amount of the Tender with the highest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLowestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLowestReceivedTenderValue> ?this .} - - - - - - - - - - Has lowest received tender value - - - Amount of the Tender with the lowest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#summarisesInformationForAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#summarisesInformationForAwardDecision> ?this .} - - - - - - - - - - Summarises information for award decision - - - Relates to submission for the given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToContract> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToContract> ?this .} - - - - - - - - - - Refers to contract - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#providesContractTotalPenaltyValue> ?that . ?that <http://data.europa.eu/a4g/ontology#providesContractTotalPenaltyValue> ?this .} - - - - - - - - - - Provides contract total penalty value - - - Additional Information: This corresponds to BT-782 in eForms. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#providesContractTotalPaymentValue> ?that . ?that <http://data.europa.eu/a4g/ontology#providesContractTotalPaymentValue> ?this .} - - - - - - - - - - Provides contract total payment value - - - Additional Information: This corresponds to BT-779 in eForms. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElectronicSignature> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElectronicSignature> ?this .} - - - - - - - - - - Has electronic signature - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasFinancialOfferValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasFinancialOfferValue> ?this .} - - - - - - - - - - Has financial offer value - - - The value offered by the Tenderer for a Lot. Additional Information: This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. This corresponds to BT-720 in eForms. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#includesTender> ?that . ?that <http://data.europa.eu/a4g/ontology#includesTender> ?this .} - - - - - - - - - - Includes tender - - - Additional information: This corresponds in eForms to BT-3202 Contract Tender Identifier. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToNotice> ?this .} - - - - - - - - - - Refers to notice - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#describesNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#describesNotice> ?this .} - - - - - - - - - - Describes notice - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousNotice> ?this .} - - - - - - - - - - Refers to previous notice - - - Additional information: This corresponds in eForms to BT-758 Change Notice Version Identifier. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToOriginalNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToOriginalNotice> ?this .} - - - - - - - - - - Refers to original notice - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasUUID> ?that . ?that <http://data.europa.eu/a4g/ontology#hasUUID> ?this .} - - - - - - - - - - Has u u i d - - - A universally unique identifier for an instance of this document. WG Approval 12/05/2020 - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#associatedWith> ?that . ?that <http://data.europa.eu/a4g/ontology#associatedWith> ?this .} - - - - - - - - - - Associated with - - - The document to which a document is associated. WGM 01/03/2022 - - - - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElectronicDigest> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElectronicDigest> ?this .} - - - - - - - - - - Has electronic digest - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPrevious> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPrevious> ?this .} - - - - - - - - - - Refers to previous - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasAwardedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasAwardedValue> ?this .} - - - - - - - - - - Has awarded value - - - The value of the procurement provided by the Award Decision. Additional Information: Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. WG Approval 10/12/2019 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasBargainPrice> ?that . ?that <http://data.europa.eu/a4g/ontology#hasBargainPrice> ?this .} - - - - - - - - - - Has bargain price - - - The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. WG approval 23/05/2023 - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} - - - - - - - - - - Identifier - - - Links a resource to an adms:Identifier class. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasContractValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasContractValue> ?this .} - - - - - - - - - - Has contract value - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedDuration> ?this .} - - - - - - - - - - Has estimated duration - - - Relation indicating a Contract has an estimated Duration. Additional Information When the Lot uses a Technique the contract estimated duration applies to the Technique. - - - - - - 1 - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resolvesReviewRequest> ?that . ?that <http://data.europa.eu/a4g/ontology#resolvesReviewRequest> ?this .} - - - - - - - - - - Resolves review request - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasRemedyValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasRemedyValue> ?this .} - - - - - - - - - - Has remedy value - - - Additional information: This relation corresponds in eForms to BT-793 Review Remedy Value. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousReview> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousReview> ?this .} - - - - - - - - - - Refers to previous review - - - Additional information: This relation corresponds in eForms to BT-785 "Review Previous Identifier". - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasReviewRequestFee> ?that . ?that <http://data.europa.eu/a4g/ontology#hasReviewRequestFee> ?this .} - - - - - - - - - - Has review request fee - - - Additional information: This relation corresponds in eForms to BT-795 Review Request Fee. - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementModification> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementModification> ?this .} - - - - - - - - - - Has element modification - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementChange> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementChange> ?this .} - - - - - - - - - - Has element change - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementConfidentiality> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementConfidentiality> ?this .} - - - - - - - - - - Has element confidentiality - - - Relation indication that the publication provision applies to a given field of a document. - - - - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementDescription> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementDescription> ?this .} - - - - - - - - - - Has element description - - - - - - 1 - - - - SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#containsModificationsOf> ?that . ?that <http://data.europa.eu/a4g/ontology#containsModificationsOf> ?this .} - - - - - - - - - - Contains modifications of - - - Additional information This relation shall be used between Instances of the SAME type/class. The "modifying-instance" can be minimally instantiated, carrying the fields/information that override the fields in the "modified-instance". This means that the "modifying-instance" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. - - - - - - - - - - - - Has legal basis - - - The legal basis under which the procurement procedure takes place. Additional Information: For example European Directives or Regulations, national law WG 09/11/2021 The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis - - - - - - - - - - - - Has legal regime - - - - - - 1 - 1 - - - - - - - - - Has procedure type - - - Identification of the Procedure used. WG Approval 09/06/2020 - - - - - - 1 - - - - - - - - - Has main classification - - - - - - - - - - - - Has additional classification - - - - - - - - - - - - Has nationality - - - - - - - - - 1 - - - - - - - - - Has country of birth - - - The country in which the Person was born. - - - - - - 1 - - - - - - - - - Has business size - - - The category of the business depending on number of employees and turnover. Additional information: See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. WG Approval 28/05/2020 - - - - - - 1 - - - - - - - - - Has main activity - - - The principal sectoral area in which an organisation operates. Additional information: The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). WG Approval 05/05/2020 - - - - - - 1 - - - - - - - - - Has registration country - - - - - - 1 - - - - - - - - - Has buyer legal type - - - A category that indicates the right of an Organisation to play the role of a buyer. Additional Information: The category also effects the rules that the buyer has to abide to within the public procurement procedure. WG 07/09/2021 - - - - - - - - - - - - Has review body type - - - - - - 1 - - - - - - - - - Has country code - - - - - - 1 - - - - - - - - - Has nuts code - - - - - - 1 - - - - - - - - - Has nuts code - - - - - - 1 - - - - - - - - - Has country code - - - - - - - - - 1 - - - - - - - - - Has document restriction justification - - - An explanation about the reasons why some procurement documents are restricted. Additional Information: This corresponds in eForms to BT-707 Documents Restricted Justification. WG Approval 09/03/2021 - - - - - - 1 - - - - - - - - - Has direct award justification - - - List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. WG Approval 28/05/2020 - - - - - - 1 - - - - - - - - - Has late submission permission - - - Whether economic operator-related information can be supplemented even after the submission deadline. Additional Information This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. WG Approval 21/07/2020 - - - - - - - - - - - - Has non electronic submission justification - - - Reason for not accepting electronic information. WG Approval 21/07/2020 - - - - - - 1 - - - - - - - - - Has variant permission - - - The obligation or possibility for tenderers to submit variants or not. Additional Information: Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. Additional Information: Further conditions for submitting variant tenders are in the procurement documents. - - - - - - 1 - - - - - - - - - Has e submission permission - - - The requirements as to what extent electronic submission is allowed. WG Approval 03/10/2019 - - - - - - - - - - - - Has tender subcontracting information - - - The information about subcontracting that must be indicated in the tender. WG Approval 10/10/2019 - - - - - - 1 - - - - - - - - - Has e catalogue permission - - - The extent to which electronic catalogues may be used in tenders. WG Approval 03/10/2019 - - - - - - - - - - - - Has language - - - Language in which the submitted information is to be expressed. WG Approval 21/07/2020 - - - - - - 1 - - - - - - - - - Has broad place of performance - - - Geopolitical zone where the contract can be executed. Additional Information Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). - - - - - - 1 - - - - - - - - - Has e invoicing permission - - - - - - 1 - - - - - - - - - Has reserved execution - - - - - - 1 - - - - - - - - - Has contract nature type - - - Subject of the acquisition. WG Approval 11/06/2020 - - - - - - - - - - - - Has additional contract nature - - - Additional type of acquisition taken into consideration in the contract. WG Approval 11/06/2020 - - - - - - 1 - 1 - - - - - - - - - Has framework agreement type - - - The form of framework agreement used in a procurement procedure. Addition information: A concept to distinguish the different types of framework agreement, which are: 1. Framework agreement without reopening of competition, 2. Framework agreement with reopening of competition, or 3. Framework agreement partly without reopening of competition. WG Approval 19/09/2019 - - - - - - - - - - - - Has subcontracting obligation - - - The requirement the tender must meet with regard to subcontracting parts of the contract. WG Approval 09/11/2021 - - - - - - - - - - - - Has threshold type - - - The method to interpret the threshold value as minimum or a maximum. WG Approval 17/09/2019 - - - - - - 1 - - - - - - - - - Type - - - Category to which the Requirement belongs. - - - - - - 1 - - - - - - - - - Confidentiality level type - - - Security classification assigned to an Evidence e.g. classified, sensitive, public. Additional Information: Classifications should be defined by an organisation/country as an outcome of a security assessment. - - - - - - 1 - - - - - - - - - Has award criterion type - - - Category of award criterion. - - - - - - 1 - - - - - - - - - Has fixed value type - - - The method to interpret the fixed value as pertaining to a total or unit. WG Approval 17/09/2019 - - - - - - - - - - - - Has reserved procurement - - - Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 - - - - - - - - - - - - Has reserved procurement - - - Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 - - - - - - 1 - - - - - - - - - Has weight value type - - - No definition. Waiting on CCCEV alignment. - - - - - - - - - - - - Has performing staff qualification information - - - Explanation as to if and/or when information of the persons to carry out the contract is to be provided. WG Approval 09/11/2021 The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage - - - - - - 1 - - - - - - - - - Has selection criteria usage - - - Additional Information: This corresponds in eForms to BT-748 Selection Criteria Used. - - - - - - 1 - - - - - - - - - Has selection criterion type - - - The classification of the selection criteria. Additional Information: This corresponds in eForms to BT-747 Selection Criteria Type. WG Approval 09/11/2021 - - - - - - 1 - - - - - - - - - Fulfills requirement - - - The requirement to which the concept meets. WG Approval 09/11/2021 - - - - - - 1 - - - - - - - - - Fulfills requirement - - - The requirement to which the concept meets. WG Approval 09/11/2021 - - - - - - 1 - - - - - - - - - Fulfills requirement - - - The requirement to which the concept meets. WG Approval 09/11/2021 - - - - - - - - - - - - Includes accessibility criterion - - - Explanation as to whether accessibility Criterion are used or not. WG Approval 09/11/2021 - - - - - - 1 - - - - - - - - - Has d p s scope - - - Explanation as to whether a dps is used and by whom. WG Approval 09/11/2021 The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usage - - - - - - 1 - - - - - - - - - Has usage - - - The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage - - - - - - 1 - 1 - - - - - - - - - Has irregularity type - - - Additional information: This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type - - - - - - 1 - - - - - - - - - Has received submission type - - - - - - - - - - - - Has item country of origin - - - The source country of the product or service. Additional Information: The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. WG Approval 07/01/2020 The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country - - - - - - 1 - - - - - - - - - Is based on implementing regulation - - - Indicates under which regulation a notice is created. WG Acceptance 06/09/2022 - - - - - - 1 - - - - - - - - - Conforms to legal basis - - - The Notice was designed in accordance with the given legal basis. Additional Information: This Notice can be used for Procedures which do not have the same legal basis. This holds for standard forms. - - - - - - 1 - 1 - - - - - - - - - Has notice type - - - - - - 1 - - - - - - - - - Has notification content type - - - A categorisation of templates for sets of Procurement information to be conveyed in Notices. WG Approval 12/05/2020 - - - - - - 1 - - - - - - - - - Conforms to specific legal basis - - - - - - 1 - - - - - - - - - Has form type - - - A categorisation of the steps in which the Notice is used. WG Approval 12/05/2020 - - - - - - 1 - - - - - - - - - Has official language - - - The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. WG Approval 03/10/2019 - - - - - - - - - - - - Has unofficial language - - - The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. WG Approval 03/10/2019 - - - - - - 1 - - - - - - - - - Has award status - - - Indicates whether the lot is awarded, not awarded or still open. WG Approval 03/12/2019 - - - - - - 1 - - - - - - - - - Has non award justification - - - On hold; Enumeration. - - - - - - 1 - - - - - - - - - Has fund programme - - - - - - 1 - - - - - - - - - Has procurement classification - - - - - - - - - - - - Provides ruling on remedy - - - States the measures to be taken after a review procedure. - - - - - - - - - - - - Has confirmed irregularity type - - - Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type - - - - - - - - - - - - Has review decision type - - - Additional information: This relation corresponds in eForms to BT-790 Review Decision Type. - - - - - - 1 - - - - - - - - - Has alleged irregularity type - - - Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type - - - - - - - - - - - - Requests remedy type - - - Additional information: This relation corresponds in eForms to BT-792 Review Remedy Type - - - - - - 1 - 1 - - - - - - - - - Has change justification - - - The motives for the change. WG 5/11/2019 The codelist to be used is at-voc:change-corrig-justification which is available at http://publications.europa.eu/resource/dataset/change-corrig-justification - - - - - - 1 - 1 - - - - - - - - - Has non publication justification - - - The reason why data is not published. WG Approval 11/06/2020 - - - - - - 1 - 1 - - - - - - - - - Has modification justification - - - Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. - - - - - - 1 - - - - - - - - - Has currency - - - The identifier of the currency as in the standard code list used. - - - - - - 1 - - - - - - - - - Has time period - - - - - - - - - 1 - 1 - - - - - - - - - Has unit code - - - - - - 1 - 1 - - - - - - - - - Unit type - - - In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) - - - When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions. - - - This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping - - - In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria. - - - In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) - - - Check definitions for all concepts and relations. - - - Check definitions for all concepts and relations. - - - Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract. - - - Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. - - - Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. - - - Proposal to omit this link until we bring tax into ePO core because this does not appear in the data - - - <b>Procedure/ PlannedProcurementPart / Lot</b> are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the "process" description and "whole procurement subject matter". TODO: revise this definition. TODO: specify that all procedures have al least one lot. - - - should this be moved to document? - - - if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject. - - - there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..* - - - In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. - - - In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. - - - A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023 - - - based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure - - - BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision. - - - Context: Consumption or end use of the procurement (goods and service). - - - Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms). - - - Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. - - - Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. - - - To be decided if this should stay in the core or in the Offer module - - - What are the entities that can be reviewed? - - - This does not work in practice. - - - Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms. - - diff --git a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl deleted file mode 100644 index e27ea5c..0000000 --- a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl +++ /dev/null @@ -1,5364 +0,0 @@ -@prefix : . -@prefix adms: . -@prefix at-voc: . -@prefix cccev: . -@prefix core-shape: . -@prefix dcterms: . -@prefix foaf: . -@prefix locn: . -@prefix org: . -@prefix owl: . -@prefix person: . -@prefix rdf: . -@prefix rdfs: . -@prefix sh: . -@prefix skos: . -@prefix time: . -@prefix vann: . -@prefix xsd: . - -core-shape:adms-Identifier a sh:NodeShape ; - rdfs:label "Identifier" ; - rdfs:comment "A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:adms-Identifier-adms-schemaAgency, - core-shape:adms-Identifier-epo-hasScheme, - core-shape:adms-Identifier-epo-hasSchemeVersion, - core-shape:adms-Identifier-skos-notation ; - sh:targetClass adms:Identifier . - -core-shape:at-voc-winner-selection-status rdfs:comment "This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping" . - -core-shape:cccev-Constraint a sh:NodeShape ; - rdfs:label "Constraint" ; - rdfs:comment "Limitation applied to an Information Concept. Additional Information: Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-Constraint-cccev-constrains, - core-shape:cccev-Constraint-epo-hasThresholdType, - core-shape:cccev-Constraint-epo-hasThresholdValue ; - sh:targetClass cccev:Constraint . - -core-shape:cccev-Criterion a sh:NodeShape ; - rdfs:label "Criterion" ; - rdfs:comment "Condition for evaluation or assessment. Additional Information: In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-Criterion-cccev-bias, - core-shape:cccev-Criterion-cccev-weight, - core-shape:cccev-Criterion-cccev-weightingConsiderationDescription, - core-shape:cccev-Criterion-dct-type ; - sh:targetClass cccev:Criterion . - -core-shape:cccev-Evidence a sh:NodeShape ; - rdfs:label "Evidence" ; - rdfs:comment "Proof that a Requirement is met." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-Evidence-cccev-confidentialityLevelType, - core-shape:cccev-Evidence-cccev-supportsConcept, - core-shape:cccev-Evidence-cccev-supportsRequirement ; - sh:targetClass cccev:Evidence . - -core-shape:cccev-InformationConcept a sh:NodeShape ; - rdfs:label "Information concept" ; - rdfs:comment "Piece of information that the Evidence provides or the Requirement needs." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-InformationConcept-adms-identifier, - core-shape:cccev-InformationConcept-dct-description, - core-shape:cccev-InformationConcept-skos-prefLabel ; - sh:targetClass cccev:InformationConcept . - -core-shape:cccev-Requirement a sh:NodeShape ; - rdfs:label "Requirement" ; - rdfs:comment "Condition or prerequisite that is to be proven by Evidence. Additional Information: Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cccev-Requirement-cccev-hasRequirement, - core-shape:cccev-Requirement-dct-description, - core-shape:cccev-Requirement-skos-prefLabel ; - sh:targetClass cccev:Requirement . - -core-shape:cpov-ContactPoint a sh:NodeShape ; - rdfs:label "Contact point" ; - rdfs:comment "Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. Additional information: This class represents the contact information for a Public Service, Channel, Public Organisation, etc. The Contact Point could be a role, email address, telephone number, etc. WG approval 5/11/2019", - "there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..*" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cpov-ContactPoint-cpov-email, - core-shape:cpov-ContactPoint-cpov-telephone, - core-shape:cpov-ContactPoint-cv-address, - core-shape:cpov-ContactPoint-dct-description, - core-shape:cpov-ContactPoint-epo-hasContactName, - core-shape:cpov-ContactPoint-epo-hasFax, - core-shape:cpov-ContactPoint-epo-hasInternetAddress ; - sh:targetClass cccev:ContactPoint . - -core-shape:cpov-PublicOrganisation a sh:NodeShape ; - rdfs:label "Public organisation" ; - rdfs:comment "An Organisation that is defined as being part of the public sector by a legal framework at any level. Additional information: A body governed by public law: - (a) established for the specific Purpose of meeting needs in the general interest - (b) having legal personality; - (c) financed, for the most part by the State, or regional or local authorities. Examples of Public Organisations are municipality, international public body, ministry, others. WG Approval 28/04/2020" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass cccev:PublicOrganisation . - -core-shape:cpv-Person a sh:NodeShape ; - rdfs:label "Person" ; - rdfs:comment "A individual human being who may be dead or alive, but not imaginary." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cpv-Person-cv-birthDate, - core-shape:cpv-Person-cv-registeredAddress, - core-shape:cpv-Person-dct-alternative, - core-shape:cpv-Person-epo-hasCountryOfBirth, - core-shape:cpv-Person-epo-hasNationality, - core-shape:cpv-Person-epo-isBeneficialOwnerOf, - core-shape:cpv-Person-foaf-familyName, - core-shape:cpv-Person-foaf-givenName, - core-shape:cpv-Person-foaf-name, - core-shape:cpv-Person-person-birthName, - core-shape:cpv-Person-person-patronymicName, - core-shape:cpv-Person-person-placeOfBirth, - core-shape:cpv-Person-person-placeOfDeath ; - sh:targetClass cccev:Person . - -core-shape:cv-Channel a sh:NodeShape ; - rdfs:label "Channel" ; - rdfs:comment "A medium through which Agents interact. Additional Information Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. See also Directive recitals 53 to 56. WG approval 2023-02-14", - "based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:cv-Channel-dct-description, - core-shape:cv-Channel-epo-hasAddressURL, - core-shape:cv-Channel-epo-hasEndpointIdentifier ; - sh:targetClass cccev:Channel . - -core-shape:dct-Location a sh:NodeShape ; - rdfs:label "Location" ; - rdfs:comment "An identifiable geographic place or named place." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:dct-Location-adms-identifier, - core-shape:dct-Location-epo-hasCountryCode, - core-shape:dct-Location-epo-hasNutsCode, - core-shape:dct-Location-locn-address, - core-shape:dct-Location-locn-geographicIdentifier, - core-shape:dct-Location-locn-geographicName, - core-shape:dct-Location-locn-geometry ; - sh:targetClass dcterms:Location . - -core-shape:epo-AccessTerm a sh:NodeShape ; - rdfs:label "Access term" ; - rdfs:comment "Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AccessTerm-epo-definesCatalogueProvider, - core-shape:epo-AccessTerm-epo-definesCatalogueReceiver, - core-shape:epo-AccessTerm-epo-definesOfflineAccessProvider, - core-shape:epo-AccessTerm-epo-definesProcurementProcedureInformationProvider, - core-shape:epo-AccessTerm-epo-hasAdditionalInformationDeadline, - core-shape:epo-AccessTerm-epo-hasDocumentRestrictionJustification, - core-shape:epo-AccessTerm-epo-hasPublicAccessURL, - core-shape:epo-AccessTerm-epo-hasRestrictedAccessURL, - core-shape:epo-AccessTerm-epo-involvesProcurementDocument, - core-shape:epo-AccessTerm-epo-isProcurementDocumentRestricted, - core-shape:epo-AccessTerm-epo-refersToPlannedPart ; - sh:targetClass :AccessTerm . - -core-shape:epo-AcquiringCentralPurchasingBody a sh:NodeShape ; - rdfs:label "Acquiring central purchasing body" ; - rdfs:comment "Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AcquiringCentralPurchasingBody . - -core-shape:epo-AcquiringParty a sh:NodeShape ; - rdfs:label "Acquiring party" ; - rdfs:comment "The Role of an Agent that acts on the buying side of a Procurement Process." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AcquiringParty . - -core-shape:epo-AdHocChannel a sh:NodeShape ; - rdfs:label "Ad hoc channel" ; - rdfs:comment "Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AdHocChannel . - -core-shape:epo-AgentInRole a sh:NodeShape ; - rdfs:label "Agent in role" ; - rdfs:comment "Relative concept that ties an Agent to a part they play in a given Situational Context. Additional information: The classification of roles is based is based on the degree of involvement into the Procurement Process: - Primary (Procurement) Pole is directly involved in the Procurement Process; - Secondary (Procurement sub-) Role is secondary to the Procurement Process - Tertiary (Related) Role is not involved in the Procurement Process." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AgentInRole-dct-description, - core-shape:epo-AgentInRole-dct-title, - core-shape:epo-AgentInRole-epo-contextualisedBy, - core-shape:epo-AgentInRole-epo-exposesChannel, - core-shape:epo-AgentInRole-epo-hasContactPointInRole, - core-shape:epo-AgentInRole-epo-playedBy ; - sh:targetClass :AgentInRole . - -core-shape:epo-AuxiliaryParty a sh:NodeShape ; - rdfs:label "Auxiliary party" ; - rdfs:comment "Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AuxiliaryParty . - -core-shape:epo-AwardCriteriaSummary a sh:NodeShape ; - rdfs:label "Award criteria summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AwardCriteriaSummary . - -core-shape:epo-AwardCriterion a sh:NodeShape ; - rdfs:label "Award criterion" ; - rdfs:comment "Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AwardCriterion-epo-hasAwardCriteriaStatedInProcurementDocuments, - core-shape:epo-AwardCriterion-epo-hasAwardCriterionType, - core-shape:epo-AwardCriterion-epo-hasFixedValue, - core-shape:epo-AwardCriterion-epo-hasFixedValueType ; - sh:targetClass :AwardCriterion . - -core-shape:epo-AwardDecision a sh:NodeShape ; - rdfs:label "Award decision" ; - rdfs:comment "Resolution of the Buyer as to the result of the Procurement Procedure. WG approval 14/11/2018" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AwardDecision-epo-comprisesLotAwardDecision, - core-shape:epo-AwardDecision-epo-comprisesMiniCompetitionAwardDecision, - core-shape:epo-AwardDecision-epo-comprisesTenderAwardOutcome, - core-shape:epo-AwardDecision-epo-hasAdditionalNonAwardJustification, - core-shape:epo-AwardDecision-epo-hasAwardDecisionDate, - core-shape:epo-AwardDecision-epo-hasAwardStatus, - core-shape:epo-AwardDecision-epo-hasAwardedValue, - core-shape:epo-AwardDecision-epo-hasBargainPrice, - core-shape:epo-AwardDecision-epo-hasNonAwardJustification ; - sh:targetClass :AwardDecision . - -core-shape:epo-AwardEvaluationTerm a sh:NodeShape ; - rdfs:label "Award evaluation term" ; - rdfs:comment "Conditions and stipulations defining particularities of the evaluation of Award Criteria." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaEvaluationFormula, - core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaOrderJustification, - core-shape:epo-AwardEvaluationTerm-epo-hasOverallCostAwardCriteriaPonderation, - core-shape:epo-AwardEvaluationTerm-epo-hasOverallPriceAwardCriteriaPonderation, - core-shape:epo-AwardEvaluationTerm-epo-hasOverallQualityAwardCriteriaPonderation ; - sh:targetClass :AwardEvaluationTerm . - -core-shape:epo-Awarder a sh:NodeShape ; - rdfs:label "Awarder" ; - rdfs:comment "A Role of an Agent that signs the Award Decision.", - "BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Awarder . - -core-shape:epo-AwardingCentralPurchasingBody a sh:NodeShape ; - rdfs:label "Awarding central purchasing body" ; - rdfs:comment "Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. Additional Information: In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :AwardingCentralPurchasingBody . - -core-shape:epo-BudgetProvider a sh:NodeShape ; - rdfs:label "Budget provider" ; - rdfs:comment "A role of an agent whose Budget is used to pay for the Contract." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :BudgetProvider . - -core-shape:epo-Business a sh:NodeShape ; - rdfs:label "Business" ; - rdfs:comment "A private law company registered in a national registry. WG Approval 28/04/2020", - "In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Business-epo-hasBeneficialOwner, - core-shape:epo-Business-epo-hasBusinessSize, - core-shape:epo-Business-epo-isListedCompany ; - sh:targetClass :Business . - -core-shape:epo-Buyer a sh:NodeShape ; - rdfs:label "Buyer" ; - rdfs:comment "A Role of an Agent that awards a Contract and/or purchases items. Additional information: In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. In Post-Award the buyer generally refers to the purchaser of items." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Buyer-epo-delegatesAncillaryActivitiesTo, - core-shape:epo-Buyer-epo-exposesInvoiceeChannel, - core-shape:epo-Buyer-epo-hasActivityDescription, - core-shape:epo-Buyer-epo-hasBuyerProfile, - core-shape:epo-Buyer-epo-indicatesInvoiceeContactPoint, - core-shape:epo-Buyer-epo-isContractingEntity, - core-shape:epo-Buyer-epo-signsAwardDecision ; - sh:targetClass :Buyer . - -core-shape:epo-Candidate a sh:NodeShape ; - rdfs:label "Candidate" ; - rdfs:comment "The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. WG approval 30/05/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Candidate . - -core-shape:epo-CatalogueProvider a sh:NodeShape ; - rdfs:label "Catalogue provider" ; - rdfs:comment "A Role of an Agent compiling and supplying a Catalogue. Additional Information: The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. WG Approval 28/01/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :CatalogueProvider . - -core-shape:epo-CatalogueReceiver a sh:NodeShape ; - rdfs:label "Catalogue receiver" ; - rdfs:comment "A Role of an Agent processing a Catalogue. Additional Information: The Catalogue Receiver may not only receive it but also validate it, process it, etc. The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. WG Approval 28/01/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :CatalogueReceiver . - -core-shape:epo-CentralPurchasingBody a sh:NodeShape ; - rdfs:label "Central purchasing body" ; - rdfs:comment "Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. Additional Information: In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; WG approval 05/08/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :CentralPurchasingBody . - -core-shape:epo-ConcessionContract a sh:NodeShape ; - rdfs:label "Concession contract" ; - rdfs:comment "A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. WG Approval 24/05/2022" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ConcessionContract . - -core-shape:epo-ConcessionEstimate a sh:NodeShape ; - rdfs:label "Concession estimate" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ConcessionEstimate-epo-hasCalculationMethod, - core-shape:epo-ConcessionEstimate-epo-hasConcessionEstimatedValue, - core-shape:epo-ConcessionEstimate-epo-hasEstimatedBuyerConcessionRevenue, - core-shape:epo-ConcessionEstimate-epo-hasEstimatedUserConcessionRevenue ; - sh:targetClass :ConcessionEstimate . - -core-shape:epo-ContextSpecificDescription a sh:NodeShape ; - rdfs:label "Context specific description" ; - rdfs:comment "A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ContextSpecificDescription . - -core-shape:epo-ContextualProjection a sh:NodeShape ; - rdfs:label "Contextual projection" ; - rdfs:comment "Projection of an Entity and all of its properties that hold in a given Situation Context. Additional Information: The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) We say that ContextualProjection *describes* an Entity. Adaptation of ContextSlices pattern encoding a 4D view. http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ContextualProjection . - -core-shape:epo-Contract a sh:NodeShape ; - rdfs:label "Contract" ; - 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)", - "Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Contract-epo-bindsBuyer, - core-shape:epo-Contract-epo-bindsContractor, - core-shape:epo-Contract-epo-hasContractConclusionDate, - core-shape:epo-Contract-epo-hasContractValue, - core-shape:epo-Contract-epo-hasEntryIntoForceDate, - core-shape:epo-Contract-epo-hasEstimatedDuration, - core-shape:epo-Contract-epo-hasLotReference, - core-shape:epo-Contract-epo-hasProcurementClassification, - core-shape:epo-Contract-epo-includesTender, - core-shape:epo-Contract-epo-isSubjectToContractSpecificTerm, - core-shape:epo-Contract-epo-signedByBuyer, - core-shape:epo-Contract-epo-signedByContractor ; - sh:targetClass :Contract . - -core-shape:epo-ContractLotCompletionInformation a sh:NodeShape ; - rdfs:label "Contract lot completion information" ; - rdfs:comment "Information related to a given Lot at the end of the procurement." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ContractLotCompletionInformation-epo-describesLotCompletion, - core-shape:epo-ContractLotCompletionInformation-epo-hasPaymentValueDiscrepancyJustification, - core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPaymentValue, - core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPenaltyValue, - core-shape:epo-ContractLotCompletionInformation-epo-refersToContract ; - sh:targetClass :ContractLotCompletionInformation . - -core-shape:epo-ContractModification a sh:NodeShape ; - rdfs:label "Contract modification" ; - rdfs:comment "An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ContractModification-epo-hasElementModification, - core-shape:epo-ContractModification-epo-refersToOriginalNotice ; - sh:targetClass :ContractModification . - -core-shape:epo-ContractSpecificTerm a sh:NodeShape ; - rdfs:label "Contract specific term" ; - rdfs:comment "Gathering class for conditions and stipulations related to a contract in the Post-Award Phase." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ContractSpecificTerm . - -core-shape:epo-ContractTerm a sh:NodeShape ; - rdfs:label "Contract term" ; - rdfs:comment "Conditions and stipulations defining particularities of the Post Award Phase. (WG approval 23/11/2018)" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ContractTerm-epo-definesContractDuration, - core-shape:epo-ContractTerm-epo-definesContractPeriod, - core-shape:epo-ContractTerm-epo-definesPaymentExecutor, - core-shape:epo-ContractTerm-epo-definesPlaceOfPerformance, - core-shape:epo-ContractTerm-epo-definesSubcontractingTerm, - core-shape:epo-ContractTerm-epo-hasAdditionalContractNature, - core-shape:epo-ContractTerm-epo-hasBroadPlaceOfPerformance, - core-shape:epo-ContractTerm-epo-hasContractNatureType, - core-shape:epo-ContractTerm-epo-hasEInvoicing, - core-shape:epo-ContractTerm-epo-hasEInvoicingPermission, - core-shape:epo-ContractTerm-epo-hasEOrdering, - core-shape:epo-ContractTerm-epo-hasEPayment, - core-shape:epo-ContractTerm-epo-hasLegalFormRequirement, - core-shape:epo-ContractTerm-epo-hasMaximumNumberOfRenewals, - core-shape:epo-ContractTerm-epo-hasOptions, - core-shape:epo-ContractTerm-epo-hasOptionsDescription, - core-shape:epo-ContractTerm-epo-hasPaymentArrangement, - core-shape:epo-ContractTerm-epo-hasPerformanceConditions, - core-shape:epo-ContractTerm-epo-hasPlaceOfPerformanceAdditionalInformation, - core-shape:epo-ContractTerm-epo-hasRenewalDescription, - core-shape:epo-ContractTerm-epo-hasReservedExecution, - core-shape:epo-ContractTerm-epo-isRenewalIndicator ; - sh:targetClass :ContractTerm . - -core-shape:epo-Contractor a sh:NodeShape ; - rdfs:label "Contractor" ; - rdfs:comment "The Role of an Agent that has signed a Contract with a Buyer. WG approval 08/11/2022" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Contractor-epo-needsToBeAWinner ; - sh:targetClass :Contractor . - -core-shape:epo-DesignContestRegimeTerm a sh:NodeShape ; - rdfs:label "Design contest regime term" ; - rdfs:comment "Conditions and stipulations defining particularities of a Design Contest. WG approval: 04-02-2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DesignContestRegimeTerm-epo-definesPrize, - core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContract, - core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContractInformation, - core-shape:epo-DesignContestRegimeTerm-epo-hasParticipationPayment, - core-shape:epo-DesignContestRegimeTerm-epo-isJuryDecisionBinding ; - sh:targetClass :DesignContestRegimeTerm . - -core-shape:epo-DirectAwardTerm a sh:NodeShape ; - rdfs:label "Direct award term" ; - rdfs:comment "Conditions and stipulations defining particularities of the award of a Contract without prior publication. Addtional Information: Direct award may refer to a previous Procedure and/or specific Lot(s). It may also refer to other justified situations whereby there is no previous Procedure. See Directive 2014/24/EU Article 32. WG Approval 22/11/2019" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DirectAwardTerm-epo-hasDirectAwardJustification, - core-shape:epo-DirectAwardTerm-epo-hasJustification, - core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedure, - core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedureLot ; - sh:targetClass :DirectAwardTerm . - -core-shape:epo-DirectContract a sh:NodeShape ; - rdfs:label "Direct contract" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DirectContract-epo-resultsFromLotAwardDecision ; - sh:targetClass :DirectContract . - -core-shape:epo-Document a sh:NodeShape ; - rdfs:label "Document" ; - rdfs:comment "A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Document-adms-identifier, - core-shape:epo-Document-dct-description, - core-shape:epo-Document-dct-issued, - core-shape:epo-Document-dct-title, - core-shape:epo-Document-epo-associatedWith, - core-shape:epo-Document-epo-hasAccessURL, - core-shape:epo-Document-epo-hasDispatchDate, - core-shape:epo-Document-epo-hasElectronicDigest, - core-shape:epo-Document-epo-hasElectronicSignature, - core-shape:epo-Document-epo-hasOfficialLanguage, - core-shape:epo-Document-epo-hasPublicationDate, - core-shape:epo-Document-epo-hasReceptionDate, - core-shape:epo-Document-epo-hasUUID, - core-shape:epo-Document-epo-hasUnofficialLanguage, - core-shape:epo-Document-epo-hasVersion, - core-shape:epo-Document-epo-refersToPrevious ; - sh:targetClass :Document . - -core-shape:epo-Duration a sh:NodeShape ; - rdfs:label "Duration" ; - rdfs:comment "The length of time in which a concept occurs." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Duration . - -core-shape:epo-DynamicPurchaseSystemTechnique a sh:NodeShape ; - rdfs:label "Dynamic purchase system technique" ; - rdfs:comment "A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. WG approval 23/05/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DynamicPurchaseSystemTechnique-epo-hasDPSScope, - core-shape:epo-DynamicPurchaseSystemTechnique-epo-resultsInDynamicPurchasingSystem ; - sh:targetClass :DynamicPurchaseSystemTechnique . - -core-shape:epo-DynamicPurchasingSystem a sh:NodeShape ; - rdfs:label "Dynamic purchasing system" ; - rdfs:comment "An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. WG approval 23/05/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-DynamicPurchasingSystem-epo-hasCandidateList ; - sh:targetClass :DynamicPurchasingSystem . - -core-shape:epo-EAuctionTechnique a sh:NodeShape ; - rdfs:label "E auction technique" ; - rdfs:comment "A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. Additional Information: This corresponds in eForms to BT-767 Electronic Auction . WG approval 20/07/2018" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EAuctionTechnique . - -core-shape:epo-EconomicStandingSummary a sh:NodeShape ; - rdfs:label "Economic standing summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EconomicStandingSummary . - -core-shape:epo-ElectronicSignature a sh:NodeShape ; - rdfs:label "Electronic signature" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ElectronicSignature-dct-description ; - sh:targetClass :ElectronicSignature . - -core-shape:epo-ElementChangeDescription a sh:NodeShape ; - rdfs:label "Element change description" ; - rdfs:comment "Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms.", - "Information about a specific field to be changed with regard to a previous Notice." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ElementChangeDescription-epo-hasAdditionalInformation, - core-shape:epo-ElementChangeDescription-epo-hasChangeDescription, - core-shape:epo-ElementChangeDescription-epo-hasChangeJustification, - core-shape:epo-ElementChangeDescription-epo-hasChangeReasonDescription, - core-shape:epo-ElementChangeDescription-epo-hasElementReference, - core-shape:epo-ElementChangeDescription-epo-hasPreviousVersionOfElementReference, - core-shape:epo-ElementChangeDescription-epo-hasProcurementDocumentChangeDate, - core-shape:epo-ElementChangeDescription-epo-isProcurementDocumentChanged ; - sh:targetClass :ElementChangeDescription . - -core-shape:epo-ElementConfidentialityDescription a sh:NodeShape ; - rdfs:label "Element confidentiality description" ; - rdfs:comment "Information about a specific field not intended for publication. Additional Information: In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided.", - "This does not work in practice." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ElementConfidentialityDescription-epo-hasAccessibilityDate, - core-shape:epo-ElementConfidentialityDescription-epo-hasConfidentialityJustification, - core-shape:epo-ElementConfidentialityDescription-epo-hasInstanceReference, - core-shape:epo-ElementConfidentialityDescription-epo-hasNonPublicationJustification, - core-shape:epo-ElementConfidentialityDescription-epo-hasPropertyReference ; - sh:targetClass :ElementConfidentialityDescription . - -core-shape:epo-ElementDescription a sh:NodeShape ; - rdfs:label "Element description" ; - rdfs:comment "Description about a specific resource." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ElementDescription . - -core-shape:epo-ElementModificationDescription a sh:NodeShape ; - rdfs:label "Element modification description" ; - rdfs:comment "Information about a specific field to be changed with regard to the Modification Of a Contract." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ElementModificationDescription-epo-hasElementReference, - core-shape:epo-ElementModificationDescription-epo-hasModificationDescription, - core-shape:epo-ElementModificationDescription-epo-hasModificationJustification, - core-shape:epo-ElementModificationDescription-epo-hasModificationReasonDescription ; - sh:targetClass :ElementModificationDescription . - -core-shape:epo-EmploymentInformationProvider a sh:NodeShape ; - rdfs:label "Employment information provider" ; - rdfs:comment "A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EmploymentInformationProvider . - -core-shape:epo-EnvironmentalProtectionInformationProvider a sh:NodeShape ; - rdfs:label "Environmental protection information provider" ; - rdfs:comment "A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EnvironmentalProtectionInformationProvider . - -core-shape:epo-Estimate a sh:NodeShape ; - rdfs:label "Estimate" ; - rdfs:comment "An approximate calculation or a judgement of the value, number, Quantity or extent of something." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Estimate . - -core-shape:epo-EvaluationTerm a sh:NodeShape ; - rdfs:label "Evaluation term" ; - rdfs:comment "Conditions and stipulations defining particularities of the Tender evaluation. (WG approval 23/11/2018)" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :EvaluationTerm . - -core-shape:epo-ExclusionGround a sh:NodeShape ; - rdfs:label "Exclusion ground" ; - rdfs:comment "Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. Additional Information: This corresponds in eForms to BG-701 Exclusion Grounds. WG approval 31/10/2018" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ExclusionGround . - -core-shape:epo-ExclusionGroundsSummary a sh:NodeShape ; - rdfs:label "Exclusion grounds summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ExclusionGroundsSummary . - -core-shape:epo-ExpressionOfInterest a sh:NodeShape ; - rdfs:label "Expression of interest" ; - rdfs:comment "Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. WG approval 13/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ExpressionOfInterest . - -core-shape:epo-FrameworkAgreement a sh:NodeShape ; - rdfs:label "Framework agreement" ; - rdfs:comment "An agreement between one or more Contracting Authorities and one or more Economic Operators. Additional Information: When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. WG approval 18/05/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-FrameworkAgreement-epo-resultsFromLotAwardDecision ; - sh:targetClass :FrameworkAgreement . - -core-shape:epo-FrameworkAgreementTechnique a sh:NodeShape ; - rdfs:label "Framework agreement technique" ; - rdfs:comment "Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. WG approval 18/05/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :FrameworkAgreementTechnique . - -core-shape:epo-FrameworkAgreementTerm a sh:NodeShape ; - rdfs:label "Framework agreement term" ; - rdfs:comment "Conditions and stipulations defining particularities in a Framework Agreement." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-FrameworkAgreementTerm-epo-hasBuyerCategoryDescription, - core-shape:epo-FrameworkAgreementTerm-epo-hasDurationExtensionJustification, - core-shape:epo-FrameworkAgreementTerm-epo-hasFrameworkAgreementType, - core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchFrameworkAgreementMaximumValue, - core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchGroupFrameworkAgreementMaximumValue, - core-shape:epo-FrameworkAgreementTerm-epo-hasMaximumParticipantsNumber ; - sh:targetClass :FrameworkAgreementTerm . - -core-shape:epo-Fund a sh:NodeShape ; - rdfs:label "Fund" ; - rdfs:comment "A financial resource used to support the Procurement. Additional Information: In the context of EU, Funds can be divided into programmes, actions and projects. Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. WG Approved 14/05/2019" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Fund-adms-identifier, - core-shape:epo-Fund-dct-description, - core-shape:epo-Fund-dct-title, - core-shape:epo-Fund-epo-hasFundProgramme, - core-shape:epo-Fund-epo-hasURL ; - sh:targetClass :Fund . - -core-shape:epo-GreenProcurement a sh:NodeShape ; - rdfs:label "Green procurement" ; - rdfs:comment "Approach whereby Buyers seek to procure with a reduced Environmental Impact. Additional Information: The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf An instance of the class GreenProcurement is represented in eForms with the code \"env-imp\" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-GreenProcurement-epo-fulfillsRequirement, - core-shape:epo-GreenProcurement-epo-hasCleanVehicles, - core-shape:epo-GreenProcurement-epo-hasTotalVehicles, - core-shape:epo-GreenProcurement-epo-hasZeroEmissionVehicles ; - sh:targetClass :GreenProcurement . - -core-shape:epo-IndefiniteDuration a sh:NodeShape ; - rdfs:label "Indefinite duration" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :IndefiniteDuration . - -core-shape:epo-InnovativeProcurement a sh:NodeShape ; - rdfs:label "Innovative procurement" ; - rdfs:comment "An instance of the class InnovativeProcurement is represented in eForms with the code \"inn-pur\" defined in the codelist Strategic-Procurement. Research (21/01/2020): Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions Additional Information: ‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; See: Directive 2014/24 Articles: 2, 26 (3), 31, 67 (2.a) Question: Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-InnovativeProcurement-epo-fulfillsRequirement ; - sh:targetClass :InnovativeProcurement . - -core-shape:epo-JuryMember a sh:NodeShape ; - rdfs:label "Jury member" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-JuryMember-epo-playedBy ; - sh:targetClass :JuryMember . - -core-shape:epo-LeadBuyer a sh:NodeShape ; - rdfs:label "Lead buyer" ; - rdfs:comment "A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. WG agreement: 2022-11-22" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :LeadBuyer . - -core-shape:epo-Lot a sh:NodeShape ; - rdfs:label "Lot" ; - rdfs:comment "A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. WG approval 12/09/2018" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Lot-epo-isSubjectToLotSpecificTerm, - core-shape:epo-Lot-epo-specifiesProcurementCriterion ; - sh:targetClass :Lot . - -core-shape:epo-LotAwardDecision a sh:NodeShape ; - rdfs:label "Lot award decision" ; - rdfs:comment "Result concerning the Lot attributed by the Awarder." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-LotAwardDecision-epo-concernsLot, - core-shape:epo-LotAwardDecision-epo-hasApproximateFrameworkAgreementValue, - core-shape:epo-LotAwardDecision-epo-hasAwardedEstimatedValue, - core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementEstimatedValue, - core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementMaximumValue, - core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractNumber, - core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractTitle ; - sh:targetClass :LotAwardDecision . - -core-shape:epo-LotGroup a sh:NodeShape ; - rdfs:label "Lot group" ; - rdfs:comment "Combination of several Lots to conduct comparative assessment of the Tenders. Additional Information: The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. Pending of discussion with eForms Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-LotGroup-adms-identifier, - core-shape:epo-LotGroup-epo-setsGroupingContextForLot, - core-shape:epo-LotGroup-epo-specifiesProcurementCriterion ; - sh:targetClass :LotGroup . - -core-shape:epo-LotGroupAwardInformation a sh:NodeShape ; - rdfs:label "Lot group award information" ; - rdfs:comment "Award information related to a given Group of Lots." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-LotGroupAwardInformation-epo-describesLotGroup, - core-shape:epo-LotGroupAwardInformation-epo-hasGroupFrameworkAgreementMaximumValue ; - sh:targetClass :LotGroupAwardInformation . - -core-shape:epo-LotSpecificTerm a sh:NodeShape ; - rdfs:label "Lot specific term" ; - rdfs:comment "Gathering class for conditions and stipulations related to a Lot." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :LotSpecificTerm . - -core-shape:epo-Mediator a sh:NodeShape ; - rdfs:label "Mediator" ; - rdfs:comment "A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. WG approval 20/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Mediator . - -core-shape:epo-MiniCompetition a sh:NodeShape ; - rdfs:label "Mini competition" ; - rdfs:comment "A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. Additional Information: It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. WG approval 30/05/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-MiniCompetition-epo-followsRulesSetBy, - core-shape:epo-MiniCompetition-epo-specifiesAwardCriterion, - core-shape:epo-MiniCompetition-epo-usesCandidateList ; - sh:targetClass :MiniCompetition . - -core-shape:epo-MiniCompetitionAwardDecision a sh:NodeShape ; - rdfs:label "Mini competition award decision" ; - rdfs:comment "Result concerning the Mini-Competition attributed by the Awarder." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-MiniCompetitionAwardDecision-epo-concernsMiniCompetition ; - sh:targetClass :MiniCompetitionAwardDecision . - -core-shape:epo-MonetaryValue a sh:NodeShape ; - rdfs:label "Monetary value" ; - rdfs:comment "A number of monetary units specified using a given unit of currency. Additional information: In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. WG approval 13/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-MonetaryValue-epo-hasAmountValue, - core-shape:epo-MonetaryValue-epo-hasCurrency, - core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyID, - core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyName, - core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListID ; - sh:targetClass :MonetaryValue . - -core-shape:epo-MultipleStageProcedureTerm a sh:NodeShape ; - rdfs:label "Multiple stage procedure term" ; - rdfs:comment "Conditions and stipulations defining particularities of Procedures carried out in several steps Additional Information: Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. WG Approval 15/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToExpressInterestDate, - core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToTenderDate, - core-shape:epo-MultipleStageProcedureTerm-epo-hasMaximumNumberOfCandidates, - core-shape:epo-MultipleStageProcedureTerm-epo-hasMinimumNumberOfCandidates, - core-shape:epo-MultipleStageProcedureTerm-epo-hasNoNegotiationNecessary, - core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemDuration, - core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemRenewalDescription, - core-shape:epo-MultipleStageProcedureTerm-epo-hasSuccessiveReduction ; - sh:targetClass :MultipleStageProcedureTerm . - -core-shape:epo-NonDisclosureAgreementTerm a sh:NodeShape ; - rdfs:label "Non disclosure agreement term" ; - rdfs:comment "Conditions and stipulations" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-NonDisclosureAgreementTerm-dct-description, - core-shape:epo-NonDisclosureAgreementTerm-epo-isNonDisclosureAgreementRequired ; - sh:targetClass :NonDisclosureAgreementTerm . - -core-shape:epo-Notice a sh:NodeShape ; - rdfs:label "Notice" ; - rdfs:comment "Document published by the Buyer about market opportunities and results. WG Approval 23/05/2019" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Notice-epo-conformsToLegalBasis, - core-shape:epo-Notice-epo-conformsToSpecificLegalBasis, - core-shape:epo-Notice-epo-hasAdditionalInformation, - core-shape:epo-Notice-epo-hasEFormsSubtype, - core-shape:epo-Notice-epo-hasESenderDispatchDate, - core-shape:epo-Notice-epo-hasFormNumber, - core-shape:epo-Notice-epo-hasFormType, - core-shape:epo-Notice-epo-hasLongTitle, - core-shape:epo-Notice-epo-hasNoticePublicationNumber, - core-shape:epo-Notice-epo-hasNoticeType, - core-shape:epo-Notice-epo-hasNotificationContentType, - core-shape:epo-Notice-epo-hasOJSIssueNumber, - core-shape:epo-Notice-epo-hasOJSType, - core-shape:epo-Notice-epo-isBasedOnImplementingRegulation, - core-shape:epo-Notice-epo-isEUInstitution, - core-shape:epo-Notice-epo-refersToLot, - core-shape:epo-Notice-epo-refersToNotice, - core-shape:epo-Notice-epo-refersToProcedure ; - sh:targetClass :Notice . - -core-shape:epo-NoticeAwardInformation a sh:NodeShape ; - rdfs:label "Notice award information" ; - rdfs:comment "Information about an Award Notice." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-NoticeAwardInformation-epo-hasApproximateFrameworkAgreementValue, - core-shape:epo-NoticeAwardInformation-epo-hasMaximumFrameworkAgreementAwardedValue, - core-shape:epo-NoticeAwardInformation-epo-hasProcurementHighestReceivedTenderValue, - core-shape:epo-NoticeAwardInformation-epo-hasProcurementLowestReceivedTenderValue, - core-shape:epo-NoticeAwardInformation-epo-hasTotalAwardedValue ; - sh:targetClass :NoticeAwardInformation . - -core-shape:epo-NoticeChange a sh:NodeShape ; - rdfs:label "Notice change" ; - rdfs:comment "Information about a corrigendum in a Notice." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-NoticeChange-epo-hasElementChange, - core-shape:epo-NoticeChange-epo-refersToPreviousNotice ; - sh:targetClass :NoticeChange . - -core-shape:epo-NoticeDescription a sh:NodeShape ; - rdfs:label "Notice description" ; - rdfs:comment "Descriptions about the notice publishing, or providing evolutions of resources." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-NoticeDescription-epo-describesNotice, - core-shape:epo-NoticeDescription-epo-hasElementDescription ; - sh:targetClass :NoticeDescription . - -core-shape:epo-Offer a sh:NodeShape ; - rdfs:label "Offer" ; - rdfs:comment "Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. Additional information: A quotation is considered to be an Offer in the eProcurement Ontology. WG approval 09/02/2023", - "To be decided if this should stay in the core or in the Offer module" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Offer . - -core-shape:epo-OfferIssuer a sh:NodeShape ; - rdfs:label "Offer issuer" ; - rdfs:comment "The Role of an Agent that distributes an Offer. WG approval 09/02/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-OfferIssuer-epo-distributesOffer ; - sh:targetClass :OfferIssuer . - -core-shape:epo-OfferingParty a sh:NodeShape ; - rdfs:label "Offering party" ; - rdfs:comment "The Role of an Agent that acts on the Economic Operator side during a Procurement Process. Additional information: As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :OfferingParty . - -core-shape:epo-OfflineAccessProvider a sh:NodeShape ; - rdfs:label "Offline access provider" ; - rdfs:comment "A Role of an Agent responsible for providing offline access to the Procurement Documents." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :OfflineAccessProvider . - -core-shape:epo-OpeningTerm a sh:NodeShape ; - rdfs:label "Opening term" ; - rdfs:comment "Conditions and stipulations defining particularities of the opening of Tenders. Additional Information: The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. WG Approval 15/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-OpeningTerm-epo-definesOpeningPlace, - core-shape:epo-OpeningTerm-epo-hasOpeningDateTime, - core-shape:epo-OpeningTerm-epo-hasOpeningDescription, - core-shape:epo-OpeningTerm-epo-hasOpeningURL ; - sh:targetClass :OpeningTerm . - -core-shape:epo-OrganisationGroup a sh:NodeShape ; - rdfs:label "Organisation group" ; - rdfs:comment "Agreed collaboration of several Organisations. Additional Information: This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. WG approval 15/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-OrganisationGroup-epo-hasGroupType, - core-shape:epo-OrganisationGroup-epo-hasMember, - core-shape:epo-OrganisationGroup-epo-leadBy ; - sh:targetClass :OrganisationGroup . - -core-shape:epo-OriginatorRequest a sh:NodeShape ; - rdfs:label "Originator request" ; - rdfs:comment "Document in which the Originator describes his needs. WG approval 09/02/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :OriginatorRequest . - -core-shape:epo-OtherEntity a sh:NodeShape ; - rdfs:label "Other entity" ; - rdfs:comment "Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :OtherEntity . - -core-shape:epo-ParticipationCondition a sh:NodeShape ; - rdfs:label "Participation condition" ; - rdfs:comment "Criterion that describes a Requirement to take part in a procurement. WG approval 30/05/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ParticipationCondition-epo-hasReservedProcurement ; - sh:targetClass :ParticipationCondition . - -core-shape:epo-ParticipationConditionsSummary a sh:NodeShape ; - rdfs:label "Participation conditions summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ParticipationConditionsSummary-epo-describesObjectiveParticipationRules, - core-shape:epo-ParticipationConditionsSummary-epo-describesVerificationMethod, - core-shape:epo-ParticipationConditionsSummary-epo-hasReservedProcurement ; - sh:targetClass :ParticipationConditionsSummary . - -core-shape:epo-ParticipationRequestProcessor a sh:NodeShape ; - rdfs:label "Participation request processor" ; - rdfs:comment "A Role of an Agent responsible for processing Requests To Participate." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ParticipationRequestProcessor . - -core-shape:epo-ParticipationRequestReceiver a sh:NodeShape ; - rdfs:label "Participation request receiver" ; - rdfs:comment "A Role of an Agent responsible for receiving Requests To Participate." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ParticipationRequestReceiver . - -core-shape:epo-ParticipationRequestTerm a sh:NodeShape ; - rdfs:label "Participation request term" ; - rdfs:comment "Conditions and stipulations defining particularities of requesting participation in a Procedure." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestProcessor, - core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestReceiver ; - sh:targetClass :ParticipationRequestTerm . - -core-shape:epo-PaymentExecutor a sh:NodeShape ; - rdfs:label "Payment executor" ; - rdfs:comment "A Role of an Agent responsible for executing the Payment." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :PaymentExecutor . - -core-shape:epo-Period a sh:NodeShape ; - rdfs:label "Period" ; - rdfs:comment "A time interval or a Duration. (WG approval 28/04/2020)" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Period-epo-hasBeginning, - core-shape:epo-Period-epo-hasEnd, - core-shape:epo-Period-epo-hasTimePeriod ; - sh:targetClass :Period . - -core-shape:epo-PlannedProcurementPart a sh:NodeShape ; - rdfs:label "Planned procurement part" ; - rdfs:comment "A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. WG Approval 20/06/2019", - "if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-PlannedProcurementPart-epo-foreseesProcurementObject, - core-shape:epo-PlannedProcurementPart-epo-foreseesTechnique, - core-shape:epo-PlannedProcurementPart-epo-hasPlannedDuration, - core-shape:epo-PlannedProcurementPart-epo-hasPlannedPeriod ; - sh:targetClass :PlannedProcurementPart . - -core-shape:epo-Prize a sh:NodeShape ; - rdfs:label "Prize" ; - rdfs:comment "A reward given in a Contest. WG approval: 15/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Prize-epo-hasPrizeRank, - core-shape:epo-Prize-epo-hasPrizeValue ; - sh:targetClass :Prize . - -core-shape:epo-Procedure a sh:NodeShape ; - rdfs:label "Procedure" ; - rdfs:comment "A legally defined set of administrative activities conducted to conclude one or more Contracts. Additional Information The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). WG Approval 20/08/2019" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Procedure-epo-hasAcceleratedProcedureJustification, - core-shape:epo-Procedure-epo-hasMainFeature, - core-shape:epo-Procedure-epo-hasProcedureType, - core-shape:epo-Procedure-epo-hasProcurementScopeDividedIntoLot, - core-shape:epo-Procedure-epo-involvesBuyer, - core-shape:epo-Procedure-epo-isAccelerated, - core-shape:epo-Procedure-epo-isDesignContest, - core-shape:epo-Procedure-epo-isExecutedByProcurementServiceProvider, - core-shape:epo-Procedure-epo-isJointProcurement, - core-shape:epo-Procedure-epo-isResponsibilityOfBuyer, - core-shape:epo-Procedure-epo-isSubjectToProcedureSpecificTerm, - core-shape:epo-Procedure-epo-specifiesProcurementCriteriaSummary ; - sh:targetClass :Procedure . - -core-shape:epo-ProcedureSpecificTerm a sh:NodeShape ; - rdfs:label "Procedure specific term" ; - rdfs:comment "Gathering class for conditions and stipulations related to a Procedure.", - "Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms)." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ProcedureSpecificTerm . - -core-shape:epo-ProcedureTerm a sh:NodeShape ; - rdfs:label "Procedure term" ; - rdfs:comment "Conditions and stipulations defining particularities of the Procedure. (WG approval 23/11/2018)" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcedureTerm-epo-definesBudgetProvider, - core-shape:epo-ProcedureTerm-epo-definesInformationProvider, - core-shape:epo-ProcedureTerm-epo-definesLotGroup, - core-shape:epo-ProcedureTerm-epo-definesMediator, - core-shape:epo-ProcedureTerm-epo-hasCrossBorderLaw, - core-shape:epo-ProcedureTerm-epo-hasGroupLotEvaluationMethod, - core-shape:epo-ProcedureTerm-epo-hasLotAwardCombination, - core-shape:epo-ProcedureTerm-epo-hasMaximumLotSubmissionAllowed, - core-shape:epo-ProcedureTerm-epo-hasMaximumNumberOfLotsToBeAwarded, - core-shape:epo-ProcedureTerm-epo-hasNationalProcedureRules, - core-shape:epo-ProcedureTerm-epo-isAwardedByCPB, - core-shape:epo-ProcedureTerm-epo-isOneLotOnlyAllowed, - core-shape:epo-ProcedureTerm-epo-isSubmissionForAllLotsAllowed ; - sh:targetClass :ProcedureTerm . - -core-shape:epo-ProcessPlanningTerm a sh:NodeShape ; - rdfs:label "Process planning term" ; - rdfs:comment "Conditions and stipulations defining particularities of the unfolding of the Procurement Process." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcessPlanningTerm-epo-hasAwardDateScheduled, - core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedContractNoticePublicationDate, - core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedTenderInvitationDate ; - sh:targetClass :ProcessPlanningTerm . - -core-shape:epo-ProcurementCriteriaSummary a sh:NodeShape ; - rdfs:label "Procurement criteria summary" ; - rdfs:comment "WG approval 24/01/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementCriteriaSummary-epo-indicatesPerformingStaffInformationRequirement ; - sh:targetClass :ProcurementCriteriaSummary . - -core-shape:epo-ProcurementCriterion a sh:NodeShape ; - rdfs:label "Procurement criterion" ; - rdfs:comment "A criterion specific to Procurement. Additional Information: This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). WG Approval 23/04/2020" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementCriterion-epo-hasConstraint, - core-shape:epo-ProcurementCriterion-epo-hasFormula, - core-shape:epo-ProcurementCriterion-epo-hasPerformingStaffQualificationInformation, - core-shape:epo-ProcurementCriterion-epo-hasWeightValueType ; - sh:targetClass :ProcurementCriterion . - -core-shape:epo-ProcurementDocument a sh:NodeShape ; - rdfs:label "Procurement document" ; - rdfs:comment "Document produced or referred to by the Buyer to describe or determine elements of the Procurement. Additional information: Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. WG Approval 23/05/2019 17:08:30" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ProcurementDocument . - -core-shape:epo-ProcurementElement a sh:NodeShape ; - rdfs:label "Procurement element" ; - rdfs:comment "Gathering class for critical/central elements in the Procurement Process. TODO: add definition Additional information: Alias: ProcurementComponent" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementElement-adms-identifier, - core-shape:epo-ProcurementElement-dct-description, - core-shape:epo-ProcurementElement-dct-title, - core-shape:epo-ProcurementElement-epo-hasEstimatedValue, - core-shape:epo-ProcurementElement-epo-hasInternalIdentifier, - core-shape:epo-ProcurementElement-epo-usesChannel ; - sh:targetClass :ProcurementElement . - -core-shape:epo-ProcurementObject a sh:NodeShape ; - rdfs:label "Procurement object" ; - rdfs:comment "Procedure/ PlannedProcurementPart / Lot are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the \"process\" description and \"whole procurement subject matter\". TODO: revise this definition. TODO: specify that all procedures have al least one lot.", - "Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future.", - "The whole or a division of goods, services or works to be procured. Additional Information: Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. In a sense, such an \"object\" can constitute the \"object of a Contract\". To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.). Note: Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and \"purpose\" properties." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementObject-epo-foreseesConcession, - core-shape:epo-ProcurementObject-epo-foreseesContractSpecificTerm, - core-shape:epo-ProcurementObject-epo-fulfillsStrategicProcurement, - core-shape:epo-ProcurementObject-epo-hasAdditionalInformation, - core-shape:epo-ProcurementObject-epo-hasLegalBasis, - core-shape:epo-ProcurementObject-epo-hasLegalBasisDescription, - core-shape:epo-ProcurementObject-epo-hasLegalRegime, - core-shape:epo-ProcurementObject-epo-hasPurpose, - core-shape:epo-ProcurementObject-epo-hasRecurrenceDescription, - core-shape:epo-ProcurementObject-epo-isCoveredByGPA, - core-shape:epo-ProcurementObject-epo-isFundedBy, - core-shape:epo-ProcurementObject-epo-isRecurrent, - core-shape:epo-ProcurementObject-epo-isSMESuitable, - core-shape:epo-ProcurementObject-epo-isSubjectToTerm, - core-shape:epo-ProcurementObject-epo-isUsingEUFunds, - core-shape:epo-ProcurementObject-epo-usesTechnique ; - sh:targetClass :ProcurementObject . - -core-shape:epo-ProcurementProcedureInformationProvider a sh:NodeShape ; - rdfs:label "Procurement procedure information provider" ; - rdfs:comment "A Role of an Agent responsible for providing additional information about the Procurement Procedure." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ProcurementProcedureInformationProvider . - -core-shape:epo-ProcurementProcessInformation a sh:NodeShape ; - rdfs:label "Procurement process information" ; - rdfs:comment "Information about the temporal unfolding or succession of Procurement Objects." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementProcessInformation-epo-concernsLot, - core-shape:epo-ProcurementProcessInformation-epo-concernsProcedure, - core-shape:epo-ProcurementProcessInformation-epo-isCompetitionTerminated, - core-shape:epo-ProcurementProcessInformation-epo-isDPSTerminated, - core-shape:epo-ProcurementProcessInformation-epo-isToBeRelaunched ; - sh:targetClass :ProcurementProcessInformation . - -core-shape:epo-ProcurementServiceProvider a sh:NodeShape ; - rdfs:label "Procurement service provider" ; - rdfs:comment "Role of a public or private body which offers ancillary purchasing activities on the market. Additional information \"Ancillary Purchasing Activities\" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; (b) advice on the conduct or design of public Procurement Procedures; (c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. WG Approval 24/03/2020" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProcurementServiceProvider-epo-actsOnBehalfOf ; - sh:targetClass :ProcurementServiceProvider . - -core-shape:epo-ProfessionalSuitabilitySummary a sh:NodeShape ; - rdfs:label "Professional suitability summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfession, - core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfessionRelevantLaw, - core-shape:epo-ProfessionalSuitabilitySummary-epo-hasServiceReservedToParticularProfession ; - sh:targetClass :ProfessionalSuitabilitySummary . - -core-shape:epo-Project a sh:NodeShape ; - rdfs:label "Project" ; - rdfs:comment "A collaborative enterprise that is carefully planned to achieve a particular aim." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Project-adms-identifier ; - sh:targetClass :Project . - -core-shape:epo-PublicationProvision a sh:NodeShape ; - rdfs:label "Publication provision" ; - rdfs:comment "Information about fields not intended for publication. Additional Information: The non-published information may become available at a later date and may differ from one element to another within a given Document. Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. WG Approval 16/05/2019" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-PublicationProvision-epo-hasElementConfidentiality, - core-shape:epo-PublicationProvision-epo-hasPreferredPublicationDate ; - sh:targetClass :PublicationProvision . - -core-shape:epo-PurchaseContract a sh:NodeShape ; - rdfs:label "Purchase contract" ; - rdfs:comment "A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-PurchaseContract-epo-resultsFromMiniCompetitionAwardDecision ; - sh:targetClass :PurchaseContract . - -core-shape:epo-Purpose a sh:NodeShape ; - rdfs:label "Purpose" ; - rdfs:comment "The description of the objectives related to a Procurement. Additional information: The description of the objectives includes the Subject Matter and Quantities. The quantification of the objectives related to a procurement. To be re-reviewed by the WG the soonest. (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) The old definition read as follows: The description of the objectives related to a procurement. (WG approval 05/12/2018)" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Purpose-epo-hasAdditionalClassification, - core-shape:epo-Purpose-epo-hasMainClassification, - core-shape:epo-Purpose-epo-hasTotalQuantity ; - sh:targetClass :Purpose . - -core-shape:epo-QualificationCriteriaSummary a sh:NodeShape ; - rdfs:label "Qualification criteria summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-QualificationCriteriaSummary-epo-hasConditionVerificationMethod, - core-shape:epo-QualificationCriteriaSummary-epo-hasQualificationCondition ; - sh:targetClass :QualificationCriteriaSummary . - -core-shape:epo-QualificationCriterion a sh:NodeShape ; - rdfs:label "Qualification criterion" ; - rdfs:comment "Criterion used in the first stage of procurement. WG approval 30/05/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :QualificationCriterion . - -core-shape:epo-Quantity a sh:NodeShape ; - rdfs:label "Quantity" ; - rdfs:comment "A counted number of non-monetary units possibly including fractions." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Quantity-epo-hasQuantityValue, - core-shape:epo-Quantity-epo-hasUnitCode, - core-shape:epo-Quantity-epo-hasUnitDescription ; - sh:targetClass :Quantity . - -core-shape:epo-RequestForClarification a sh:NodeShape ; - rdfs:label "Request for clarification" ; - rdfs:comment "A demand for elucidation of received information. Additional Information: Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. WG approval 20/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :RequestForClarification . - -core-shape:epo-RequestForParticipation a sh:NodeShape ; - rdfs:label "Request for participation" ; - rdfs:comment "Application of an Economic Operator to be included in a Procurement Procedure. WG approval: 20/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :RequestForParticipation . - -core-shape:epo-ReviewDecision a sh:NodeShape ; - rdfs:label "Review decision" ; - rdfs:comment "Information about Review Decisions." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewDecision-epo-hasConfirmedIrregularityType, - core-shape:epo-ReviewDecision-epo-hasDecisionDate, - core-shape:epo-ReviewDecision-epo-hasRemedyValue, - core-shape:epo-ReviewDecision-epo-hasReviewDecisionType, - core-shape:epo-ReviewDecision-epo-providesRulingOnRemedy, - core-shape:epo-ReviewDecision-epo-resolvesReviewRequest ; - sh:targetClass :ReviewDecision . - -core-shape:epo-ReviewIrregularitySummary a sh:NodeShape ; - rdfs:label "Review irregularity summary" ; - rdfs:comment "Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). Additional information: This class corresponds in eForms to BG-613 Buyer Review Requests." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewIrregularitySummary-epo-hasIrregularityType, - core-shape:epo-ReviewIrregularitySummary-epo-hasReviewIrregularityCount ; - sh:targetClass :ReviewIrregularitySummary . - -core-shape:epo-ReviewObject a sh:NodeShape ; - rdfs:label "Review object" ; - rdfs:comment "Information about a Review Request or a Review Decision. Additional information: This class corresponds to the BG-714 Review in eForms.", - "What are the entities that can be reviewed?" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewObject-epo-hasElementReference, - core-shape:epo-ReviewObject-epo-hasReviewURL, - core-shape:epo-ReviewObject-epo-refersToPreviousReview ; - sh:targetClass :ReviewObject . - -core-shape:epo-ReviewProcedureInformationProvider a sh:NodeShape ; - rdfs:label "Review procedure information provider" ; - rdfs:comment "A Role of an Agent who is providing more information on the time limits for review Procedures." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ReviewProcedureInformationProvider . - -core-shape:epo-ReviewRequest a sh:NodeShape ; - rdfs:label "Review request" ; - rdfs:comment "Information about requests to review procedures." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewRequest-epo-hasAllegedIrregularityType, - core-shape:epo-ReviewRequest-epo-hasNumberOfReviewRequests, - core-shape:epo-ReviewRequest-epo-hasRequestDate, - core-shape:epo-ReviewRequest-epo-hasReviewRequestFee, - core-shape:epo-ReviewRequest-epo-hasWithdrawalDate, - core-shape:epo-ReviewRequest-epo-hasWithdrawalReason, - core-shape:epo-ReviewRequest-epo-isWithdrawn, - core-shape:epo-ReviewRequest-epo-requestsRemedyType ; - sh:targetClass :ReviewRequest . - -core-shape:epo-ReviewRequestSummary a sh:NodeShape ; - rdfs:label "Review request summary" ; - rdfs:comment "Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. Additional information: This class corresponds in eForms to BG-612 Buyer Review Summary." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-ReviewRequestSummary-epo-concernsReviewSummaryForLot, - core-shape:epo-ReviewRequestSummary-epo-hasReviewIrregularitySummary, - core-shape:epo-ReviewRequestSummary-epo-hasTotalNumberOfComplainants ; - sh:targetClass :ReviewRequestSummary . - -core-shape:epo-ReviewRequester a sh:NodeShape ; - rdfs:label "Review requester" ; - rdfs:comment "Role of an Agent who requests the review of a (Procurement) Procedure. WG Approval 23/10/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :ReviewRequester . - -core-shape:epo-Reviewer a sh:NodeShape ; - rdfs:label "Reviewer" ; - rdfs:comment "Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. Additional Information: Any Organisation or Person may request a review of a Procurement Procedure. WG approval: 20/04/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Reviewer-epo-hasReviewBodyType ; - sh:targetClass :Reviewer . - -core-shape:epo-SecurityClearanceTerm a sh:NodeShape ; - rdfs:label "Security clearance term" ; - rdfs:comment "Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. Additional information: This corresponds in eForms to BT-578, BT-78, BT-732 . WG approval 20/06/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SecurityClearanceTerm-dct-description, - core-shape:epo-SecurityClearanceTerm-epo-hasDeadline, - core-shape:epo-SecurityClearanceTerm-epo-isSecurityClearanceRequired ; - sh:targetClass :SecurityClearanceTerm . - -core-shape:epo-SelectedCandidateList a sh:NodeShape ; - rdfs:label "Selected candidate list" ; - rdfs:comment "Record of Candidates admitted to take part in award phases of procurements. WG approval 30/05/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SelectedCandidateList-epo-containsCandidate, - core-shape:epo-SelectedCandidateList-epo-hasStartDate ; - sh:targetClass :SelectedCandidateList . - -core-shape:epo-SelectionCriteriaSummary a sh:NodeShape ; - rdfs:label "Selection criteria summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SelectionCriteriaSummary-epo-describesMinimumLevelOfStandards, - core-shape:epo-SelectionCriteriaSummary-epo-hasSelectionCriteriaStatedInProcurementDocuments ; - sh:targetClass :SelectionCriteriaSummary . - -core-shape:epo-SelectionCriterion a sh:NodeShape ; - rdfs:label "Selection criterion" ; - rdfs:comment "Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. Additional Information: Selection criteria may relate to: (a) suitability to pursue the professional activity; (b) economic and financial standing; (c) technical and professional ability WG approval 31/10/2018" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SelectionCriterion-epo-hasSelectionCriteriaUsage, - core-shape:epo-SelectionCriterion-epo-hasSelectionCriterionType, - core-shape:epo-SelectionCriterion-epo-isUsedForCandidateRestriction ; - sh:targetClass :SelectionCriterion . - -core-shape:epo-SelectionEvaluationTerm a sh:NodeShape ; - rdfs:label "Selection evaluation term" ; - rdfs:comment "Conditions and stipulations defining particularities of the evaluation of Selection Criteria." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :SelectionEvaluationTerm . - -core-shape:epo-SocialProcurement a sh:NodeShape ; - rdfs:label "Social procurement" ; - rdfs:comment "An instance of the class SocialProcurement is represented in eForms with the code \"soc-obj\" defined in the codelist Strategic-Procurement. Research (21/01/2020): Socially Responsible Public Procurement (SRPP): ‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en See Article 18 and Annex X Directive 2014/24." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SocialProcurement-epo-fulfillsRequirement ; - sh:targetClass :SocialProcurement . - -core-shape:epo-SpecificDuration a sh:NodeShape ; - rdfs:label "Specific duration" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SpecificDuration-time-numericDuration, - core-shape:epo-SpecificDuration-time-unitType ; - sh:targetClass :SpecificDuration . - -core-shape:epo-StatisticalInformation a sh:NodeShape ; - rdfs:label "Statistical information" ; - rdfs:comment "Statistical data on the Procedure and the Lot. Additional Information At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. Therefore this class is temporal and should cease to exist in fully electronic Procurement. The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. WG Approval 12/12/2019" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :StatisticalInformation . - -core-shape:epo-StrategicProcurement a sh:NodeShape ; - rdfs:label "Strategic procurement" ; - rdfs:comment "Public Procurement that contributes to achieving pressing policy goals. Additional Information: Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on \"background information\". WG Approval 10/03/2020" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-StrategicProcurement-epo-hasNonAccessibilityCriterionJustification, - core-shape:epo-StrategicProcurement-epo-hasStrategicProcurementDescription, - core-shape:epo-StrategicProcurement-epo-includesAccessibilityCriterion ; - sh:targetClass :StrategicProcurement . - -core-shape:epo-SubcontractTerm a sh:NodeShape ; - rdfs:label "Subcontract term" ; - rdfs:comment "A concept to describe the main information regarding the share of parts of the Contract to third parties." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SubcontractTerm-dct-description, - core-shape:epo-SubcontractTerm-epo-hasMaximumShare, - core-shape:epo-SubcontractTerm-epo-hasMinimumShare, - core-shape:epo-SubcontractTerm-epo-hasMinimumSubcontractorsProposedObligation, - core-shape:epo-SubcontractTerm-epo-hasSubcontractingInvolved, - core-shape:epo-SubcontractTerm-epo-hasSubcontractingObligation, - core-shape:epo-SubcontractTerm-epo-hasSubcontractorsProposedAboveObligation ; - sh:targetClass :SubcontractTerm . - -core-shape:epo-SubcontractingEstimate a sh:NodeShape ; - rdfs:label "Subcontracting estimate" ; - rdfs:comment "Information on the approximation of the foreseen Subcontracting." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SubcontractingEstimate-dct-description, - core-shape:epo-SubcontractingEstimate-epo-hasEstimatedPercentage, - core-shape:epo-SubcontractingEstimate-epo-hasSubcontractingEstimatedValue, - core-shape:epo-SubcontractingEstimate-epo-hasSubjectMatter ; - sh:targetClass :SubcontractingEstimate . - -core-shape:epo-Subcontractor a sh:NodeShape ; - rdfs:label "Subcontractor" ; - rdfs:comment "A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. Additional information For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. When modelling ESPD we well analyze whether we need or not a Role named \"relied upon\". WG approval 05/08/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Subcontractor . - -core-shape:epo-SubmissionStatisticalInformation a sh:NodeShape ; - rdfs:label "Submission statistical information" ; - rdfs:comment "Check definitions for all concepts and relations.", - "Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SubmissionStatisticalInformation-epo-hasAbnormallyLowTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasEEAReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasEUReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasElectronicTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasEstimatedTotalSubcontracts, - core-shape:epo-SubmissionStatisticalInformation-epo-hasHighestReceivedTenderValue, - core-shape:epo-SubmissionStatisticalInformation-epo-hasInadmissibleTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasLowestReceivedTenderValue, - core-shape:epo-SubmissionStatisticalInformation-epo-hasMediumTenderPerLots, - core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEEAReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEUReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasNumberOfTenderersInvited, - core-shape:epo-SubmissionStatisticalInformation-epo-hasOtherCountriesReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedMicroTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedParticipationRequests, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSmallTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSubmissionType, - core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasSMEReceivedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-hasUnverifiedTenders, - core-shape:epo-SubmissionStatisticalInformation-epo-summarisesInformationForAwardDecision ; - sh:targetClass :SubmissionStatisticalInformation . - -core-shape:epo-SubmissionTerm a sh:NodeShape ; - rdfs:label "Submission term" ; - rdfs:comment "Conditions and stipulations defining particularities of submitting Documents to the Buyer. Additional Information: These Documents can be Tenders, Request To Participate and expressions of interest. WG Approval 14/07/2020" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-SubmissionTerm-epo-definesTenderProcessor, - core-shape:epo-SubmissionTerm-epo-definesTenderReceiver, - core-shape:epo-SubmissionTerm-epo-hasEAuctionURL, - core-shape:epo-SubmissionTerm-epo-hasECataloguePermission, - core-shape:epo-SubmissionTerm-epo-hasESubmissionPermission, - core-shape:epo-SubmissionTerm-epo-hasGuaranteeDescription, - core-shape:epo-SubmissionTerm-epo-hasLanguage, - core-shape:epo-SubmissionTerm-epo-hasLateSubmissionInformationDescription, - core-shape:epo-SubmissionTerm-epo-hasLateSubmissionPermission, - core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionDescription, - core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionJustification, - core-shape:epo-SubmissionTerm-epo-hasReceiptDeadline, - core-shape:epo-SubmissionTerm-epo-hasReceiptExpressionDeadline, - core-shape:epo-SubmissionTerm-epo-hasReceiptParticipationRequestDeadline, - core-shape:epo-SubmissionTerm-epo-hasReceiptPreliminaryMarketConsultationDeadline, - core-shape:epo-SubmissionTerm-epo-hasReceiptTenderDeadline, - core-shape:epo-SubmissionTerm-epo-hasSubmissionURL, - core-shape:epo-SubmissionTerm-epo-hasTenderSubcontractingInformation, - core-shape:epo-SubmissionTerm-epo-hasTenderValidityPeriod, - core-shape:epo-SubmissionTerm-epo-hasVariantPermission, - core-shape:epo-SubmissionTerm-epo-isAdvancedElectronicSignatureRequired, - core-shape:epo-SubmissionTerm-epo-isGuaranteeRequired, - core-shape:epo-SubmissionTerm-epo-isMultipleTenderSubmissionAllowed ; - sh:targetClass :SubmissionTerm . - -core-shape:epo-System a sh:NodeShape ; - rdfs:label "System" ; - rdfs:comment "Software application used for performing Procurement activities. WG Approval 28/04/2020" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-System-dct-description, - core-shape:epo-System-epo-isOwnedByAgent ; - sh:targetClass :System . - -core-shape:epo-TaxInformationProvider a sh:NodeShape ; - rdfs:label "Tax information provider" ; - rdfs:comment "A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :TaxInformationProvider . - -core-shape:epo-TechnicalAbilitySummary a sh:NodeShape ; - rdfs:label "Technical ability summary" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :TechnicalAbilitySummary . - -core-shape:epo-Technique a sh:NodeShape ; - rdfs:label "Technique" ; - rdfs:comment "Method used for conducting Procurement Procedures. Addtional information: This corresponds in eForms to BG-706 Techniques. Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). WG Approval 19/09/2019" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Technique-dct-description, - core-shape:epo-Technique-epo-hasUsage, - core-shape:epo-Technique-epo-hasValidityPeriod ; - sh:targetClass :Technique . - -core-shape:epo-Tender a sh:NodeShape ; - rdfs:label "Tender" ; - rdfs:comment "Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. (WG approval 03/05/2022)" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Tender-epo-foreseesConcession, - core-shape:epo-Tender-epo-foreseesSubcontracting, - core-shape:epo-Tender-epo-hasElectronicSubmission, - core-shape:epo-Tender-epo-hasFinancialOfferValue, - core-shape:epo-Tender-epo-hasItemCountryOfOrigin, - core-shape:epo-Tender-epo-isSubjectToGrouping, - core-shape:epo-Tender-epo-isSubmitedBy, - core-shape:epo-Tender-epo-isSubmittedForLot, - core-shape:epo-Tender-epo-isVariant, - core-shape:epo-Tender-epo-specifiesSubcontractors ; - sh:targetClass :Tender . - -core-shape:epo-Tender-epo-ord-hasTaxInformation sh:description "Proposal to omit this link until we bring tax into ePO core because this does not appear in the data" . - -core-shape:epo-TenderAwardOutcome a sh:NodeShape ; - rdfs:label "Tender award outcome" ; - rdfs:comment "Result concerning the Tender attributed by the Awarder." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-TenderAwardOutcome-epo-concernsTender, - core-shape:epo-TenderAwardOutcome-epo-hasAwardRank, - core-shape:epo-TenderAwardOutcome-epo-indicatesAwardToWinner ; - sh:targetClass :TenderAwardOutcome . - -core-shape:epo-TenderGroup a sh:NodeShape ; - rdfs:label "Tender group" ; - rdfs:comment "Specific Offer in response to a Lot Group. Additional Information: This class is generally used to provide the Monetary Value in response to a Lot Group.", - "should this be moved to document?" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-TenderGroup-epo-comprisesTender, - core-shape:epo-TenderGroup-epo-hasTotalValue, - core-shape:epo-TenderGroup-epo-isSubmittedForLotGroup ; - sh:targetClass :TenderGroup . - -core-shape:epo-TenderProcessor a sh:NodeShape ; - rdfs:label "Tender processor" ; - rdfs:comment "A Role of an Agent responsible for processing Tenders." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :TenderProcessor . - -core-shape:epo-TenderReceiver a sh:NodeShape ; - rdfs:label "Tender receiver" ; - rdfs:comment "A Role of an Agent responsible for receiving Tenders." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :TenderReceiver . - -core-shape:epo-Tenderer a sh:NodeShape ; - rdfs:label "Tenderer" ; - rdfs:comment "A Role of an Agent that has submitted a Tender. Additional Information: A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. WG approval 05/08/2021" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Tenderer-epo-substantiatesExclusionGround ; - sh:targetClass :Tenderer . - -core-shape:epo-Term a sh:NodeShape ; - rdfs:label "Term" ; - rdfs:comment "A governing condition or stipulation.", - "Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass :Term . - -core-shape:epo-Winner a sh:NodeShape ; - rdfs:label "Winner" ; - rdfs:comment "A Role of an Agent to whom a Lot is awarded. WG approval 05/08/2021 (revised 26/10/2021)" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:epo-Winner-epo-needsToBeATenderer ; - sh:targetClass :Winner . - -core-shape:foaf-Agent a sh:NodeShape ; - rdfs:label "Agent" ; - rdfs:comment "A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. WG Approval 28/04/2020" ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:foaf-Agent-adms-identifier, - core-shape:foaf-Agent-dct-title, - core-shape:foaf-Agent-epo-hasAlias, - core-shape:foaf-Agent-epo-ownsSystem ; - sh:targetClass foaf:Agent . - -core-shape:foaf-Person a sh:NodeShape ; - rdfs:label "Person" ; - rdfs:comment "The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:targetClass foaf:Person . - -core-shape:locn-Address a sh:NodeShape ; - rdfs:label "Address" ; - rdfs:comment "The particulars of the place where a Person or an Organisation is located. WG Approval 28/04/2020 Additional Information: An \"Address Representation\" as conceptually defined by the INSPIRE Address Representation data type: \"Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.\". The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - full address (the complete address as a formatted string) - addressID (a unique identifier for the address) The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:locn-Address-epo-hasCountryCode, - core-shape:locn-Address-epo-hasNutsCode, - core-shape:locn-Address-locn-addressArea, - core-shape:locn-Address-locn-addressID, - core-shape:locn-Address-locn-adminUnitL1, - core-shape:locn-Address-locn-adminUnitL2, - core-shape:locn-Address-locn-fullAddress, - core-shape:locn-Address-locn-locatorDesignator, - core-shape:locn-Address-locn-locatorName, - core-shape:locn-Address-locn-postCode, - core-shape:locn-Address-locn-postName, - core-shape:locn-Address-locn-thoroughfare ; - sh:targetClass locn:Address . - -core-shape:locn-Geometry a sh:NodeShape ; - rdfs:label "Geometry" ; - rdfs:comment "The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. Additional Information: This class defines the notion of \"Geometry\" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:locn-Geometry-cv-coordinates, - core-shape:locn-Geometry-cv-latitude, - core-shape:locn-Geometry-cv-longitude ; - sh:targetClass locn:Geometry . - -core-shape:org-Organization a sh:NodeShape ; - rdfs:label "Organization" ; - rdfs:comment "A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. (WG approval 23/11/2018).", - "A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023", - "In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:org-Organization-cv-address, - core-shape:org-Organization-cv-registeredAddress, - core-shape:org-Organization-epo-hasBuyerLegalType, - core-shape:org-Organization-epo-hasBuyerLegalTypeDescription, - core-shape:org-Organization-epo-hasInternetAddress, - core-shape:org-Organization-epo-hasLegalFormType, - core-shape:org-Organization-epo-hasLegalIdentifier, - core-shape:org-Organization-epo-hasLegalName, - core-shape:org-Organization-epo-hasMainActivity, - core-shape:org-Organization-epo-hasMainActivityDescription, - core-shape:org-Organization-epo-hasOrganisationUnitName, - core-shape:org-Organization-epo-hasPrimaryContactPoint, - core-shape:org-Organization-epo-hasRegistrationCountry, - core-shape:org-Organization-epo-hasTaxIdentifier ; - sh:targetClass org:Organization . - -core-shape:owl-Thing a sh:NodeShape ; - rdfs:label "Thing" ; - rdfs:comment "Any individual in the domain of discourse is a Thing. Additional Information: The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing." ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:property core-shape:owl-Thing-epo-containsModificationsOf ; - sh:targetClass owl:Thing . - -core-shape:role rdfs:comment "Context: Consumption or end use of the procurement (goods and service)." . - -core-shape:adms-Identifier-adms-schemaAgency a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The name of the agency that issued the identifier." ; - sh:name "Schema agency" ; - sh:path adms:schemaAgency . - -core-shape:adms-Identifier-epo-hasScheme a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The name of the identification scheme." ; - sh:name "Has scheme" ; - sh:path :hasScheme . - -core-shape:adms-Identifier-epo-hasSchemeVersion a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The version of the identification scheme." ; - sh:name "Has scheme version" ; - sh:path :hasSchemeVersion . - -core-shape:adms-Identifier-skos-notation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The literal identifying an entity, like a person or an object." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Notation" ; - sh:path skos:notation . - -core-shape:cccev-Constraint-cccev-constrains a sh:PropertyShape ; - sh:class cccev:InformationConcept ; - sh:description "Information Concept about which a Constraint expresses a limitation. Additional Information: Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation." ; - sh:name "Constrains" ; - sh:path cccev:constrains ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cccev-Constraint-epo-hasThresholdType a sh:PropertyShape ; - sh:class at-voc:number-threshold ; - sh:description "The method to interpret the threshold value as minimum or a maximum. WG Approval 17/09/2019" ; - sh:name "Has threshold type" ; - sh:path :hasThresholdType . - -core-shape:cccev-Constraint-epo-hasThresholdValue a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The cut-off level for a given concept. Additional Information: This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold)." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has threshold value" ; - sh:path :hasThresholdValue . - -core-shape:cccev-Criterion-cccev-bias a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "Parameter used to adjust the evaluation of the Criterion. Additional Information: The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the \"presence of local preferences distorting international specialisation and resource allocation\". When quantified, this systematic error can be removed." ; - sh:maxCount 1 ; - sh:name "Bias" ; - sh:path cccev:bias . - -core-shape:cccev-Criterion-cccev-weight a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "Relative importance of the Criterion. Additional Information: The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1." ; - sh:maxCount 1 ; - sh:name "Weight" ; - sh:path cccev:weight . - -core-shape:cccev-Criterion-cccev-weightingConsiderationDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Explanation of how the weighting of a Criterion is to be used. Additional Information: This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process." ; - sh:maxCount 1 ; - sh:name "Weighting consideration description" ; - sh:path cccev:weightingConsiderationDescription . - -core-shape:cccev-Criterion-dct-type a sh:PropertyShape ; - sh:class at-voc:criterion ; - sh:description "Category to which the Requirement belongs." ; - sh:maxCount 1 ; - sh:name "Type" ; - sh:path dcterms:type . - -core-shape:cccev-Evidence-cccev-confidentialityLevelType a sh:PropertyShape ; - sh:class at-voc:confidentiality-level ; - sh:description "Security classification assigned to an Evidence e.g. classified, sensitive, public. Additional Information: Classifications should be defined by an organisation/country as an outcome of a security assessment." ; - sh:maxCount 1 ; - sh:name "Confidentiality level type" ; - sh:path cccev:confidentialityLevelType . - -core-shape:cccev-Evidence-cccev-supportsConcept a sh:PropertyShape ; - sh:class cccev:InformationConcept ; - sh:description "Information Concept providing facts found/inferred from the Evidence. Additional Information: Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as \"I am older that 18 years\" or \"this is a FairTrade product\"." ; - sh:name "Supports concept" ; - sh:path cccev:supportsConcept ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cccev-Evidence-cccev-supportsRequirement a sh:PropertyShape ; - sh:class cccev:Requirement ; - sh:description "Requirement for which the Evidence provides proof." ; - sh:name "Supports requirement" ; - sh:path cccev:supportsRequirement ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cccev-InformationConcept-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cccev-InformationConcept-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:cccev-InformationConcept-skos-prefLabel a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The preferred lexical label for a resource, in a given language. WG approval 30/05/2023" ; - sh:name "Pref label" ; - sh:path skos:prefLabel . - -core-shape:cccev-Requirement-cccev-hasRequirement a sh:PropertyShape ; - sh:class cccev:Requirement ; - sh:description "A more specific Requirement that is part of the Requirement." ; - sh:name "Has requirement" ; - sh:path cccev:hasRequirement ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cccev-Requirement-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:maxCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:cccev-Requirement-skos-prefLabel a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The preferred lexical label for a resource, in a given language. WG approval 30/05/2023" ; - sh:maxCount 1 ; - sh:name "Pref label" ; - sh:path skos:prefLabel . - -core-shape:cpov-ContactPoint-cpov-email a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The email of the Organisation." ; - sh:maxCount 1 ; - sh:name "Email" ; - sh:path cccev:email . - -core-shape:cpov-ContactPoint-cpov-telephone a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A telephone number through which the Contact Point can be contacted." ; - sh:name "Telephone" ; - sh:path cccev:telephone . - -core-shape:cpov-ContactPoint-cv-address a sh:PropertyShape ; - sh:class locn:Address ; - sh:maxCount 1 ; - sh:name "Address" ; - sh:path cccev:address ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cpov-ContactPoint-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:cpov-ContactPoint-epo-hasContactName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A short text by which a contact is known or referred to. WG Approval: 27/01/2022" ; - sh:maxCount 1 ; - sh:name "Has contact name" ; - sh:path :hasContactName . - -core-shape:cpov-ContactPoint-epo-hasFax a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The fax number used to reach a person or an organisation." ; - sh:name "Has fax" ; - sh:path :hasFax . - -core-shape:cpov-ContactPoint-epo-hasInternetAddress a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The main web page used by the instance of the concept. WG Approval 01/06/2023" ; - sh:maxCount 1 ; - sh:name "Has internet address" ; - sh:path :hasInternetAddress . - -core-shape:cpv-Person-cv-birthDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The point in time on which the Person was born." ; - sh:maxCount 1 ; - sh:name "Birth date" ; - sh:path cccev:birthDate . - -core-shape:cpv-Person-cv-registeredAddress a sh:PropertyShape ; - sh:class locn:Address ; - sh:description "The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address." ; - sh:maxCount 1 ; - sh:name "Registered address" ; - sh:path cccev:registeredAddress ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cpv-Person-dct-alternative a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "Any name by which an individual is known other than their full name. WG 09/11/2021" ; - sh:name "Alternative" ; - sh:path dcterms:alternative . - -core-shape:cpv-Person-epo-hasCountryOfBirth a sh:PropertyShape ; - sh:class at-voc:country ; - sh:description "The country in which the Person was born." ; - sh:maxCount 1 ; - sh:name "Has country of birth" ; - sh:path :hasCountryOfBirth . - -core-shape:cpv-Person-epo-hasNationality a sh:PropertyShape ; - sh:class at-voc:country ; - sh:description "" ; - sh:name "Has nationality" ; - sh:path :hasNationality . - -core-shape:cpv-Person-epo-isBeneficialOwnerOf a sh:PropertyShape ; - sh:class :Business ; - sh:description "A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021" ; - sh:name "Is beneficial owner of" ; - sh:path :isBeneficialOwnerOf ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cpv-Person-foaf-familyName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The hereditary surname of a family." ; - sh:name "Family name" ; - sh:path foaf:familyName . - -core-shape:cpv-Person-foaf-givenName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The name(s) that identify the Person within a family with a common surname." ; - sh:name "Given name" ; - sh:path foaf:givenName . - -core-shape:cpv-Person-foaf-name a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The complete name of the Person as one string." ; - sh:name "Name" ; - sh:path foaf:name . - -core-shape:cpv-Person-person-birthName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "Family name of the Person given upon their birth. WG Approval 09/11/2021" ; - sh:name "Birth name" ; - sh:path person:birthName . - -core-shape:cpv-Person-person-patronymicName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "Name based on the given name of the Person's father. WG Approval 09/11/2021" ; - sh:name "Patronymic name" ; - sh:path person:patronymicName . - -core-shape:cpv-Person-person-placeOfBirth a sh:PropertyShape ; - sh:class dcterms:Location ; - sh:description "The Location where the Person was born." ; - sh:maxCount 1 ; - sh:name "Place of birth" ; - sh:path person:placeOfBirth ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cpv-Person-person-placeOfDeath a sh:PropertyShape ; - sh:class dcterms:Location ; - sh:description "The Location where the Person died." ; - sh:maxCount 1 ; - sh:name "Place of death" ; - sh:path person:placeOfDeath ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:cv-Channel-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:maxCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:cv-Channel-epo-hasAddressURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:maxCount 1 ; - sh:name "Has address u r l" ; - sh:path :hasAddressURL . - -core-shape:cv-Channel-epo-hasEndpointIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:name "Has endpoint identifier" ; - sh:path :hasEndpointIdentifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:dct-Location-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:dct-Location-epo-hasCountryCode a sh:PropertyShape ; - sh:class at-voc:country ; - sh:maxCount 1 ; - sh:name "Has country code" ; - sh:path :hasCountryCode . - -core-shape:dct-Location-epo-hasNutsCode a sh:PropertyShape ; - sh:class at-voc:nuts ; - sh:maxCount 1 ; - sh:name "Has nuts code" ; - sh:path :hasNutsCode . - -core-shape:dct-Location-locn-address a sh:PropertyShape ; - sh:class locn:Address ; - sh:maxCount 1 ; - sh:name "Address" ; - sh:path locn:address ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:dct-Location-locn-geographicIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "A URI that identifies the Location. Additional Information: GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - http://dbpedia.org/resource/ISO_3166-1:GR - http://dbpedia.org/resource/ISO_3166-1:GB even when the geographic name is given as EL or UK. The use of a URIs has added advantages: - it can be used by automated systems to look up additional data (linked data); - a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial." ; - sh:maxCount 1 ; - sh:name "Geographic identifier" ; - sh:path locn:geographicIdentifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:dct-Location-locn-geographicName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "A textual description for a Location. Additional Information: The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - \"Aθnνa\"@gr-Grek (the Greek endonym written in the Greek script) - \"Athína\"@gr-Latn (the standard Romanisation of the endonym) - \"Athens\"@en (the English language exonym) INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - use 'EL' in preference to the ISO 3166 code GR for Greece. Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code." ; - sh:maxCount 1 ; - sh:name "Geographic name" ; - sh:path locn:geographicName . - -core-shape:dct-Location-locn-geometry a sh:PropertyShape ; - sh:class locn:Geometry ; - sh:maxCount 1 ; - sh:name "Geometry" ; - sh:path locn:geometry ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AccessTerm-epo-definesCatalogueProvider a sh:PropertyShape ; - sh:class :CatalogueProvider ; - sh:description "Relation indicating an AccessTerm has a CatalogueProvider." ; - sh:name "Defines catalogue provider" ; - sh:path :definesCatalogueProvider ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AccessTerm-epo-definesCatalogueReceiver a sh:PropertyShape ; - sh:class :CatalogueReceiver ; - sh:description "Relation indicating an AccessTerm has a CatalogueReceiver." ; - sh:name "Defines catalogue receiver" ; - sh:path :definesCatalogueReceiver ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AccessTerm-epo-definesOfflineAccessProvider a sh:PropertyShape ; - sh:class :OfflineAccessProvider ; - sh:description "Relation indicating an AccessTerm has an OfflineAccessProvider." ; - sh:maxCount 1 ; - sh:name "Defines offline access provider" ; - sh:path :definesOfflineAccessProvider ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AccessTerm-epo-definesProcurementProcedureInformationProvider a sh:PropertyShape ; - sh:class :ProcurementProcedureInformationProvider ; - sh:description "Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider." ; - sh:maxCount 1 ; - sh:name "Defines procurement procedure information provider" ; - sh:path :definesProcurementProcedureInformationProvider ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AccessTerm-epo-hasAdditionalInformationDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "The time limit for requesting further information. Additional information: This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. This corresponds in eForms to BT-13 Additional Information Deadline. WG Approval 09/06/2020" ; - sh:maxCount 1 ; - sh:name "Has additional information deadline" ; - sh:path :hasAdditionalInformationDeadline . - -core-shape:epo-AccessTerm-epo-hasDocumentRestrictionJustification a sh:PropertyShape ; - sh:class at-voc:communication-justification ; - sh:description "An explanation about the reasons why some procurement documents are restricted. Additional Information: This corresponds in eForms to BT-707 Documents Restricted Justification. WG Approval 09/03/2021" ; - sh:maxCount 1 ; - sh:name "Has document restriction justification" ; - sh:path :hasDocumentRestrictionJustification . - -core-shape:epo-AccessTerm-epo-hasPublicAccessURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "Web page where the procurement documents can be downloaded. Additional Information: This corresponds in the eForms to BT-15 Documents URL. WG Approval 09/03/2021" ; - sh:maxCount 1 ; - sh:name "Has public access u r l" ; - sh:path :hasPublicAccessURL . - -core-shape:epo-AccessTerm-epo-hasRestrictedAccessURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The internet address with information on accessing the restricted (part of the) procurement document. Additional Information: This corresponds in eForms to BT-615 Documents Restricted URL." ; - sh:maxCount 1 ; - sh:name "Has restricted access u r l" ; - sh:path :hasRestrictedAccessURL . - -core-shape:epo-AccessTerm-epo-involvesProcurementDocument a sh:PropertyShape ; - sh:class :ProcurementDocument ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Involves procurement document" ; - sh:path :involvesProcurementDocument ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AccessTerm-epo-isProcurementDocumentRestricted a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The access to certain procurement documents is restricted. Additional Information: This corresponds in eForms to BT-14 Documents Restricted. WG Approval 10/10/2019" ; - sh:maxCount 1 ; - sh:name "Is procurement document restricted" ; - sh:path :isProcurementDocumentRestricted . - -core-shape:epo-AccessTerm-epo-refersToPlannedPart a sh:PropertyShape ; - sh:class :PlannedProcurementPart ; - sh:name "Refers to planned part" ; - sh:path :refersToPlannedPart ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AgentInRole-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-AgentInRole-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A name given to the resource. WG approval 30/05/2023" ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:epo-AgentInRole-epo-contextualisedBy a sh:PropertyShape ; - sh:class :ProcurementObject ; - sh:description "The place of the AgentInRole in the procurement is expressed by a ProcurementObject." ; - sh:name "Contextualised by" ; - sh:path :contextualisedBy ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AgentInRole-epo-exposesChannel a sh:PropertyShape ; - sh:class cccev:Channel ; - sh:name "Exposes channel" ; - sh:path :exposesChannel ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AgentInRole-epo-hasContactPointInRole a sh:PropertyShape ; - sh:class cccev:ContactPoint ; - sh:name "Has contact point in role" ; - sh:path :hasContactPointInRole ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AgentInRole-epo-playedBy a sh:PropertyShape ; - sh:class foaf:Agent ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Played by" ; - sh:path :playedBy ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AwardCriterion-epo-hasAwardCriteriaStatedInProcurementDocuments a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has award criteria stated in procurement documents" ; - sh:path :hasAwardCriteriaStatedInProcurementDocuments . - -core-shape:epo-AwardCriterion-epo-hasAwardCriterionType a sh:PropertyShape ; - sh:class at-voc:award-criterion-type ; - sh:description "Category of award criterion." ; - sh:maxCount 1 ; - sh:name "Has award criterion type" ; - sh:path :hasAwardCriterionType . - -core-shape:epo-AwardCriterion-epo-hasFixedValue a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed." ; - sh:maxCount 1 ; - sh:name "Has fixed value" ; - sh:path :hasFixedValue . - -core-shape:epo-AwardCriterion-epo-hasFixedValueType a sh:PropertyShape ; - sh:class at-voc:number-fixed ; - sh:description "The method to interpret the fixed value as pertaining to a total or unit. WG Approval 17/09/2019" ; - sh:maxCount 1 ; - sh:name "Has fixed value type" ; - sh:path :hasFixedValueType . - -core-shape:epo-AwardDecision-epo-comprisesLotAwardDecision a sh:PropertyShape ; - sh:class :LotAwardDecision ; - sh:description "Incorporates LotAwardOutcome." ; - sh:name "Comprises lot award decision" ; - sh:path :comprisesLotAwardDecision ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AwardDecision-epo-comprisesMiniCompetitionAwardDecision a sh:PropertyShape ; - sh:class :MiniCompetitionAwardDecision ; - sh:name "Comprises mini competition award decision" ; - sh:path :comprisesMiniCompetitionAwardDecision ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AwardDecision-epo-comprisesTenderAwardOutcome a sh:PropertyShape ; - sh:class :TenderAwardOutcome ; - sh:description "Incorporates TenderAwardOutcome." ; - sh:name "Comprises tender award outcome" ; - sh:path :comprisesTenderAwardOutcome ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AwardDecision-epo-hasAdditionalNonAwardJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Further justification for the non award . Additional information: This is generally used when the non award reason code is set to \"Other\". WG: 18/01/2022" ; - sh:maxCount 1 ; - sh:name "Has additional non award justification" ; - sh:path :hasAdditionalNonAwardJustification . - -core-shape:epo-AwardDecision-epo-hasAwardDecisionDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "The official date of the award decision. Additional Information: This corresponds in eForms to BT-1451 Winner Decision Date. WG Approval 09/01/2020" ; - sh:maxCount 1 ; - sh:name "Has award decision date" ; - sh:path :hasAwardDecisionDate . - -core-shape:epo-AwardDecision-epo-hasAwardStatus a sh:PropertyShape ; - sh:class at-voc:winner-selection-status ; - sh:description "Indicates whether the lot is awarded, not awarded or still open. WG Approval 03/12/2019" ; - sh:maxCount 1 ; - sh:name "Has award status" ; - sh:path :hasAwardStatus . - -core-shape:epo-AwardDecision-epo-hasAwardedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The value of the procurement provided by the Award Decision. Additional Information: Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. WG Approval 10/12/2019", - "Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract." ; - sh:maxCount 1 ; - sh:name "Has awarded value" ; - sh:path :hasAwardedValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AwardDecision-epo-hasBargainPrice a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. WG approval 23/05/2023" ; - sh:maxCount 1 ; - sh:name "Has bargain price" ; - sh:path :hasBargainPrice ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-AwardDecision-epo-hasNonAwardJustification a sh:PropertyShape ; - sh:class at-voc:non-award-justification ; - sh:description "On hold; Enumeration." ; - sh:maxCount 1 ; - sh:name "Has non award justification" ; - sh:path :hasNonAwardJustification . - -core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaEvaluationFormula a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543 Award Criteria Complicated." ; - sh:name "Has award criteria evaluation formula" ; - sh:path :hasAwardCriteriaEvaluationFormula . - -core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaOrderJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The justification for only indicating the award criteria's order of importance, not their weighing. Additional Information: This corresponds in eForms to BT-733 Award Criteria Order Justification." ; - sh:maxCount 1 ; - sh:name "Has award criteria order justification" ; - sh:path :hasAwardCriteriaOrderJustification . - -core-shape:epo-AwardEvaluationTerm-epo-hasOverallCostAwardCriteriaPonderation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The weighting given to cost. Additional Information: This weighting covers usually all cost criteria against price or quality criteria." ; - sh:maxCount 1 ; - sh:name "Has overall cost award criteria ponderation" ; - sh:path :hasOverallCostAwardCriteriaPonderation . - -core-shape:epo-AwardEvaluationTerm-epo-hasOverallPriceAwardCriteriaPonderation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The weighting given to price. Additional Information: This weighting covers usually all price criteria against cost or quality criteria." ; - sh:maxCount 1 ; - sh:name "Has overall price award criteria ponderation" ; - sh:path :hasOverallPriceAwardCriteriaPonderation . - -core-shape:epo-AwardEvaluationTerm-epo-hasOverallQualityAwardCriteriaPonderation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The weighting given to quality. Additional Information: This weighting covers usually all quality criteria against price or cost criteria." ; - sh:maxCount 1 ; - sh:name "Has overall quality award criteria ponderation" ; - sh:path :hasOverallQualityAwardCriteriaPonderation . - -core-shape:epo-Business-epo-hasBeneficialOwner a sh:PropertyShape ; - sh:class cccev:Person ; - sh:description "A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021" ; - sh:name "Has beneficial owner" ; - sh:path :hasBeneficialOwner ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Business-epo-hasBusinessSize a sh:PropertyShape ; - sh:class at-voc:economic-operator-size ; - sh:description "The category of the business depending on number of employees and turnover. Additional information: See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. WG Approval 28/05/2020" ; - sh:maxCount 1 ; - sh:name "Has business size" ; - sh:path :hasBusinessSize . - -core-shape:epo-Business-epo-isListedCompany a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange rules or through law or enforceable means), which impose requirements to ensure adequate transparency of beneficial ownership. Additional Information: In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. WG Approval 21/11/2019" ; - sh:maxCount 1 ; - sh:name "Is listed company" ; - sh:path :isListedCompany . - -core-shape:epo-Buyer-epo-delegatesAncillaryActivitiesTo a sh:PropertyShape ; - sh:class :ProcurementServiceProvider ; - sh:description "Entrusts ancillary purchasing activities to ProcurementServiceProvider. Additional Information: Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; (b) advice on the conduct or design of public procurement procedures; (c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned;" ; - sh:name "Delegates ancillary activities to" ; - sh:path :delegatesAncillaryActivitiesTo ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Buyer-epo-exposesInvoiceeChannel a sh:PropertyShape ; - sh:class cccev:Channel ; - sh:name "Exposes invoicee channel" ; - sh:path :exposesInvoiceeChannel ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Buyer-epo-hasActivityDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. However, in eForms there is the code \"other\" to cover undefined activities. For mapping to this eForms feature one could also use this property." ; - sh:name "Has activity description" ; - sh:path :hasActivityDescription . - -core-shape:epo-Buyer-epo-hasBuyerProfile a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "Website address where the buyer publishes information on its procurement procedures and general information. Additional information: This corresponds in the eForms to BT-508 Buyer Profile URL. WG approval 04/05/2018" ; - sh:maxCount 1 ; - sh:name "Has buyer profile" ; - sh:path :hasBuyerProfile . - -core-shape:epo-Buyer-epo-indicatesInvoiceeContactPoint a sh:PropertyShape ; - sh:class cccev:ContactPoint ; - sh:name "Indicates invoicee contact point" ; - sh:path :indicatesInvoiceeContactPoint ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Buyer-epo-isContractingEntity a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Role of entities, which: (a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. (b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. Additional Information The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. WG Approval 28/04/2020" ; - sh:maxCount 1 ; - sh:name "Is contracting entity" ; - sh:path :isContractingEntity . - -core-shape:epo-Buyer-epo-signsAwardDecision a sh:PropertyShape ; - sh:class :AwardDecision ; - sh:name "Signs award decision" ; - sh:path :signsAwardDecision ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ConcessionEstimate-epo-hasCalculationMethod a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Formula for obtaining values. Additional Information: The possible values are monetary values, ranking scores, criterion weighting. WG Approval 25/05/2018" ; - sh:maxCount 1 ; - sh:name "Has calculation method" ; - sh:path :hasCalculationMethod . - -core-shape:epo-ConcessionEstimate-epo-hasConcessionEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has concession estimated value" ; - sh:path :hasConcessionEstimatedValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ConcessionEstimate-epo-hasEstimatedBuyerConcessionRevenue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. Additional Information: For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. This corresponds to BT-160 in eForms. WG Approval 07/01/2020" ; - sh:maxCount 1 ; - sh:name "Has estimated buyer concession revenue" ; - sh:path :hasEstimatedBuyerConcessionRevenue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ConcessionEstimate-epo-hasEstimatedUserConcessionRevenue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The estimated revenue coming from the use of the concession. Additional Information: Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. This corresponds to BT-162 in eForms." ; - sh:maxCount 1 ; - sh:name "Has estimated user concession revenue" ; - sh:path :hasEstimatedUserConcessionRevenue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Contract-epo-bindsBuyer a sh:PropertyShape ; - sh:class :Buyer ; - sh:description "Provides legal constraint on the Buyer." ; - sh:name "Binds buyer" ; - sh:path :bindsBuyer ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Contract-epo-bindsContractor a sh:PropertyShape ; - sh:class :Contractor ; - sh:description "Provides legal constraint on the Contractor." ; - sh:name "Binds contractor" ; - sh:path :bindsContractor ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Contract-epo-hasContractConclusionDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The date the contract was signed by the last signatory party. Additional Information: In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. This concept is not to be confused with the date of completion/end of the contract. This corresponds in eForms to BT-145 Contract Conclusion Date. WG Approval 09/01/2020" ; - sh:maxCount 1 ; - sh:name "Has contract conclusion date" ; - sh:path :hasContractConclusionDate . - -core-shape:epo-Contract-epo-hasContractValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has contract value" ; - sh:path :hasContractValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Contract-epo-hasEntryIntoForceDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The date on which the contract enters into force. Additional information: This is generally the date on which the fulfillment of the contract begins. This corresponds in eForms to WG approval 05/11/2019" ; - sh:maxCount 1 ; - sh:name "Has entry into force date" ; - sh:path :hasEntryIntoForceDate . - -core-shape:epo-Contract-epo-hasEstimatedDuration a sh:PropertyShape ; - sh:class :Duration ; - sh:description "Relation indicating a Contract has an estimated Duration. Additional Information When the Lot uses a Technique the contract estimated duration applies to the Technique." ; - sh:maxCount 1 ; - sh:name "Has estimated duration" ; - sh:path :hasEstimatedDuration ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Contract-epo-hasLotReference a sh:PropertyShape ; - sh:class :Lot ; - sh:minCount 1 ; - sh:name "Has lot reference" ; - sh:path :hasLotReference ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Contract-epo-hasProcurementClassification a sh:PropertyShape ; - sh:class at-voc:cpv ; - sh:maxCount 1 ; - sh:name "Has procurement classification" ; - sh:path :hasProcurementClassification . - -core-shape:epo-Contract-epo-includesTender a sh:PropertyShape ; - sh:class :Tender ; - sh:description "Additional information: This corresponds in eForms to BT-3202 Contract Tender Identifier." ; - sh:name "Includes tender" ; - sh:path :includesTender ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Contract-epo-isSubjectToContractSpecificTerm a sh:PropertyShape ; - sh:class :ContractSpecificTerm ; - sh:name "Is subject to contract specific term" ; - sh:path :isSubjectToContractSpecificTerm ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Contract-epo-signedByBuyer a sh:PropertyShape ; - sh:class :Buyer ; - sh:name "Signed by buyer" ; - sh:path :signedByBuyer ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Contract-epo-signedByContractor a sh:PropertyShape ; - sh:class :Contractor ; - sh:name "Signed by contractor" ; - sh:path :signedByContractor ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractLotCompletionInformation-epo-describesLotCompletion a sh:PropertyShape ; - sh:class :Lot ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Describes lot completion" ; - sh:path :describesLotCompletion ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractLotCompletionInformation-epo-hasPaymentValueDiscrepancyJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has payment value discrepancy justification" ; - sh:path :hasPaymentValueDiscrepancyJustification . - -core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPaymentValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "Additional Information: This corresponds to BT-779 in eForms." ; - sh:maxCount 1 ; - sh:name "Provides contract total payment value" ; - sh:path :providesContractTotalPaymentValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPenaltyValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "Additional Information: This corresponds to BT-782 in eForms." ; - sh:maxCount 1 ; - sh:name "Provides contract total penalty value" ; - sh:path :providesContractTotalPenaltyValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractLotCompletionInformation-epo-refersToContract a sh:PropertyShape ; - sh:class :Contract ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Refers to contract" ; - sh:path :refersToContract ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractModification-epo-hasElementModification a sh:PropertyShape ; - sh:class :ElementModificationDescription ; - sh:minCount 1 ; - sh:name "Has element modification" ; - sh:path :hasElementModification ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractModification-epo-refersToOriginalNotice a sh:PropertyShape ; - sh:class :Notice ; - sh:maxCount 1 ; - sh:name "Refers to original notice" ; - sh:path :refersToOriginalNotice ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractTerm-epo-definesContractDuration a sh:PropertyShape ; - sh:class :Duration ; - sh:description "Relation indicating a ContractTerm has a Duration." ; - sh:maxCount 1 ; - sh:name "Defines contract duration" ; - sh:path :definesContractDuration ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractTerm-epo-definesContractPeriod a sh:PropertyShape ; - sh:class :Period ; - sh:description "Relation indicating a ContractTerm has a Period." ; - sh:maxCount 1 ; - sh:name "Defines contract period" ; - sh:path :definesContractPeriod ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractTerm-epo-definesPaymentExecutor a sh:PropertyShape ; - sh:class :PaymentExecutor ; - sh:description "Relation indicating a ContractTerm has a PaymentExecutor." ; - sh:maxCount 1 ; - sh:name "Defines payment executor" ; - sh:path :definesPaymentExecutor ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractTerm-epo-definesPlaceOfPerformance a sh:PropertyShape ; - sh:class dcterms:Location ; - sh:description "Relation indicating the place of performance of a Contract. WG approval 21/03/2023" ; - sh:name "Defines place of performance" ; - sh:path :definesPlaceOfPerformance ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractTerm-epo-definesSubcontractingTerm a sh:PropertyShape ; - sh:class :SubcontractTerm ; - sh:description "Relation indicating a term has a subterm." ; - sh:maxCount 1 ; - sh:name "Defines subcontracting term" ; - sh:path :definesSubcontractingTerm ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ContractTerm-epo-hasAdditionalContractNature a sh:PropertyShape ; - sh:class at-voc:contract-nature ; - sh:description "Additional type of acquisition taken into consideration in the contract. WG Approval 11/06/2020" ; - sh:name "Has additional contract nature" ; - sh:path :hasAdditionalContractNature . - -core-shape:epo-ContractTerm-epo-hasBroadPlaceOfPerformance a sh:PropertyShape ; - sh:class at-voc:other-place-service ; - sh:description "Geopolitical zone where the contract can be executed. Additional Information Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other)." ; - sh:maxCount 1 ; - sh:name "Has broad place of performance" ; - sh:path :hasBroadPlaceOfPerformance . - -core-shape:epo-ContractTerm-epo-hasContractNatureType a sh:PropertyShape ; - sh:class at-voc:contract-nature ; - sh:description "Subject of the acquisition. WG Approval 11/06/2020" ; - sh:maxCount 1 ; - sh:name "Has contract nature type" ; - sh:path :hasContractNatureType . - -core-shape:epo-ContractTerm-epo-hasEInvoicing a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Electronic means will be used for invoicing in the post-award process. Additional Information: This attribute is used for standard form mappings. WG Approval 12/09/2019" ; - sh:maxCount 1 ; - sh:name "Has e invoicing" ; - sh:path :hasEInvoicing . - -core-shape:epo-ContractTerm-epo-hasEInvoicingPermission a sh:PropertyShape ; - sh:class at-voc:permission ; - sh:maxCount 1 ; - sh:name "Has e invoicing permission" ; - sh:path :hasEInvoicingPermission . - -core-shape:epo-ContractTerm-epo-hasEOrdering a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Electronic means will be used for requesting and purchasing in the post-award process. WG Approval 12/09/2019" ; - sh:maxCount 1 ; - sh:name "Has e ordering" ; - sh:path :hasEOrdering . - -core-shape:epo-ContractTerm-epo-hasEPayment a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Electronic means must be used for paying. WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has e payment" ; - sh:path :hasEPayment . - -core-shape:epo-ContractTerm-epo-hasLegalFormRequirement a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The legal form to be taken by a Contractor. Additional Information: Generally, this is defined to cover the case where an Organisation Group is involved. Note that the codelist provided at national level should be used." ; - sh:maxCount 1 ; - sh:name "Has legal form requirement" ; - sh:path :hasLegalFormRequirement . - -core-shape:epo-ContractTerm-epo-hasMaximumNumberOfRenewals a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The maximum number of times the contract can be renewed. Additional Information By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms." ; - sh:maxCount 1 ; - sh:name "Has maximum number of renewals" ; - sh:path :hasMaximumNumberOfRenewals . - -core-shape:epo-ContractTerm-epo-hasOptions a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid)." ; - sh:maxCount 1 ; - sh:name "Has options" ; - sh:path :hasOptions . - -core-shape:epo-ContractTerm-epo-hasOptionsDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The motivation and details about additional purchases that the buyer may undertake while the contract is valid. WG Approval 09/04/2019" ; - sh:name "Has options description" ; - sh:path :hasOptionsDescription . - -core-shape:epo-ContractTerm-epo-hasPaymentArrangement a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Information about financial clauses that will govern some economic aspects of the execution of the contract. Additional Information: These clauses usually refer to financial and payment provisions. This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. WG Pending of discussion with eForms" ; - sh:name "Has payment arrangement" ; - sh:path :hasPaymentArrangement . - -core-shape:epo-ContractTerm-epo-hasPerformanceConditions a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The particular conditions and additional information related to the execution of the contract. Additional Information: For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. WG approval 15-01-2019" ; - sh:name "Has performance conditions" ; - sh:path :hasPerformanceConditions . - -core-shape:epo-ContractTerm-epo-hasPlaceOfPerformanceAdditionalInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Further details on the location of the execution of the contract. WG Approval 30/07/2019" ; - sh:name "Has place of performance additional information" ; - sh:path :hasPlaceOfPerformanceAdditionalInformation . - -core-shape:epo-ContractTerm-epo-hasRenewalDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Any other information about the renewal(s). WG approval 16/04/2019" ; - sh:name "Has renewal description" ; - sh:path :hasRenewalDescription . - -core-shape:epo-ContractTerm-epo-hasReservedExecution a sh:PropertyShape ; - sh:class at-voc:applicability ; - sh:maxCount 1 ; - sh:name "Has reserved execution" ; - sh:path :hasReservedExecution . - -core-shape:epo-ContractTerm-epo-isRenewalIndicator a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Indicates whether the contract is subject to a renewal clause. WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Is renewal indicator" ; - sh:path :isRenewalIndicator . - -core-shape:epo-Contractor-epo-needsToBeAWinner a sh:PropertyShape ; - sh:class :Winner ; - sh:description "The Contractor must be a Winner." ; - sh:maxCount 1 ; - sh:name "Needs to be a winner" ; - sh:path :needsToBeAWinner ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-DesignContestRegimeTerm-epo-definesPrize a sh:PropertyShape ; - sh:class :Prize ; - sh:description "Relation indicating a DesignContestRegimeTerm has a Prize." ; - sh:name "Defines prize" ; - sh:path :definesPrize ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContract a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. WG Approval 29/08/2019" ; - sh:maxCount 1 ; - sh:name "Has followup contract" ; - sh:path :hasFollowupContract . - -core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContractInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). WG Approval 03/09/2019" ; - sh:name "Has followup contract information" ; - sh:path :hasFollowupContractInformation . - -core-shape:epo-DesignContestRegimeTerm-epo-hasParticipationPayment a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Details on payments to participants WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has participation payment" ; - sh:path :hasParticipationPayment . - -core-shape:epo-DesignContestRegimeTerm-epo-isJuryDecisionBinding a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Indicates whether the procuring entity is bound to apply the decision of the jury." ; - sh:maxCount 1 ; - sh:name "Is jury decision binding" ; - sh:path :isJuryDecisionBinding . - -core-shape:epo-DirectAwardTerm-epo-hasDirectAwardJustification a sh:PropertyShape ; - sh:class at-voc:direct-award-justification ; - sh:description "List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. WG Approval 28/05/2020" ; - sh:maxCount 1 ; - sh:name "Has direct award justification" ; - sh:path :hasDirectAwardJustification . - -core-shape:epo-DirectAwardTerm-epo-hasJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An explanation about the reasons for using the concept. WG Approval 5/11/2019" ; - sh:name "Has justification" ; - sh:path :hasJustification . - -core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedure a sh:PropertyShape ; - sh:class :Procedure ; - sh:description "Reference to a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier" ; - sh:maxCount 1 ; - sh:name "Refers to previous procedure" ; - sh:path :refersToPreviousProcedure ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedureLot a sh:PropertyShape ; - sh:class :Lot ; - sh:description "Reference to one or more Lots in a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier WG Approval 22/11/2019 14:33:55" ; - sh:name "Refers to previous procedure lot" ; - sh:path :refersToPreviousProcedureLot ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-DirectContract-epo-resultsFromLotAwardDecision a sh:PropertyShape ; - sh:class :LotAwardDecision ; - sh:name "Results from lot award decision" ; - sh:path :resultsFromLotAwardDecision ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Document-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Document-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:maxCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-Document-dct-issued a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "Date of formal issuance of the resource. Additional information: This is generally used for modules other than eNotice. The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. WG approval 26/01/2023" ; - sh:maxCount 1 ; - sh:name "Issued" ; - sh:path dcterms:issued . - -core-shape:epo-Document-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A name given to the resource. WG approval 30/05/2023" ; - sh:maxCount 1 ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:epo-Document-epo-associatedWith a sh:PropertyShape ; - sh:class :Document ; - sh:description "The document to which a document is associated. WGM 01/03/2022" ; - sh:name "Associated with" ; - sh:path :associatedWith ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Document-epo-hasAccessURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "Location where the resource can be accessed. WG approval 07/04/2022" ; - sh:name "Has access u r l" ; - sh:path :hasAccessURL . - -core-shape:epo-Document-epo-hasDispatchDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "Date of transmission of a record to an organisation. WG Approval 12/05/2020" ; - sh:maxCount 1 ; - sh:name "Has dispatch date" ; - sh:path :hasDispatchDate . - -core-shape:epo-Document-epo-hasElectronicDigest a sh:PropertyShape ; - sh:class :Document ; - sh:name "Has electronic digest" ; - sh:path :hasElectronicDigest ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Document-epo-hasElectronicSignature a sh:PropertyShape ; - sh:class :ElectronicSignature ; - sh:name "Has electronic signature" ; - sh:path :hasElectronicSignature ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Document-epo-hasOfficialLanguage a sh:PropertyShape ; - sh:class at-voc:language ; - sh:description "The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. WG Approval 03/10/2019" ; - sh:minCount 1 ; - sh:name "Has official language" ; - sh:path :hasOfficialLanguage . - -core-shape:epo-Document-epo-hasPublicationDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "Date of formal public issuance of the document. WG approval 20/06/2023" ; - sh:maxCount 1 ; - sh:name "Has publication date" ; - sh:path :hasPublicationDate . - -core-shape:epo-Document-epo-hasReceptionDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "Notes: Date when a record is acknowledged by an organisation. WG Approval 12/05/2020" ; - sh:maxCount 1 ; - sh:name "Has reception date" ; - sh:path :hasReceptionDate . - -core-shape:epo-Document-epo-hasUUID a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "A universally unique identifier for an instance of this document. WG Approval 12/05/2020" ; - sh:maxCount 1 ; - sh:name "Has u u i d" ; - sh:path :hasUUID ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Document-epo-hasUnofficialLanguage a sh:PropertyShape ; - sh:class at-voc:language ; - sh:description "The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. WG Approval 03/10/2019" ; - sh:name "Has unofficial language" ; - sh:path :hasUnofficialLanguage . - -core-shape:epo-Document-epo-hasVersion a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A number that identifies a specific state of a document. WG approval: 18/11/2021" ; - sh:maxCount 1 ; - sh:name "Has version" ; - sh:path :hasVersion . - -core-shape:epo-Document-epo-refersToPrevious a sh:PropertyShape ; - sh:class :Document ; - sh:name "Refers to previous" ; - sh:path :refersToPrevious ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-DynamicPurchaseSystemTechnique-epo-hasDPSScope a sh:PropertyShape ; - sh:class at-voc:dps-usage ; - sh:description "Explanation as to whether a dps is used and by whom. WG Approval 09/11/2021 The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usage" ; - sh:maxCount 1 ; - sh:name "Has d p s scope" ; - sh:path :hasDPSScope . - -core-shape:epo-DynamicPurchaseSystemTechnique-epo-resultsInDynamicPurchasingSystem a sh:PropertyShape ; - sh:class :DynamicPurchasingSystem ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Results in dynamic purchasing system" ; - sh:path :resultsInDynamicPurchasingSystem ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-DynamicPurchasingSystem-epo-hasCandidateList a sh:PropertyShape ; - sh:class :SelectedCandidateList ; - sh:name "Has candidate list" ; - sh:path :hasCandidateList ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ElectronicSignature-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-ElementChangeDescription-epo-hasAdditionalInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Supplementary data about the instance of the concept. WG Approval 15/10/2019" ; - sh:maxCount 1 ; - sh:name "Has additional information" ; - sh:path :hasAdditionalInformation . - -core-shape:epo-ElementChangeDescription-epo-hasChangeDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Explanatory text about the instance of the concept. WG Approval 30/09/2019" ; - sh:name "Has change description" ; - sh:path :hasChangeDescription . - -core-shape:epo-ElementChangeDescription-epo-hasChangeJustification a sh:PropertyShape ; - sh:class at-voc:change-corrig-justification ; - sh:description "The motives for the change. WG 5/11/2019 The codelist to be used is at-voc:change-corrig-justification which is available at http://publications.europa.eu/resource/dataset/change-corrig-justification" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has change justification" ; - sh:path :hasChangeJustification . - -core-shape:epo-ElementChangeDescription-epo-hasChangeReasonDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Explanatory text about why the element is altered. Additional information: This corresponds in eForms to BT-762 Change Reason Description." ; - sh:name "Has change reason description" ; - sh:path :hasChangeReasonDescription . - -core-shape:epo-ElementChangeDescription-epo-hasElementReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has element reference" ; - sh:path :hasElementReference . - -core-shape:epo-ElementChangeDescription-epo-hasPreviousVersionOfElementReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "Reference to the class instance in the previous version of the notice, which was changed. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier." ; - sh:maxCount 1 ; - sh:name "Has previous version of element reference" ; - sh:path :hasPreviousVersionOfElementReference . - -core-shape:epo-ElementChangeDescription-epo-hasProcurementDocumentChangeDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The date and time of the change. Additional information: This corresponds in eForms to BT-719 Change Procurement Documents Date WG Approval 5/11/2019" ; - sh:maxCount 1 ; - sh:name "Has procurement document change date" ; - sh:path :hasProcurementDocumentChangeDate . - -core-shape:epo-ElementChangeDescription-epo-isProcurementDocumentChanged a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "One or more procurement documents have been changed. Additional information: This corresponds in eForms to BT-718 Change Procurement Documents WG Approval 05/11/2019" ; - sh:maxCount 1 ; - sh:name "Is procurement document changed" ; - sh:path :isProcurementDocumentChanged . - -core-shape:epo-ElementConfidentialityDescription-epo-hasAccessibilityDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The date at which unpublished data shall be published. WG Approval 11/06/2020" ; - sh:maxCount 1 ; - sh:name "Has accessibility date" ; - sh:path :hasAccessibilityDate . - -core-shape:epo-ElementConfidentialityDescription-epo-hasConfidentialityJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A narrative explanation of why data is not published. Additional Information: This element is generally used when the non-publication-justification code chosen is \"other\". WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has confidentiality justification" ; - sh:path :hasConfidentialityJustification . - -core-shape:epo-ElementConfidentialityDescription-epo-hasInstanceReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The URI of a given class that is being referred to." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has instance reference" ; - sh:path :hasInstanceReference . - -core-shape:epo-ElementConfidentialityDescription-epo-hasNonPublicationJustification a sh:PropertyShape ; - sh:class at-voc:non-publication-justification ; - sh:description "The reason why data is not published. WG Approval 11/06/2020" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has non publication justification" ; - sh:path :hasNonPublicationJustification . - -core-shape:epo-ElementConfidentialityDescription-epo-hasPropertyReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The URI of a given attribute (property) that is being referred to." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has property reference" ; - sh:path :hasPropertyReference . - -core-shape:epo-ElementModificationDescription-epo-hasElementReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier." ; - sh:maxCount 1 ; - sh:name "Has element reference" ; - sh:path :hasElementReference . - -core-shape:epo-ElementModificationDescription-epo-hasModificationDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An explanatory text about this context. Additional Information This corresponds in Standard forms to Field VII.2.1 in F20 This corresponds in eForms to BT-202 . WG Approval 5/11/2019" ; - sh:name "Has modification description" ; - sh:path :hasModificationDescription . - -core-shape:epo-ElementModificationDescription-epo-hasModificationJustification a sh:PropertyShape ; - sh:class at-voc:modification-justification ; - sh:description "Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has modification justification" ; - sh:path :hasModificationJustification . - -core-shape:epo-ElementModificationDescription-epo-hasModificationReasonDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An explanation about the reasons for using the concept. Additional Information This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. This corresponds in eForms to BT-201 . WG Approval 5/11/2019" ; - sh:name "Has modification reason description" ; - sh:path :hasModificationReasonDescription . - -core-shape:epo-FrameworkAgreement-epo-resultsFromLotAwardDecision a sh:PropertyShape ; - sh:class :LotAwardDecision ; - sh:name "Results from lot award decision" ; - sh:path :resultsFromLotAwardDecision ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-FrameworkAgreementTerm-epo-hasBuyerCategoryDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A classification of buyers participating in a framework agreement. Additional Information: Buyers that can use the Framework Agreement not mentioned by name. For example, the classification \"all hospitals in the Tuscany region\" is used instead of naming each individual buyer. This corresponds in eForms to BT-111 Framework Buyer Categories. WG Approval 2019-05-06" ; - sh:name "Has buyer category description" ; - sh:path :hasBuyerCategoryDescription . - -core-shape:epo-FrameworkAgreementTerm-epo-hasDurationExtensionJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The explanation of the reason why the framework agreement has an extended duration. Additional Information: This corresponds in eForms to BT-109 Framework Duration Justification. The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. WG Approval 26/09/2019" ; - sh:maxCount 1 ; - sh:name "Has duration extension justification" ; - sh:path :hasDurationExtensionJustification . - -core-shape:epo-FrameworkAgreementTerm-epo-hasFrameworkAgreementType a sh:PropertyShape ; - sh:class at-voc:framework-agreement ; - sh:description "The form of framework agreement used in a procurement procedure. Addition information: A concept to distinguish the different types of framework agreement, which are: 1. Framework agreement without reopening of competition, 2. Framework agreement with reopening of competition, or 3. Framework agreement partly without reopening of competition. WG Approval 19/09/2019" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has framework agreement type" ; - sh:path :hasFrameworkAgreementType . - -core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchFrameworkAgreementMaximumValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has launch framework agreement maximum value" ; - sh:path :hasLaunchFrameworkAgreementMaximumValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchGroupFrameworkAgreementMaximumValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has launch group framework agreement maximum value" ; - sh:path :hasLaunchGroupFrameworkAgreementMaximumValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-FrameworkAgreementTerm-epo-hasMaximumParticipantsNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The maximum number of participants in the framework agreement. Additional Information: Maximum number of tenderers who may be awarded a contract within the framework agreement. The number is a positive integer. This corresponds in eForms to BT-113 Framework Maximum Participants Number. WG Approval 2019-02-05" ; - sh:maxCount 1 ; - sh:name "Has maximum participants number" ; - sh:path :hasMaximumParticipantsNumber . - -core-shape:epo-Fund-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Fund-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-Fund-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A name given to the resource. WG approval 30/05/2023" ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:epo-Fund-epo-hasFundProgramme a sh:PropertyShape ; - sh:class at-voc:EU-programme ; - sh:maxCount 1 ; - sh:name "Has fund programme" ; - sh:path :hasFundProgramme . - -core-shape:epo-Fund-epo-hasURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The identifier of a resource. Additional Information For example: 1. The URL of the system from where to access the procurement documents; 2. The URL of the system for the submission of tender documents; 3. The URL of the system from where to download a tool to communicate with the Buyer; 4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) 5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; WG Approval 30/09/2019" ; - sh:maxCount 1 ; - sh:name "Has u r l" ; - sh:path :hasURL . - -core-shape:epo-GreenProcurement-epo-fulfillsRequirement a sh:PropertyShape ; - sh:class at-voc:environmental-impact ; - sh:description "The requirement to which the concept meets. WG Approval 09/11/2021" ; - sh:minCount 1 ; - sh:name "Fulfills requirement" ; - sh:path :fulfillsRequirement . - -core-shape:epo-GreenProcurement-epo-hasCleanVehicles a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020" ; - sh:maxCount 1 ; - sh:name "Has clean vehicles" ; - sh:path :hasCleanVehicles . - -core-shape:epo-GreenProcurement-epo-hasTotalVehicles a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020" ; - sh:maxCount 1 ; - sh:name "Has total vehicles" ; - sh:path :hasTotalVehicles . - -core-shape:epo-GreenProcurement-epo-hasZeroEmissionVehicles a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020" ; - sh:maxCount 1 ; - sh:name "Has zero emission vehicles" ; - sh:path :hasZeroEmissionVehicles . - -core-shape:epo-InnovativeProcurement-epo-fulfillsRequirement a sh:PropertyShape ; - sh:class at-voc:innovative-acquisition ; - sh:description "The requirement to which the concept meets. WG Approval 09/11/2021" ; - sh:minCount 1 ; - sh:name "Fulfills requirement" ; - sh:path :fulfillsRequirement . - -core-shape:epo-JuryMember-epo-playedBy a sh:PropertyShape ; - sh:class foaf:Person ; - sh:maxCount 1 ; - sh:name "Played by" ; - sh:path :playedBy ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Lot-epo-isSubjectToLotSpecificTerm a sh:PropertyShape ; - sh:class :LotSpecificTerm ; - sh:name "Is subject to lot specific term" ; - sh:path :isSubjectToLotSpecificTerm ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Lot-epo-specifiesProcurementCriterion a sh:PropertyShape ; - sh:class :ProcurementCriterion ; - sh:description "In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria.", - "When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions." ; - sh:name "Specifies procurement criterion" ; - sh:path :specifiesProcurementCriterion ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotAwardDecision-epo-concernsLot a sh:PropertyShape ; - sh:class :Lot ; - sh:description "Relates to Lot." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Concerns lot" ; - sh:path :concernsLot ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotAwardDecision-epo-hasApproximateFrameworkAgreementValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has approximate framework agreement value" ; - sh:path :hasApproximateFrameworkAgreementValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotAwardDecision-epo-hasAwardedEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The estimated value that can be spent as provided by the Award Decision. Additional Information: This property is used for framework agreements and dynamic purchasing systems. Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. WG Approval 12/12/2019", - "Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract." ; - sh:maxCount 1 ; - sh:name "Has awarded estimated value" ; - sh:path :hasAwardedEstimatedValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "This refers to BT-660 in eForms." ; - sh:maxCount 1 ; - sh:name "Has framework agreement estimated value" ; - sh:path :hasFrameworkAgreementEstimatedValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementMaximumValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has framework agreement maximum value" ; - sh:path :hasFrameworkAgreementMaximumValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The number the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022" ; - sh:maxCount 1 ; - sh:name "Has non awarded contract number" ; - sh:path :hasNonAwardedContractNumber . - -core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractTitle a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The title the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022" ; - sh:maxCount 1 ; - sh:name "Has non awarded contract title" ; - sh:path :hasNonAwardedContractTitle . - -core-shape:epo-LotGroup-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019" ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotGroup-epo-setsGroupingContextForLot a sh:PropertyShape ; - sh:class :Lot ; - sh:minCount 1 ; - sh:name "Sets grouping context for lot" ; - sh:path :setsGroupingContextForLot ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotGroup-epo-specifiesProcurementCriterion a sh:PropertyShape ; - sh:class :ProcurementCriterion ; - sh:name "Specifies procurement criterion" ; - sh:path :specifiesProcurementCriterion ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotGroupAwardInformation-epo-describesLotGroup a sh:PropertyShape ; - sh:class :LotGroup ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Describes lot group" ; - sh:path :describesLotGroup ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-LotGroupAwardInformation-epo-hasGroupFrameworkAgreementMaximumValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "This corresponds to BT-156 in the eForms." ; - sh:maxCount 1 ; - sh:name "Has group framework agreement maximum value" ; - sh:path :hasGroupFrameworkAgreementMaximumValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-MiniCompetition-epo-followsRulesSetBy a sh:PropertyShape ; - sh:class :FrameworkAgreement ; - sh:maxCount 1 ; - sh:name "Follows rules set by" ; - sh:path :followsRulesSetBy ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-MiniCompetition-epo-specifiesAwardCriterion a sh:PropertyShape ; - sh:class :AwardCriterion ; - sh:name "Specifies award criterion" ; - sh:path :specifiesAwardCriterion ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-MiniCompetition-epo-usesCandidateList a sh:PropertyShape ; - sh:class :SelectedCandidateList ; - sh:maxCount 1 ; - sh:name "Uses candidate list" ; - sh:path :usesCandidateList ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-MiniCompetitionAwardDecision-epo-concernsMiniCompetition a sh:PropertyShape ; - sh:class :MiniCompetition ; - sh:maxCount 1 ; - sh:name "Concerns mini competition" ; - sh:path :concernsMiniCompetition ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-MonetaryValue-epo-hasAmountValue a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The numeric value of the amount, including decimals." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has amount value" ; - sh:path :hasAmountValue . - -core-shape:epo-MonetaryValue-epo-hasCurrency a sh:PropertyShape ; - sh:class at-voc:currency ; - sh:description "The identifier of the currency as in the standard code list used." ; - sh:maxCount 1 ; - sh:name "Has currency" ; - sh:path :hasCurrency . - -core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyID a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Identifier of the agency that maintains the currency code list used. WG approval 13/04/2021" ; - sh:name "Has currency code list agency i d" ; - sh:path :hasCurrencyCodeListAgencyID . - -core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Name of the agency that maintains the currency code list used. WG approval 13/04/2021" ; - sh:name "Has currency code list agency name" ; - sh:path :hasCurrencyCodeListAgencyName . - -core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListID a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Concept scheme URI used for the currency code list. WG approval 13/04/2021" ; - sh:name "Has currency code list i d" ; - sh:path :hasCurrencyCodeListID . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToExpressInterestDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The estimated date of dispatch of the invitations to confirm interest. Additional Information: This corresponds in eForms to BT-631 Dispatch Invitation Interest." ; - sh:maxCount 1 ; - sh:name "Has estimated invitation to express interest date" ; - sh:path :hasEstimatedInvitationToExpressInterestDate . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToTenderDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. Additional Information: This corresponds in eForms to BT-130 Dispatch Invitation Tender. WG Approval 01/10/2019" ; - sh:maxCount 1 ; - sh:name "Has estimated invitation to tender date" ; - sh:path :hasEstimatedInvitationToTenderDate . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasMaximumNumberOfCandidates a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "Maximum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019" ; - sh:maxCount 1 ; - sh:name "Has maximum number of candidates" ; - sh:path :hasMaximumNumberOfCandidates . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasMinimumNumberOfCandidates a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "Minimum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019" ; - sh:maxCount 1 ; - sh:name "Has minimum number of candidates" ; - sh:path :hasMinimumNumberOfCandidates . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasNoNegotiationNecessary a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. Additional information: See Article 29(4) of Directive 2014/24/EU." ; - sh:maxCount 1 ; - sh:name "Has no negotiation necessary" ; - sh:path :hasNoNegotiationNecessary . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemDuration a sh:PropertyShape ; - sh:class :Duration ; - sh:maxCount 1 ; - sh:name "Has qualification system duration" ; - sh:path :hasQualificationSystemDuration ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemRenewalDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has qualification system renewal description" ; - sh:path :hasQualificationSystemRenewalDescription . - -core-shape:epo-MultipleStageProcedureTerm-epo-hasSuccessiveReduction a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. Additional information: This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. WG Approval 22/08/2019" ; - sh:maxCount 1 ; - sh:name "Has successive reduction" ; - sh:path :hasSuccessiveReduction . - -core-shape:epo-NonDisclosureAgreementTerm-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:maxCount 1 ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-NonDisclosureAgreementTerm-epo-isNonDisclosureAgreementRequired a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Is non disclosure agreement required" ; - sh:path :isNonDisclosureAgreementRequired . - -core-shape:epo-Notice-epo-conformsToLegalBasis a sh:PropertyShape ; - sh:class at-voc:legal-basis ; - sh:description "The Notice was designed in accordance with the given legal basis. Additional Information: This Notice can be used for Procedures which do not have the same legal basis. This holds for standard forms." ; - sh:maxCount 1 ; - sh:name "Conforms to legal basis" ; - sh:path :conformsToLegalBasis . - -core-shape:epo-Notice-epo-conformsToSpecificLegalBasis a sh:PropertyShape ; - sh:class at-voc:legal-basis ; - sh:maxCount 1 ; - sh:name "Conforms to specific legal basis" ; - sh:path :conformsToSpecificLegalBasis . - -core-shape:epo-Notice-epo-hasAdditionalInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Supplementary data about the instance of the concept. WG Approval 15/10/2019" ; - sh:maxCount 1 ; - sh:name "Has additional information" ; - sh:path :hasAdditionalInformation . - -core-shape:epo-Notice-epo-hasEFormsSubtype a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:maxCount 1 ; - sh:name "Has e forms subtype" ; - sh:path :hasEFormsSubtype . - -core-shape:epo-Notice-epo-hasESenderDispatchDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. Additional Information: Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. WG approval 20/06/2023" ; - sh:maxCount 1 ; - sh:name "Has e sender dispatch date" ; - sh:path :hasESenderDispatchDate . - -core-shape:epo-Notice-epo-hasFormNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:maxCount 1 ; - sh:name "Has form number" ; - sh:path :hasFormNumber . - -core-shape:epo-Notice-epo-hasFormType a sh:PropertyShape ; - sh:class at-voc:form-type ; - sh:description "A categorisation of the steps in which the Notice is used. WG Approval 12/05/2020" ; - sh:maxCount 1 ; - sh:name "Has form type" ; - sh:path :hasFormType . - -core-shape:epo-Notice-epo-hasLongTitle a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has long title" ; - sh:path :hasLongTitle . - -core-shape:epo-Notice-epo-hasNoticePublicationNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has notice publication number" ; - sh:path :hasNoticePublicationNumber . - -core-shape:epo-Notice-epo-hasNoticeType a sh:PropertyShape ; - sh:class at-voc:notice-type ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has notice type" ; - sh:path :hasNoticeType . - -core-shape:epo-Notice-epo-hasNotificationContentType a sh:PropertyShape ; - sh:class :notification-phases-content-types ; - sh:description "A categorisation of templates for sets of Procurement information to be conveyed in Notices. WG Approval 12/05/2020" ; - sh:maxCount 1 ; - sh:name "Has notification content type" ; - sh:path :hasNotificationContentType . - -core-shape:epo-Notice-epo-hasOJSIssueNumber a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:maxCount 1 ; - sh:name "Has o j s issue number" ; - sh:path :hasOJSIssueNumber . - -core-shape:epo-Notice-epo-hasOJSType a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Has o j s type" ; - sh:path :hasOJSType . - -core-shape:epo-Notice-epo-isBasedOnImplementingRegulation a sh:PropertyShape ; - sh:class at-voc:legal-basis ; - sh:description "Indicates under which regulation a notice is created. WG Acceptance 06/09/2022" ; - sh:maxCount 1 ; - sh:name "Is based on implementing regulation" ; - sh:path :isBasedOnImplementingRegulation . - -core-shape:epo-Notice-epo-isEUInstitution a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Is e u institution" ; - sh:path :isEUInstitution . - -core-shape:epo-Notice-epo-refersToLot a sh:PropertyShape ; - sh:class :Lot ; - sh:minCount 1 ; - sh:name "Refers to lot" ; - sh:path :refersToLot ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Notice-epo-refersToNotice a sh:PropertyShape ; - sh:class :Notice ; - sh:maxCount 1 ; - sh:name "Refers to notice" ; - sh:path :refersToNotice ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Notice-epo-refersToProcedure a sh:PropertyShape ; - sh:class :Procedure ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Refers to procedure" ; - sh:path :refersToProcedure ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-NoticeAwardInformation-epo-hasApproximateFrameworkAgreementValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:name "Has approximate framework agreement value" ; - sh:path :hasApproximateFrameworkAgreementValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-NoticeAwardInformation-epo-hasMaximumFrameworkAgreementAwardedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. Additional information: The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. The Framework Agreements in a CAN are to be traced back and added to provide this value. This corresponds to the BT-118 in eForms. WG Approval 03/12/2019" ; - sh:maxCount 1 ; - sh:name "Has maximum framework agreement awarded value" ; - sh:path :hasMaximumFrameworkAgreementAwardedValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-NoticeAwardInformation-epo-hasProcurementHighestReceivedTenderValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The highest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986." ; - sh:maxCount 1 ; - sh:name "Has procurement highest received tender value" ; - sh:path :hasProcurementHighestReceivedTenderValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-NoticeAwardInformation-epo-hasProcurementLowestReceivedTenderValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The lowest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986." ; - sh:maxCount 1 ; - sh:name "Has procurement lowest received tender value" ; - sh:path :hasProcurementLowestReceivedTenderValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-NoticeAwardInformation-epo-hasTotalAwardedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The awarded value of all lots announced in this notice, including options and renewals. Additional information: The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. The values of the individual lots announced in a CAN are to be traced back and added to provide this value. This corresponds to the BT-161 in eForms. WG Approval 03/12/2019" ; - sh:maxCount 1 ; - sh:name "Has total awarded value" ; - sh:path :hasTotalAwardedValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-NoticeChange-epo-hasElementChange a sh:PropertyShape ; - sh:class :ElementChangeDescription ; - sh:minCount 1 ; - sh:name "Has element change" ; - sh:path :hasElementChange ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-NoticeChange-epo-refersToPreviousNotice a sh:PropertyShape ; - sh:class :Notice ; - sh:description "Additional information: This corresponds in eForms to BT-758 Change Notice Version Identifier." ; - sh:maxCount 1 ; - sh:name "Refers to previous notice" ; - sh:path :refersToPreviousNotice ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-NoticeDescription-epo-describesNotice a sh:PropertyShape ; - sh:class :Notice ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Describes notice" ; - sh:path :describesNotice ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-NoticeDescription-epo-hasElementDescription a sh:PropertyShape ; - sh:class :ElementDescription ; - sh:name "Has element description" ; - sh:path :hasElementDescription ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-OfferIssuer-epo-distributesOffer a sh:PropertyShape ; - sh:class :Offer ; - sh:name "Distributes offer" ; - sh:path :distributesOffer ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-OpeningTerm-epo-definesOpeningPlace a sh:PropertyShape ; - sh:class locn:Address ; - sh:description "The place where the tenders will be publicly opened. WG Approval 10-10-2019" ; - sh:maxCount 1 ; - sh:name "Defines opening place" ; - sh:path :definesOpeningPlace ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-OpeningTerm-epo-hasOpeningDateTime a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "Date and time for the opening of tenders. WG Approval 12/03/2019" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has opening date time" ; - sh:path :hasOpeningDateTime . - -core-shape:epo-OpeningTerm-epo-hasOpeningDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Further information about the opening of tenders. Additional Information For example, who may participate in the opening and whether any authorization is needed. WG Approval 12/03/2019" ; - sh:name "Has opening description" ; - sh:path :hasOpeningDescription . - -core-shape:epo-OpeningTerm-epo-hasOpeningURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The identifier of the address of the Opening of Tenders. WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has opening u r l" ; - sh:path :hasOpeningURL . - -core-shape:epo-OrganisationGroup-epo-hasGroupType a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Form of collaboration agreement between organisations. Additional Information: This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. WG Approval 09/11/2021" ; - sh:name "Has group type" ; - sh:path :hasGroupType . - -core-shape:epo-OrganisationGroup-epo-hasMember a sh:PropertyShape ; - sh:class org:Organization ; - sh:minCount 1 ; - sh:name "Has member" ; - sh:path :hasMember ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-OrganisationGroup-epo-leadBy a sh:PropertyShape ; - sh:class org:Organization ; - sh:maxCount 1 ; - sh:name "Lead by" ; - sh:path :leadBy ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ParticipationCondition-epo-hasReservedProcurement a sh:PropertyShape ; - sh:class at-voc:reserved-procurement ; - sh:description "Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021" ; - sh:name "Has reserved procurement" ; - sh:path :hasReservedProcurement . - -core-shape:epo-ParticipationConditionsSummary-epo-describesObjectiveParticipationRules a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes objective participation rules" ; - sh:path :describesObjectiveParticipationRules . - -core-shape:epo-ParticipationConditionsSummary-epo-describesVerificationMethod a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes verification method" ; - sh:path :describesVerificationMethod . - -core-shape:epo-ParticipationConditionsSummary-epo-hasReservedProcurement a sh:PropertyShape ; - sh:class at-voc:reserved-procurement ; - sh:description "Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021" ; - sh:name "Has reserved procurement" ; - sh:path :hasReservedProcurement . - -core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestProcessor a sh:PropertyShape ; - sh:class :ParticipationRequestProcessor ; - sh:description "Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor." ; - sh:maxCount 1 ; - sh:name "Defines participation request processor" ; - sh:path :definesParticipationRequestProcessor ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestReceiver a sh:PropertyShape ; - sh:class :ParticipationRequestReceiver ; - sh:description "Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver." ; - sh:maxCount 1 ; - sh:name "Defines participation request receiver" ; - sh:path :definesParticipationRequestReceiver ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Period-epo-hasBeginning a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "The date and time on which this period begins." ; - sh:maxCount 1 ; - sh:name "Has beginning" ; - sh:path :hasBeginning . - -core-shape:epo-Period-epo-hasEnd a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "The date and time at which this period ends." ; - sh:maxCount 1 ; - sh:name "Has end" ; - sh:path :hasEnd . - -core-shape:epo-Period-epo-hasTimePeriod a sh:PropertyShape ; - sh:class at-voc:timeperiod ; - sh:description "" ; - sh:minCount 1 ; - sh:name "Has time period" ; - sh:path :hasTimePeriod . - -core-shape:epo-PlannedProcurementPart-epo-foreseesProcurementObject a sh:PropertyShape ; - sh:class :ProcurementObject ; - sh:description "Relation indicating the instance of a Procurement Object that is planned. Additional Information: The properties of the Procurement Object that is foreseen should be read as foreseen properties. For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy." ; - sh:maxCount 1 ; - sh:name "Foresees procurement object" ; - sh:path :foreseesProcurementObject ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-PlannedProcurementPart-epo-foreseesTechnique a sh:PropertyShape ; - sh:class :Technique ; - sh:name "Foresees technique" ; - sh:path :foreseesTechnique ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-PlannedProcurementPart-epo-hasPlannedDuration a sh:PropertyShape ; - sh:class :Duration ; - sh:maxCount 1 ; - sh:name "Has planned duration" ; - sh:path :hasPlannedDuration ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-PlannedProcurementPart-epo-hasPlannedPeriod a sh:PropertyShape ; - sh:class :Period ; - sh:maxCount 1 ; - sh:name "Has planned period" ; - sh:path :hasPlannedPeriod ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Prize-epo-hasPrizeRank a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The position of the prize (e.g. first place, second place) in a design contest list of prizes. WG Approval 29/08/2019" ; - sh:maxCount 1 ; - sh:name "Has prize rank" ; - sh:path :hasPrizeRank . - -core-shape:epo-Prize-epo-hasPrizeValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. Additional Information: This corresponds to BT-644 in eForms. WG Approval 29/08/2019" ; - sh:maxCount 1 ; - sh:name "Has prize value" ; - sh:path :hasPrizeValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Procedure-epo-hasAcceleratedProcedureJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The reasons why the procedure is accelerated. Additional Information: A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. WG Approval 09/06/2020" ; - sh:name "Has accelerated procedure justification" ; - sh:path :hasAcceleratedProcedureJustification . - -core-shape:epo-Procedure-epo-hasMainFeature a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Main features of the procedure and information about where the full rules for the procedure can be found. Additional Information: This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds." ; - sh:name "Has main feature" ; - sh:path :hasMainFeature . - -core-shape:epo-Procedure-epo-hasProcedureType a sh:PropertyShape ; - sh:class at-voc:procurement-procedure-type ; - sh:description "Identification of the Procedure used. WG Approval 09/06/2020" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has procedure type" ; - sh:path :hasProcedureType . - -core-shape:epo-Procedure-epo-hasProcurementScopeDividedIntoLot a sh:PropertyShape ; - sh:class :Lot ; - sh:minCount 1 ; - sh:name "Has procurement scope divided into lot" ; - sh:path :hasProcurementScopeDividedIntoLot ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Procedure-epo-involvesBuyer a sh:PropertyShape ; - sh:class :Buyer ; - sh:name "Involves buyer" ; - sh:path :involvesBuyer ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Procedure-epo-isAccelerated a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Statement about the fact that the procedure will be reduced due to a state of urgency. Additional Information This modifies the time limit for the receipt of requests to participate or the receipt of tenders. WG Approval 20/08/2019" ; - sh:maxCount 1 ; - sh:name "Is accelerated" ; - sh:path :isAccelerated . - -core-shape:epo-Procedure-epo-isDesignContest a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "A competition which enables the buyer to acquire a plan or design via a jury. Additional information: Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering The contest may include or not the award of prizes; WG approval 04-02-2021" ; - sh:maxCount 1 ; - sh:name "Is design contest" ; - sh:path :isDesignContest . - -core-shape:epo-Procedure-epo-isExecutedByProcurementServiceProvider a sh:PropertyShape ; - sh:class :ProcurementServiceProvider ; - sh:maxCount 1 ; - sh:name "Is executed by procurement service provider" ; - sh:path :isExecutedByProcurementServiceProvider ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Procedure-epo-isJointProcurement a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Multiple buyers procure together within the same procedure. Addition Information: In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm ." ; - sh:maxCount 1 ; - sh:name "Is joint procurement" ; - sh:path :isJointProcurement . - -core-shape:epo-Procedure-epo-isResponsibilityOfBuyer a sh:PropertyShape ; - sh:class :Buyer ; - sh:description "" ; - sh:name "Is responsibility of buyer" ; - sh:path :isResponsibilityOfBuyer ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Procedure-epo-isSubjectToProcedureSpecificTerm a sh:PropertyShape ; - sh:class :ProcedureSpecificTerm ; - sh:minCount 1 ; - sh:name "Is subject to procedure specific term" ; - sh:path :isSubjectToProcedureSpecificTerm ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Procedure-epo-specifiesProcurementCriteriaSummary a sh:PropertyShape ; - sh:class :ProcurementCriteriaSummary ; - sh:name "Specifies procurement criteria summary" ; - sh:path :specifiesProcurementCriteriaSummary ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcedureTerm-epo-definesBudgetProvider a sh:PropertyShape ; - sh:class :BudgetProvider ; - sh:description "Relation indicating a ProcedureTerm has a BudgetProvider." ; - sh:maxCount 1 ; - sh:name "Defines budget provider" ; - sh:path :definesBudgetProvider ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcedureTerm-epo-definesInformationProvider a sh:PropertyShape ; - sh:class :AuxiliaryParty ; - sh:description "Relation indicating a ProcedureTerm has an information provider." ; - sh:name "Defines information provider" ; - sh:path :definesInformationProvider ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcedureTerm-epo-definesLotGroup a sh:PropertyShape ; - sh:class :LotGroup ; - sh:description "Relation indicating a ProcedureTerm has a LotGroup." ; - sh:name "Defines lot group" ; - sh:path :definesLotGroup ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcedureTerm-epo-definesMediator a sh:PropertyShape ; - sh:class :Mediator ; - sh:description "Relation indicating a ProcedureTerm has a Mediator." ; - sh:maxCount 1 ; - sh:name "Defines mediator" ; - sh:path :definesMediator ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcedureTerm-epo-hasCrossBorderLaw a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The applicable law when buyers from different countries procure together within one procurement procedure. Additional Information: This corresponds in eForms to BT-09 Cross Border Law." ; - sh:name "Has cross border law" ; - sh:path :hasCrossBorderLaw . - -core-shape:epo-ProcedureTerm-epo-hasGroupLotEvaluationMethod a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Description of how lots and groups of lots are evaluated against one another in the procedure." ; - sh:name "Has group lot evaluation method" ; - sh:path :hasGroupLotEvaluationMethod . - -core-shape:epo-ProcedureTerm-epo-hasLotAwardCombination a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The contracting authority reserves the right to award contracts combining lots or groups of lots. Additional Information: This property contains information about the Lots concerned. This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022" ; - sh:maxCount 1 ; - sh:name "Has lot award combination" ; - sh:path :hasLotAwardCombination . - -core-shape:epo-ProcedureTerm-epo-hasMaximumLotSubmissionAllowed a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The total number of lots for which one Tenderer can submit Tenders. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 12/12/2018" ; - sh:maxCount 1 ; - sh:name "Has maximum lot submission allowed" ; - sh:path :hasMaximumLotSubmissionAllowed . - -core-shape:epo-ProcedureTerm-epo-hasMaximumNumberOfLotsToBeAwarded a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The maximum number of lots for which contract(s) can be awarded to one tenderer. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG Approval 22/08/2019" ; - sh:maxCount 1 ; - sh:name "Has maximum number of lots to be awarded" ; - sh:path :hasMaximumNumberOfLotsToBeAwarded . - -core-shape:epo-ProcedureTerm-epo-hasNationalProcedureRules a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:name "Has national procedure rules" ; - sh:path :hasNationalProcedureRules . - -core-shape:epo-ProcedureTerm-epo-isAwardedByCPB a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Procedure is awarded by a Central Purchasing Body." ; - sh:maxCount 1 ; - sh:name "Is awarded by c p b" ; - sh:path :isAwardedByCPB . - -core-shape:epo-ProcedureTerm-epo-isOneLotOnlyAllowed a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Indicates whether tenders may be submitted for only one Lot. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022" ; - sh:maxCount 1 ; - sh:name "Is one lot only allowed" ; - sh:path :isOneLotOnlyAllowed . - -core-shape:epo-ProcedureTerm-epo-isSubmissionForAllLotsAllowed a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Indicates whether tenders may be submitted for all Lots. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) WG approval 23/08/2022" ; - sh:maxCount 1 ; - sh:name "Is submission for all lots allowed" ; - sh:path :isSubmissionForAllLotsAllowed . - -core-shape:epo-ProcessPlanningTerm-epo-hasAwardDateScheduled a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "Planned date for the award decision. WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has award date scheduled" ; - sh:path :hasAwardDateScheduled . - -core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedContractNoticePublicationDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "Foreseen date for publication of Contract Notice. Additional information: This corresponds in eForms BT-127 Future Notice." ; - sh:maxCount 1 ; - sh:name "Has estimated contract notice publication date" ; - sh:path :hasEstimatedContractNoticePublicationDate . - -core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedTenderInvitationDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The planned date for the dispatch of the invitations to submit tenders. WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has estimated tender invitation date" ; - sh:path :hasEstimatedTenderInvitationDate . - -core-shape:epo-ProcurementCriteriaSummary-epo-indicatesPerformingStaffInformationRequirement a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Indicates performing staff information requirement" ; - sh:path :indicatesPerformingStaffInformationRequirement . - -core-shape:epo-ProcurementCriterion-epo-hasConstraint a sh:PropertyShape ; - sh:class cccev:Constraint ; - sh:name "Has constraint" ; - sh:path :hasConstraint ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementCriterion-epo-hasFormula a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543." ; - sh:maxCount 1 ; - sh:name "Has formula" ; - sh:path :hasFormula . - -core-shape:epo-ProcurementCriterion-epo-hasPerformingStaffQualificationInformation a sh:PropertyShape ; - sh:class at-voc:requirement-stage ; - sh:description "Explanation as to if and/or when information of the persons to carry out the contract is to be provided. WG Approval 09/11/2021 The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage" ; - sh:name "Has performing staff qualification information" ; - sh:path :hasPerformingStaffQualificationInformation . - -core-shape:epo-ProcurementCriterion-epo-hasWeightValueType a sh:PropertyShape ; - sh:class at-voc:number-weight ; - sh:description "No definition. Waiting on CCCEV alignment." ; - sh:maxCount 1 ; - sh:name "Has weight value type" ; - sh:path :hasWeightValueType . - -core-shape:epo-ProcurementElement-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementElement-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-ProcurementElement-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A name given to the resource. WG approval 30/05/2023" ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:epo-ProcurementElement-epo-hasEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "A forecast of the value of the procurement before competition. Additional Information: Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). WG Approval 05/12/2019" ; - sh:maxCount 1 ; - sh:name "Has estimated value" ; - sh:path :hasEstimatedValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementElement-epo-hasInternalIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:name "Has internal identifier" ; - sh:path :hasInternalIdentifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementElement-epo-usesChannel a sh:PropertyShape ; - sh:class cccev:Channel ; - sh:name "Uses channel" ; - sh:path :usesChannel ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementObject-epo-foreseesConcession a sh:PropertyShape ; - sh:class :ConcessionEstimate ; - sh:maxCount 1 ; - sh:name "Foresees concession" ; - sh:path :foreseesConcession ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementObject-epo-foreseesContractSpecificTerm a sh:PropertyShape ; - sh:class :ContractSpecificTerm ; - sh:name "Foresees contract specific term" ; - sh:path :foreseesContractSpecificTerm ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementObject-epo-fulfillsStrategicProcurement a sh:PropertyShape ; - sh:class :StrategicProcurement ; - sh:name "Fulfills strategic procurement" ; - sh:path :fulfillsStrategicProcurement ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementObject-epo-hasAdditionalInformation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Supplementary data about the instance of the concept. WG Approval 15/10/2019" ; - sh:name "Has additional information" ; - sh:path :hasAdditionalInformation . - -core-shape:epo-ProcurementObject-epo-hasLegalBasis a sh:PropertyShape ; - sh:class at-voc:legal-basis ; - sh:description "The legal basis under which the procurement procedure takes place. Additional Information: For example European Directives or Regulations, national law WG 09/11/2021 The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis" ; - sh:name "Has legal basis" ; - sh:path :hasLegalBasis . - -core-shape:epo-ProcurementObject-epo-hasLegalBasisDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:name "Has legal basis description" ; - sh:path :hasLegalBasisDescription . - -core-shape:epo-ProcurementObject-epo-hasLegalRegime a sh:PropertyShape ; - sh:class :legal-regime ; - sh:name "Has legal regime" ; - sh:path :hasLegalRegime . - -core-shape:epo-ProcurementObject-epo-hasPurpose a sh:PropertyShape ; - sh:class :Purpose ; - sh:description "Relation indicating a procurement part has a puropse." ; - sh:maxCount 1 ; - sh:name "Has purpose" ; - sh:path :hasPurpose ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementObject-epo-hasRecurrenceDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Any additional information about the recurrence of the Procurement. Additional Information: For example estimated timing of the Procedure. This corresponds in eForms to BT-95 Recurrence Description. (WG approval 2019-01-16)" ; - sh:maxCount 1 ; - sh:name "Has recurrence description" ; - sh:path :hasRecurrenceDescription . - -core-shape:epo-ProcurementObject-epo-isCoveredByGPA a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Specifies whether the Agreement on Government Procurement (GPA) applies. Additional information: The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. This corresponds in the e Forms to BT-115 GPA Coverage. WG Approval 15/10/2019" ; - sh:maxCount 1 ; - sh:name "Is covered by g p a" ; - sh:path :isCoveredByGPA . - -core-shape:epo-ProcurementObject-epo-isFundedBy a sh:PropertyShape ; - sh:class :Fund ; - sh:description "Funding is provided either completely or partially by a Fund. Additional information: This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call." ; - sh:name "Is funded by" ; - sh:path :isFundedBy ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementObject-epo-isRecurrent a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The Procurement being notified is likely to be included in another procedure in the foreseeable future. Additional Information: For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. This corresponds in eForms to BT-94 Recurrence. WG Approval 12/05/2020" ; - sh:maxCount 1 ; - sh:name "Is recurrent" ; - sh:path :isRecurrent . - -core-shape:epo-ProcurementObject-epo-isSMESuitable a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The Lot is suitable for small and medium enterprises (SMEs). Additional Information This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. For example, number of employees and turnover are applicable to the definition of an SME. WG Approval 15/10/2019" ; - sh:maxCount 1 ; - sh:name "Is s m e suitable" ; - sh:path :isSMESuitable . - -core-shape:epo-ProcurementObject-epo-isSubjectToTerm a sh:PropertyShape ; - sh:class :Term ; - sh:name "Is subject to term" ; - sh:path :isSubjectToTerm ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementObject-epo-isUsingEUFunds a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The procurement foresees funding by the Union. Additional Information: The funding may cover the whole procurement or part of the procurement. For example the European Structural and Investment Funds or grants awarded by the European Union." ; - sh:maxCount 1 ; - sh:name "Is using e u funds" ; - sh:path :isUsingEUFunds . - -core-shape:epo-ProcurementObject-epo-usesTechnique a sh:PropertyShape ; - sh:class :Technique ; - sh:description "In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3)" ; - sh:name "Uses technique" ; - sh:path :usesTechnique ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementProcessInformation-epo-concernsLot a sh:PropertyShape ; - sh:class :Lot ; - sh:description "Relates to Lot." ; - sh:maxCount 1 ; - sh:name "Concerns lot" ; - sh:path :concernsLot ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementProcessInformation-epo-concernsProcedure a sh:PropertyShape ; - sh:class :Procedure ; - sh:description "Relates to Procedure." ; - sh:maxCount 1 ; - sh:name "Concerns procedure" ; - sh:path :concernsProcedure ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProcurementProcessInformation-epo-isCompetitionTerminated a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "No further contracts will be awarded in this procedure. Additional Information: This can be instantiated in the post award phase. PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. This corresponds in eForms to BT-756 PIN Competition Termination." ; - sh:maxCount 1 ; - sh:name "Is competition terminated" ; - sh:path :isCompetitionTerminated . - -core-shape:epo-ProcurementProcessInformation-epo-isDPSTerminated a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "End of the Dynamic Purchase System (DPS). Additional Information: This property can be used in the contract award notice even if no contracts are awarded. WG Approval 22/11/2019" ; - sh:maxCount 1 ; - sh:name "Is d p s terminated" ; - sh:path :isDPSTerminated . - -core-shape:epo-ProcurementProcessInformation-epo-isToBeRelaunched a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Indicator of whether the procurement object is to be relaunched. Additional information: This can be instantiated in the post award phase. This corresponds in eForms to BT-634 Procurement Relaunch. WG Approval: 18/01/2022" ; - sh:maxCount 1 ; - sh:name "Is to be relaunched" ; - sh:path :isToBeRelaunched . - -core-shape:epo-ProcurementServiceProvider-epo-actsOnBehalfOf a sh:PropertyShape ; - sh:class :Buyer ; - sh:description "Represents." ; - sh:minCount 1 ; - sh:name "Acts on behalf of" ; - sh:path :actsOnBehalfOf ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfession a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes profession" ; - sh:path :describesProfession . - -core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfessionRelevantLaw a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes profession relevant law" ; - sh:path :describesProfessionRelevantLaw . - -core-shape:epo-ProfessionalSuitabilitySummary-epo-hasServiceReservedToParticularProfession a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Has service reserved to particular profession" ; - sh:path :hasServiceReservedToParticularProfession . - -core-shape:epo-Project-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019" ; - sh:maxCount 1 ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-PublicationProvision-epo-hasElementConfidentiality a sh:PropertyShape ; - sh:class :ElementConfidentialityDescription ; - sh:description "Relation indication that the publication provision applies to a given field of a document." ; - sh:minCount 1 ; - sh:name "Has element confidentiality" ; - sh:path :hasElementConfidentiality ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-PublicationProvision-epo-hasPreferredPublicationDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The date the buyer would like to have the record made publicly available. Additional Information: This corresponds in eForms to BT-738 Notice Publication Date Preferred. WG Approval 12/05/2020" ; - sh:maxCount 1 ; - sh:name "Has preferred publication date" ; - sh:path :hasPreferredPublicationDate . - -core-shape:epo-PurchaseContract-epo-resultsFromMiniCompetitionAwardDecision a sh:PropertyShape ; - sh:class :MiniCompetitionAwardDecision ; - sh:maxCount 1 ; - sh:name "Results from mini competition award decision" ; - sh:path :resultsFromMiniCompetitionAwardDecision ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Purpose-epo-hasAdditionalClassification a sh:PropertyShape ; - sh:class at-voc:cpv ; - sh:name "Has additional classification" ; - sh:path :hasAdditionalClassification . - -core-shape:epo-Purpose-epo-hasMainClassification a sh:PropertyShape ; - sh:class at-voc:cpv ; - sh:minCount 1 ; - sh:name "Has main classification" ; - sh:path :hasMainClassification . - -core-shape:epo-Purpose-epo-hasTotalQuantity a sh:PropertyShape ; - sh:class :Quantity ; - sh:description "The number of units required. Additional Information: The quantity needs to go along with the unit." ; - sh:maxCount 1 ; - sh:name "Has total quantity" ; - sh:path :hasTotalQuantity ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-QualificationCriteriaSummary-epo-hasConditionVerificationMethod a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:name "Has condition verification method" ; - sh:path :hasConditionVerificationMethod . - -core-shape:epo-QualificationCriteriaSummary-epo-hasQualificationCondition a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:name "Has qualification condition" ; - sh:path :hasQualificationCondition . - -core-shape:epo-Quantity-epo-hasQuantityValue a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The numeric value of the quantity, including decimals." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has quantity value" ; - sh:path :hasQuantityValue . - -core-shape:epo-Quantity-epo-hasUnitCode a sh:PropertyShape ; - sh:class at-voc:measurement-unit ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has unit code" ; - sh:path :hasUnitCode . - -core-shape:epo-Quantity-epo-hasUnitDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A narrative explanation defining the units of items being counted Additional information: This could be for example individual items or pack or two. WG Approval 09/11/2021" ; - sh:name "Has unit description" ; - sh:path :hasUnitDescription . - -core-shape:epo-ReviewDecision-epo-hasConfirmedIrregularityType a sh:PropertyShape ; - sh:class at-voc:irregularity-type ; - sh:description "Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type" ; - sh:name "Has confirmed irregularity type" ; - sh:path :hasConfirmedIrregularityType . - -core-shape:epo-ReviewDecision-epo-hasDecisionDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The date of the review decision. Additional information: This attribute corresponds to the BT-787 Review Date in eForms." ; - sh:maxCount 1 ; - sh:name "Has decision date" ; - sh:path :hasDecisionDate . - -core-shape:epo-ReviewDecision-epo-hasRemedyValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "Additional information: This relation corresponds in eForms to BT-793 Review Remedy Value." ; - sh:maxCount 1 ; - sh:name "Has remedy value" ; - sh:path :hasRemedyValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ReviewDecision-epo-hasReviewDecisionType a sh:PropertyShape ; - sh:class at-voc:review-decision-type ; - sh:description "Additional information: This relation corresponds in eForms to BT-790 Review Decision Type." ; - sh:name "Has review decision type" ; - sh:path :hasReviewDecisionType . - -core-shape:epo-ReviewDecision-epo-providesRulingOnRemedy a sh:PropertyShape ; - sh:class at-voc:remedy-type ; - sh:description "States the measures to be taken after a review procedure." ; - sh:name "Provides ruling on remedy" ; - sh:path :providesRulingOnRemedy . - -core-shape:epo-ReviewDecision-epo-resolvesReviewRequest a sh:PropertyShape ; - sh:class :ReviewRequest ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Resolves review request" ; - sh:path :resolvesReviewRequest ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ReviewIrregularitySummary-epo-hasIrregularityType a sh:PropertyShape ; - sh:class at-voc:irregularity-type ; - sh:description "Additional information: This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has irregularity type" ; - sh:path :hasIrregularityType . - -core-shape:epo-ReviewIrregularitySummary-epo-hasReviewIrregularityCount a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The number of requests for a given irregularity. Additional information: This attribute corresponds in eForms to BT-635 Buyer Review Requests Count." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has review irregularity count" ; - sh:path :hasReviewIrregularityCount . - -core-shape:epo-ReviewObject-epo-hasElementReference a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier." ; - sh:name "Has element reference" ; - sh:path :hasElementReference . - -core-shape:epo-ReviewObject-epo-hasReviewURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The internet address of the documents concerning the review instance. Additional information: This attribute corresponds in eForms to BT-794 Review URL." ; - sh:maxCount 1 ; - sh:name "Has review u r l" ; - sh:path :hasReviewURL . - -core-shape:epo-ReviewObject-epo-refersToPreviousReview a sh:PropertyShape ; - sh:class :ReviewObject ; - sh:description "Additional information: This relation corresponds in eForms to BT-785 \"Review Previous Identifier\"." ; - sh:maxCount 1 ; - sh:name "Refers to previous review" ; - sh:path :refersToPreviousReview ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ReviewRequest-epo-hasAllegedIrregularityType a sh:PropertyShape ; - sh:class at-voc:irregularity-type ; - sh:description "Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type" ; - sh:minCount 1 ; - sh:name "Has alleged irregularity type" ; - sh:path :hasAllegedIrregularityType . - -core-shape:epo-ReviewRequest-epo-hasNumberOfReviewRequests a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The number of requests the buyer received to review any of its decisions." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has number of review requests" ; - sh:path :hasNumberOfReviewRequests . - -core-shape:epo-ReviewRequest-epo-hasRequestDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The date when the review request was submitted. Additional information: This attribute corresponds to the BT-787 Review Date in eForms." ; - sh:maxCount 1 ; - sh:name "Has request date" ; - sh:path :hasRequestDate . - -core-shape:epo-ReviewRequest-epo-hasReviewRequestFee a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "Additional information: This relation corresponds in eForms to BT-795 Review Request Fee." ; - sh:maxCount 1 ; - sh:name "Has review request fee" ; - sh:path :hasReviewRequestFee ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ReviewRequest-epo-hasWithdrawalDate a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:date ; - sh:description "The date and time when the request for review was withdrawn. Additional information: This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date." ; - sh:maxCount 1 ; - sh:name "Has withdrawal date" ; - sh:path :hasWithdrawalDate . - -core-shape:epo-ReviewRequest-epo-hasWithdrawalReason a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The explanation for withdrawing the request for review. Additional information: This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons" ; - sh:maxCount 1 ; - sh:name "Has withdrawal reason" ; - sh:path :hasWithdrawalReason . - -core-shape:epo-ReviewRequest-epo-isWithdrawn a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The review request was withdrawn. Additional information: This attribute corresponds in eForms to BT-796 Review Request Withdrawn." ; - sh:maxCount 1 ; - sh:name "Is withdrawn" ; - sh:path :isWithdrawn . - -core-shape:epo-ReviewRequest-epo-requestsRemedyType a sh:PropertyShape ; - sh:class at-voc:remedy-type ; - sh:description "Additional information: This relation corresponds in eForms to BT-792 Review Remedy Type" ; - sh:name "Requests remedy type" ; - sh:path :requestsRemedyType . - -core-shape:epo-ReviewRequestSummary-epo-concernsReviewSummaryForLot a sh:PropertyShape ; - sh:class :Lot ; - sh:description "Relates to Lot review summary. Additional information: This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Concerns review summary for lot" ; - sh:path :concernsReviewSummaryForLot ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ReviewRequestSummary-epo-hasReviewIrregularitySummary a sh:PropertyShape ; - sh:class :ReviewIrregularitySummary ; - sh:description "Additional information: This relation corresponds in eForms to BG-613 Buyer Review Requests" ; - sh:name "Has review irregularity summary" ; - sh:path :hasReviewIrregularitySummary ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-ReviewRequestSummary-epo-hasTotalNumberOfComplainants a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. Additional information: This attribute corresponds in eForms to BT-712 Buyer Review Complainants WG Approval 11/04/2019" ; - sh:maxCount 1 ; - sh:name "Has total number of complainants" ; - sh:path :hasTotalNumberOfComplainants . - -core-shape:epo-Reviewer-epo-hasReviewBodyType a sh:PropertyShape ; - sh:class at-voc:review-body-type ; - sh:name "Has review body type" ; - sh:path :hasReviewBodyType . - -core-shape:epo-SecurityClearanceTerm-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-SecurityClearanceTerm-epo-hasDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "The deadline by which the security clearance must be submitted to the buyer. WG Approval 12/09/2019" ; - sh:maxCount 1 ; - sh:name "Has deadline" ; - sh:path :hasDeadline . - -core-shape:epo-SecurityClearanceTerm-epo-isSecurityClearanceRequired a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Is security clearance required" ; - sh:path :isSecurityClearanceRequired . - -core-shape:epo-SelectedCandidateList-epo-containsCandidate a sh:PropertyShape ; - sh:class :Candidate ; - sh:name "Contains candidate" ; - sh:path :containsCandidate ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-SelectedCandidateList-epo-hasStartDate a sh:PropertyShape ; - sh:class :Period ; - sh:maxCount 1 ; - sh:name "Has start date" ; - sh:path :hasStartDate ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-SelectionCriteriaSummary-epo-describesMinimumLevelOfStandards a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:maxCount 1 ; - sh:name "Describes minimum level of standards" ; - sh:path :describesMinimumLevelOfStandards . - -core-shape:epo-SelectionCriteriaSummary-epo-hasSelectionCriteriaStatedInProcurementDocuments a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:maxCount 1 ; - sh:name "Has selection criteria stated in procurement documents" ; - sh:path :hasSelectionCriteriaStatedInProcurementDocuments . - -core-shape:epo-SelectionCriterion-epo-hasSelectionCriteriaUsage a sh:PropertyShape ; - sh:class at-voc:usage ; - sh:description "Additional Information: This corresponds in eForms to BT-748 Selection Criteria Used." ; - sh:maxCount 1 ; - sh:name "Has selection criteria usage" ; - sh:path :hasSelectionCriteriaUsage . - -core-shape:epo-SelectionCriterion-epo-hasSelectionCriterionType a sh:PropertyShape ; - sh:class at-voc:selection-criterion ; - sh:description "The classification of the selection criteria. Additional Information: This corresponds in eForms to BT-747 Selection Criteria Type. WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has selection criterion type" ; - sh:path :hasSelectionCriterionType . - -core-shape:epo-SelectionCriterion-epo-isUsedForCandidateRestriction a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. Additional Information: This property is only used if a maximum number of candidates was foreseen in the procedure. This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite" ; - sh:maxCount 1 ; - sh:name "Is used for candidate restriction" ; - sh:path :isUsedForCandidateRestriction . - -core-shape:epo-SocialProcurement-epo-fulfillsRequirement a sh:PropertyShape ; - sh:class at-voc:social-objective ; - sh:description "The requirement to which the concept meets. WG Approval 09/11/2021" ; - sh:minCount 1 ; - sh:name "Fulfills requirement" ; - sh:path :fulfillsRequirement . - -core-shape:epo-SpecificDuration-time-numericDuration a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "Value of a temporal extent expressed as a number." ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Numeric duration" ; - sh:path time:numericDuration . - -core-shape:epo-SpecificDuration-time-unitType a sh:PropertyShape ; - sh:class time:TemporalUnit ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Unit type" ; - sh:path time:unitType . - -core-shape:epo-StrategicProcurement-epo-hasNonAccessibilityCriterionJustification a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Reason for not applying accessibility criteria. Additional information: This corresponds in eForma to BT-755 Accessibility Justification. WG Approval 05/03/2019" ; - sh:name "Has non accessibility criterion justification" ; - sh:path :hasNonAccessibilityCriterionJustification . - -core-shape:epo-StrategicProcurement-epo-hasStrategicProcurementDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Self-explanatory text about a concept." ; - sh:name "Has strategic procurement description" ; - sh:path :hasStrategicProcurementDescription . - -core-shape:epo-StrategicProcurement-epo-includesAccessibilityCriterion a sh:PropertyShape ; - sh:class at-voc:accessibility ; - sh:description "Explanation as to whether accessibility Criterion are used or not. WG Approval 09/11/2021" ; - sh:name "Includes accessibility criterion" ; - sh:path :includesAccessibilityCriterion . - -core-shape:epo-SubcontractTerm-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-SubcontractTerm-epo-hasMaximumShare a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The maximum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019" ; - sh:maxCount 1 ; - sh:name "Has maximum share" ; - sh:path :hasMaximumShare . - -core-shape:epo-SubcontractTerm-epo-hasMinimumShare a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The minimum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019" ; - sh:maxCount 1 ; - sh:name "Has minimum share" ; - sh:path :hasMinimumShare . - -core-shape:epo-SubcontractTerm-epo-hasMinimumSubcontractorsProposedObligation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The minimum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has minimum subcontractors proposed obligation" ; - sh:path :hasMinimumSubcontractorsProposedObligation . - -core-shape:epo-SubcontractTerm-epo-hasSubcontractingInvolved a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "List of Subcontractors and the subject matter they cover are required. Additional Information: The tenderer will ned to supply this information in the tender. WG Approval 28/02/2019" ; - sh:maxCount 1 ; - sh:name "Has subcontracting involved" ; - sh:path :hasSubcontractingInvolved . - -core-shape:epo-SubcontractTerm-epo-hasSubcontractingObligation a sh:PropertyShape ; - sh:class at-voc:subcontracting-obligation ; - sh:description "The requirement the tender must meet with regard to subcontracting parts of the contract. WG Approval 09/11/2021" ; - sh:name "Has subcontracting obligation" ; - sh:path :hasSubcontractingObligation . - -core-shape:epo-SubcontractTerm-epo-hasSubcontractorsProposedAboveObligation a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The maximum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has subcontractors proposed above obligation" ; - sh:path :hasSubcontractorsProposedAboveObligation . - -core-shape:epo-SubcontractingEstimate-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-SubcontractingEstimate-epo-hasEstimatedPercentage a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:decimal ; - sh:description "The estimated proportion foreseen to be subcontracted. WG Approval 07/01/2020" ; - sh:maxCount 1 ; - sh:name "Has estimated percentage" ; - sh:path :hasEstimatedPercentage . - -core-shape:epo-SubcontractingEstimate-epo-hasSubcontractingEstimatedValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The estimated value of a single subcontract. This relates to BT-553 in eForms. WG Approval 01/09/2020" ; - sh:maxCount 1 ; - sh:name "Has subcontracting estimated value" ; - sh:path :hasSubcontractingEstimatedValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-SubcontractingEstimate-epo-hasSubjectMatter a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Description of the share of the contract that is to be subcontracted. Additional infromation: This can be an aggregate of several subcontracts. WG Approval 09/11/2021" ; - sh:name "Has subject matter" ; - sh:path :hasSubjectMatter . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasAbnormallyLowTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. Additional Information The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. WG Approval 28/07/2020" ; - sh:maxCount 1 ; - sh:name "Has abnormally low tenders" ; - sh:path :hasAbnormallyLowTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasEEAReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. WG Approval 12/12/2019" ; - sh:maxCount 1 ; - sh:name "Has e e a received tenders" ; - sh:path :hasEEAReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasEUReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The amount of tenders received from economic operators in other EU countries other than the country of the buyer." ; - sh:maxCount 1 ; - sh:name "Has e u received tenders" ; - sh:path :hasEUReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasElectronicTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "Electronic Tender Lots received. WG Approval 28/07/2020" ; - sh:maxCount 1 ; - sh:name "Has electronic tenders" ; - sh:path :hasElectronicTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasEstimatedTotalSubcontracts a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The estimated amount of work to be subcontracted in the contract resulting from the lot. WG Approval 09/11/2021" ; - sh:maxCount 1 ; - sh:name "Has estimated total subcontracts" ; - sh:path :hasEstimatedTotalSubcontracts . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasHighestReceivedTenderValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "Amount of the Tender with the highest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019" ; - sh:maxCount 1 ; - sh:name "Has highest received tender value" ; - sh:path :hasHighestReceivedTenderValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasInadmissibleTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. Additional Information: Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. WG Approval 12/12/2019" ; - sh:maxCount 1 ; - sh:name "Has inadmissible tenders" ; - sh:path :hasInadmissibleTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasLowestReceivedTenderValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "Amount of the Tender with the lowest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019" ; - sh:maxCount 1 ; - sh:name "Has lowest received tender value" ; - sh:path :hasLowestReceivedTenderValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasMediumTenderPerLots a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "Tenders from medium-sized enterprise. Additional Information: See Commission Recommendation 2003/361/EC." ; - sh:maxCount 1 ; - sh:name "Has medium tender per lots" ; - sh:path :hasMediumTenderPerLots . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEEAReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The amount of tenders received from economic operators in non-EEA countries. WG Approval 12/12/2019 15:20:36" ; - sh:maxCount 1 ; - sh:name "Has non e e a received tenders" ; - sh:path :hasNonEEAReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEUReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The amount of tenders received from economic operators in non-EU countries." ; - sh:maxCount 1 ; - sh:name "Has non e u received tenders" ; - sh:path :hasNonEUReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasNumberOfTenderersInvited a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "Number of economic operators invited to tender. Additional Information This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. WG Approval 01/12/2020" ; - sh:maxCount 1 ; - sh:name "Has number of tenderers invited" ; - sh:path :hasNumberOfTenderersInvited . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasOtherCountriesReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:maxCount 1 ; - sh:name "Has other countries received tenders" ; - sh:path :hasOtherCountriesReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedMicroTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The amount of tenders received from a micro enterprise. Additional Information: See Commission Recommendation 2003/361/EC." ; - sh:maxCount 1 ; - sh:name "Has received micro tenders" ; - sh:path :hasReceivedMicroTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedParticipationRequests a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The amount of applications to participate from economic operators. WG Approval 12/12/2019" ; - sh:maxCount 1 ; - sh:name "Has received participation requests" ; - sh:path :hasReceivedParticipationRequests . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSmallTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "Tenders from small enterprise. Additional Information: See Commission Recommendation 2003/361/EC." ; - sh:maxCount 1 ; - sh:name "Has received small tenders" ; - sh:path :hasReceivedSmallTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSubmissionType a sh:PropertyShape ; - sh:class at-voc:received-submission-type ; - sh:maxCount 1 ; - sh:name "Has received submission type" ; - sh:path :hasReceivedSubmissionType . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The total amount of tenders received. WG Approval 12/12/2019" ; - sh:maxCount 1 ; - sh:name "Has received tenders" ; - sh:path :hasReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasSMEReceivedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The amount of tenders received from micro, small and medium-sized enterprises. Additional Information: See Commission Recommendation 2003/361/EC. The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. WG Approval 05/03/2020" ; - sh:maxCount 1 ; - sh:name "Has s m e received tenders" ; - sh:path :hasSMEReceivedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-hasUnverifiedTenders a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). WG Approval 28/07/2020" ; - sh:maxCount 1 ; - sh:name "Has unverified tenders" ; - sh:path :hasUnverifiedTenders . - -core-shape:epo-SubmissionStatisticalInformation-epo-summarisesInformationForAwardDecision a sh:PropertyShape ; - sh:class :AwardDecision ; - sh:description "Check definitions for all concepts and relations.", - "Relates to submission for the given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023" ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Summarises information for award decision" ; - sh:path :summarisesInformationForAwardDecision ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-SubmissionTerm-epo-definesTenderProcessor a sh:PropertyShape ; - sh:class :TenderProcessor ; - sh:description "Relation indicating a SubmissionTerm has a TenderProcessor." ; - sh:maxCount 1 ; - sh:name "Defines tender processor" ; - sh:path :definesTenderProcessor ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-SubmissionTerm-epo-definesTenderReceiver a sh:PropertyShape ; - sh:class :TenderReceiver ; - sh:description "Relation indicating a SubmissionTerm has a TenderReceiver." ; - sh:maxCount 1 ; - sh:name "Defines tender receiver" ; - sh:path :definesTenderReceiver ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-SubmissionTerm-epo-hasEAuctionURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The internet address of the electronic auction. Additional Information: This corresponds in eForms to BT-123 Electronic Auction URL." ; - sh:maxCount 1 ; - sh:name "Has e auction u r l" ; - sh:path :hasEAuctionURL . - -core-shape:epo-SubmissionTerm-epo-hasECataloguePermission a sh:PropertyShape ; - sh:class at-voc:permission ; - sh:description "The extent to which electronic catalogues may be used in tenders. WG Approval 03/10/2019" ; - sh:maxCount 1 ; - sh:name "Has e catalogue permission" ; - sh:path :hasECataloguePermission . - -core-shape:epo-SubmissionTerm-epo-hasESubmissionPermission a sh:PropertyShape ; - sh:class at-voc:permission ; - sh:description "The requirements as to what extent electronic submission is allowed. WG Approval 03/10/2019" ; - sh:maxCount 1 ; - sh:name "Has e submission permission" ; - sh:path :hasESubmissionPermission . - -core-shape:epo-SubmissionTerm-epo-hasGuaranteeDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Information on the financial commitment required from the economic operator. Additional Information: 1. This information may include the amount and the way of delivering of the guarantee 2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. 3. Usual modalities are bonds, cheques, loans, other. WG Approval 21/07/20" ; - sh:name "Has guarantee description" ; - sh:path :hasGuaranteeDescription . - -core-shape:epo-SubmissionTerm-epo-hasLanguage a sh:PropertyShape ; - sh:class at-voc:language ; - sh:description "Language in which the submitted information is to be expressed. WG Approval 21/07/2020" ; - sh:name "Has language" ; - sh:path :hasLanguage . - -core-shape:epo-SubmissionTerm-epo-hasLateSubmissionInformationDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A narrative text explaining the content of the economic operator information that can be submitted late. Additional Information This does not apply to requests for clarifications." ; - sh:name "Has late submission information description" ; - sh:path :hasLateSubmissionInformationDescription . - -core-shape:epo-SubmissionTerm-epo-hasLateSubmissionPermission a sh:PropertyShape ; - sh:class at-voc:missing-info-submission ; - sh:description "Whether economic operator-related information can be supplemented even after the submission deadline. Additional Information This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. WG Approval 21/07/2020" ; - sh:maxCount 1 ; - sh:name "Has late submission permission" ; - sh:path :hasLateSubmissionPermission . - -core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Textual explanation of how non-electronic information is to be presented. WG Approval 21/07/2020" ; - sh:name "Has non electronic submission description" ; - sh:path :hasNonElectronicSubmissionDescription . - -core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionJustification a sh:PropertyShape ; - sh:class at-voc:communication-justification ; - sh:description "Reason for not accepting electronic information. WG Approval 21/07/2020" ; - sh:name "Has non electronic submission justification" ; - sh:path :hasNonElectronicSubmissionJustification . - -core-shape:epo-SubmissionTerm-epo-hasReceiptDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "The time limit for receiving submissions. Additional Information This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. This attribute should be used for standard forms mappings. WG Approval 21/07/2020" ; - sh:maxCount 1 ; - sh:name "Has receipt deadline" ; - sh:path :hasReceiptDeadline . - -core-shape:epo-SubmissionTerm-epo-hasReceiptExpressionDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:description "Time limit for receipt of expressions of interest. Pending of review by the WG" ; - sh:maxCount 1 ; - sh:name "Has receipt expression deadline" ; - sh:path :hasReceiptExpressionDeadline . - -core-shape:epo-SubmissionTerm-epo-hasReceiptParticipationRequestDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:maxCount 1 ; - sh:name "Has receipt participation request deadline" ; - sh:path :hasReceiptParticipationRequestDeadline . - -core-shape:epo-SubmissionTerm-epo-hasReceiptPreliminaryMarketConsultationDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:maxCount 1 ; - sh:name "Has receipt preliminary market consultation deadline" ; - sh:path :hasReceiptPreliminaryMarketConsultationDeadline . - -core-shape:epo-SubmissionTerm-epo-hasReceiptTenderDeadline a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:dateTime ; - sh:maxCount 1 ; - sh:name "Has receipt tender deadline" ; - sh:path :hasReceiptTenderDeadline . - -core-shape:epo-SubmissionTerm-epo-hasSubmissionURL a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "Additional Information: This corresponds to the eForms BT-18 Submission URL. This corresponds in eForms to BT-509 Organisation eDelivery Gateway." ; - sh:name "Has submission u r l" ; - sh:path :hasSubmissionURL . - -core-shape:epo-SubmissionTerm-epo-hasTenderSubcontractingInformation a sh:PropertyShape ; - sh:class at-voc:subcontracting-indication ; - sh:description "The information about subcontracting that must be indicated in the tender. WG Approval 10/10/2019" ; - sh:name "Has tender subcontracting information" ; - sh:path :hasTenderSubcontractingInformation . - -core-shape:epo-SubmissionTerm-epo-hasTenderValidityPeriod a sh:PropertyShape ; - sh:class :Period ; - sh:description "The relation indicating until when a tender instance is applicable." ; - sh:maxCount 1 ; - sh:name "Has tender validity period" ; - sh:path :hasTenderValidityPeriod ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-SubmissionTerm-epo-hasVariantPermission a sh:PropertyShape ; - sh:class at-voc:permission ; - sh:description "The obligation or possibility for tenderers to submit variants or not. Additional Information: Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. Additional Information: Further conditions for submitting variant tenders are in the procurement documents." ; - sh:maxCount 1 ; - sh:name "Has variant permission" ; - sh:path :hasVariantPermission . - -core-shape:epo-SubmissionTerm-epo-isAdvancedElectronicSignatureRequired a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. The submitted information is required to be signed electronically. Additional Information: Signature can be defined as \"data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. WG Approval 21/07/2020" ; - sh:maxCount 1 ; - sh:name "Is advanced electronic signature required" ; - sh:path :isAdvancedElectronicSignatureRequired . - -core-shape:epo-SubmissionTerm-epo-isGuaranteeRequired a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "The submitted information must include a financial commitment to be used in case of default. Additional Information: See the additional information provided in the definition of the 'Guarantee Description' element. WG Approval 21/07/20" ; - sh:maxCount 1 ; - sh:name "Is guarantee required" ; - sh:path :isGuaranteeRequired . - -core-shape:epo-SubmissionTerm-epo-isMultipleTenderSubmissionAllowed a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Tenderers may submit more than one competing tenders. WG Approval 10/10/2019" ; - sh:maxCount 1 ; - sh:name "Is multiple tender submission allowed" ; - sh:path :isMultipleTenderSubmissionAllowed . - -core-shape:epo-System-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-System-epo-isOwnedByAgent a sh:PropertyShape ; - sh:class foaf:Agent ; - sh:maxCount 1 ; - sh:name "Is owned by agent" ; - sh:path :isOwnedByAgent ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Technique-dct-description a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; - sh:name "Description" ; - sh:path dcterms:description . - -core-shape:epo-Technique-epo-hasUsage a sh:PropertyShape ; - sh:class at-voc:usage ; - sh:description "The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage" ; - sh:maxCount 1 ; - sh:name "Has usage" ; - sh:path :hasUsage . - -core-shape:epo-Technique-epo-hasValidityPeriod a sh:PropertyShape ; - sh:class :Period ; - sh:description "The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023" ; - sh:maxCount 1 ; - sh:name "Has validity period" ; - sh:path :hasValidityPeriod ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Tender-epo-foreseesConcession a sh:PropertyShape ; - sh:class :ConcessionEstimate ; - sh:maxCount 1 ; - sh:name "Foresees concession" ; - sh:path :foreseesConcession ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Tender-epo-foreseesSubcontracting a sh:PropertyShape ; - sh:class :SubcontractingEstimate ; - sh:name "Foresees subcontracting" ; - sh:path :foreseesSubcontracting ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Tender-epo-hasElectronicSubmission a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Transmission of tenders is possible by electronic means of communication." ; - sh:maxCount 1 ; - sh:name "Has electronic submission" ; - sh:path :hasElectronicSubmission . - -core-shape:epo-Tender-epo-hasFinancialOfferValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:description "The value offered by the Tenderer for a Lot. Additional Information: This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. This corresponds to BT-720 in eForms." ; - sh:maxCount 1 ; - sh:name "Has financial offer value" ; - sh:path :hasFinancialOfferValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Tender-epo-hasItemCountryOfOrigin a sh:PropertyShape ; - sh:class at-voc:country ; - sh:description "The source country of the product or service. Additional Information: The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. WG Approval 07/01/2020 The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country" ; - sh:name "Has item country of origin" ; - sh:path :hasItemCountryOfOrigin . - -core-shape:epo-Tender-epo-isSubjectToGrouping a sh:PropertyShape ; - sh:class :LotGroup ; - sh:maxCount 1 ; - sh:name "Is subject to grouping" ; - sh:path :isSubjectToGrouping ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Tender-epo-isSubmitedBy a sh:PropertyShape ; - sh:class :Tenderer ; - sh:description "Relation indicating the submission of a tender by an economic operator. WG approval 18/05/2021" ; - sh:maxCount 1 ; - sh:name "Is submited by" ; - sh:path :isSubmitedBy ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Tender-epo-isSubmittedForLot a sh:PropertyShape ; - sh:class :Lot ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Is submitted for lot" ; - sh:path :isSubmittedForLot ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Tender-epo-isVariant a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:boolean ; - sh:description "Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. Additional Information: The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. WG Approval 29/05/2019" ; - sh:maxCount 1 ; - sh:name "Is variant" ; - sh:path :isVariant . - -core-shape:epo-Tender-epo-specifiesSubcontractors a sh:PropertyShape ; - sh:class :Subcontractor ; - sh:name "Specifies subcontractors" ; - sh:path :specifiesSubcontractors ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-TenderAwardOutcome-epo-concernsTender a sh:PropertyShape ; - sh:class :Tender ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Concerns tender" ; - sh:path :concernsTender ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-TenderAwardOutcome-epo-hasAwardRank a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:integer ; - sh:description "The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. Additional Information: This corresponds in eForms to BT-171 Tender Rank." ; - sh:maxCount 1 ; - sh:name "Has award rank" ; - sh:path :hasAwardRank . - -core-shape:epo-TenderAwardOutcome-epo-indicatesAwardToWinner a sh:PropertyShape ; - sh:class :Winner ; - sh:description "Reveals the winner to whom the tender award outcome is attributed." ; - sh:maxCount 1 ; - sh:name "Indicates award to winner" ; - sh:path :indicatesAwardToWinner ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-TenderGroup-epo-comprisesTender a sh:PropertyShape ; - sh:class :Tender ; - sh:description "Incorporates Tender." ; - sh:minCount 1 ; - sh:name "Comprises tender" ; - sh:path :comprisesTender ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-TenderGroup-epo-hasTotalValue a sh:PropertyShape ; - sh:class :MonetaryValue ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Has total value" ; - sh:path :hasTotalValue ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-TenderGroup-epo-isSubmittedForLotGroup a sh:PropertyShape ; - sh:class :LotGroup ; - sh:maxCount 1 ; - sh:minCount 1 ; - sh:name "Is submitted for lot group" ; - sh:path :isSubmittedForLotGroup ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Tenderer-epo-substantiatesExclusionGround a sh:PropertyShape ; - sh:class :ExclusionGround ; - sh:maxCount 1 ; - sh:name "Substantiates exclusion ground" ; - sh:path :substantiatesExclusionGround ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:epo-Winner-epo-needsToBeATenderer a sh:PropertyShape ; - sh:class :Tenderer ; - sh:description "The Winner must be a Tenderer." ; - sh:maxCount 1 ; - sh:name "Needs to be a tenderer" ; - sh:path :needsToBeATenderer ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:foaf-Agent-adms-identifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "Links a resource to an adms:Identifier class." ; - sh:name "Identifier" ; - sh:path adms:identifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:foaf-Agent-dct-title a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A name given to the resource. WG approval 30/05/2023" ; - sh:name "Title" ; - sh:path dcterms:title . - -core-shape:foaf-Agent-epo-hasAlias a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Acronym or alternative name of the Agent. WG Approval 25/03/2021" ; - sh:name "Has alias" ; - sh:path :hasAlias . - -core-shape:foaf-Agent-epo-ownsSystem a sh:PropertyShape ; - sh:class :System ; - sh:name "Owns system" ; - sh:path :ownsSystem ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:locn-Address-epo-hasCountryCode a sh:PropertyShape ; - sh:class at-voc:country ; - sh:description "" ; - sh:maxCount 1 ; - sh:name "Has country code" ; - sh:path :hasCountryCode . - -core-shape:locn-Address-epo-hasNutsCode a sh:PropertyShape ; - sh:class at-voc:nuts ; - sh:maxCount 1 ; - sh:name "Has nuts code" ; - sh:path :hasNutsCode . - -core-shape:locn-Address-locn-addressArea a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. Additional Information: This would typically be part of a city, a neighbourhood or village, e.g. Montmartre." ; - sh:maxCount 1 ; - sh:name "Address area" ; - sh:path locn:addressArea . - -core-shape:locn-Address-locn-addressID a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:description "A globally unique identifier for each instance of an Address. Additional Information: The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID." ; - sh:maxCount 1 ; - sh:name "Address i d" ; - sh:path locn:addressID ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:locn-Address-locn-adminUnitL1 a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. Additional Information: Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this." ; - sh:maxCount 1 ; - sh:name "Admin unit l1" ; - sh:path locn:adminUnitL1 . - -core-shape:locn-Address-locn-adminUnitL2 a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. Additional Information: Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as \"http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01\" in the ATU controlled vocabulary." ; - sh:maxCount 1 ; - sh:name "Admin unit l2" ; - sh:path locn:adminUnitL2 . - -core-shape:locn-Address-locn-fullAddress a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The complete address written as a formatted string. Additional Information: Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is \"Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France\"." ; - sh:maxCount 1 ; - sh:name "Full address" ; - sh:path locn:fullAddress . - -core-shape:locn-Address-locn-locatorDesignator a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. Additional Information: In simpler terms, this is the building number, apartment number, etc. For an address such as \"Flat 3, 17 Bridge Street\", the locator is \"flat 3, 17\"." ; - sh:maxCount 1 ; - sh:name "Locator designator" ; - sh:path locn:locatorDesignator . - -core-shape:locn-Address-locn-locatorName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "Proper noun(s) applied to the real world entity identified by the locator. Additional Information: The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, \"Shumann, Berlaymont\" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator." ; - sh:maxCount 1 ; - sh:name "Locator name" ; - sh:path locn:locatorName . - -core-shape:locn-Address-locn-postCode a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The post/zip code of an address. (INSPIRE's definition is \"A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.\") Additional Information: Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example \"75000\"." ; - sh:name "Post code" ; - sh:path locn:postCode . - -core-shape:locn-Address-locn-postName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "The key postal division of the address, usually the city. (INSPIRE's definition is \"One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, \"Paris\"." ; - sh:name "Post name" ; - sh:path locn:postName . - -core-shape:locn-Address-locn-thoroughfare a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:langString ; - sh:description "An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. Additional Information: For example, \"Avenue des Champs-Élysées\"." ; - sh:name "Thoroughfare" ; - sh:path locn:thoroughfare . - -core-shape:locn-Geometry-cv-coordinates a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The coordinate list." ; - sh:name "Coordinates" ; - sh:path cccev:coordinates . - -core-shape:locn-Geometry-cv-latitude a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The latitude." ; - sh:name "Latitude" ; - sh:path cccev:latitude . - -core-shape:locn-Geometry-cv-longitude a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The longitude." ; - sh:name "Longitude" ; - sh:path cccev:longitude . - -core-shape:org-Organization-cv-address a sh:PropertyShape ; - sh:class locn:Address ; - sh:description "Associates any Resource with the corresponding Address. Additional Information: Asserting the address relationship implies that the Resource has an Address." ; - sh:name "Address" ; - sh:path cccev:address ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:org-Organization-cv-registeredAddress a sh:PropertyShape ; - sh:class locn:Address ; - sh:description "The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address." ; - sh:maxCount 1 ; - sh:name "Registered address" ; - sh:path cccev:registeredAddress ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:org-Organization-epo-hasBuyerLegalType a sh:PropertyShape ; - sh:class at-voc:buyer-legal-type ; - sh:description "A category that indicates the right of an Organisation to play the role of a buyer. Additional Information: The category also effects the rules that the buyer has to abide to within the public procurement procedure. WG 07/09/2021" ; - sh:maxCount 1 ; - sh:name "Has buyer legal type" ; - sh:path :hasBuyerLegalType . - -core-shape:org-Organization-epo-hasBuyerLegalTypeDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Self-explanatory text about the Buyer Legal Type. Additional information: This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022" ; - sh:maxCount 1 ; - sh:name "Has buyer legal type description" ; - sh:path :hasBuyerLegalTypeDescription . - -core-shape:org-Organization-epo-hasInternetAddress a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype xsd:anyURI ; - sh:description "The main web page used by the instance of the concept. WG Approval 01/06/2023" ; - sh:name "Has internet address" ; - sh:path :hasInternetAddress . - -core-shape:org-Organization-epo-hasLegalFormType a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The classification of an Organisation according to legislation. Additional Information: Generally, this is defined for Tenderers who want to submit as an Organisation Group. Note that the codelist provided at national level should be used." ; - sh:maxCount 1 ; - sh:name "Has legal form type" ; - sh:path :hasLegalFormType . - -core-shape:org-Organization-epo-hasLegalIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:name "Has legal identifier" ; - sh:path :hasLegalIdentifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:org-Organization-epo-hasLegalName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The officially registered name of an organisation. WG Approval 10/01/2023" ; - sh:name "Has legal name" ; - sh:path :hasLegalName . - -core-shape:org-Organization-epo-hasMainActivity a sh:PropertyShape ; - sh:class at-voc:main-activity ; - sh:description "The principal sectoral area in which an organisation operates. Additional information: The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). WG Approval 05/05/2020" ; - sh:maxCount 1 ; - sh:name "Has main activity" ; - sh:path :hasMainActivity . - -core-shape:org-Organization-epo-hasMainActivityDescription a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "Self-explanatory text about the Main Activity . Additional information: This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022" ; - sh:maxCount 1 ; - sh:name "Has main activity description" ; - sh:path :hasMainActivityDescription . - -core-shape:org-Organization-epo-hasOrganisationUnitName a sh:PropertyShape ; - rdfs:isDefinedBy core-shape:core-shape ; - sh:datatype rdf:PlainLiteral ; - sh:description "The name of a subpart of an organisation. Additional Information: E.g. the relevant department of a large organisation. We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well." ; - sh:maxCount 1 ; - sh:name "Has organisation unit name" ; - sh:path :hasOrganisationUnitName . - -core-shape:org-Organization-epo-hasPrimaryContactPoint a sh:PropertyShape ; - sh:class cccev:ContactPoint ; - sh:name "Has primary contact point" ; - sh:path :hasPrimaryContactPoint ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:org-Organization-epo-hasRegistrationCountry a sh:PropertyShape ; - sh:class at-voc:country ; - sh:maxCount 1 ; - sh:name "Has registration country" ; - sh:path :hasRegistrationCountry . - -core-shape:org-Organization-epo-hasTaxIdentifier a sh:PropertyShape ; - sh:class adms:Identifier ; - sh:name "Has tax identifier" ; - sh:path :hasTaxIdentifier ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:owl-Thing-epo-containsModificationsOf a sh:PropertyShape ; - sh:class owl:Thing ; - sh:description "Additional information This relation shall be used between Instances of the SAME type/class. The \"modifying-instance\" can be minimally instantiated, carrying the fields/information that override the fields in the \"modified-instance\". This means that the \"modifying-instance\" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance." ; - sh:maxCount 1 ; - sh:name "Contains modifications of" ; - sh:path :containsModificationsOf ; - sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . - -core-shape:core-shape a owl:Ontology ; - dcterms:created "2021-06-01"^^xsd:date ; - dcterms:description "The eProcurement Ontology core shapes provides the generic datashape specifications for the eProcurement Ontology core."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; - dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; - dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; - dcterms:title "eProcurement Ontology - core shapes"@en ; - vann:preferredNamespacePrefix "epo" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment "This version is automatically generated from demo_ontology_CM.xml on 2023-11-01" ; - rdfs:seeAlso , - , - , - ; - owl:imports :core, - :core-restriction, - cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "http://data.europa.eu/a4g/data-shape#core-shape-3.1.0" ; - owl:versionIRI core-shape:core-shape-4.0.0 ; - owl:versionInfo "4.0.0" . - diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-core.rdf b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-core.rdf deleted file mode 100644 index 4da44c9..0000000 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-core.rdf +++ /dev/null @@ -1,11098 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology - not - This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused. - This artefact provides the ontology core specification. - This version is automatically generated from demo_ontology_module_CM.xml on 2023-07-11 - - - - - - 2023-07-11 - 4.0.0 - 3.1.0 - - Semantic Specification Realease - 3.1.0 - http://data.europa.eu/a4g/ontology# - epo-not - The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated. - - European Union - - - - - Completion notice - - - An announcement of the end of a Procurement by a Buyer. - - - - - - - Contract modification notice - - - An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity. - - - - - - - Result notice - - - An announcement of the award or non-award of a Contract by a Buyer. - -(WG approval 27/03/2019) - - - - - - - Direct award prenotification notice - - - Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition. - - - - - - - Competition notice - - - An announcement of the launch of a Procurement Procedure by a Procuring Entity. - -WG approval 18/05/2018 - - - - - - - - Planning notice - - - Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process. - - - - - - - - P i n only notice - - - PriorInformationNotice - - - - - - - P i n profile notice - - - - - - - P i n time limit notice - - - - - - - P m c notice - - - - - - - C n social notice - - - - - - - C n standard notice - - - - - - - Design contest notice - - - - - - - P i n- c f c social notice - - - - - - - P i n- c f c standard notice - - - - - - - Q s notice - - - - - - - Subcontract notice - - - - - - - Voluntary ex- ante transparency notice - - - A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. - -Additional Information: - -For European Notices above the threshold - -"A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . -"Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. - -<b>This definition is still to be worked on.</b> - - - - - - - - C a n social notice - - - - - - - C a n standard notice - - - - - - - Design contest result notice - - - - - - - E forms notice - - - - - - - Notice1 - - - - - - - Notice2 - - - - - - - Notice3 - - - - - - - Notice4 - - - - - - - Notice5 - - - - - - - Notice6 - - - - - - - Notice7 - - - - - - - Notice8 - - - - - - - Notice9 - - - - - - - Notice10 - - - - - - - Notice11 - - - - - - - Notice12 - - - - - - - Notice13 - - - - - - - Notice14 - - - - - - - Notice15 - - - - - - - Notice16 - - - - - - - Notice17 - - - - - - - Notice18 - - - - - - - Notice19 - - - - - - - Notice20 - - - - - - - Notice21 - - - - - - - Notice22 - - - - - - - Notice23 - - - - - - - Notice24 - - - - - - - Notice25 - - - - - - - Notice26 - - - - - - - Notice27 - - - - - - - Notice28 - - - - - - - Notice29 - - - - - - - Notice30 - - - - - - - Notice31 - - - - - - - Notice32 - - - - - - - Notice33 - - - - - - - Notice34 - - - - - - - Notice35 - - - - - - - Notice36 - - - - - - - Notice37 - - - - - - - Notice38 - - - - - - - Notice39 - - - - - - - Notice40 - - - - - - - Standard forms notice - - - - - - - Concession award notice- d23 - - - - - - - Concession notice- d23 - - - - - - - Modification- d23 - - - - - - - Social and other specific services- d23 - - - - - - - V e a t- d23 - - - - - - - C a n standard- d24 - - - - - - - C n standard- d24 - - - - - - - Design contest- d24 - - - - - - - Design contest result- d24 - - - - - - - Modification- d24 - - - - - - - P i n- c f c standard- d24 - - - - - - - P i n- r t l- d24 - - - - - - - P i n only- d24 - - - - - - - P i n profile- d24 - - - - - - - Social and other specific services- d24 - - - public contracts - - - - - - - V e a t- d24 - - - - - - - C a n social- d25 - - - - - - - C a n social notice- d25 - - - Additional information: -Social and other specific services – utilities - - - - - - - - C n social- d25 - - - - - - - C n social notice- d25 - - - Additional information: -Social and other specific services – utilities - - - - - - - - Design contest- d25 - - - - - - - Design contest result- d25 - - - - - - - Modification- d25 - - - - - - - P i n- c f c social- d25 - - - - - - - P i n- c f c social notice- d25 - - - Additional information: -Social and other specific services – utilities - - - - - - - - P i n- r t l- d25 - - - - - - - P i n only- d25 - - - - - - - P i n profile- d25 - - - - - - - Q s- d25 - - - - - - - Q s notice- d25 - - - Additional information: -Social and other specific services – utilities - - - - - - - - V e a t- d25 - - - - - - - C a n defence- d81 - - - - - - - C n defence- d81 - - - - - - - P i n defence- d81 - - - - - - - P i n profile- d81 - - - - - - - Subcontract- d81 - - - - - - - V e a t- d81 - - - - - - - Standard form - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Announces completion of contract - - - - - - - Refers to award decision - - - - - - - Refers to lot - - - - - - - Refers to non published element - - - - - - - Announces review object - - - - - - - Refers to lot group award information - - - - - - - Refers to role - - - - - - - Refers to notice award information - - - - - - - Announces role - - - - - - - Refers to lot group - - - - - - - Refers to procedure - - - - - - - Has notice type - - - - - - - Refers to contract to be modified - - - - - - - Describes contract modification - - - - - - - Announces non published element - - - Relation indicating which parts of a document are not published. - -Additional Information: -For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement)) - - - - - - - Refers to role - - - - - - - Announces contract - - - - - - - Announces award decision - - - - - - - Announces role - - - - - - - Announces notice award information - - - - - - - Announces lot group award information - - - - - - - Describes result notice - - - - - - - Announces lot - - - - - - - Announces procedure - - - - - - - Announces lot group - - - - - - - Announces planned procurement part - - - - - - - Has implementing regulation - - - - - - - Has legal basis - - - - - - - Has legal basis - - - - - - - Has form type - - - - - diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-core.ttl b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-core.ttl deleted file mode 100644 index d3b491d..0000000 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-core.ttl +++ /dev/null @@ -1,767 +0,0 @@ -@prefix : . -@prefix at-voc: . -@prefix bibo: . -@prefix cc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix org: . -@prefix owl: . -@prefix rdfs: . -@prefix skos: . -@prefix vann: . -@prefix xsd: . - -:CANDefence-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ResultNotice, - :StandardFormsNotice ; - skos:prefLabel "C a n defence- d81"@en . - -:CANSocial-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :StandardFormsNotice ; - skos:prefLabel "C a n social- d25"@en . - -:CANSocialNotice-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :StandardFormsNotice ; - skos:definition """Additional information: -Social and other specific services – utilities -"""@en ; - skos:prefLabel "C a n social notice- d25"@en . - -:CANStandard-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :StandardFormsNotice ; - skos:prefLabel "C a n standard- d24"@en . - -:CNDefence-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:prefLabel "C n defence- d81"@en . - -:CNSocial-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNSocialNotice, - :StandardFormsNotice ; - skos:prefLabel "C n social- d25"@en . - -:CNSocialNotice-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNSocialNotice, - :StandardFormsNotice ; - skos:definition """Additional information: -Social and other specific services – utilities -"""@en ; - skos:prefLabel "C n social notice- d25"@en . - -:CNStandard-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :StandardFormsNotice ; - skos:prefLabel "C n standard- d24"@en . - -:CompletionNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition "An announcement of the end of a Procurement by a Buyer."@en ; - skos:prefLabel "Completion notice"@en . - -:ConcessionAwardNotice-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:prefLabel "Concession award notice- d23"@en . - -:ConcessionNotice-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:prefLabel "Concession notice- d23"@en . - -:DesignContest-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestNotice, - :StandardFormsNotice ; - skos:prefLabel "Design contest- d24"@en . - -:DesignContest-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestNotice, - :StandardFormsNotice ; - skos:prefLabel "Design contest- d25"@en . - -:DesignContestResult-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestResultNotice, - :StandardFormsNotice ; - skos:prefLabel "Design contest result- d24"@en . - -:DesignContestResult-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestResultNotice, - :StandardFormsNotice ; - skos:prefLabel "Design contest result- d25"@en . - -:Modification-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :StandardFormsNotice ; - skos:prefLabel "Modification- d23"@en . - -:Modification-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :StandardFormsNotice ; - skos:prefLabel "Modification- d24"@en . - -:Modification-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :StandardFormsNotice ; - skos:prefLabel "Modification- d25"@en . - -:Notice1 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :eFormsNotice ; - skos:prefLabel "Notice1"@en . - -:Notice10 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice10"@en . - -:Notice11 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice11"@en . - -:Notice12 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice12"@en . - -:Notice13 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice13"@en . - -:Notice14 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice14"@en . - -:Notice15 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :QSNotice, - :eFormsNotice ; - skos:prefLabel "Notice15"@en . - -:Notice16 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice16"@en . - -:Notice17 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice17"@en . - -:Notice18 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice18"@en . - -:Notice19 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice19"@en . - -:Notice2 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :eFormsNotice ; - skos:prefLabel "Notice2"@en . - -:Notice20 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice20"@en . - -:Notice21 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice21"@en . - -:Notice22 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :SubcontractNotice, - :eFormsNotice ; - skos:prefLabel "Notice22"@en . - -:Notice23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestNotice, - :eFormsNotice ; - skos:prefLabel "Notice23"@en . - -:Notice24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestNotice, - :eFormsNotice ; - skos:prefLabel "Notice24"@en . - -:Notice25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, - :eFormsNotice ; - skos:prefLabel "Notice25"@en . - -:Notice26 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, - :eFormsNotice ; - skos:prefLabel "Notice26"@en . - -:Notice27 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, - :eFormsNotice ; - skos:prefLabel "Notice27"@en . - -:Notice28 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, - :eFormsNotice ; - skos:prefLabel "Notice28"@en . - -:Notice29 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice29"@en . - -:Notice3 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :eFormsNotice ; - skos:prefLabel "Notice3"@en . - -:Notice30 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice30"@en . - -:Notice31 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice31"@en . - -:Notice32 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice32"@en . - -:Notice33 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice33"@en . - -:Notice34 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice34"@en . - -:Notice35 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice35"@en . - -:Notice36 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestResultNotice, - :eFormsNotice ; - skos:prefLabel "Notice36"@en . - -:Notice37 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestResultNotice, - :eFormsNotice ; - skos:prefLabel "Notice37"@en . - -:Notice38 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :eFormsNotice ; - skos:prefLabel "Notice38"@en . - -:Notice39 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :eFormsNotice ; - skos:prefLabel "Notice39"@en . - -:Notice4 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :eFormsNotice ; - skos:prefLabel "Notice4"@en . - -:Notice40 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :eFormsNotice ; - skos:prefLabel "Notice40"@en . - -:Notice5 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :eFormsNotice ; - skos:prefLabel "Notice5"@en . - -:Notice6 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :eFormsNotice ; - skos:prefLabel "Notice6"@en . - -:Notice7 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :eFormsNotice ; - skos:prefLabel "Notice7"@en . - -:Notice8 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :eFormsNotice ; - skos:prefLabel "Notice8"@en . - -:Notice9 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :eFormsNotice ; - skos:prefLabel "Notice9"@en . - -:PIN-CFCSocial-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n- c f c social- d25"@en . - -:PIN-CFCSocialNotice-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :StandardFormsNotice ; - skos:definition """Additional information: -Social and other specific services – utilities -"""@en ; - skos:prefLabel "P i n- c f c social notice- d25"@en . - -:PIN-CFCStandard-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCStandardNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n- c f c standard- d24"@en . - -:PIN-RTL-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n- r t l- d24"@en . - -:PIN-RTL-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n- r t l- d25"@en . - -:PINDefence-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:prefLabel "P i n defence- d81"@en . - -:PINOnly-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n only- d24"@en . - -:PINOnly-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n only- d25"@en . - -:PINProfile-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n profile- d24"@en . - -:PINProfile-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n profile- d25"@en . - -:PINProfile-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n profile- d81"@en . - -:PMCNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:prefLabel "P m c notice"@en . - -:QS-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :QSNotice, - :StandardFormsNotice ; - skos:prefLabel "Q s- d25"@en . - -:QSNotice-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :QSNotice, - :StandardFormsNotice ; - skos:definition """Additional information: -Social and other specific services – utilities -"""@en ; - skos:prefLabel "Q s notice- d25"@en . - -:SocialAndOtherSpecificServices-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:prefLabel "Social and other specific services- d23"@en . - -:SocialAndOtherSpecificServices-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:definition "public contracts"@en ; - skos:prefLabel "Social and other specific services- d24"@en . - -:StandardForm a skos:ConceptScheme ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Standard form"@en . - -:Subcontract-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :SubcontractNotice ; - skos:prefLabel "Subcontract- d81"@en . - -:VEAT-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :VoluntaryEx-AnteTransparencyNotice ; - skos:prefLabel "V e a t- d23"@en . - -:VEAT-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :VoluntaryEx-AnteTransparencyNotice ; - skos:prefLabel "V e a t- d24"@en . - -:VEAT-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :VoluntaryEx-AnteTransparencyNotice ; - skos:prefLabel "V e a t- d25"@en . - -:VEAT-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :VoluntaryEx-AnteTransparencyNotice ; - skos:prefLabel "V e a t- d81"@en . - -:announcesAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces award decision"@en . - -:announcesCompletionOfContract a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces completion of contract"@en . - -:announcesContract a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces contract"@en . - -:announcesLot a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces lot"@en . - -:announcesLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces lot group"@en . - -:announcesLotGroupAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces lot group award information"@en . - -:announcesNonPublishedElement a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:definition """Relation indicating which parts of a document are not published. - -Additional Information: -For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement)) """@en ; - skos:prefLabel "Announces non published element"@en . - -:announcesNoticeAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces notice award information"@en . - -:announcesPlannedProcurementPart a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces planned procurement part"@en . - -:announcesProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - rdfs:subPropertyOf :refersToProcedure ; - skos:prefLabel "Announces procedure"@en . - -:announcesReviewObject a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces review object"@en . - -:announcesRole a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces role"@en . - -:describesContractModification a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Describes contract modification"@en . - -:describesResultNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Describes result notice"@en . - -:hasFormType a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Has form type"@en . - -:hasImplementingRegulation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Has implementing regulation"@en . - -:hasLegalBasis a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Has legal basis"@en . - -:hasNoticeType a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Has notice type"@en . - -:refersToAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to award decision"@en . - -:refersToContractToBeModified a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to contract to be modified"@en . - -:refersToLot a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to lot"@en . - -:refersToLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to lot group"@en . - -:refersToLotGroupAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to lot group award information"@en . - -:refersToNonPublishedElement a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to non published element"@en . - -:refersToNoticeAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to notice award information"@en . - -:refersToRole a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to role"@en . - -:DirectAwardPrenotificationNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition "Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition."@en ; - skos:prefLabel "Direct award prenotification notice"@en . - -:refersToProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to procedure"@en . - -:SubcontractNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "Subcontract notice"@en . - -:PIN-CFCStandardNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "P i n- c f c standard notice"@en . - -:QSNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "Q s notice"@en . - -:CNSocialNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "C n social notice"@en . - -:DesignContestNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "Design contest notice"@en . - -:DesignContestResultNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ResultNotice ; - skos:prefLabel "Design contest result notice"@en . - -:ResultNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition """An announcement of the award or non-award of a Contract by a Buyer. - -(WG approval 27/03/2019)"""@en ; - skos:prefLabel "Result notice"@en . - -:CANSocialNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ResultNotice ; - skos:prefLabel "C a n social notice"@en . - -:CANStandardNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ResultNotice ; - skos:prefLabel "C a n standard notice"@en . - -:CNStandardNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "C n standard notice"@en . - -:PIN-CFCSocialNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "P i n- c f c social notice"@en . - -:PINOnlyNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:definition "PriorInformationNotice"@en ; - skos:prefLabel "P i n only notice"@en . - -:PINTimeLimitNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:prefLabel "P i n time limit notice"@en . - -:PlanningNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition """Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process. -"""@en ; - skos:prefLabel "Planning notice"@en . - -:ContractModificationNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition "An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity."@en ; - skos:prefLabel "Contract modification notice"@en . - -:PINProfileNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:prefLabel "P i n profile notice"@en . - -:CompetitionNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition """An announcement of the launch of a Procurement Procedure by a Procuring Entity. - -WG approval 18/05/2018 -"""@en ; - skos:prefLabel "Competition notice"@en . - -:VoluntaryEx-AnteTransparencyNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DirectAwardPrenotificationNotice ; - skos:definition """A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. - -Additional Information: - -For European Notices above the threshold - -"A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . -"Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. - -This definition is still to be worked on. -"""@en ; - skos:prefLabel "Voluntary ex- ante transparency notice"@en . - -:StandardFormsNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Standard forms notice"@en . - -:eFormsNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:prefLabel "E forms notice"@en . - -:not a owl:Ontology ; - cc:attributionName "European Union" ; - cc:attributionURL ; - dcterms:abstract "This artefact provides the ontology core specification." ; - dcterms:created ""^^xsd:date ; - dcterms:description "This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused."@en ; - dcterms:issued "2023-07-11"^^xsd:date ; - dcterms:license ; - dcterms:rights "The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated." ; - dcterms:title "eProcurement Ontology - not"@en ; - bibo:status "Semantic Specification Realease" ; - vann:preferredNamespacePrefix "epo-not" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:seeAlso , - , - , - ; - owl:imports cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "3.1.0" ; - owl:versionIRI :not-4.0.0 ; - owl:versionInfo "4.0.0" ; - skos:changeNote "This version is automatically generated from demo_ontology_module_CM.xml on 2023-07-11" . - diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-restrictions.rdf b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-restrictions.rdf deleted file mode 100644 index 1df5800..0000000 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-restrictions.rdf +++ /dev/null @@ -1,4502 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology - not - This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused. - This artefact provides the ontology extention with restrictions and inference-relaated specification. - This version is automatically generated from demo_ontology_module_CM.xml on - 2023-07-11 - - - - - - 2023-07-11 - 4.0.0 - 3.1.0 - - Semantic Specification Realease - 3.1.0 - http://data.europa.eu/a4g/ontology# - epo-not - The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated. - - European Union - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-restrictions.ttl b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-restrictions.ttl deleted file mode 100644 index dae01cc..0000000 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM-restrictions.ttl +++ /dev/null @@ -1,631 +0,0 @@ -@prefix : . -@prefix at-voc: . -@prefix bibo: . -@prefix cc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix org: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix skos: . -@prefix vann: . -@prefix xsd: . - -:announcesAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :AwardDecision . - -:announcesCompletionOfContract rdfs:domain :CompletionNotice ; - rdfs:range :Contract . - -:announcesContract rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :Contract . - -:announcesLot rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :Lot . - -:announcesLotGroup rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :LotGroup . - -:announcesLotGroupAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :LotGroupAwardInformation . - -:announcesNonPublishedElement rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :PublicationProvision . - -:announcesNoticeAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :NoticeAwardInformation . - -:announcesPlannedProcurementPart rdfs:domain :PlanningNotice ; - rdfs:range :PlannedProcurementPart . - -:announcesProcedure rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :Procedure . - -:announcesReviewObject rdfs:domain :CompletionNotice ; - rdfs:range :ReviewObject . - -:announcesRole rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice :DirectAwardPrenotificationNotice :CompetitionNotice :PlanningNotice ) ], - :ResultNotice ; - rdfs:range :AgentInRole . - -:describesContractModification rdfs:domain :ContractModificationNotice ; - rdfs:range :ContractModification . - -:describesResultNotice rdf:domain :NoticeAwardInformation ; - rdfs:range [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] . - -:not-restriction a owl:Ontology ; - cc:attributionName "European Union" ; - cc:attributionURL ; - dcterms:abstract "This artefact provides the ontology extention with restrictions and inference-relaated specification." ; - dcterms:created ""^^xsd:date ; - dcterms:description "This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused."@en ; - dcterms:issued "2023-07-11"^^xsd:date ; - dcterms:license ; - dcterms:rights "The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated." ; - dcterms:title "eProcurement Ontology - not"@en ; - bibo:status "Semantic Specification Realease" ; - vann:preferredNamespacePrefix "epo-not" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:seeAlso , - , - , - ; - owl:imports :not, - cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "3.1.0" ; - owl:versionIRI :not-restriction-4.0.0 ; - owl:versionInfo "4.0.0" ; - skos:changeNote """This version is automatically generated from demo_ontology_module_CM.xml on - 2023-07-11""" . - -:refersToAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; - rdfs:range :AwardDecision . - -:refersToContractToBeModified rdfs:domain :ContractModificationNotice ; - rdfs:range :Contract . - -:refersToLot rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; - rdfs:range :Lot . - -:refersToLotGroup rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; - rdfs:range :LotGroup . - -:refersToLotGroupAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; - rdfs:range :LotGroupAwardInformation . - -:refersToNonPublishedElement rdfs:domain :CompletionNotice ; - rdfs:range :PublicationProvision . - -:refersToNoticeAwardInformation rdfs:domain :CompletionNotice ; - rdfs:range :NoticeAwardInformation . - -:refersToProcedure rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; - rdfs:range :Procedure . - -:refersToRole rdfs:domain :CompletionNotice, - :ResultNotice ; - rdfs:range :AgentInRole . - -:StandardForm a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue :StandardForm ; - owl:onProperty skos:inScheme ] . - -[] a ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . - -[] a ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a ; - owl:members ( :Subcontract-D81 :Notice22 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a ; - owl:members ( :Subcontract-D81 :Notice22 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a ; - owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - -[] a ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a ; - owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a ; - owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . - -[] a ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a ; - owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . - diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf deleted file mode 100644 index f74eae5..0000000 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf +++ /dev/null @@ -1,11107 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology Notice - core - The eProcurement Ontology Notice core describes the concepts and properties representing the European Public Procurement Notice domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact. - http://publications.europa.eu/resource/authority/corporate-body/PUBL - This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01 - - - - - 2023-11-01 - 2021-06-01 - 4.0.0 - 3.1.0 - - http://data.europa.eu/a4g/ontology#not-3.1.0 - http://data.europa.eu/a4g/ontology# - epo - © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). - - - - Completion notice - - - An announcement of the end of a Procurement by a Buyer. - - - - - - - Contract modification notice - - - An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity. - - - - - - - Result notice - - - An announcement of the award or non-award of a Contract by a Buyer. (WG approval 27/03/2019) - - - - - - - Direct award prenotification notice - - - Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition. - - - - - - - Competition notice - - - An announcement of the launch of a Procurement Procedure by a Procuring Entity. WG approval 18/05/2018 - - - - - - - Planning notice - - - Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process. - - - - - - - P i n only notice - - - PriorInformationNotice - - - - - - - P i n profile notice - - - - - - - P i n time limit notice - - - - - - - P m c notice - - - - - - - C n social notice - - - - - - - C n standard notice - - - - - - - Design contest notice - - - - - - - P i n- c f c social notice - - - - - - - P i n- c f c standard notice - - - - - - - Q s notice - - - - - - - Subcontract notice - - - - - - - Voluntary ex- ante transparency notice - - - A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. Additional Information: For European Notices above the threshold "A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. <b>This definition is still to be worked on.</b> - - - - - - - C a n social notice - - - - - - - C a n standard notice - - - - - - - Design contest result notice - - - - - - - E forms notice - - - - - - - Notice1 - - - - - - - Notice2 - - - - - - - Notice3 - - - - - - - Notice4 - - - - - - - Notice5 - - - - - - - Notice6 - - - - - - - Notice7 - - - - - - - Notice8 - - - - - - - Notice9 - - - - - - - Notice10 - - - - - - - Notice11 - - - - - - - Notice12 - - - - - - - Notice13 - - - - - - - Notice14 - - - - - - - Notice15 - - - - - - - Notice16 - - - - - - - Notice17 - - - - - - - Notice18 - - - - - - - Notice19 - - - - - - - Notice20 - - - - - - - Notice21 - - - - - - - Notice22 - - - - - - - Notice23 - - - - - - - Notice24 - - - - - - - Notice25 - - - - - - - Notice26 - - - - - - - Notice27 - - - - - - - Notice28 - - - - - - - Notice29 - - - - - - - Notice30 - - - - - - - Notice31 - - - - - - - Notice32 - - - - - - - Notice33 - - - - - - - Notice34 - - - - - - - Notice35 - - - - - - - Notice36 - - - - - - - Notice37 - - - - - - - Notice38 - - - - - - - Notice39 - - - - - - - Notice40 - - - - - - - Standard forms notice - - - - - - - Concession award notice- d23 - - - - - - - Concession notice- d23 - - - - - - - Modification- d23 - - - - - - - Social and other specific services- d23 - - - - - - - V e a t- d23 - - - - - - - C a n standard- d24 - - - - - - - C n standard- d24 - - - - - - - Design contest- d24 - - - - - - - Design contest result- d24 - - - - - - - Modification- d24 - - - - - - - P i n- c f c standard- d24 - - - - - - - P i n- r t l- d24 - - - - - - - P i n only- d24 - - - - - - - P i n profile- d24 - - - - - - - Social and other specific services- d24 - - - public contracts - - - - - - - V e a t- d24 - - - - - - - C a n social- d25 - - - - - - - C a n social notice- d25 - - - Additional information: Social and other specific services – utilities - - - - - - - C n social- d25 - - - - - - - C n social notice- d25 - - - Additional information: Social and other specific services – utilities - - - - - - - Design contest- d25 - - - - - - - Design contest result- d25 - - - - - - - Modification- d25 - - - - - - - P i n- c f c social- d25 - - - - - - - P i n- c f c social notice- d25 - - - Additional information: Social and other specific services – utilities - - - - - - - P i n- r t l- d25 - - - - - - - P i n only- d25 - - - - - - - P i n profile- d25 - - - - - - - Q s- d25 - - - - - - - Q s notice- d25 - - - Additional information: Social and other specific services – utilities - - - - - - - V e a t- d25 - - - - - - - C a n defence- d81 - - - - - - - C n defence- d81 - - - - - - - P i n defence- d81 - - - - - - - P i n profile- d81 - - - - - - - Subcontract- d81 - - - - - - - V e a t- d81 - - - - - - - Standard form - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - for ReviewBody - - - What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist. - - - When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level. - - - should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level? - - - Preliminary Market Consultation This should be implemented in the future. - - - this is a buyer profile, not a PIN. - - - This value is NOT yet part of the notice-type controlled vocabulary. - - - where does this belong to? - - - where does this belong to? - - - This can be PIN or Concession award notice - - - This can be PIN (maybe CFC), CN or CAN. - - - What is the notice type here? - - - What is the notice type here? - - - What is the notice type here? - - - - Announces completion of contract - - - - - - - Refers to award decision - - - - - - - Refers to lot - - - - - - - Refers to non published element - - - - - - - Announces review object - - - - - - - Refers to lot group award information - - - - - - - Refers to role - - - - - - - Refers to notice award information - - - - - - - Announces role - - - - - - - Refers to lot group - - - - - - - Refers to procedure - - - - - - - Has notice type - - - - - - - Refers to contract to be modified - - - - - - - Describes contract modification - - - - - - - Announces non published element - - - Relation indicating which parts of a document are not published. Additional Information: For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement)) - - - - - - - Refers to role - - - - - - - Announces contract - - - - - - - Announces award decision - - - - - - - Announces role - - - - - - - Announces notice award information - - - - - - - Announces lot group award information - - - - - - - Describes result notice - - - - - - - Announces lot - - - - - - - Announces procedure - - - - - - - Announces lot group - - - - - - - Announces planned procurement part - - - - - - - Has implementing regulation - - - - - - - Has legal basis - - - - - - - Has legal basis - - - - - - - Has form type - - - - - diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl deleted file mode 100644 index c57791b..0000000 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl +++ /dev/null @@ -1,750 +0,0 @@ -@prefix : . -@prefix at-voc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix org: . -@prefix owl: . -@prefix rdfs: . -@prefix skos: . -@prefix vann: . -@prefix xsd: . - -:CANDefence-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ResultNotice, - :StandardFormsNotice ; - skos:editorialNote "What is the notice type here?"@en ; - skos:prefLabel "C a n defence- d81"@en . - -:CANSocial-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :StandardFormsNotice ; - skos:prefLabel "C a n social- d25"@en . - -:CANSocialNotice-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :StandardFormsNotice ; - skos:definition "Additional information: Social and other specific services – utilities"@en ; - skos:prefLabel "C a n social notice- d25"@en . - -:CANStandard-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :StandardFormsNotice ; - skos:prefLabel "C a n standard- d24"@en . - -:CNDefence-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:editorialNote "What is the notice type here?"@en ; - skos:prefLabel "C n defence- d81"@en . - -:CNSocial-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNSocialNotice, - :StandardFormsNotice ; - skos:prefLabel "C n social- d25"@en . - -:CNSocialNotice-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNSocialNotice, - :StandardFormsNotice ; - skos:definition "Additional information: Social and other specific services – utilities"@en ; - skos:prefLabel "C n social notice- d25"@en . - -:CNStandard-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :StandardFormsNotice ; - skos:prefLabel "C n standard- d24"@en . - -:CompletionNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition "An announcement of the end of a Procurement by a Buyer."@en ; - skos:editorialNote "What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist."@en ; - skos:prefLabel "Completion notice"@en . - -:ConcessionAwardNotice-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:editorialNote "where does this belong to?"@en ; - skos:prefLabel "Concession award notice- d23"@en . - -:ConcessionNotice-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:editorialNote "where does this belong to?"@en ; - skos:prefLabel "Concession notice- d23"@en . - -:DesignContest-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestNotice, - :StandardFormsNotice ; - skos:prefLabel "Design contest- d24"@en . - -:DesignContest-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestNotice, - :StandardFormsNotice ; - skos:prefLabel "Design contest- d25"@en . - -:DesignContestResult-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestResultNotice, - :StandardFormsNotice ; - skos:prefLabel "Design contest result- d24"@en . - -:DesignContestResult-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestResultNotice, - :StandardFormsNotice ; - skos:prefLabel "Design contest result- d25"@en . - -:Modification-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :StandardFormsNotice ; - skos:prefLabel "Modification- d23"@en . - -:Modification-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :StandardFormsNotice ; - skos:prefLabel "Modification- d24"@en . - -:Modification-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :StandardFormsNotice ; - skos:prefLabel "Modification- d25"@en . - -:Notice1 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :eFormsNotice ; - skos:prefLabel "Notice1"@en . - -:Notice10 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice10"@en . - -:Notice11 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice11"@en . - -:Notice12 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice12"@en . - -:Notice13 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice13"@en . - -:Notice14 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice14"@en . - -:Notice15 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :QSNotice, - :eFormsNotice ; - skos:prefLabel "Notice15"@en . - -:Notice16 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice16"@en . - -:Notice17 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice17"@en . - -:Notice18 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice18"@en . - -:Notice19 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice19"@en . - -:Notice2 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :eFormsNotice ; - skos:prefLabel "Notice2"@en . - -:Notice20 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice20"@en . - -:Notice21 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CNSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice21"@en . - -:Notice22 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :SubcontractNotice, - :eFormsNotice ; - skos:prefLabel "Notice22"@en . - -:Notice23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestNotice, - :eFormsNotice ; - skos:prefLabel "Notice23"@en . - -:Notice24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestNotice, - :eFormsNotice ; - skos:prefLabel "Notice24"@en . - -:Notice25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, - :eFormsNotice ; - skos:prefLabel "Notice25"@en . - -:Notice26 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, - :eFormsNotice ; - skos:prefLabel "Notice26"@en . - -:Notice27 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, - :eFormsNotice ; - skos:prefLabel "Notice27"@en . - -:Notice28 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, - :eFormsNotice ; - skos:prefLabel "Notice28"@en . - -:Notice29 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice29"@en . - -:Notice3 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :eFormsNotice ; - skos:prefLabel "Notice3"@en . - -:Notice30 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice30"@en . - -:Notice31 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice31"@en . - -:Notice32 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANStandardNotice, - :eFormsNotice ; - skos:prefLabel "Notice32"@en . - -:Notice33 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice33"@en . - -:Notice34 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice34"@en . - -:Notice35 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CANSocialNotice, - :eFormsNotice ; - skos:prefLabel "Notice35"@en . - -:Notice36 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestResultNotice, - :eFormsNotice ; - skos:prefLabel "Notice36"@en . - -:Notice37 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DesignContestResultNotice, - :eFormsNotice ; - skos:prefLabel "Notice37"@en . - -:Notice38 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :eFormsNotice ; - skos:prefLabel "Notice38"@en . - -:Notice39 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :eFormsNotice ; - skos:prefLabel "Notice39"@en . - -:Notice4 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :eFormsNotice ; - skos:prefLabel "Notice4"@en . - -:Notice40 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ContractModificationNotice, - :eFormsNotice ; - skos:prefLabel "Notice40"@en . - -:Notice5 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :eFormsNotice ; - skos:prefLabel "Notice5"@en . - -:Notice6 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :eFormsNotice ; - skos:prefLabel "Notice6"@en . - -:Notice7 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :eFormsNotice ; - skos:prefLabel "Notice7"@en . - -:Notice8 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :eFormsNotice ; - skos:prefLabel "Notice8"@en . - -:Notice9 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :eFormsNotice ; - skos:prefLabel "Notice9"@en . - -:PIN-CFCSocial-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n- c f c social- d25"@en . - -:PIN-CFCSocialNotice-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCSocialNotice, - :StandardFormsNotice ; - skos:definition "Additional information: Social and other specific services – utilities"@en ; - skos:prefLabel "P i n- c f c social notice- d25"@en . - -:PIN-CFCStandard-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PIN-CFCStandardNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n- c f c standard- d24"@en . - -:PIN-RTL-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n- r t l- d24"@en . - -:PIN-RTL-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINTimeLimitNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n- r t l- d25"@en . - -:PINDefence-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:editorialNote "What is the notice type here?"@en ; - skos:prefLabel "P i n defence- d81"@en . - -:PINOnly-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n only- d24"@en . - -:PINOnly-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINOnlyNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n only- d25"@en . - -:PINProfile-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n profile- d24"@en . - -:PINProfile-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n profile- d25"@en . - -:PINProfile-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PINProfileNotice, - :StandardFormsNotice ; - skos:prefLabel "P i n profile- d81"@en . - -:PMCNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:editorialNote "Preliminary Market Consultation This should be implemented in the future."@en ; - skos:prefLabel "P m c notice"@en . - -:QS-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :QSNotice, - :StandardFormsNotice ; - skos:prefLabel "Q s- d25"@en . - -:QSNotice-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :QSNotice, - :StandardFormsNotice ; - skos:definition "Additional information: Social and other specific services – utilities"@en ; - skos:prefLabel "Q s notice- d25"@en . - -:SocialAndOtherSpecificServices-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:editorialNote "This can be PIN or Concession award notice"@en ; - skos:prefLabel "Social and other specific services- d23"@en . - -:SocialAndOtherSpecificServices-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice ; - skos:definition "public contracts"@en ; - skos:editorialNote "This can be PIN (maybe CFC), CN or CAN."@en ; - skos:prefLabel "Social and other specific services- d24"@en . - -:StandardForm a skos:ConceptScheme ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Standard form"@en . - -:Subcontract-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :SubcontractNotice ; - skos:prefLabel "Subcontract- d81"@en . - -:VEAT-D23 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :VoluntaryEx-AnteTransparencyNotice ; - skos:prefLabel "V e a t- d23"@en . - -:VEAT-D24 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :VoluntaryEx-AnteTransparencyNotice ; - skos:prefLabel "V e a t- d24"@en . - -:VEAT-D25 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :VoluntaryEx-AnteTransparencyNotice ; - skos:prefLabel "V e a t- d25"@en . - -:VEAT-D81 a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :StandardFormsNotice, - :VoluntaryEx-AnteTransparencyNotice ; - skos:prefLabel "V e a t- d81"@en . - -:announcesAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces award decision"@en . - -:announcesCompletionOfContract a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces completion of contract"@en . - -:announcesContract a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces contract"@en . - -:announcesLot a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces lot"@en . - -:announcesLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces lot group"@en . - -:announcesLotGroupAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces lot group award information"@en . - -:announcesNonPublishedElement a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:definition "Relation indicating which parts of a document are not published. Additional Information: For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement))"@en ; - skos:prefLabel "Announces non published element"@en . - -:announcesNoticeAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces notice award information"@en . - -:announcesPlannedProcurementPart a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces planned procurement part"@en . - -:announcesProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - rdfs:subPropertyOf :refersToProcedure ; - skos:prefLabel "Announces procedure"@en . - -:announcesReviewObject a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Announces review object"@en . - -:announcesRole a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:editorialNote "for ReviewBody"@en ; - skos:prefLabel "Announces role"@en . - -:describesContractModification a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Describes contract modification"@en . - -:describesResultNotice a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Describes result notice"@en . - -:hasFormType a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Has form type"@en . - -:hasImplementingRegulation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Has implementing regulation"@en . - -:hasLegalBasis a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Has legal basis"@en . - -:hasNoticeType a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Has notice type"@en . - -:pin-buyer skos:editorialNote "this is a buyer profile, not a PIN."@en . - -:pmc skos:editorialNote "This value is NOT yet part of the notice-type controlled vocabulary."@en . - -:refersToAwardDecision a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to award decision"@en . - -:refersToContractToBeModified a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to contract to be modified"@en . - -:refersToLot a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to lot"@en . - -:refersToLotGroup a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to lot group"@en . - -:refersToLotGroupAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to lot group award information"@en . - -:refersToNonPublishedElement a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to non published element"@en . - -:refersToNoticeAwardInformation a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to notice award information"@en . - -:refersToRole a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to role"@en . - -:DirectAwardPrenotificationNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition "Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition."@en ; - skos:prefLabel "Direct award prenotification notice"@en . - -:refersToProcedure a owl:ObjectProperty ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Refers to procedure"@en . - -:SubcontractNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "Subcontract notice"@en . - -:PIN-CFCStandardNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "P i n- c f c standard notice"@en . - -:QSNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "Q s notice"@en . - -:CNSocialNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "C n social notice"@en . - -:DesignContestNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "Design contest notice"@en . - -:DesignContestResultNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ResultNotice ; - skos:prefLabel "Design contest result notice"@en . - -:ResultNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition "An announcement of the award or non-award of a Contract by a Buyer. (WG approval 27/03/2019)"@en ; - skos:prefLabel "Result notice"@en . - -:CANSocialNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ResultNotice ; - skos:prefLabel "C a n social notice"@en . - -:CANStandardNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :ResultNotice ; - skos:prefLabel "C a n standard notice"@en . - -:CNStandardNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "C n standard notice"@en . - -:PIN-CFCSocialNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :CompetitionNotice ; - skos:prefLabel "P i n- c f c social notice"@en . - -:PINOnlyNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:definition "PriorInformationNotice"@en ; - skos:prefLabel "P i n only notice"@en . - -:PINTimeLimitNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:prefLabel "P i n time limit notice"@en . - -:PlanningNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition "Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process."@en ; - skos:editorialNote "When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level."@en ; - skos:prefLabel "Planning notice"@en . - -:ContractModificationNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition "An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity."@en ; - skos:editorialNote "should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level?"@en ; - skos:prefLabel "Contract modification notice"@en . - -:PINProfileNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :PlanningNotice ; - skos:prefLabel "P i n profile notice"@en . - -:CompetitionNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:definition "An announcement of the launch of a Procurement Procedure by a Procuring Entity. WG approval 18/05/2018"@en ; - skos:prefLabel "Competition notice"@en . - -:VoluntaryEx-AnteTransparencyNotice a owl:Class ; - rdfs:isDefinedBy :not ; - rdfs:subClassOf :DirectAwardPrenotificationNotice ; - skos:definition "A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. Additional Information: For European Notices above the threshold \"A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . \"Voluntary Ex-Ante Transparency Notice\" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. This definition is still to be worked on."@en ; - skos:prefLabel "Voluntary ex- ante transparency notice"@en . - -:StandardFormsNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:prefLabel "Standard forms notice"@en . - -:eFormsNotice a owl:Class ; - rdfs:isDefinedBy :not ; - skos:prefLabel "E forms notice"@en . - -:not a owl:Ontology ; - dcterms:created "2021-06-01"^^xsd:date ; - dcterms:description "The eProcurement Ontology Notice core describes the concepts and properties representing the European Public Procurement Notice domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; - dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; - dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; - dcterms:title "eProcurement Ontology Notice - core"@en ; - vann:preferredNamespacePrefix "epo" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment "This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01" ; - rdfs:seeAlso , - , - , - ; - owl:imports cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "http://data.europa.eu/a4g/ontology#not-3.1.0" ; - owl:versionIRI :not-4.0.0 ; - owl:versionInfo "4.0.0" . - diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf deleted file mode 100644 index 6948dd9..0000000 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf +++ /dev/null @@ -1,4496 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology Notice - core restrictions - http://publications.europa.eu/resource/authority/corporate-body/PUBL - The eProcurement Ontology Notice core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology Notice core. - This version is automatically generated from demo_ontology_module_CM.xml on - 2023-11-01 - - - - - 2023-11-01 - 2021-06-01 - 4.0.0 - 3.1.0 - - http://data.europa.eu/a4g/ontology#not-restriction-3.1.0 - http://data.europa.eu/a4g/ontology# - epo - © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl deleted file mode 100644 index d821072..0000000 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl +++ /dev/null @@ -1,625 +0,0 @@ -@prefix : . -@prefix at-voc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix org: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix skos: . -@prefix vann: . -@prefix xsd: . - -:announcesAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :AwardDecision . - -:announcesCompletionOfContract rdfs:domain :CompletionNotice ; - rdfs:range :Contract . - -:announcesContract rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :Contract . - -:announcesLot rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :Lot . - -:announcesLotGroup rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :LotGroup . - -:announcesLotGroupAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :LotGroupAwardInformation . - -:announcesNonPublishedElement rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :PublicationProvision . - -:announcesNoticeAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; - rdfs:range :NoticeAwardInformation . - -:announcesPlannedProcurementPart rdfs:domain :PlanningNotice ; - rdfs:range :PlannedProcurementPart . - -:announcesProcedure rdfs:domain [ a owl:Class ; - owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; - rdfs:range :Procedure . - -:announcesReviewObject rdfs:domain :CompletionNotice ; - rdfs:range :ReviewObject . - -:announcesRole rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice :DirectAwardPrenotificationNotice :CompetitionNotice :PlanningNotice ) ], - :ResultNotice ; - rdfs:range :AgentInRole . - -:describesContractModification rdfs:domain :ContractModificationNotice ; - rdfs:range :ContractModification . - -:describesResultNotice rdf:domain :NoticeAwardInformation ; - rdfs:range [ a owl:Class ; - owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] . - -:not-restriction a owl:Ontology ; - dcterms:created "2021-06-01"^^xsd:date ; - dcterms:description "The eProcurement Ontology Notice core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology Notice core."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; - dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; - dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; - dcterms:title "eProcurement Ontology Notice - core restrictions"@en ; - vann:preferredNamespacePrefix "epo" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment """This version is automatically generated from demo_ontology_module_CM.xml on - 2023-11-01""" ; - rdfs:seeAlso , - , - , - ; - owl:imports :not, - cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "http://data.europa.eu/a4g/ontology#not-restriction-3.1.0" ; - owl:versionIRI :not-restriction-4.0.0 ; - owl:versionInfo "4.0.0" . - -:refersToAwardDecision rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; - rdfs:range :AwardDecision . - -:refersToContractToBeModified rdfs:domain :ContractModificationNotice ; - rdfs:range :Contract . - -:refersToLot rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; - rdfs:range :Lot . - -:refersToLotGroup rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; - rdfs:range :LotGroup . - -:refersToLotGroupAwardInformation rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; - rdfs:range :LotGroupAwardInformation . - -:refersToNonPublishedElement rdfs:domain :CompletionNotice ; - rdfs:range :PublicationProvision . - -:refersToNoticeAwardInformation rdfs:domain :CompletionNotice ; - rdfs:range :NoticeAwardInformation . - -:refersToProcedure rdfs:domain [ a owl:Class ; - owl:unionOf ( :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; - rdfs:range :Procedure . - -:refersToRole rdfs:domain :CompletionNotice, - :ResultNotice ; - rdfs:range :AgentInRole . - -:StandardForm a owl:Class ; - rdfs:subClassOf skos:Concept ; - owl:equivalentClass [ a owl:Restriction ; - owl:hasValue :StandardForm ; - owl:onProperty skos:inScheme ] . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Subcontract-D81 :Notice22 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Subcontract-D81 :Notice22 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - diff --git a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM-shacl.rdf b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM-shacl.rdf deleted file mode 100644 index 07849d4..0000000 --- a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM-shacl.rdf +++ /dev/null @@ -1,1046 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology - not - This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused. - This artefact provides the datashape specification. - This version is automatically generated from demo_ontology_module_CM.xml on - 2023-07-11 - - - - - - 2023-07-11 - 4.0.0 - 3.1.0 - - Semantic Specification Realease - 3.1.0 - http://data.europa.eu/a4g/ontology# - epo-not - The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated. - - European Union - - - - - - - Completion notice - - - An announcement of the end of a Procurement by a Buyer. - - - - - - - - - Contract modification notice - - - An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity. - - - - - - - - - Result notice - - - An announcement of the award or non-award of a Contract by a Buyer. - -(WG approval 27/03/2019) - - - - - - - - - Direct award prenotification notice - - - Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition. - - - - - - - - - Competition notice - - - An announcement of the launch of a Procurement Procedure by a Procuring Entity. - -WG approval 18/05/2018 - - - - - - - - - - Planning notice - - - Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process. - - - - - - - - - - P i n only notice - - - PriorInformationNotice - - - - - - - - - P i n profile notice - - - - - - - - - P i n time limit notice - - - - - - - - - P m c notice - - - - - - - - - C n social notice - - - - - - - - - C n standard notice - - - - - - - - - Design contest notice - - - - - - - - - P i n- c f c social notice - - - - - - - - - P i n- c f c standard notice - - - - - - - - - Q s notice - - - - - - - - - Subcontract notice - - - - - - - - - Voluntary ex- ante transparency notice - - - A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. - -Additional Information: - -For European Notices above the threshold - -"A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . -"Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. - -<b>This definition is still to be worked on.</b> - - - - - - - - - - C a n social notice - - - - - - - - - C a n standard notice - - - - - - - - - Design contest result notice - - - - - - - - - E forms notice - - - - - - - - - Notice1 - - - - - - - - - Notice2 - - - - - - - - - Notice3 - - - - - - - - - Notice4 - - - - - - - - - Notice5 - - - - - - - - - Notice6 - - - - - - - - - Notice7 - - - - - - - - - Notice8 - - - - - - - - - Notice9 - - - - - - - - - Notice10 - - - - - - - - - Notice11 - - - - - - - - - Notice12 - - - - - - - - - Notice13 - - - - - - - - - Notice14 - - - - - - - - - Notice15 - - - - - - - - - Notice16 - - - - - - - - - Notice17 - - - - - - - - - Notice18 - - - - - - - - - Notice19 - - - - - - - - - Notice20 - - - - - - - - - Notice21 - - - - - - - - - Notice22 - - - - - - - - - Notice23 - - - - - - - - - Notice24 - - - - - - - - - Notice25 - - - - - - - - - Notice26 - - - - - - - - - Notice27 - - - - - - - - - Notice28 - - - - - - - - - Notice29 - - - - - - - - - Notice30 - - - - - - - - - Notice31 - - - - - - - - - Notice32 - - - - - - - - - Notice33 - - - - - - - - - Notice34 - - - - - - - - - Notice35 - - - - - - - - - Notice36 - - - - - - - - - Notice37 - - - - - - - - - Notice38 - - - - - - - - - Notice39 - - - - - - - - - Notice40 - - - - - - - - - Standard forms notice - - - - - - - - - Concession award notice- d23 - - - - - - - - - Concession notice- d23 - - - - - - - - - Modification- d23 - - - - - - - - - Social and other specific services- d23 - - - - - - - - - V e a t- d23 - - - - - - - - - C a n standard- d24 - - - - - - - - - C n standard- d24 - - - - - - - - - Design contest- d24 - - - - - - - - - Design contest result- d24 - - - - - - - - - Modification- d24 - - - - - - - - - P i n- c f c standard- d24 - - - - - - - - - P i n- r t l- d24 - - - - - - - - - P i n only- d24 - - - - - - - - - P i n profile- d24 - - - - - - - - - Social and other specific services- d24 - - - public contracts - - - - - - - - - V e a t- d24 - - - - - - - - - C a n social- d25 - - - - - - - - - C a n social notice- d25 - - - Additional information: -Social and other specific services – utilities - - - - - - - - - - C n social- d25 - - - - - - - - - C n social notice- d25 - - - Additional information: -Social and other specific services – utilities - - - - - - - - - - Design contest- d25 - - - - - - - - - Design contest result- d25 - - - - - - - - - Modification- d25 - - - - - - - - - P i n- c f c social- d25 - - - - - - - - - P i n- c f c social notice- d25 - - - Additional information: -Social and other specific services – utilities - - - - - - - - - - P i n- r t l- d25 - - - - - - - - - P i n only- d25 - - - - - - - - - P i n profile- d25 - - - - - - - - - Q s- d25 - - - - - - - - - Q s notice- d25 - - - Additional information: -Social and other specific services – utilities - - - - - - - - - - V e a t- d25 - - - - - - - - - C a n defence- d81 - - - - - - - - - C n defence- d81 - - - - - - - - - P i n defence- d81 - - - - - - - - - P i n profile- d81 - - - - - - - - - Subcontract- d81 - - - - - - - - - V e a t- d81 - - - - - diff --git a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM-shacl.ttl b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM-shacl.ttl deleted file mode 100644 index e0224e1..0000000 --- a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM-shacl.ttl +++ /dev/null @@ -1,592 +0,0 @@ -@prefix : . -@prefix at-voc: . -@prefix bibo: . -@prefix cc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix not-shape: . -@prefix org: . -@prefix owl: . -@prefix rdfs: . -@prefix sh: . -@prefix skos: . -@prefix vann: . -@prefix xsd: . - -not-shape:epo-not-CANDefence-D81 a sh:NodeShape ; - rdfs:label "C a n defence- d81" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANDefence-D81 . - -not-shape:epo-not-CANSocial-D25 a sh:NodeShape ; - rdfs:label "C a n social- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANSocial-D25 . - -not-shape:epo-not-CANSocialNotice a sh:NodeShape ; - rdfs:label "C a n social notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANSocialNotice . - -not-shape:epo-not-CANSocialNotice-D25 a sh:NodeShape ; - rdfs:label "C a n social notice- d25" ; - rdfs:comment """Additional information: -Social and other specific services – utilities -""" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANSocialNotice-D25 . - -not-shape:epo-not-CANStandard-D24 a sh:NodeShape ; - rdfs:label "C a n standard- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANStandard-D24 . - -not-shape:epo-not-CANStandardNotice a sh:NodeShape ; - rdfs:label "C a n standard notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANStandardNotice . - -not-shape:epo-not-CNDefence-D81 a sh:NodeShape ; - rdfs:label "C n defence- d81" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNDefence-D81 . - -not-shape:epo-not-CNSocial-D25 a sh:NodeShape ; - rdfs:label "C n social- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNSocial-D25 . - -not-shape:epo-not-CNSocialNotice a sh:NodeShape ; - rdfs:label "C n social notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNSocialNotice . - -not-shape:epo-not-CNSocialNotice-D25 a sh:NodeShape ; - rdfs:label "C n social notice- d25" ; - rdfs:comment """Additional information: -Social and other specific services – utilities -""" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNSocialNotice-D25 . - -not-shape:epo-not-CNStandard-D24 a sh:NodeShape ; - rdfs:label "C n standard- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNStandard-D24 . - -not-shape:epo-not-CNStandardNotice a sh:NodeShape ; - rdfs:label "C n standard notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNStandardNotice . - -not-shape:epo-not-CompetitionNotice a sh:NodeShape ; - rdfs:label "Competition notice" ; - rdfs:comment """An announcement of the launch of a Procurement Procedure by a Procuring Entity. - -WG approval 18/05/2018 -""" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CompetitionNotice . - -not-shape:epo-not-CompletionNotice a sh:NodeShape ; - rdfs:label "Completion notice" ; - rdfs:comment "An announcement of the end of a Procurement by a Buyer." ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CompletionNotice . - -not-shape:epo-not-ConcessionAwardNotice-D23 a sh:NodeShape ; - rdfs:label "Concession award notice- d23" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :ConcessionAwardNotice-D23 . - -not-shape:epo-not-ConcessionNotice-D23 a sh:NodeShape ; - rdfs:label "Concession notice- d23" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :ConcessionNotice-D23 . - -not-shape:epo-not-ContractModificationNotice a sh:NodeShape ; - rdfs:label "Contract modification notice" ; - rdfs:comment "An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity." ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :ContractModificationNotice . - -not-shape:epo-not-DesignContest-D24 a sh:NodeShape ; - rdfs:label "Design contest- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContest-D24 . - -not-shape:epo-not-DesignContest-D25 a sh:NodeShape ; - rdfs:label "Design contest- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContest-D25 . - -not-shape:epo-not-DesignContestNotice a sh:NodeShape ; - rdfs:label "Design contest notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContestNotice . - -not-shape:epo-not-DesignContestResult-D24 a sh:NodeShape ; - rdfs:label "Design contest result- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContestResult-D24 . - -not-shape:epo-not-DesignContestResult-D25 a sh:NodeShape ; - rdfs:label "Design contest result- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContestResult-D25 . - -not-shape:epo-not-DesignContestResultNotice a sh:NodeShape ; - rdfs:label "Design contest result notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContestResultNotice . - -not-shape:epo-not-DirectAwardPrenotificationNotice a sh:NodeShape ; - rdfs:label "Direct award prenotification notice" ; - rdfs:comment "Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition." ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DirectAwardPrenotificationNotice . - -not-shape:epo-not-Modification-D23 a sh:NodeShape ; - rdfs:label "Modification- d23" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Modification-D23 . - -not-shape:epo-not-Modification-D24 a sh:NodeShape ; - rdfs:label "Modification- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Modification-D24 . - -not-shape:epo-not-Modification-D25 a sh:NodeShape ; - rdfs:label "Modification- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Modification-D25 . - -not-shape:epo-not-Notice1 a sh:NodeShape ; - rdfs:label "Notice1" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice1 . - -not-shape:epo-not-Notice10 a sh:NodeShape ; - rdfs:label "Notice10" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice10 . - -not-shape:epo-not-Notice11 a sh:NodeShape ; - rdfs:label "Notice11" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice11 . - -not-shape:epo-not-Notice12 a sh:NodeShape ; - rdfs:label "Notice12" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice12 . - -not-shape:epo-not-Notice13 a sh:NodeShape ; - rdfs:label "Notice13" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice13 . - -not-shape:epo-not-Notice14 a sh:NodeShape ; - rdfs:label "Notice14" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice14 . - -not-shape:epo-not-Notice15 a sh:NodeShape ; - rdfs:label "Notice15" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice15 . - -not-shape:epo-not-Notice16 a sh:NodeShape ; - rdfs:label "Notice16" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice16 . - -not-shape:epo-not-Notice17 a sh:NodeShape ; - rdfs:label "Notice17" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice17 . - -not-shape:epo-not-Notice18 a sh:NodeShape ; - rdfs:label "Notice18" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice18 . - -not-shape:epo-not-Notice19 a sh:NodeShape ; - rdfs:label "Notice19" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice19 . - -not-shape:epo-not-Notice2 a sh:NodeShape ; - rdfs:label "Notice2" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice2 . - -not-shape:epo-not-Notice20 a sh:NodeShape ; - rdfs:label "Notice20" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice20 . - -not-shape:epo-not-Notice21 a sh:NodeShape ; - rdfs:label "Notice21" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice21 . - -not-shape:epo-not-Notice22 a sh:NodeShape ; - rdfs:label "Notice22" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice22 . - -not-shape:epo-not-Notice23 a sh:NodeShape ; - rdfs:label "Notice23" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice23 . - -not-shape:epo-not-Notice24 a sh:NodeShape ; - rdfs:label "Notice24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice24 . - -not-shape:epo-not-Notice25 a sh:NodeShape ; - rdfs:label "Notice25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice25 . - -not-shape:epo-not-Notice26 a sh:NodeShape ; - rdfs:label "Notice26" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice26 . - -not-shape:epo-not-Notice27 a sh:NodeShape ; - rdfs:label "Notice27" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice27 . - -not-shape:epo-not-Notice28 a sh:NodeShape ; - rdfs:label "Notice28" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice28 . - -not-shape:epo-not-Notice29 a sh:NodeShape ; - rdfs:label "Notice29" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice29 . - -not-shape:epo-not-Notice3 a sh:NodeShape ; - rdfs:label "Notice3" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice3 . - -not-shape:epo-not-Notice30 a sh:NodeShape ; - rdfs:label "Notice30" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice30 . - -not-shape:epo-not-Notice31 a sh:NodeShape ; - rdfs:label "Notice31" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice31 . - -not-shape:epo-not-Notice32 a sh:NodeShape ; - rdfs:label "Notice32" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice32 . - -not-shape:epo-not-Notice33 a sh:NodeShape ; - rdfs:label "Notice33" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice33 . - -not-shape:epo-not-Notice34 a sh:NodeShape ; - rdfs:label "Notice34" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice34 . - -not-shape:epo-not-Notice35 a sh:NodeShape ; - rdfs:label "Notice35" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice35 . - -not-shape:epo-not-Notice36 a sh:NodeShape ; - rdfs:label "Notice36" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice36 . - -not-shape:epo-not-Notice37 a sh:NodeShape ; - rdfs:label "Notice37" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice37 . - -not-shape:epo-not-Notice38 a sh:NodeShape ; - rdfs:label "Notice38" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice38 . - -not-shape:epo-not-Notice39 a sh:NodeShape ; - rdfs:label "Notice39" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice39 . - -not-shape:epo-not-Notice4 a sh:NodeShape ; - rdfs:label "Notice4" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice4 . - -not-shape:epo-not-Notice40 a sh:NodeShape ; - rdfs:label "Notice40" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice40 . - -not-shape:epo-not-Notice5 a sh:NodeShape ; - rdfs:label "Notice5" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice5 . - -not-shape:epo-not-Notice6 a sh:NodeShape ; - rdfs:label "Notice6" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice6 . - -not-shape:epo-not-Notice7 a sh:NodeShape ; - rdfs:label "Notice7" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice7 . - -not-shape:epo-not-Notice8 a sh:NodeShape ; - rdfs:label "Notice8" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice8 . - -not-shape:epo-not-Notice9 a sh:NodeShape ; - rdfs:label "Notice9" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice9 . - -not-shape:epo-not-PIN-CFCSocial-D25 a sh:NodeShape ; - rdfs:label "P i n- c f c social- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCSocial-D25 . - -not-shape:epo-not-PIN-CFCSocialNotice a sh:NodeShape ; - rdfs:label "P i n- c f c social notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCSocialNotice . - -not-shape:epo-not-PIN-CFCSocialNotice-D25 a sh:NodeShape ; - rdfs:label "P i n- c f c social notice- d25" ; - rdfs:comment """Additional information: -Social and other specific services – utilities -""" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCSocialNotice-D25 . - -not-shape:epo-not-PIN-CFCStandard-D24 a sh:NodeShape ; - rdfs:label "P i n- c f c standard- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCStandard-D24 . - -not-shape:epo-not-PIN-CFCStandardNotice a sh:NodeShape ; - rdfs:label "P i n- c f c standard notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCStandardNotice . - -not-shape:epo-not-PIN-RTL-D24 a sh:NodeShape ; - rdfs:label "P i n- r t l- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-RTL-D24 . - -not-shape:epo-not-PIN-RTL-D25 a sh:NodeShape ; - rdfs:label "P i n- r t l- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-RTL-D25 . - -not-shape:epo-not-PINDefence-D81 a sh:NodeShape ; - rdfs:label "P i n defence- d81" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINDefence-D81 . - -not-shape:epo-not-PINOnly-D24 a sh:NodeShape ; - rdfs:label "P i n only- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINOnly-D24 . - -not-shape:epo-not-PINOnly-D25 a sh:NodeShape ; - rdfs:label "P i n only- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINOnly-D25 . - -not-shape:epo-not-PINOnlyNotice a sh:NodeShape ; - rdfs:label "P i n only notice" ; - rdfs:comment "PriorInformationNotice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINOnlyNotice . - -not-shape:epo-not-PINProfile-D24 a sh:NodeShape ; - rdfs:label "P i n profile- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINProfile-D24 . - -not-shape:epo-not-PINProfile-D25 a sh:NodeShape ; - rdfs:label "P i n profile- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINProfile-D25 . - -not-shape:epo-not-PINProfile-D81 a sh:NodeShape ; - rdfs:label "P i n profile- d81" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINProfile-D81 . - -not-shape:epo-not-PINProfileNotice a sh:NodeShape ; - rdfs:label "P i n profile notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINProfileNotice . - -not-shape:epo-not-PINTimeLimitNotice a sh:NodeShape ; - rdfs:label "P i n time limit notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINTimeLimitNotice . - -not-shape:epo-not-PMCNotice a sh:NodeShape ; - rdfs:label "P m c notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PMCNotice . - -not-shape:epo-not-PlanningNotice a sh:NodeShape ; - rdfs:label "Planning notice" ; - rdfs:comment """Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process. -""" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PlanningNotice . - -not-shape:epo-not-QS-D25 a sh:NodeShape ; - rdfs:label "Q s- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :QS-D25 . - -not-shape:epo-not-QSNotice a sh:NodeShape ; - rdfs:label "Q s notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :QSNotice . - -not-shape:epo-not-QSNotice-D25 a sh:NodeShape ; - rdfs:label "Q s notice- d25" ; - rdfs:comment """Additional information: -Social and other specific services – utilities -""" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :QSNotice-D25 . - -not-shape:epo-not-ResultNotice a sh:NodeShape ; - rdfs:label "Result notice" ; - rdfs:comment """An announcement of the award or non-award of a Contract by a Buyer. - -(WG approval 27/03/2019)""" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :ResultNotice . - -not-shape:epo-not-SocialAndOtherSpecificServices-D23 a sh:NodeShape ; - rdfs:label "Social and other specific services- d23" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :SocialAndOtherSpecificServices-D23 . - -not-shape:epo-not-SocialAndOtherSpecificServices-D24 a sh:NodeShape ; - rdfs:label "Social and other specific services- d24" ; - rdfs:comment "public contracts" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :SocialAndOtherSpecificServices-D24 . - -not-shape:epo-not-StandardFormsNotice a sh:NodeShape ; - rdfs:label "Standard forms notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :StandardFormsNotice . - -not-shape:epo-not-Subcontract-D81 a sh:NodeShape ; - rdfs:label "Subcontract- d81" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Subcontract-D81 . - -not-shape:epo-not-SubcontractNotice a sh:NodeShape ; - rdfs:label "Subcontract notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :SubcontractNotice . - -not-shape:epo-not-VEAT-D23 a sh:NodeShape ; - rdfs:label "V e a t- d23" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VEAT-D23 . - -not-shape:epo-not-VEAT-D24 a sh:NodeShape ; - rdfs:label "V e a t- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VEAT-D24 . - -not-shape:epo-not-VEAT-D25 a sh:NodeShape ; - rdfs:label "V e a t- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VEAT-D25 . - -not-shape:epo-not-VEAT-D81 a sh:NodeShape ; - rdfs:label "V e a t- d81" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VEAT-D81 . - -not-shape:epo-not-VoluntaryEx-AnteTransparencyNotice a sh:NodeShape ; - rdfs:label "Voluntary ex- ante transparency notice" ; - rdfs:comment """A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. - -Additional Information: - -For European Notices above the threshold - -"A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . -"Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. - -This definition is still to be worked on. -""" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VoluntaryEx-AnteTransparencyNotice . - -not-shape:epo-not-eFormsNotice a sh:NodeShape ; - rdfs:label "E forms notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :eFormsNotice . - -not-shape:not-shape a owl:Ontology ; - cc:attributionName "European Union" ; - cc:attributionURL ; - dcterms:abstract "This artefact provides the datashape specification. " ; - dcterms:created ""^^xsd:date ; - dcterms:description "This module provides the definitions for the eProcurement ontology core. Procurement data has been identified as data with a high-reuse potential. Given the increasing importance of data standards for eProcurement, a number of initiatives driven by the public sector, the industry and academia have been kick-started in recent years. Some have grown organically, while others are the result of standardisation work. The vocabularies and the semantics that they are introducing, the phases of public procurement that they are covering, and the technologies that they are using all differ. These differences hamper data interoperability and thus its reuse by them or by the wider public. This creates the need for a common data standard for publishing procurement data, hence allowing data from different sources to be easily accessed and linked, and consequently reused."@en ; - dcterms:issued "2023-07-11"^^xsd:date ; - dcterms:license ; - dcterms:rights "The Commission’s reuse policy is implemented by Commission Decision2011/833/EU of 12 December 2011 on the reuse of Commission documents (OJ L 330,14.12.2011, p. 39 – https://eur-lex.europa.eu/eli/dec/2011/833/oj). Unlessotherwise noted, the reuse of this document is authorised under the CreativeCommons Attribution 4.0 International (CC BY 4.0) licence (https://creativecommons.org/licenses/by/4.0/).This means that reuse is allowed, provided that appropriate credit is given and any changes are indicated." ; - dcterms:title "eProcurement Ontology - not"@en ; - bibo:status "Semantic Specification Realease" ; - vann:preferredNamespacePrefix "epo-not" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:seeAlso , - , - , - ; - owl:imports :not, - :not-restriction, - cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "3.1.0" ; - owl:versionIRI not-shape:not-shape-4.0.0 ; - owl:versionInfo "4.0.0" ; - skos:changeNote """This version is automatically generated from demo_ontology_module_CM.xml on - 2023-07-11""" . - diff --git a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf deleted file mode 100644 index a483a83..0000000 --- a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf +++ /dev/null @@ -1,1057 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - eProcurement Ontology Notice - core shapes - http://publications.europa.eu/resource/authority/corporate-body/PUBL - The eProcurement Ontology Notice core shapes provides the generic datashape specifications for the eProcurement Ontology Notice core. - This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01 - - - - - 2023-11-01 - 2021-06-01 - 4.0.0 - 3.1.0 - - http://data.europa.eu/a4g/data-shape#not-shape-3.1.0 - http://data.europa.eu/a4g/ontology# - epo - © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). - - - - - - Completion notice - - - An announcement of the end of a Procurement by a Buyer. - - - - - - - - - Contract modification notice - - - An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity. - - - - - - - - - Result notice - - - An announcement of the award or non-award of a Contract by a Buyer. (WG approval 27/03/2019) - - - - - - - - - Direct award prenotification notice - - - Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition. - - - - - - - - - Competition notice - - - An announcement of the launch of a Procurement Procedure by a Procuring Entity. WG approval 18/05/2018 - - - - - - - - - Planning notice - - - Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process. - - - - - - - - - P i n only notice - - - PriorInformationNotice - - - - - - - - - P i n profile notice - - - - - - - - - P i n time limit notice - - - - - - - - - P m c notice - - - - - - - - - C n social notice - - - - - - - - - C n standard notice - - - - - - - - - Design contest notice - - - - - - - - - P i n- c f c social notice - - - - - - - - - P i n- c f c standard notice - - - - - - - - - Q s notice - - - - - - - - - Subcontract notice - - - - - - - - - Voluntary ex- ante transparency notice - - - A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. Additional Information: For European Notices above the threshold "A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. <b>This definition is still to be worked on.</b> - - - - - - - - - C a n social notice - - - - - - - - - C a n standard notice - - - - - - - - - Design contest result notice - - - - - - - - - E forms notice - - - - - - - - - Notice1 - - - - - - - - - Notice2 - - - - - - - - - Notice3 - - - - - - - - - Notice4 - - - - - - - - - Notice5 - - - - - - - - - Notice6 - - - - - - - - - Notice7 - - - - - - - - - Notice8 - - - - - - - - - Notice9 - - - - - - - - - Notice10 - - - - - - - - - Notice11 - - - - - - - - - Notice12 - - - - - - - - - Notice13 - - - - - - - - - Notice14 - - - - - - - - - Notice15 - - - - - - - - - Notice16 - - - - - - - - - Notice17 - - - - - - - - - Notice18 - - - - - - - - - Notice19 - - - - - - - - - Notice20 - - - - - - - - - Notice21 - - - - - - - - - Notice22 - - - - - - - - - Notice23 - - - - - - - - - Notice24 - - - - - - - - - Notice25 - - - - - - - - - Notice26 - - - - - - - - - Notice27 - - - - - - - - - Notice28 - - - - - - - - - Notice29 - - - - - - - - - Notice30 - - - - - - - - - Notice31 - - - - - - - - - Notice32 - - - - - - - - - Notice33 - - - - - - - - - Notice34 - - - - - - - - - Notice35 - - - - - - - - - Notice36 - - - - - - - - - Notice37 - - - - - - - - - Notice38 - - - - - - - - - Notice39 - - - - - - - - - Notice40 - - - - - - - - - Standard forms notice - - - - - - - - - Concession award notice- d23 - - - - - - - - - Concession notice- d23 - - - - - - - - - Modification- d23 - - - - - - - - - Social and other specific services- d23 - - - - - - - - - V e a t- d23 - - - - - - - - - C a n standard- d24 - - - - - - - - - C n standard- d24 - - - - - - - - - Design contest- d24 - - - - - - - - - Design contest result- d24 - - - - - - - - - Modification- d24 - - - - - - - - - P i n- c f c standard- d24 - - - - - - - - - P i n- r t l- d24 - - - - - - - - - P i n only- d24 - - - - - - - - - P i n profile- d24 - - - - - - - - - Social and other specific services- d24 - - - public contracts - - - - - - - - - V e a t- d24 - - - - - - - - - C a n social- d25 - - - - - - - - - C a n social notice- d25 - - - Additional information: Social and other specific services – utilities - - - - - - - - - C n social- d25 - - - - - - - - - C n social notice- d25 - - - Additional information: Social and other specific services – utilities - - - - - - - - - Design contest- d25 - - - - - - - - - Design contest result- d25 - - - - - - - - - Modification- d25 - - - - - - - - - P i n- c f c social- d25 - - - - - - - - - P i n- c f c social notice- d25 - - - Additional information: Social and other specific services – utilities - - - - - - - - - P i n- r t l- d25 - - - - - - - - - P i n only- d25 - - - - - - - - - P i n profile- d25 - - - - - - - - - Q s- d25 - - - - - - - - - Q s notice- d25 - - - Additional information: Social and other specific services – utilities - - - - - - - - - V e a t- d25 - - - - - - - - - C a n defence- d81 - - - - - - - - - C n defence- d81 - - - - - - - - - P i n defence- d81 - - - - - - - - - P i n profile- d81 - - - - - - - - - Subcontract- d81 - - - - - - - - - V e a t- d81 - - - - - - for ReviewBody - - - What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist. - - - When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level. - - - should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level? - - - Preliminary Market Consultation This should be implemented in the future. - - - this is a buyer profile, not a PIN. - - - This value is NOT yet part of the notice-type controlled vocabulary. - - - where does this belong to? - - - where does this belong to? - - - This can be PIN or Concession award notice - - - This can be PIN (maybe CFC), CN or CAN. - - - What is the notice type here? - - - What is the notice type here? - - - What is the notice type here? - - diff --git a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl deleted file mode 100644 index 5d377af..0000000 --- a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl +++ /dev/null @@ -1,577 +0,0 @@ -@prefix : . -@prefix at-voc: . -@prefix cccev: . -@prefix dcterms: . -@prefix foaf: . -@prefix not-shape: . -@prefix org: . -@prefix owl: . -@prefix rdfs: . -@prefix sh: . -@prefix vann: . -@prefix xsd: . - -not-shape:epo-not-CANDefence-D81 a sh:NodeShape ; - rdfs:label "C a n defence- d81" ; - rdfs:comment "What is the notice type here?" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANDefence-D81 . - -not-shape:epo-not-CANSocial-D25 a sh:NodeShape ; - rdfs:label "C a n social- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANSocial-D25 . - -not-shape:epo-not-CANSocialNotice a sh:NodeShape ; - rdfs:label "C a n social notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANSocialNotice . - -not-shape:epo-not-CANSocialNotice-D25 a sh:NodeShape ; - rdfs:label "C a n social notice- d25" ; - rdfs:comment "Additional information: Social and other specific services – utilities" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANSocialNotice-D25 . - -not-shape:epo-not-CANStandard-D24 a sh:NodeShape ; - rdfs:label "C a n standard- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANStandard-D24 . - -not-shape:epo-not-CANStandardNotice a sh:NodeShape ; - rdfs:label "C a n standard notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CANStandardNotice . - -not-shape:epo-not-CNDefence-D81 a sh:NodeShape ; - rdfs:label "C n defence- d81" ; - rdfs:comment "What is the notice type here?" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNDefence-D81 . - -not-shape:epo-not-CNSocial-D25 a sh:NodeShape ; - rdfs:label "C n social- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNSocial-D25 . - -not-shape:epo-not-CNSocialNotice a sh:NodeShape ; - rdfs:label "C n social notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNSocialNotice . - -not-shape:epo-not-CNSocialNotice-D25 a sh:NodeShape ; - rdfs:label "C n social notice- d25" ; - rdfs:comment "Additional information: Social and other specific services – utilities" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNSocialNotice-D25 . - -not-shape:epo-not-CNStandard-D24 a sh:NodeShape ; - rdfs:label "C n standard- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNStandard-D24 . - -not-shape:epo-not-CNStandardNotice a sh:NodeShape ; - rdfs:label "C n standard notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CNStandardNotice . - -not-shape:epo-not-CompetitionNotice a sh:NodeShape ; - rdfs:label "Competition notice" ; - rdfs:comment "An announcement of the launch of a Procurement Procedure by a Procuring Entity. WG approval 18/05/2018" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CompetitionNotice . - -not-shape:epo-not-CompletionNotice a sh:NodeShape ; - rdfs:label "Completion notice" ; - rdfs:comment "An announcement of the end of a Procurement by a Buyer.", - "What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist." ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :CompletionNotice . - -not-shape:epo-not-CompletionNotice-epo-announcesRole sh:description "for ReviewBody" . - -not-shape:epo-not-ConcessionAwardNotice-D23 a sh:NodeShape ; - rdfs:label "Concession award notice- d23" ; - rdfs:comment "where does this belong to?" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :ConcessionAwardNotice-D23 . - -not-shape:epo-not-ConcessionNotice-D23 a sh:NodeShape ; - rdfs:label "Concession notice- d23" ; - rdfs:comment "where does this belong to?" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :ConcessionNotice-D23 . - -not-shape:epo-not-ContractModificationNotice a sh:NodeShape ; - rdfs:label "Contract modification notice" ; - rdfs:comment "An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity.", - "should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level?" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :ContractModificationNotice . - -not-shape:epo-not-DesignContest-D24 a sh:NodeShape ; - rdfs:label "Design contest- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContest-D24 . - -not-shape:epo-not-DesignContest-D25 a sh:NodeShape ; - rdfs:label "Design contest- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContest-D25 . - -not-shape:epo-not-DesignContestNotice a sh:NodeShape ; - rdfs:label "Design contest notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContestNotice . - -not-shape:epo-not-DesignContestResult-D24 a sh:NodeShape ; - rdfs:label "Design contest result- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContestResult-D24 . - -not-shape:epo-not-DesignContestResult-D25 a sh:NodeShape ; - rdfs:label "Design contest result- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContestResult-D25 . - -not-shape:epo-not-DesignContestResultNotice a sh:NodeShape ; - rdfs:label "Design contest result notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DesignContestResultNotice . - -not-shape:epo-not-DirectAwardPrenotificationNotice a sh:NodeShape ; - rdfs:label "Direct award prenotification notice" ; - rdfs:comment "Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition." ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :DirectAwardPrenotificationNotice . - -not-shape:epo-not-Modification-D23 a sh:NodeShape ; - rdfs:label "Modification- d23" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Modification-D23 . - -not-shape:epo-not-Modification-D24 a sh:NodeShape ; - rdfs:label "Modification- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Modification-D24 . - -not-shape:epo-not-Modification-D25 a sh:NodeShape ; - rdfs:label "Modification- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Modification-D25 . - -not-shape:epo-not-Notice1 a sh:NodeShape ; - rdfs:label "Notice1" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice1 . - -not-shape:epo-not-Notice10 a sh:NodeShape ; - rdfs:label "Notice10" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice10 . - -not-shape:epo-not-Notice11 a sh:NodeShape ; - rdfs:label "Notice11" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice11 . - -not-shape:epo-not-Notice12 a sh:NodeShape ; - rdfs:label "Notice12" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice12 . - -not-shape:epo-not-Notice13 a sh:NodeShape ; - rdfs:label "Notice13" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice13 . - -not-shape:epo-not-Notice14 a sh:NodeShape ; - rdfs:label "Notice14" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice14 . - -not-shape:epo-not-Notice15 a sh:NodeShape ; - rdfs:label "Notice15" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice15 . - -not-shape:epo-not-Notice16 a sh:NodeShape ; - rdfs:label "Notice16" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice16 . - -not-shape:epo-not-Notice17 a sh:NodeShape ; - rdfs:label "Notice17" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice17 . - -not-shape:epo-not-Notice18 a sh:NodeShape ; - rdfs:label "Notice18" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice18 . - -not-shape:epo-not-Notice19 a sh:NodeShape ; - rdfs:label "Notice19" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice19 . - -not-shape:epo-not-Notice2 a sh:NodeShape ; - rdfs:label "Notice2" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice2 . - -not-shape:epo-not-Notice20 a sh:NodeShape ; - rdfs:label "Notice20" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice20 . - -not-shape:epo-not-Notice21 a sh:NodeShape ; - rdfs:label "Notice21" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice21 . - -not-shape:epo-not-Notice22 a sh:NodeShape ; - rdfs:label "Notice22" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice22 . - -not-shape:epo-not-Notice23 a sh:NodeShape ; - rdfs:label "Notice23" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice23 . - -not-shape:epo-not-Notice24 a sh:NodeShape ; - rdfs:label "Notice24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice24 . - -not-shape:epo-not-Notice25 a sh:NodeShape ; - rdfs:label "Notice25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice25 . - -not-shape:epo-not-Notice26 a sh:NodeShape ; - rdfs:label "Notice26" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice26 . - -not-shape:epo-not-Notice27 a sh:NodeShape ; - rdfs:label "Notice27" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice27 . - -not-shape:epo-not-Notice28 a sh:NodeShape ; - rdfs:label "Notice28" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice28 . - -not-shape:epo-not-Notice29 a sh:NodeShape ; - rdfs:label "Notice29" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice29 . - -not-shape:epo-not-Notice3 a sh:NodeShape ; - rdfs:label "Notice3" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice3 . - -not-shape:epo-not-Notice30 a sh:NodeShape ; - rdfs:label "Notice30" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice30 . - -not-shape:epo-not-Notice31 a sh:NodeShape ; - rdfs:label "Notice31" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice31 . - -not-shape:epo-not-Notice32 a sh:NodeShape ; - rdfs:label "Notice32" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice32 . - -not-shape:epo-not-Notice33 a sh:NodeShape ; - rdfs:label "Notice33" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice33 . - -not-shape:epo-not-Notice34 a sh:NodeShape ; - rdfs:label "Notice34" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice34 . - -not-shape:epo-not-Notice35 a sh:NodeShape ; - rdfs:label "Notice35" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice35 . - -not-shape:epo-not-Notice36 a sh:NodeShape ; - rdfs:label "Notice36" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice36 . - -not-shape:epo-not-Notice37 a sh:NodeShape ; - rdfs:label "Notice37" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice37 . - -not-shape:epo-not-Notice38 a sh:NodeShape ; - rdfs:label "Notice38" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice38 . - -not-shape:epo-not-Notice39 a sh:NodeShape ; - rdfs:label "Notice39" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice39 . - -not-shape:epo-not-Notice4 a sh:NodeShape ; - rdfs:label "Notice4" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice4 . - -not-shape:epo-not-Notice40 a sh:NodeShape ; - rdfs:label "Notice40" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice40 . - -not-shape:epo-not-Notice5 a sh:NodeShape ; - rdfs:label "Notice5" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice5 . - -not-shape:epo-not-Notice6 a sh:NodeShape ; - rdfs:label "Notice6" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice6 . - -not-shape:epo-not-Notice7 a sh:NodeShape ; - rdfs:label "Notice7" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice7 . - -not-shape:epo-not-Notice8 a sh:NodeShape ; - rdfs:label "Notice8" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice8 . - -not-shape:epo-not-Notice9 a sh:NodeShape ; - rdfs:label "Notice9" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Notice9 . - -not-shape:epo-not-PIN-CFCSocial-D25 a sh:NodeShape ; - rdfs:label "P i n- c f c social- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCSocial-D25 . - -not-shape:epo-not-PIN-CFCSocialNotice a sh:NodeShape ; - rdfs:label "P i n- c f c social notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCSocialNotice . - -not-shape:epo-not-PIN-CFCSocialNotice-D25 a sh:NodeShape ; - rdfs:label "P i n- c f c social notice- d25" ; - rdfs:comment "Additional information: Social and other specific services – utilities" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCSocialNotice-D25 . - -not-shape:epo-not-PIN-CFCStandard-D24 a sh:NodeShape ; - rdfs:label "P i n- c f c standard- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCStandard-D24 . - -not-shape:epo-not-PIN-CFCStandardNotice a sh:NodeShape ; - rdfs:label "P i n- c f c standard notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-CFCStandardNotice . - -not-shape:epo-not-PIN-RTL-D24 a sh:NodeShape ; - rdfs:label "P i n- r t l- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-RTL-D24 . - -not-shape:epo-not-PIN-RTL-D25 a sh:NodeShape ; - rdfs:label "P i n- r t l- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PIN-RTL-D25 . - -not-shape:epo-not-PINDefence-D81 a sh:NodeShape ; - rdfs:label "P i n defence- d81" ; - rdfs:comment "What is the notice type here?" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINDefence-D81 . - -not-shape:epo-not-PINOnly-D24 a sh:NodeShape ; - rdfs:label "P i n only- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINOnly-D24 . - -not-shape:epo-not-PINOnly-D25 a sh:NodeShape ; - rdfs:label "P i n only- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINOnly-D25 . - -not-shape:epo-not-PINOnlyNotice a sh:NodeShape ; - rdfs:label "P i n only notice" ; - rdfs:comment "PriorInformationNotice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINOnlyNotice . - -not-shape:epo-not-PINProfile-D24 a sh:NodeShape ; - rdfs:label "P i n profile- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINProfile-D24 . - -not-shape:epo-not-PINProfile-D25 a sh:NodeShape ; - rdfs:label "P i n profile- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINProfile-D25 . - -not-shape:epo-not-PINProfile-D81 a sh:NodeShape ; - rdfs:label "P i n profile- d81" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINProfile-D81 . - -not-shape:epo-not-PINProfileNotice a sh:NodeShape ; - rdfs:label "P i n profile notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINProfileNotice . - -not-shape:epo-not-PINTimeLimitNotice a sh:NodeShape ; - rdfs:label "P i n time limit notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PINTimeLimitNotice . - -not-shape:epo-not-PMCNotice a sh:NodeShape ; - rdfs:label "P m c notice" ; - rdfs:comment "Preliminary Market Consultation This should be implemented in the future." ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PMCNotice . - -not-shape:epo-not-PlanningNotice a sh:NodeShape ; - rdfs:label "Planning notice" ; - rdfs:comment "Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process.", - "When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level." ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :PlanningNotice . - -not-shape:epo-not-QS-D25 a sh:NodeShape ; - rdfs:label "Q s- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :QS-D25 . - -not-shape:epo-not-QSNotice a sh:NodeShape ; - rdfs:label "Q s notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :QSNotice . - -not-shape:epo-not-QSNotice-D25 a sh:NodeShape ; - rdfs:label "Q s notice- d25" ; - rdfs:comment "Additional information: Social and other specific services – utilities" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :QSNotice-D25 . - -not-shape:epo-not-ResultNotice a sh:NodeShape ; - rdfs:label "Result notice" ; - rdfs:comment "An announcement of the award or non-award of a Contract by a Buyer. (WG approval 27/03/2019)" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :ResultNotice . - -not-shape:epo-not-SocialAndOtherSpecificServices-D23 a sh:NodeShape ; - rdfs:label "Social and other specific services- d23" ; - rdfs:comment "This can be PIN or Concession award notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :SocialAndOtherSpecificServices-D23 . - -not-shape:epo-not-SocialAndOtherSpecificServices-D24 a sh:NodeShape ; - rdfs:label "Social and other specific services- d24" ; - rdfs:comment "This can be PIN (maybe CFC), CN or CAN.", - "public contracts" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :SocialAndOtherSpecificServices-D24 . - -not-shape:epo-not-StandardFormsNotice a sh:NodeShape ; - rdfs:label "Standard forms notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :StandardFormsNotice . - -not-shape:epo-not-Subcontract-D81 a sh:NodeShape ; - rdfs:label "Subcontract- d81" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :Subcontract-D81 . - -not-shape:epo-not-SubcontractNotice a sh:NodeShape ; - rdfs:label "Subcontract notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :SubcontractNotice . - -not-shape:epo-not-VEAT-D23 a sh:NodeShape ; - rdfs:label "V e a t- d23" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VEAT-D23 . - -not-shape:epo-not-VEAT-D24 a sh:NodeShape ; - rdfs:label "V e a t- d24" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VEAT-D24 . - -not-shape:epo-not-VEAT-D25 a sh:NodeShape ; - rdfs:label "V e a t- d25" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VEAT-D25 . - -not-shape:epo-not-VEAT-D81 a sh:NodeShape ; - rdfs:label "V e a t- d81" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VEAT-D81 . - -not-shape:epo-not-VoluntaryEx-AnteTransparencyNotice a sh:NodeShape ; - rdfs:label "Voluntary ex- ante transparency notice" ; - rdfs:comment "A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. Additional Information: For European Notices above the threshold \"A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . \"Voluntary Ex-Ante Transparency Notice\" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. This definition is still to be worked on." ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :VoluntaryEx-AnteTransparencyNotice . - -not-shape:epo-not-eFormsNotice a sh:NodeShape ; - rdfs:label "E forms notice" ; - rdfs:isDefinedBy not-shape:not-shape ; - sh:targetClass :eFormsNotice . - -not-shape:pin-buyer rdfs:comment "this is a buyer profile, not a PIN." . - -not-shape:pmc rdfs:comment "This value is NOT yet part of the notice-type controlled vocabulary." . - -not-shape:not-shape a owl:Ontology ; - dcterms:created "2021-06-01"^^xsd:date ; - dcterms:description "The eProcurement Ontology Notice core shapes provides the generic datashape specifications for the eProcurement Ontology Notice core."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; - dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; - dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; - dcterms:title "eProcurement Ontology Notice - core shapes"@en ; - vann:preferredNamespacePrefix "epo" ; - vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment "This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01" ; - rdfs:seeAlso , - , - , - ; - owl:imports :not, - :not-restriction, - cccev:, - , - at-voc:, - dcterms:, - , - , - , - , - , - org:, - , - foaf:, - ; - owl:incompatibleWith "3.1.0" ; - owl:priorVersion "http://data.europa.eu/a4g/data-shape#not-shape-3.1.0" ; - owl:versionIRI not-shape:not-shape-4.0.0 ; - owl:versionInfo "4.0.0" . - diff --git a/implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml b/implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml index 242c999..2afb543 100644 --- a/implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml +++ b/implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml @@ -1,6 +1,6 @@ - + From a7454093bed2ce9406cc634fb543407bd43730e5 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 1 Nov 2023 11:51:18 +0000 Subject: [PATCH 15/21] Adding convention report and glossary files --- glossary/demo_ontology_CM_glossary.html | 6469 +++++++++++++++++ .../demo_ontology_module_CM_glossary.html | 692 ++ glossary/ontologies-combined_glossary.html | 6393 ++++++++++++++++ .../demo_ontology_CM_convention_report.html | 2 +- ..._ontology_module_CM_convention_report.html | 2 +- 5 files changed, 13556 insertions(+), 2 deletions(-) create mode 100644 glossary/demo_ontology_CM_glossary.html create mode 100644 glossary/demo_ontology_module_CM_glossary.html create mode 100644 glossary/ontologies-combined_glossary.html diff --git a/glossary/demo_ontology_CM_glossary.html b/glossary/demo_ontology_CM_glossary.html new file mode 100644 index 0000000..c59ea85 --- /dev/null +++ b/glossary/demo_ontology_CM_glossary.html @@ -0,0 +1,6469 @@ + + + + + + + + + + + + + + + + Model glossary + + +
+
+
+

Table of contents

+
+
+
+

Glossary

+

Class names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameDefinition
adms:IdentifierA character string to identify and distinguish uniquely, one instance of an object + in an identification scheme from all other objects in the same scheme together with + relevant supplementary information.
cccev:ConstraintLimitation applied to an Information Concept. + + Additional Information: + Constraints are Requirements in themselves, since they impose prerequisites which + influence the definition, use and/or Fulfilment of the Requirement. They represent + hard conditions such as minimum or maximum expressions which can be used to evaluate + pieces of information, the required age, income, involvement in activities, etc. An + example from the eProcurement domain is a threshold as the minimum turnover required + by the buying Organisation to select the Candidates. Note that CCCEV does not provide + any specific guidance on when which kind of Requirement should be used. Users of this + vocabulary should make decisions on this topic in their specific context.
cccev:CriterionCondition for evaluation or assessment. + + Additional Information: + In general, Criteria are used for comparison, filtering or Selection purposes. Criteria + usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need + to be met in order to pass the Requirements or to fulfil them to a certain degree + or quality. The concept of Criteria is broader than the concept of Constraint since + it covers more usages. The evaluation of the fulfilment is usually supported by the + provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology + defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria + or Award Criteria. A concrete example of a Criterion is 'participation in a criminal + organisation' which could also be considered as an Exclusion Ground Criterion in the + procurement domain or for requiring a public service.
cccev:EvidenceProof that a Requirement is met. + +
cccev:InformationConceptPiece of information that the Evidence provides or the Requirement needs.
cccev:RequirementCondition or prerequisite that is to be proven by Evidence. + + Additional Information: + Requirement is a generic class representing any type of prerequisite that may be desired, + needed or imposed as an obligation. CCCEV recommends to not use the Requirement class + directly, but rather a more semantically-enriched subclass such as Criterion, Information + Requirement or Constraint. Also note that the Requirement class is specified at a + more abstract level and is not to be used as the instantiation of a Requirement for + a specific Agent. + To illustrate the notion: the European Directive on services in the internal market + defines requirement as any obligation, prohibition, condition or limit provided for + in the laws, regulations or administrative provisions of the Member States or in consequence + of case-law, administrative practice, the rules of professional bodies, or the collective + rules of professional associations or other professional Organisations, adopted in + the exercise of their legal autonomy. + To stay consistent to how identification is realised in the eProcurement ontology, + we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification.
cpov:ContactPointInformation (e.g. e-mail address, telephone number) of a Person or department through + which the user can get in touch with. + + Additional information: + This class represents the contact information for a Public Service, Channel, Public + Organisation, etc. + The Contact Point could be a role, email address, telephone number, etc. + + WG approval 5/11/2019
cpov:PublicOrganisationAn Organisation that is defined as being part of the public sector by a legal framework + at any level. + + Additional information: + A body governed by public law: + - (a) established for the specific Purpose of meeting needs in the general interest + - (b) having legal personality; + - (c) financed, for the most part by the State, or regional or local authorities. + + + Examples of Public Organisations are municipality, international public body, ministry, + others. + + WG Approval 28/04/2020
cpv:PersonA individual human being who may be dead or alive, but not imaginary. +
cv:ChannelA medium through which Agents interact. + + Additional Information + Typical examples include online services, email, endpoint on eDelivery infrastructure, + phone, etc. + + Software solutions and electronic devices for communication and exchange of information + between Buyers and economic Operators. + Lots may use ad-hoc electronic means of communication that are not generally available + such as specific solutions for secure and dedicated communication or non-standard + eCatalogues. + + See also Directive recitals 53 to 56. + + WG approval 2023-02-14
dct:LocationAn identifiable geographic place or named place.
epo:AccessTermConditions and stipulations about where and how to access the Procurement Documents. + + WG Approval 09/03/2021 + +
epo:AcquiringCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of + the acquisition of supplies and/or services intended for other Buyers. + Additional Information: + In Public Procurement the Role of Acquiring Central Purchasing Body is carried out + by a Central Purchasing Body for other Contracting Authorities. + + WG approval 05/08/2021 +
epo:AcquiringPartyThe Role of an Agent that acts on the buying side of a Procurement Process. +
epo:AdHocChannelWeb page where tools and devices for electronic communication that are not generally + available can be downloaded free of charge. + + Additional Information: + + This corresponds in eForms to BT-724 Tool Atypical. + + + WG Acceptance 10/01/2023 +
epo:AgentInRoleRelative concept that ties an Agent to a part they play in a given Situational Context. + + Additional information: + The classification of roles is based is based on the degree of involvement into the + Procurement Process: + - Primary (Procurement) Pole is directly involved in the Procurement Process; + - Secondary (Procurement sub-) Role is secondary to the Procurement Process + - Tertiary (Related) Role is not involved in the Procurement Process.
epo:AuxiliaryPartyRole of an Agent who may be mentioned in the information exchanged during the Procurement + Process but who does not play an active part in it.
epo:AwardCriteriaSummary
epo:AwardCriterionCriterion that describes a Requirement that the Tender needs to resolve and on which + the Tender is evaluated and ranked. + + WG approval 05/11/2018
epo:AwardDecisionResolution of the Buyer as to the result of the Procurement Procedure. + + WG approval 14/11/2018
epo:AwarderA Role of an Agent that signs the Award Decision.
epo:AwardEvaluationTermConditions and stipulations defining particularities of the evaluation of Award Criteria.
epo:AwardingCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of + the award of Public Contracts or the conclusion of Framework Agreements for works, + supplies or services intended for other Buyers. + Additional Information: + In Public Procurement the Role of Awarding Central purchasing Body is carried out + by a Central Purchasing Body for other Contracting Authorities. + + WG approval 05/08/2021 +
epo:BudgetProviderA role of an agent whose Budget is used to pay for the Contract.
epo:BusinessA private law company registered in a national registry. + + WG Approval 28/04/2020 + +
epo:BuyerA Role of an Agent that awards a Contract and/or purchases items. + + Additional information: + In Public Procurement the Role of Buyer is carried out by the following types of Organisation: + Contracting Authority, Contracting Entity, a defense Contractor, an international + Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. + In Pre-Award, the Buyer generally awards the Contract, however future purchasers may + be foreseen. + In Post-Award the buyer generally refers to the purchaser of items.
epo:CandidateThe Role of an Agent that has sought an invitation or has been invited to take part + in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated + Procedure without prior publication, in a competitive dialogue or in an innovation + partnership. + + WG approval 30/05/2023
epo:CatalogueProviderA Role of an Agent compiling and supplying a Catalogue. + + Additional Information: + + The Catalogue Provider Role is usually played by the Agent that acts as a Seller, + or by another Agent that acts on behalf of the Seller. + + WG Approval 28/01/2021 +
epo:CatalogueReceiverA Role of an Agent processing a Catalogue. + + Additional Information: + The Catalogue Receiver may not only receive it but also validate it, process it, etc. + + The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or + by another Agent that acts on behalf of the Buyer. + + WG Approval 28/01/2021
epo:CentralPurchasingBodyRole of an Agent that provides centralised purchasing activities and, possibly, ancillary + purchasing activities for other Buyers. + + Additional Information: + In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting + Authority for other Contracting Authorities. + Contracting Authority procuring activities conducted on a permanent basis, in one + of the following forms:[...](b) the award of Public Contracts or the conclusion of + Framework Agreements for works, supplies or services intended for Contracting Authorities; + + WG approval 05/08/2021
epo:ConcessionContractA Contract between one or more Buyers and one or more Economic Operators giving the + right to the Economic Operators to exploit the rights foreseen in the Contract which + may include the receipt of Payments. + + WG Approval 24/05/2022
epo:ConcessionEstimate
epo:ContextSpecificDescriptionA description concerning a Procurement Object or a Notice in a specific Situation + Context. + + Additional Information: + The description has its own identity (+I) but is dependent (+D) on the concerned Entity. + + + We say that ContextSpecificDescription *concerns* an Entity. +
epo:ContextualProjectionProjection of an Entity and all of its properties that hold in a given Situation Context. + + + Additional Information: + The contextual projection does not have its own identity (-I), is dependent (+D) + on the described Entity, and is anti-rigid (~R) + + We say that ContextualProjection *describes* an Entity. + + Adaptation of ContextSlices pattern encoding a 4D view. + http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices
epo:ContractA voluntary, deliberate, and legally binding agreement between two or more competent + parties. + + Additional information: + This includes Concession Contracts. + + (WG approval 01/06/2018)
epo:ContractLotCompletionInformationInformation related to a given Lot at the end of the procurement.
epo:ContractModificationAn Announcement of the Modification Of a Contract/Concession during its Term by a + Buyer.
epo:ContractorThe Role of an Agent that has signed a Contract with a Buyer. + + WG approval 08/11/2022
epo:ContractSpecificTermGathering class for conditions and stipulations related to a contract in the Post-Award + Phase.
epo:ContractTermConditions and stipulations defining particularities of the Post Award Phase. + + (WG approval 23/11/2018) +
epo:DesignContestRegimeTermConditions and stipulations defining particularities of a Design Contest. + + WG approval: 04-02-2021
epo:DirectAwardTermConditions and stipulations defining particularities of the award of a Contract without + prior publication. + + Addtional Information: + + Direct award may refer to a previous Procedure and/or specific Lot(s). + + It may also refer to other justified situations whereby there is no previous Procedure. + + See Directive 2014/24/EU Article 32. + + WG Approval 22/11/2019 + + +
epo:DirectContract
epo:DocumentA set of interrelated Business Information representing the Business facts and associated + metadata. + The information may be conveyed in any language, medium or form, including textual, + numerical, graphic, cartographic, audio-visual forms, etc. + + WG Approval 23/05/2019 +
epo:DurationThe length of time in which a concept occurs.
epo:DynamicPurchaseSystemTechniqueA Technique that allows the selection of Candidates throughout the Procedure via the + Qualification Criteria, followed by individual Mini-Competitions for the Award of + Purchase Contracts. + + WG approval 23/05/2023
epo:DynamicPurchasingSystemAn electronic System that is set up by a Buyer which lists the Economic Operators + that satisfy the Qualification Criteria, which may later be put into competition via + a Mini-Competition in view of awarding a Purchase Contract. + + WG approval 23/05/2023 +
epo:EAuctionTechniqueA repetitive Technique in which new Prices, revised downwards, and/or new values concerning + certain elements of Tenders are bid on-line. + + Additional Information: + This corresponds in eForms to BT-767 Electronic Auction . + + WG approval 20/07/2018
epo:EconomicStandingSummary
epo:ElectronicSignature
epo:ElementChangeDescriptionInformation about a specific field to be changed with regard to a previous Notice.
epo:ElementConfidentialityDescriptionInformation about a specific field not intended for publication. + + Additional Information: + In the model, a field is identified by a combination of a class and a property on + that class. Therefore, these two references should be both provided. +
epo:ElementDescriptionDescription about a specific resource.
epo:ElementModificationDescriptionInformation about a specific field to be changed with regard to the Modification Of + a Contract.
epo:EmploymentInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for employment protection and working conditions.
epo:EnvironmentalProtectionInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for Environmental Protection.
epo:EstimateAn approximate calculation or a judgement of the value, number, Quantity or extent + of something.
epo:EvaluationTermConditions and stipulations defining particularities of the Tender evaluation. + + (WG approval 23/11/2018) + + +
epo:ExclusionGroundCriterion that describes a legal Requirement to be met by the Economic Operator to + be a Candidate in the Procurement. + + Additional Information: + This corresponds in eForms to BG-701 Exclusion Grounds. + + WG approval 31/10/2018
epo:ExclusionGroundsSummary
epo:ExpressionOfInterestDocument presenting an Economic Operator's Request to be considered for Procedures + covering a specific domain. + WG approval 13/04/2021
epo:FrameworkAgreementAn agreement between one or more Contracting Authorities and one or more Economic + Operators. + + Additional Information: + When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which + describes a Lot which specifies the both the Qualification and Award Criteria. + + WG approval 18/05/2021
epo:FrameworkAgreementTechniqueTechnique that establishes the terms governing Contracts to be awarded during a given + Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. + + WG approval 18/05/2021
epo:FrameworkAgreementTermConditions and stipulations defining particularities in a Framework Agreement.
epo:FundA financial resource used to support the Procurement. + + Additional Information: + + In the context of EU, Funds can be divided into programmes, actions and projects. + + Examples of EU funds are: the European Structural and Investment Funds, European Social + Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme + and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which + supports the eProcurement Ontology under sub-action 3). + + Funds may change between the lot and the contract, for example in the case of an emergency + crisis, a contract may be financed by a budget that was not foreseen in the call. + + WG Approved 14/05/2019 + + + + +
epo:GreenProcurementApproach whereby Buyers seek to procure with a reduced Environmental Impact. + + Additional Information: + + The approach may apply to the complete life cycle. The reduced Environmental Impact + is in comparison to goods, services and works with the same primary function that + would otherwise be procured. + + Tightly related are article 68 - Life-cycle costing and article 67 - most economically + advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf + An instance of the class GreenProcurement is represented in eForms with the code "env-imp" + defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf
epo:IndefiniteDuration
epo:InnovativeProcurementAn instance of the class InnovativeProcurement is represented in eForms with the code + "inn-pur" defined in the codelist Strategic-Procurement. + + Research (21/01/2020): + + Purchasing and early adoption of solutions which are not yet available on large scale + commercial basis. + + Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative + Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions + + Additional Information: + ‘innovation’ means the implementation of a new or significantly improved product, + service or process, including but not limited to production, building or construction + processes, a new marketing method, or a new organizational method in business practices, + workplace Organisation or external relations inter alia with the purpose of helping + to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable + and inclusive growth; + See: Directive 2014/24 + Articles: 2, 26 (3), 31, 67 (2.a) + + Question: + Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?
epo:JuryMember
epo:LeadBuyerA Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. + + + WG agreement: 2022-11-22
epo:LotA qualitative, quantitative or strategic subdivision of the goods, services or works + to be procured, allowing the award of one or more Contracts. + + WG approval 12/09/2018
epo:LotAwardDecisionResult concerning the Lot attributed by the Awarder.
epo:LotGroupCombination of several Lots to conduct comparative assessment of the Tenders. + + Additional Information: + + The comparative assessment may refer to the Selection Criteria, Award and Value that + apply to several Lots. + + Pending of discussion with eForms + + + + Member States may provide that, where more than one lot may be awarded to the same + tenderer, contracting authorities may award contracts combining several or all lots + where they have specified in the contract notice or in the invitation to confirm interest + that they reserve the possibility of doing so and indicate the lots or groups of lots + that may be combined.
epo:LotGroupAwardInformationAward information related to a given Group of Lots.
epo:LotSpecificTermGathering class for conditions and stipulations related to a Lot.
epo:MediatorA Role of an Agent that attempts to resolve a dispute between different Agents + and come to an agreement. + WG approval 20/04/2021
epo:MiniCompetitionA process where multiple winners or candidates of previous stages of a procedure bid + for a specific procurement. + + Additional Information: + It is typically used in framework agreements where the suppliers have already been + pre-selected, and the mini competition is used to determine which supplier is best + suited for a particular project or contract. + It is also used in a Dynamic Purchasing System where the suppliers come from a list + of Candidates. + + WG approval 30/05/2023
epo:MiniCompetitionAwardDecisionResult concerning the Mini-Competition attributed by the Awarder. +
epo:MonetaryValueA number of monetary units specified using a given unit of currency. + + Additional information: + In the pre-award phase of the procurement, all monetary values are considered to exclude + VAT based on the Directive 2014/24/EU. + + WG approval 13/04/2021 +
epo:MultipleStageProcedureTermConditions and stipulations defining particularities of Procedures carried out in + several steps + Additional Information: + Generally this refers to Procedures where selection is carried out to qualify Tenderers + who are then requested to submit the rest of their Tender for evaluation is Restricted + Procedure. + WG Approval 15/04/2021
epo:NonDisclosureAgreementTermConditions and stipulations
epo:NoticeDocument published by the Buyer about market opportunities and results. + + WG Approval 23/05/2019 +
epo:NoticeAwardInformationInformation about an Award Notice.
epo:NoticeChangeInformation about a corrigendum in a Notice.
epo:NoticeDescriptionDescriptions about the notice publishing, or providing evolutions of resources.
epo:OfferDocument providing the Monetary Value and the details to fulfill the Requirements + set out in the Procurement Documents or Request for Offer. + + Additional information: + A quotation is considered to be an Offer in the eProcurement Ontology. + + WG approval 09/02/2023
epo:OfferingPartyThe Role of an Agent that acts on the Economic Operator side during a Procurement + Process. + + Additional information: + As per the European Procurement Directives the notion of ‘Economic Operators’ should + be interpreted in a broad manner so as to include any Persons and/or Entities which + offer the execution of works, the supply of products or the provision of services + on the market, irrespective of the legal form under which they have chosen to operate. + Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited + companies, universities, public or private, and other forms of entities than natural + Persons should all fall within the notion of Economic Operator, whether or not they + are ‘Legal Persons’ in all circumstances.
epo:OfferIssuerThe Role of an Agent that distributes an Offer. + + WG approval 09/02/2023
epo:OfflineAccessProviderA Role of an Agent responsible for providing offline access to the Procurement Documents.
epo:OpeningTermConditions and stipulations defining particularities of the opening of Tenders. + Additional Information: + The opening of Tenders is the event when Tenders are made accessible for evaluation, + it is generally the same date and time for all Tenders. + WG Approval 15/04/2021
epo:OrganisationGroupAgreed collaboration of several Organisations. + Additional Information: + This concept has been created to fulfill the need to represent a grouping of Organisations + that is not necessarily registered i.e, consortia. + WG approval 15/04/2021
epo:OriginatorRequestDocument in which the Originator describes his needs. + + WG approval 09/02/2023
epo:OtherEntityEconomic Operator (who is not a Subcontractor) on which the Tenderer relies upon, + to meet Selection Criteria.
epo:ParticipationConditionCriterion that describes a Requirement to take part in a procurement. + + WG approval 30/05/2023
epo:ParticipationConditionsSummary
epo:ParticipationRequestProcessorA Role of an Agent responsible for processing Requests To Participate.
epo:ParticipationRequestReceiverA Role of an Agent responsible for receiving Requests To Participate.
epo:ParticipationRequestTermConditions and stipulations defining particularities of requesting participation in + a Procedure.
epo:PaymentExecutorA Role of an Agent responsible for executing the Payment.
epo:PeriodA time interval or a Duration. + + (WG approval 28/04/2020) +
epo:PlannedProcurementPartA subdivision of a Planned Procurement that may later become one or more Lots or a + self-standing Procedure. A Lot or a Procedure can also cover one or more parts of + the Planned Procurement. + + WG Approval 20/06/2019
epo:PrizeA reward given in a Contest. + WG approval: 15/04/2021
epo:ProcedureA legally defined set of administrative activities conducted to conclude one or more + Contracts. + + Additional Information + The Procedure is categorised in the law according to different rules determining whether + the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see + Procedure Type). + + WG Approval 20/08/2019 +
epo:ProcedureSpecificTermGathering class for conditions and stipulations related to a Procedure.
epo:ProcedureTermConditions and stipulations defining particularities of the Procedure. + + (WG approval 23/11/2018)
epo:ProcessPlanningTermConditions and stipulations defining particularities of the unfolding of the Procurement + Process.
epo:ProcurementCriteriaSummaryWG approval 24/01/2023
epo:ProcurementCriterionA criterion specific to Procurement. + + Additional Information: + + This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award + Criterion. Each of these Criteria can contain subcriteria (Criterion class). + + WG Approval 23/04/2020
epo:ProcurementDocumentDocument produced or referred to by the Buyer to describe or determine elements of + the Procurement. + + Additional information: + + Procurement Documents are to be accessible since the date of publication of the Contract + Notice or the prior information Notice when used as a call for competition. + + Examples of Procurement Documents are Technical Specifications, the Descriptive Document, + proposed conditions of Contract, formats for the presentation of Documents by Candidates + and Tenderers, information on generally applicable obligations. + + Other Documents related to the Procedure such as Notices are not considered to be + Procurement Documents. + + WG Approval 23/05/2019 17:08:30
epo:ProcurementElementGathering class for critical/central elements in the Procurement Process. + + TODO: add definition + Additional information: + Alias: ProcurementComponent
epo:ProcurementObjectThe whole or a division of goods, services or works to be procured. + + Additional Information: + Anything that can specify the procurement content (i.e. goods, services, work) is + a Procurement Object. + In a sense, such an "object" can constitute the "object of a Contract". + To test whether something is a Procedure Object check if it can have a Purpose and/or + CPV classification (<i>The CPV establishes a single classification system for public + procurement aimed at standardising the references used by Contracting Authorities + and entities to describe the subject of Procurement Contracts.</i>). + + Note: + Procedure, seems to be an exception from this rule. Because it is a conflated term: + it carries process properties and "purpose" properties.
epo:ProcurementProcedureInformationProviderA Role of an Agent responsible for providing additional information about the Procurement + Procedure.
epo:ProcurementProcessInformationInformation about the temporal unfolding or succession of Procurement Objects.
epo:ProcurementServiceProviderRole of a public or private body which offers ancillary purchasing activities on the + market. + + Additional information + + "Ancillary Purchasing Activities" means activities consisting in the provision of + support to purchasing activities, in particular in the following forms: + (a) technical infrastructure enabling Contracting Authorities to award Public Contracts + or to conclude Framework Agreements for works, supplies or services; + (b) advice on the conduct or design of public Procurement Procedures; + (c) preparation and management of Procurement Procedures on behalf and for the account + of the Contracting Authority concerned; + + Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. + + This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity + managing the Procurement, which may be different from the Buyer who is paying / using + the items being procured'. + + WG Approval 24/03/2020 +
epo:ProfessionalSuitabilitySummary
epo:ProjectA collaborative enterprise that is carefully planned to achieve a particular aim.
epo:PublicationProvisionInformation about fields not intended for publication. + + + Additional Information: + The non-published information may become available at a later date and may differ + from one element to another within a given Document. + + Examples of fields that may not be immediately published are Winner, Tender and Procedure + Lot Result, etc., e.g. for security reasons. + + WG Approval 16/05/2019 + + + + +
epo:PurchaseContractA Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract.
epo:PurposeThe description of the objectives related to a Procurement. + + Additional information: + + The description of the objectives includes the Subject Matter and Quantities. + + + The quantification of the objectives related to a procurement. + + To be re-reviewed by the WG the soonest. + + (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) + + The old definition read as follows: + + The description of the objectives related to a procurement. + + (WG approval 05/12/2018) +
epo:QualificationCriteriaSummary
epo:QualificationCriterionCriterion used in the first stage of procurement. + + WG approval 30/05/2023
epo:QuantityA counted number of non-monetary units possibly including fractions. +
epo:RequestForClarificationA demand for elucidation of received information. + Additional Information: + Requests for clarification are usually used by Buyers during the process of award + or evaluation to understand specific aspects of the Tender without altering the Tender. + WG approval 20/04/2021
epo:RequestForParticipationApplication of an Economic Operator to be included in a Procurement Procedure. + WG approval: 20/04/2021
epo:ReviewDecisionInformation about Review Decisions.
epo:ReviewerRole of an Agent who investigates the overall correctness of a Procurement Procedure, + producing a related report. + Additional Information: + Any Organisation or Person may request a review of a Procurement Procedure. + WG approval: 20/04/2021
epo:ReviewIrregularitySummaryInformation about the number and type of requests the Buyer received to review any + of its decisions (e.g. the Technical Specifications, Award Decision). + + Additional information: + This class corresponds in eForms to BG-613 Buyer Review Requests. + + +
epo:ReviewObjectInformation about a Review Request or a Review Decision. + + Additional information: + This class corresponds to the BG-714 Review in eForms. + +
epo:ReviewProcedureInformationProviderA Role of an Agent who is providing more information on the time limits for review + Procedures.
epo:ReviewRequestInformation about requests to review procedures.
epo:ReviewRequesterRole of an Agent who requests the review of a (Procurement) Procedure. + + WG Approval 23/10/2021
epo:ReviewRequestSummarySummary information about the requests the Buyer received to review any of its decisions + (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive + 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the + requests. + + Additional information: + This class corresponds in eForms to BG-612 Buyer Review Summary.
epo:SecurityClearanceTermConditions and stipulations about the status requested of individuals allowing them + access to classified information (state or organisational secrets) or to restricted + areas, after completion of a thorough background check. + + Additional information: + This corresponds in eForms to BT-578, BT-78, BT-732 . + + WG approval 20/06/2023 +
epo:SelectedCandidateListRecord of Candidates admitted to take part in award phases of procurements. + + WG approval 30/05/2023
epo:SelectionCriteriaSummary
epo:SelectionCriterionCriterion that describes a capacity Requirement that the Economic Operator needs to + fulfill to participate in the procurement. + + Additional Information: + Selection criteria may relate to: + (a) suitability to pursue the professional activity; + (b) economic and financial standing; + (c) technical and professional ability + + WG approval 31/10/2018
epo:SelectionEvaluationTermConditions and stipulations defining particularities of the evaluation of Selection + Criteria.
epo:SocialProcurementAn instance of the class SocialProcurement is represented in eForms with the code + "soc-obj" defined in the codelist Strategic-Procurement. + + + Research (21/01/2020): + Socially Responsible Public Procurement (SRPP): + + ‘SRPP’ means Procurement Operations that take into account one or more of the following + social considerations: employment opportunities, decent work, compliance with social + and labour rights, social inclusion (including persons with disabilities), equal opportunities, + accessibility design for all, taking account of sustainability criteria, including + ethical trade issues and wider voluntary compliance with corporate social responsibility + (CSR), while observing the principles enshrined in the Treaty for the European Union + (TFEU) and the Procurement Directives. + Source: Buying Social - A Guide to Taking Account of Social Considerations in Public + Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en + See Article 18 and Annex X Directive 2014/24.
epo:SpecificDuration
epo:StatisticalInformationStatistical data on the Procedure and the Lot. + + Additional Information + + At the present time Procurement Procedures are not fully electronic. At a later date, + information on the Tenders received could be inferred by the data in the eProcurement + System. + Therefore this class is temporal and should cease to exist in fully electronic Procurement. + The need for its presence responds also to the alignment with the Regulation (EU) + 2019/1780 (eForms). + + Attention will have to be paid in the future to possible inconsistencies derived from + data placed in other classes and data held in the Statistical Information class; e.g. + the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender + indicator, which in case of being false, may enter in contradiction with the highest + or lowest Tender value for that very same inadmissible Tender. + + WG Approval 12/12/2019 +
epo:StrategicProcurementPublic Procurement that contributes to achieving pressing policy goals. + + Additional Information: + Specific strategic goals could be, for example, Environmental Protection, innovation, + job creation and the development of small and medium enterprises. + + This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given + by the choices in BT-06 Strategic Procurement. + + Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph + on "background information". + + WG Approval 10/03/2020
epo:SubcontractingEstimateInformation on the approximation of the foreseen Subcontracting.
epo:SubcontractorA Role of an Agent that has an agreement to perform part or all of the obligations + of another Agents's Contract. + Additional information + For some Procedures, the Subcontractor signs as well the Contract between the Buyer + and the Contractor. + + At tendering time, entities relied upon by the Economic Operators can be Subcontractors + or not. + + When modelling ESPD we well analyze whether we need or not a Role named "relied upon". + + WG approval 05/08/2021 +
epo:SubcontractTermA concept to describe the main information regarding the share of parts of the Contract + to third parties.
epo:SubmissionStatisticalInformationStatistical information about submissions on a given competition, either at Lot level + or Mini-Competition level. + + WG approval 30/05/2023
epo:SubmissionTermConditions and stipulations defining particularities of submitting Documents to the + Buyer. + + Additional Information: + These Documents can be Tenders, Request To Participate and expressions of interest. + + WG Approval 14/07/2020
epo:SystemSoftware application used for performing Procurement activities. + + WG Approval 28/04/2020 + +
epo:TaxInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for taxes.
epo:TechnicalAbilitySummary
epo:TechniqueMethod used for conducting Procurement Procedures. + + Addtional information: + This corresponds in eForms to BG-706 Techniques. + + Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction + can be carried out in a Framework Agreement or DPS). + + WG Approval 19/09/2019 +
epo:TenderInformation submitted by the Economic Operator to specify its Offer regarding a specific + Lot, in response to the call for Tender. + + (WG approval 03/05/2022) + + +
epo:TenderAwardOutcomeResult concerning the Tender attributed by the Awarder.
epo:TendererA Role of an Agent that has submitted a Tender. + + Additional Information: + A Tenderer is an Economic Operator or group of Economic Operators that has submitted + a Tender. + WG approval 05/08/2021
epo:TenderGroupSpecific Offer in response to a Lot Group. + + Additional Information: + This class is generally used to provide the Monetary Value in response to a Lot Group. +
epo:TenderProcessorA Role of an Agent responsible for processing Tenders.
epo:TenderReceiverA Role of an Agent responsible for receiving Tenders.
epo:TermA governing condition or stipulation.
epo:WinnerA Role of an Agent to whom a Lot is awarded. + WG approval 05/08/2021 (revised 26/10/2021)
foaf:AgentA Person, an Organisation, or a System that acts in Procurement or have the power + to act in Procurement. + + WG Approval 28/04/2020
foaf:PersonThe Person class represents people. Something is a Person if it is a Person. We don't + nitpick about whether they're alive, dead, real, or imaginary. The Person class is + a sub-class of the Agent class, since all people are considered 'Agents' in FOAF.
locn:AddressThe particulars of the place where a Person or an Organisation is located. + + WG Approval 28/04/2020 + + Additional Information: + An "Address Representation" as conceptually defined by the INSPIRE Address Representation + data type: "Representation of an address spatial object for use in external application + schemas that need to include the basic, address information in a readable way.". + + + The representation of Addresses varies widely from one country's postal System to + another. Even within countries, there are almost always examples of Addresses that + do not conform to the stated national standard. At the time of publication, work is + progressing on ISO 19160-1 that defines a method through which different Addresses + can be converted from one conceptual model to another. + + + This specification was heavily based on the INSPIRE Address Representation data type. + It is noteworthy that if an Address is provided using the detailed breakdown suggested + by the properties for this class, then it will be INSPIRE-conformant. To this very + granular set of properties, we add two further properties: + + - full address (the complete address as a formatted string) + - addressID (a unique identifier for the address) + The first of these allows publishers to simply provide the complete Address as one + string, with or without formatting. This is analogous to vCard's label property. + + The addressID is part of the INSPIRE guidelines and provides a hook that can be used + to link the Address to an alternative representation, such as vCard or OASIS xAL.
locn:GeometryThe Geometry class provides the means to identify a Location as a point, line, polygon, + etc. expressed using coordinates in some coordinate reference System. + + Additional Information: + This class defines the notion of "Geometry" at the conceptual level, and it shall + be encoded by using different formats (see usage note of the locn:geometry property). + We also refer to the Examples section of this specification for a number of different + Geometry examples expressed in different formats.
org:OrganizationA collection of people organized together into a community or other social, commercial + or political structure. The group has some common purpose or reason for existence + which goes beyond the set of people belonging to it and can act as an Agent. Organisations + are often decomposable into hierarchical structures. + + (WG approval 23/11/2018). +
owl:ThingAny individual in the domain of discourse is a Thing. + + + Additional Information: + + The most basic concepts in a domain should correspond to classes that are the roots + of various taxonomic trees. Every individual in the OWL world is a member of the class + owl:Thing.
+

Attributes (datatype properties) names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameAttribute nameDefinitionData type / cardinality
adms:Identifieradms:schemaAgencyThe name of the agency that issued the identifier.rdf:PlainLiteral [0..*]
cccev:Criterioncccev:biasParameter used to adjust the evaluation of the Criterion. + + Additional Information: + The bias parameter tries to correct a systematic error. For example in procurement, + a home bias corresponds to the "presence of local preferences distorting international + specialisation and resource allocation". When quantified, this systematic error can + be removed.xsd:decimal [0..1]
cccev:Criterioncccev:weightRelative importance of the Criterion. + + Additional Information: + The weight must be between 0 and 1. Usually, all Criteria can be integrated within + a weighted sum equal to 1.xsd:decimal [0..1]
cccev:Criterioncccev:weightingConsiderationDescriptionExplanation of how the weighting of a Criterion is to be used. + + Additional Information: + This description gives the view of the creator of the Criterion weights on how to + interpret and use them during the evaluation process.rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:emailThe email of the Organisation. + + rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:telephoneA telephone number through which the Contact Point can be contacted. + rdf:PlainLiteral [0..*]
cpv:Personcv:birthDateThe point in time on which the Person was born.xsd:date [0..1]
locn:Geometrycv:coordinatesThe coordinate list.rdf:PlainLiteral [0..*]
locn:Geometrycv:latitudeThe latitude.rdf:PlainLiteral [0..*]
locn:Geometrycv:longitudeThe longitude.rdf:PlainLiteral [0..*]
cpv:Persondct:alternativeAny name by which an individual is known other than their full name. + WG 09/11/2021rdf:langString [0..*]
epo:ProcurementElement
epo:System
epo:AgentInRole
cpov:ContactPoint
cv:Channel
epo:NonDisclosureAgreementTerm
epo:SecurityClearanceTerm
epo:SubcontractTerm
cccev:InformationConcept
cccev:Requirement
epo:Technique
epo:SubcontractingEstimate
epo:ElectronicSignature
epo:Document
epo:Fund
dct:descriptionAn account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 + An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 + An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [1..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:Documentdct:issuedDate of formal issuance of the resource. + + Additional information: + This is generally used for modules other than eNotice. + The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or + xsd:timeStamp or any other variant of time expression. This extension needs to be + encoded/automated in the ontology and in the application profile. + Why is it like this? Because UML cannot handle such expressions of disjunctive property + ranges. + + WG approval 26/01/2023xsd:dateTime [0..1]
epo:ProcurementElement
foaf:Agent
epo:AgentInRole
epo:Document
epo:Fund
dct:titleA name given to the resource. + + WG approval 30/05/2023 A name given to the resource. + + WG approval 30/05/2023 A name given to the resource. + + WG approval 30/05/2023 + A name given to the resource. + + WG approval 30/05/2023 + + A name given to the resource. + + WG approval 30/05/2023 + rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:describesMinimumLevelOfStandardsrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesObjectiveParticipationRulesrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionRelevantLawrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesVerificationMethodrdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasAbnormallyLowTendersTenders received that were found irregular and non-acceptable due to an abnormally + low price or cost. + + Additional Information + The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. + + WG Approval 28/07/2020 + + xsd:integer [0..1]
epo:Procedureepo:hasAcceleratedProcedureJustificationThe reasons why the procedure is accelerated. + + Additional Information: + A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake + relief. + + WG Approval 09/06/2020 + + rdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasAccessibilityDateThe date at which unpublished data shall be published. + + WG Approval 11/06/2020xsd:date [0..1]
epo:Documentepo:hasAccessURLLocation where the resource can be accessed. + + WG approval 07/04/2022xsd:anyURI [0..*]
epo:Buyerepo:hasActivityDescriptionIn the ePO ontology a taxonomy with all activities, based on different classifications + (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively + to complement the definition attached to the MainActivityCode. + + However, in eForms there is the code "other" to cover undefined activities. For mapping + to this eForms feature one could also use this property. + rdf:PlainLiteral [0..*]
epo:ProcurementObject
epo:Notice
epo:ElementChangeDescription
epo:hasAdditionalInformationSupplementary data about the instance of the concept. + + WG Approval 15/10/2019 Supplementary data about the instance of the concept. + + WG Approval 15/10/2019 Supplementary data about the instance of the concept. + + WG Approval 15/10/2019 + rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
epo:AccessTermepo:hasAdditionalInformationDeadlineThe time limit for requesting further information. + + Additional information: + + This is generally used to indicate the deadline for Economic Operators to request + further information of the procedure before the submission deadline. + + This corresponds in eForms to BT-13 Additional Information Deadline. + + WG Approval 09/06/2020 + xsd:dateTime [0..1]
epo:AwardDecisionepo:hasAdditionalNonAwardJustificationFurther justification for the non award . + + Additional information: + This is generally used when the non award reason code is set to "Other". + + WG: 18/01/2022rdf:PlainLiteral [0..1]
cv:Channelepo:hasAddressURLxsd:anyURI [0..1]
foaf:Agentepo:hasAliasAcronym or alternative name of the Agent. + WG Approval 25/03/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasAmountValueThe numeric value of the amount, including decimals.xsd:decimal [1..1]
epo:AwardEvaluationTermepo:hasAwardCriteriaEvaluationFormulaThe mathematical equation or any other description used for complicated weighing of + criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing + cannot be expressed per criterion. + + Additional Information: + This corresponds in eForms to BT-543 Award Criteria Complicated.rdf:PlainLiteral [0..*]
epo:AwardEvaluationTermepo:hasAwardCriteriaOrderJustificationThe justification for only indicating the award criteria's order of importance, not + their weighing. + + Additional Information: + This corresponds in eForms to BT-733 Award Criteria Order Justification.rdf:PlainLiteral [0..1]
epo:AwardCriterionepo:hasAwardCriteriaStatedInProcurementDocumentsxsd:boolean [1..1]
epo:ProcessPlanningTermepo:hasAwardDateScheduledPlanned date for the award decision. + WG Approval 09/11/2021xsd:date [0..1]
epo:AwardDecisionepo:hasAwardDecisionDateThe official date of the award decision. + + Additional Information: + This corresponds in eForms to BT-1451 Winner Decision Date. + + WG Approval 09/01/2020 + xsd:dateTime [0..1]
epo:TenderAwardOutcomeepo:hasAwardRankThe position of the tender (i.e. whether the tender ended up first, second, third, + etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) + or an innovation partnership. + + Additional Information: + This corresponds in eForms to BT-171 Tender Rank. + xsd:integer [0..1]
epo:Periodepo:hasBeginningThe date and time on which this period begins.xsd:dateTime [0..1]
epo:FrameworkAgreementTermepo:hasBuyerCategoryDescriptionA classification of buyers participating in a framework agreement. + + Additional Information: + Buyers that can use the Framework Agreement not mentioned by name. + + For example, the classification "all hospitals in the Tuscany region" is used instead + of naming each individual buyer. + + This corresponds in eForms to BT-111 Framework Buyer Categories. + + WG Approval 2019-05-06rdf:PlainLiteral [0..*]
org:Organizationepo:hasBuyerLegalTypeDescriptionSelf-explanatory text about the Buyer Legal Type. + + Additional information: + This field is used when the Buyer Legal Type is not available in the controlled list + at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard + Forms. It shall be deprecated in the future. + + WG Approval 06/09/2022rdf:PlainLiteral [0..1]
epo:Buyerepo:hasBuyerProfileWebsite address where the buyer publishes information on its procurement procedures + and general information. + + Additional information: + This corresponds in the eForms to BT-508 Buyer Profile URL. + + WG approval 04/05/2018 + xsd:anyURI [0..1]
epo:ConcessionEstimateepo:hasCalculationMethodFormula for obtaining values. + + Additional Information: + The possible values are monetary values, ranking scores, criterion weighting. + + WG Approval 25/05/2018rdf:PlainLiteral [0..1]
epo:ElementChangeDescriptionepo:hasChangeDescriptionExplanatory text about the instance of the concept. + + WG Approval 30/09/2019rdf:PlainLiteral [0..*]
epo:ElementChangeDescriptionepo:hasChangeReasonDescriptionExplanatory text about why the element is altered. + + Additional information: + This corresponds in eForms to BT-762 Change Reason Description.rdf:PlainLiteral [0..*]
epo:GreenProcurementepo:hasCleanVehiclesThe number of all clean vehicles that have either been purchased, leased, rented, + hired-purchased or their use has been contractually committed to for the provision + of a purchased service. + + Additional Information + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:QualificationCriteriaSummaryepo:hasConditionVerificationMethodrdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasConfidentialityJustificationA narrative explanation of why data is not published. + + Additional Information: + This element is generally used when the non-publication-justification code chosen + is "other". + + WG Approval 09/11/2021 + rdf:PlainLiteral [0..1]
cpov:ContactPointepo:hasContactNameA short text by which a contact is known or referred to. + + WG Approval: 27/01/2022rdf:PlainLiteral [0..1]
epo:Contractepo:hasContractConclusionDateThe date the contract was signed by the last signatory party. + + <u>Additional Information:</u> + In exceptional cases contracts may be concluded without signature and therefore another + date may be used. The date of contract conclusion is always later than the end of + any standstill period. + This concept is not to be confused with the date of completion/end of the contract. + + This corresponds in eForms to BT-145 Contract Conclusion Date. + + WG Approval 09/01/2020xsd:date [0..1]
epo:ProcedureTermepo:hasCrossBorderLawThe applicable law when buyers from different countries procure together within one + procurement procedure. + + Additional Information: + This corresponds in eForms to BT-09 Cross Border Law.rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyIDIdentifier of the agency that maintains the currency code list used. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyNameName of the agency that maintains the currency code list used. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListIDConcept scheme URI used for the currency code list. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:SecurityClearanceTermepo:hasDeadlineThe deadline by which the security clearance must be submitted to the buyer. + + WG Approval 12/09/2019 + + xsd:dateTime [0..1]
epo:ReviewDecisionepo:hasDecisionDateThe date of the review decision. + + Additional information: + This attribute corresponds to the BT-787 Review Date in eForms. + xsd:date [0..1]
epo:Documentepo:hasDispatchDateDate of transmission of a record to an organisation. + + WG Approval 12/05/2020xsd:date [0..1]
epo:FrameworkAgreementTermepo:hasDurationExtensionJustificationThe explanation of the reason why the framework agreement has an extended duration. + + Additional Information: + This corresponds in eForms to BT-109 Framework Duration Justification. + The justification for exceptional cases when the duration of the framework agreement + exceeds the legal limits. + + Four years in the case of the general procurement Directive, seven years in the case + of the defence Directive, and eight years in the case of the sectoral Directive. + + WG Approval 26/09/2019rdf:PlainLiteral [0..1]
epo:SubmissionTermepo:hasEAuctionURLThe internet address of the electronic auction. + + Additional Information: + + This corresponds in eForms to BT-123 Electronic Auction URL.xsd:anyURI [0..1]
epo:SubmissionStatisticalInformationepo:hasEEAReceivedTendersThe amount of tenders received from economic operators in other EEA countries other + than the country of the buyer. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:Noticeepo:hasEFormsSubtypexsd:integer [0..1]
epo:ContractTermepo:hasEInvoicingElectronic means will be used for invoicing in the post-award process. + + Additional Information: + This attribute is used for standard form mappings. + + WG Approval 12/09/2019 + xsd:boolean [0..1]
epo:Tenderepo:hasElectronicSubmissionTransmission of tenders is possible by electronic means of communication. xsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasElectronicTendersElectronic Tender Lots received. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:ReviewObject
epo:ElementChangeDescription
epo:ElementModificationDescription
epo:hasElementReferenceReference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. Reference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. Reference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. + xsd:anyURI [0..*]
xsd:anyURI [1..1]
xsd:anyURI [0..1]
epo:Periodepo:hasEndThe date and time at which this period ends.xsd:dateTime [0..1]
epo:Contractepo:hasEntryIntoForceDateThe date on which the contract enters into force. + + Additional information: + + This is generally the date on which the fulfillment of the contract begins. + + This corresponds in eForms to + + WG approval 05/11/2019xsd:date [0..1]
epo:ContractTermepo:hasEOrderingElectronic means will be used for requesting and purchasing in the post-award process. + + WG Approval 12/09/2019 + + xsd:boolean [0..1]
epo:ContractTermepo:hasEPaymentElectronic means must be used for paying. + WG Approval 09/11/2021 + xsd:boolean [0..1]
epo:Noticeepo:hasESenderDispatchDateThe date and time the notice was transmitted electronically by the eSender to the + Publications Office of the European Union. + + Additional Information: + Typically, eSenders include national Official Journals, Buyers sending a large number + of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement + software developers. + + WG approval 20/06/2023xsd:dateTime [0..1]
epo:ProcessPlanningTermepo:hasEstimatedContractNoticePublicationDateForeseen date for publication of Contract Notice. + + Additional information: + This corresponds in eForms BT-127 Future Notice. + + xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToExpressInterestDateThe estimated date of dispatch of the invitations to confirm interest. + + Additional Information: + This corresponds in eForms to BT-631 Dispatch Invitation Interest.xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToTenderDateThe estimated date of dispatch of the invitations to submit tenders in two (or more) + stage procedures. + + Additional Information: + This corresponds in eForms to BT-130 Dispatch Invitation Tender. + + WG Approval 01/10/2019xsd:date [0..1]
epo:SubcontractingEstimateepo:hasEstimatedPercentageThe estimated proportion foreseen to be subcontracted. + + WG Approval 07/01/2020xsd:decimal [0..1]
epo:ProcessPlanningTermepo:hasEstimatedTenderInvitationDateThe planned date for the dispatch of the invitations to submit tenders. + WG Approval 09/11/2021xsd:date [0..1]
epo:SubmissionStatisticalInformationepo:hasEstimatedTotalSubcontractsThe estimated amount of work to be subcontracted in the contract resulting from the + lot. + WG Approval 09/11/2021xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasEUReceivedTendersThe amount of tenders received from economic operators in other EU countries other + than the country of the buyer.xsd:integer [0..1]
cpov:ContactPointepo:hasFaxThe fax number used to reach a person or an organisation.rdf:PlainLiteral [0..*]
epo:AwardCriterionepo:hasFixedValueThis corresponds in the eForms to BT-541 Award Criterion Number in association with + BT-5422 Award Criterion Number Fixed.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractAny subsequent service contract will be awarded to the winner or, in the case of a + design contest, winners. + + WG Approval 29/08/2019 xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractInformationFurther information about follow-up contracts, prizes and payments (for example non-monetary + prizes, payments given for participation). + + WG Approval 03/09/2019rdf:PlainLiteral [0..*]
epo:Noticeepo:hasFormNumberxsd:integer [0..1]
epo:ProcurementCriterionepo:hasFormulaThe mathematical equation or any other description used for complicated weighing of + criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing + cannot be expressed per criterion. + + Additional Information: + This corresponds in eForms to BT-543.rdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasGroupLotEvaluationMethodDescription of how lots and groups of lots are evaluated against one another in the + procedure. + + + + rdf:PlainLiteral [0..*]
epo:OrganisationGroupepo:hasGroupTypeForm of collaboration agreement between organisations. + + Additional Information: + This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also + be used for Organisation Groups. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasGuaranteeDescriptionInformation on the financial commitment required from the economic operator. + + Additional Information: + 1. This information may include the amount and the way of delivering of the guarantee + 2. The financial commitment may be retained by the buyer in the case the tenderer + withdraws the submitted information (i.e. tender, expression of interest and request + for participation, but not request for clarifications) before the award of the contract + or does not sign the contract. + 3. Usual modalities are bonds, cheques, loans, other. + + WG Approval 21/07/20 + rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasInadmissibleTendersTenders received that cannot be awarded due to non-compliance to procurement document + requirements or having an abnormally low price or cost. + + <u>Additional Information: </u> + Non-compliance with a Procurement Document requirements include exclusion grounds, + selection criteria and submission deadline, etc. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:ElementConfidentialityDescriptionepo:hasInstanceReferenceThe URI of a given class that is being referred to.xsd:anyURI [1..1]
org:Organization
cpov:ContactPoint
epo:hasInternetAddressThe main web page used by the instance of the concept. + + WG Approval 01/06/2023 + The main web page used by the instance of the concept. + + WG Approval 01/06/2023 + + xsd:anyURI [0..*]
xsd:anyURI [0..1]
epo:DirectAwardTermepo:hasJustificationAn explanation about the reasons for using the concept. + WG Approval 5/11/2019 + rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasLateSubmissionInformationDescriptionA narrative text explaining the content of the economic operator information that + can be submitted late. + + Additional Information + This does not apply to requests for clarifications. + rdf:PlainLiteral [0..*]
epo:ProcurementObjectepo:hasLegalBasisDescriptionrdf:PlainLiteral [0..*]
epo:ContractTermepo:hasLegalFormRequirementThe legal form to be taken by a Contractor. + + Additional Information: + Generally, this is defined to cover the case where an Organisation Group is involved. + Note that the codelist provided at national level should be used.rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalFormTypeThe classification of an Organisation according to legislation. + + Additional Information: + Generally, this is defined for Tenderers who want to submit as an Organisation Group. + Note that the codelist provided at national level should be used. + rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalNameThe officially registered name of an organisation. + + WG Approval 10/01/2023rdf:PlainLiteral [0..*]
epo:Noticeepo:hasLongTitlerdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasLotAwardCombinationThe contracting authority reserves the right to award contracts combining lots or + groups of lots. + + Additional Information: + This property contains information about the Lots concerned. + This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard + Forms). + + WG approval 23/08/2022 + rdf:PlainLiteral [0..1]
org:Organizationepo:hasMainActivityDescriptionSelf-explanatory text about the Main Activity . + + Additional information: + This field is used when the Main Activity is not available in the controlled list + at-voc:main-activity-type . This is necessary in to cover data provided in the TED + Standard Forms. It shall be deprecated in the future. + + WG Approval 06/09/2022 + rdf:PlainLiteral [0..1]
epo:Procedureepo:hasMainFeatureMain features of the procedure and information about where the full rules for the + procedure can be found. + + Additional Information: + This information should be given when the procedure is not one of those mentioned + in the procurement directives. This can be the case for example for concessions, for + social and other specific services, and in case of voluntary publication of procurement + procedures below the EU procurement thresholds.rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasMaximumLotSubmissionAllowedThe total number of lots for which one Tenderer can submit Tenders. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG approval 12/12/2018 + + xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMaximumNumberOfCandidatesMaximum number of candidates to be invited for the second stage of the procedure. + + WG Approval 22/08/2019xsd:integer [0..1]
epo:ProcedureTermepo:hasMaximumNumberOfLotsToBeAwardedThe maximum number of lots for which contract(s) can be awarded to one tenderer. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG Approval 22/08/2019xsd:integer [0..1]
epo:ContractTermepo:hasMaximumNumberOfRenewalsThe maximum number of times the contract can be renewed. + + Additional Information + + By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract + (i.e. extend its duration) without a new procurement procedure. + For example, a contract may be valid for one year and the buyer may keep a possibility + to renew it (e.g. once, twice) for another three months, if he is content with the + services he received. + + PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken + from eForms. + xsd:integer [0..1]
epo:FrameworkAgreementTermepo:hasMaximumParticipantsNumberThe maximum number of participants in the framework agreement. + + Additional Information: + Maximum number of tenderers who may be awarded a contract within the framework agreement. + + The number is a positive integer. + + This corresponds in eForms to BT-113 Framework Maximum Participants Number. + + WG Approval 2019-02-05xsd:integer [0..1]
epo:SubcontractTermepo:hasMaximumShareThe maximum proportion of something to be distributed. + + Additional Information: + In the case of subcontracting the share may refer to the proportion of works, services + or supplies being subcontracted. + + WG Approval 17/09/2019 + + xsd:decimal [0..1]
epo:SubmissionStatisticalInformationepo:hasMediumTenderPerLotsTenders from medium-sized enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMinimumNumberOfCandidatesMinimum number of candidates to be invited for the second stage of the procedure. + + WG Approval 22/08/2019 xsd:integer [0..1]
epo:SubcontractTermepo:hasMinimumShareThe minimum proportion of something to be distributed. + + Additional Information: + In the case of subcontracting the share may refer to the proportion of works, services + or supplies being subcontracted. + + WG Approval 17/09/2019xsd:decimal [0..1]
epo:SubcontractTermepo:hasMinimumSubcontractorsProposedObligationThe minimum percentage of the contract value that the contractor must subcontract. + + Additional information: + This is used for the competitive procedure described in Title III of Directive 2009/81/EC. + + + WG Approval 09/11/2021xsd:decimal [0..1]
epo:ElementModificationDescriptionepo:hasModificationDescriptionAn explanatory text about this context. + + Additional Information + + This corresponds in Standard forms to Field VII.2.1 in F20 + This corresponds in eForms to BT-202 . + + WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ElementModificationDescriptionepo:hasModificationReasonDescriptionAn explanation about the reasons for using the concept. + + Additional Information + This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. + + This corresponds in eForms to BT-201 . + + WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasNationalProcedureRulesxsd:anyURI [0..*]
epo:StrategicProcurementepo:hasNonAccessibilityCriterionJustificationReason for not applying accessibility criteria. + + Additional information: + This corresponds in eForma to BT-755 Accessibility Justification. + + WG Approval 05/03/2019rdf:PlainLiteral [0..*]
epo:LotAwardDecisionepo:hasNonAwardedContractNumberThe number the contract would have had if it had been awarded. + + Additional information: + + This field is provided to support the data provided in the TED Standard Forms, and + it should be discontinued in the future. + + WG agreement: 06/09/2022 + rdf:PlainLiteral [0..1]
epo:LotAwardDecisionepo:hasNonAwardedContractTitleThe title the contract would have had if it had been awarded. + + Additional information: + + This field is provided to support the data provided in the TED Standard Forms, and + it should be discontinued in the future. + + WG agreement: 06/09/2022rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasNonEEAReceivedTendersThe amount of tenders received from economic operators in non-EEA countries. + + WG Approval 12/12/2019 15:20:36xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasNoNegotiationNecessaryThe buyer reserves the right to award the contract on the basis of the initial tenders + without any further negotiations. + + Additional information: + See Article 29(4) of Directive 2014/24/EU. + xsd:boolean [0..1]
epo:SubmissionTermepo:hasNonElectronicSubmissionDescriptionTextual explanation of how non-electronic information is to be presented. + + WG Approval 21/07/2020 + + rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasNonEUReceivedTendersThe amount of tenders received from economic operators in non-EU countries. + xsd:integer [0..1]
epo:Noticeepo:hasNoticePublicationNumberrdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasNumberOfReviewRequestsThe number of requests the buyer received to review any of its decisions.xsd:integer [1..1]
epo:SubmissionStatisticalInformationepo:hasNumberOfTenderersInvitedNumber of economic operators invited to tender. + + Additional Information + This may be used for single-stage procedures or to indicate the number of candidates + invited to tender in multi-stage procedures. + + WG Approval 01/12/2020 + + xsd:integer [0..1]
epo:Noticeepo:hasOJSIssueNumberxsd:integer [0..1]
epo:Noticeepo:hasOJSTyperdf:PlainLiteral [0..1]
epo:OpeningTermepo:hasOpeningDateTimeDate and time for the opening of tenders. + + WG Approval 12/03/2019 + + xsd:dateTime [1..1]
epo:OpeningTermepo:hasOpeningDescriptionFurther information about the opening of tenders. + + Additional Information + For example, who may participate in the opening and whether any authorization is needed. + + WG Approval 12/03/2019rdf:PlainLiteral [0..*]
epo:OpeningTermepo:hasOpeningURLThe identifier of the address of the Opening of Tenders. + WG Approval 09/11/2021xsd:anyURI [0..1]
epo:ContractTermepo:hasOptionsThe buyer reserves the right (not an obligation) for additional purchases from the + contractor (while the contract is valid).xsd:boolean [0..1]
epo:ContractTermepo:hasOptionsDescriptionThe motivation and details about additional purchases that the buyer may undertake + while the contract is valid. + + WG Approval 09/04/2019 rdf:PlainLiteral [0..*]
org:Organizationepo:hasOrganisationUnitNameThe name of a subpart of an organisation. + + Additional Information: + E.g. the relevant department of a large organisation. + + We added this attribute in case of eProcurement notices where the Buyer is actually + a part of an Organization and the rest of the properties apply to the rest of the + Organisation as well.rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasOtherCountriesReceivedTendersxsd:integer [0..1]
epo:AwardEvaluationTermepo:hasOverallCostAwardCriteriaPonderationThe weighting given to cost. + + Additional Information: + This weighting covers usually all cost criteria against price or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallPriceAwardCriteriaPonderationThe weighting given to price. + + Additional Information: + This weighting covers usually all price criteria against cost or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallQualityAwardCriteriaPonderationThe weighting given to quality. + + Additional Information: + This weighting covers usually all quality criteria against price or cost criteria.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasParticipationPaymentDetails on payments to participants + WG Approval 09/11/2021rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPaymentArrangementInformation about financial clauses that will govern some economic aspects of the + execution of the contract. + + Additional Information: These clauses usually refer to financial and payment provisions. + + This type of information should be structured instead of a free text in order to reuse + it an ideal world. Unfortunately this is an information that in the real life no one + is willing to provide pro-actively. + + WG Pending of discussion with eFormsrdf:PlainLiteral [0..*]
epo:ContractLotCompletionInformationepo:hasPaymentValueDiscrepancyJustificationrdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPerformanceConditionsThe particular conditions and additional information related to the execution of the + contract. + + Additional Information: + + For example, specific information about the place of performance, intermediary deliverables, + compensation for damages, intellectual property rights. + + WG approval 15-01-2019rdf:PlainLiteral [0..*]
epo:ContractTermepo:hasPlaceOfPerformanceAdditionalInformationFurther details on the location of the execution of the contract. + + WG Approval 30/07/2019rdf:PlainLiteral [0..*]
epo:PublicationProvisionepo:hasPreferredPublicationDateThe date the buyer would like to have the record made publicly available. + + Additional Information: + This corresponds in eForms to BT-738 Notice Publication Date Preferred. + + WG Approval 12/05/2020xsd:date [0..1]
epo:ElementChangeDescriptionepo:hasPreviousVersionOfElementReferenceReference to the class instance in the previous version of the notice, which was changed. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. + xsd:anyURI [0..1]
epo:Prizeepo:hasPrizeRankThe position of the prize (e.g. first place, second place) in a design contest list + of prizes. + + WG Approval 29/08/2019 + xsd:integer [0..1]
epo:ElementChangeDescriptionepo:hasProcurementDocumentChangeDateThe date and time of the change. + + Additional information: + This corresponds in eForms to BT-719 Change Procurement Documents Date + + WG Approval 5/11/2019 + xsd:date [0..1]
epo:ElementConfidentialityDescriptionepo:hasPropertyReferenceThe URI of a given attribute (property) that is being referred to.xsd:anyURI [1..1]
epo:AccessTermepo:hasPublicAccessURLWeb page where the procurement documents can be downloaded. + + Additional Information: + This corresponds in the eForms to BT-15 Documents URL. + + WG Approval 09/03/2021 + xsd:anyURI [0..1]
epo:Documentepo:hasPublicationDateDate of formal public issuance of the document. + + WG approval 20/06/2023xsd:date [0..1]
epo:QualificationCriteriaSummaryepo:hasQualificationConditionrdf:PlainLiteral [0..*]
epo:MultipleStageProcedureTermepo:hasQualificationSystemRenewalDescriptionrdf:PlainLiteral [0..1]
epo:Quantityepo:hasQuantityValueThe numeric value of the quantity, including decimals.xsd:decimal [1..1]
epo:SubmissionTermepo:hasReceiptDeadlineThe time limit for receiving submissions. + + Additional Information + This is the deadline by which the buyer must receive submissions (e.g. tenders, requests + to participate, clarifications, etc.) and is not the time at which the information + is submitted by the economic operator. + This attribute should be used for standard forms mappings. + + WG Approval 21/07/2020 + xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptExpressionDeadlineTime limit for receipt of expressions of interest. + + Pending of review by the WG + + xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptParticipationRequestDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptPreliminaryMarketConsultationDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptTenderDeadlinexsd:dateTime [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedMicroTendersThe amount of tenders received from a micro enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC.xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedParticipationRequestsThe amount of applications to participate from economic operators. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedSmallTendersTenders from small enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + + xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedTendersThe total amount of tenders received. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:Documentepo:hasReceptionDateNotes: Date when a record is acknowledged by an organisation. + + WG Approval 12/05/2020xsd:date [0..1]
epo:ProcurementObjectepo:hasRecurrenceDescriptionAny additional information about the recurrence of the Procurement. + + Additional Information: + For example estimated timing of the Procedure. + + This corresponds in eForms to BT-95 Recurrence Description. + + (WG approval 2019-01-16) + rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasRenewalDescriptionAny other information about the renewal(s). + + WG approval 16/04/2019 rdf:PlainLiteral [0..*]
epo:ReviewRequestepo:hasRequestDateThe date when the review request was submitted. + + Additional information: + This attribute corresponds to the BT-787 Review Date in eForms. + xsd:date [0..1]
epo:ContractTermepo:hasReservedExecutionThe execution of the contract is restricted to the framework of sheltered employment + programmes. + + Additional information: + This property corresponds in eForms to BT-736 + + WG Approval 12/09/2019 + + The codelist to be used is at-voc:applicability which is available at http://publications.europa.eu/resource/dataset/applicability + xsd:boolean [0..1]
epo:AccessTermepo:hasRestrictedAccessURLThe internet address with information on accessing the restricted (part of the) procurement + document. + + Additional Information: + This corresponds in eForms to BT-615 Documents Restricted URL. + xsd:anyURI [0..1]
epo:ReviewIrregularitySummaryepo:hasReviewIrregularityCountThe number of requests for a given irregularity. + + Additional information: + This attribute corresponds in eForms to BT-635 Buyer Review Requests Count.xsd:integer [1..1]
epo:ReviewObjectepo:hasReviewURLThe internet address of the documents concerning the review instance. + + Additional information: + This attribute corresponds in eForms to BT-794 Review URL. + xsd:anyURI [0..1]
adms:Identifierepo:hasSchemeThe name of the identification scheme.rdf:PlainLiteral [0..*]
adms:Identifierepo:hasSchemeVersionThe version of the identification scheme.rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:hasSelectionCriteriaStatedInProcurementDocumentsxsd:boolean [0..1]
epo:ProfessionalSuitabilitySummaryepo:hasServiceReservedToParticularProfessionxsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasSMEReceivedTendersThe amount of tenders received from micro, small and medium-sized enterprises. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. + + WG Approval 05/03/2020 + xsd:integer [0..1]
epo:StrategicProcurementepo:hasStrategicProcurementDescriptionSelf-explanatory text about a concept. + rdf:PlainLiteral [0..*]
epo:SubcontractTermepo:hasSubcontractingInvolvedList of Subcontractors and the subject matter they cover are required. + + Additional Information: + The tenderer will ned to supply this information in the tender. + + WG Approval 28/02/2019xsd:boolean [0..1]
epo:SubcontractTermepo:hasSubcontractorsProposedAboveObligationThe maximum percentage of the contract value that the contractor must subcontract. + + Additional information: + This is used for the competitive procedure described in Title III of Directive 2009/81/EC. + + + WG Approval 09/11/2021xsd:decimal [0..1]
epo:SubcontractingEstimateepo:hasSubjectMatterDescription of the share of the contract that is to be subcontracted. + + Additional infromation: + This can be an aggregate of several subcontracts. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasSubmissionURL + Additional Information: + This corresponds to the eForms BT-18 Submission URL. + + This corresponds in eForms to BT-509 Organisation eDelivery Gateway.xsd:anyURI [0..*]
epo:MultipleStageProcedureTermepo:hasSuccessiveReductionThe number of solutions or tenders will be reduced in iterative evaluations for multiple + staged procedures. + + Additional information: + This refers to multiple-stage procedures (included two-stage procedures, at least). + Open Procedures can be seen as one-stage procedures. + WG Approval 22/08/2019 xsd:boolean [0..1]
cccev:Constraintepo:hasThresholdValueThe cut-off level for a given concept. + + Additional Information: + This value is given as e.g. a minimum score, a maximum number of tenders with the + highest score passing (see codelist at-voc:number-threshold).xsd:decimal [1..1]
epo:ReviewRequestSummaryepo:hasTotalNumberOfComplainantsThe number of economic operators that requested the buyer to review any of its decisions + (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive + 89/665/EEC and Directive 92/13/EEC. + + Additional information: + This attribute corresponds in eForms to BT-712 Buyer Review Complainants + + WG Approval 11/04/2019xsd:integer [0..1]
epo:GreenProcurementepo:hasTotalVehiclesThe number of all vehicles (regardless of whether clean or not) that have either been + purchased, leased, rented, hired-purchased or their use has been contractually committed + to for the provision of a purchased service. + + Additional Information + + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:Quantityepo:hasUnitDescriptionA narrative explanation defining the units of items being counted + + Additional information: This could be for example individual items or pack or two. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasUnverifiedTendersOffers received for which it has not been verified if they are admissible or inadmissible + (e.g. because award criteria have been evaluated for all tenders and admissibility + is checked only for the winning tender). + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:Fundepo:hasURLThe identifier of a resource. + + Additional Information + + For example: + + 1. The URL of the system from where to access the procurement documents; + 2. The URL of the system for the submission of tender documents; + 3. The URL of the system from where to download a tool to communicate with the Buyer; + 4. The URL of the system used by a Technique to allow Economic Operators to exchange + information with the Buyer (e.g. eAuction and DPS Systems) + 5. The URL of the system used to exchange information between Buyer and EO for questions + and clarifications; + + WG Approval 30/09/2019xsd:anyURI [0..1]
epo:Documentepo:hasVersionA number that identifies a specific state of a document. + + WG approval: 18/11/2021 + rdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasWithdrawalDateThe date and time when the request for review was withdrawn. + + Additional information: + This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date.xsd:date [0..1]
epo:ReviewRequestepo:hasWithdrawalReasonThe explanation for withdrawing the request for review. + + Additional information: + This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasonsrdf:PlainLiteral [0..1]
epo:GreenProcurementepo:hasZeroEmissionVehiclesThe number of all zero-emission heavy-duty vehicles that have either been purchased, + leased, rented, hired-purchased or their use has been contractually committed to for + the provision of a purchased service. + + Additional Information + + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:ProcurementCriteriaSummaryepo:indicatesPerformingStaffInformationRequirementxsd:boolean [0..1]
epo:Procedureepo:isAcceleratedStatement about the fact that the procedure will be reduced due to a state of urgency. + + Additional Information + + This modifies the time limit for the receipt of requests to participate or the receipt + of tenders. + + WG Approval 20/08/2019 + xsd:boolean [0..1]
epo:SubmissionTermepo:isAdvancedElectronicSignatureRequiredAdvanced or qualified electronic signature or seal (as defined in Regulation (EU) + No 910/2014) is required. + + + + The submitted information is required to be signed electronically. + + Additional Information: + + Signature can be defined as "data in electronic form which is attached to or logically + associated with other data in electronic form and which is used by the signatory to + sign. + For more details on the meaning and uses of electronic signature you may consult different + authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 + on electronic identification and trust services for electronic transactions in the + internal market. + + WG Approval 21/07/2020 + xsd:boolean [0..1]
epo:ProcedureTermepo:isAwardedByCPBProcedure is awarded by a Central Purchasing Body. + + xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isCompetitionTerminatedNo further contracts will be awarded in this procedure. + + Additional Information: + This can be instantiated in the post award phase. + + PIN for Competition needs to be signaled. This field can be used even if no contracts + are awarded in the contract award notice. + + This corresponds in eForms to BT-756 PIN Competition Termination.xsd:boolean [0..1]
epo:Buyerepo:isContractingEntityRole of entities, which: + + (a) are contracting authorities or public undertakings and which pursue one of the + activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. + + (b) when they are not contracting authorities or public undertakings, have as one + of their activities any of the activities referred to in Articles 8 to 14, or any + combination thereof and operate on the basis of special or exclusive rights granted + by a competent authority of a Member State. + + Additional Information + + The indicator is needed in order to discriminate between those contracts where the + Contracting Entity acts as a Contracting Authority undergoing the limits and the rules + of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed + constraints. + For example, the Contracting Entities have different thresholds for the application + of Directive 24 if compared with Contracting Authorities. + + WG Approval 28/04/2020 + xsd:boolean [0..1]
epo:ProcurementObjectepo:isCoveredByGPASpecifies whether the Agreement on Government Procurement (GPA) applies. + + Additional information: + The GPA aims to establish a multilateral framework of balanced rights and obligations + relating to public contracts with a view to achieving the liberalization and expansion + of world trade. + + This corresponds in the e Forms to BT-115 GPA Coverage. + + WG Approval 15/10/2019 + + xsd:boolean [0..1]
epo:Procedureepo:isDesignContestA competition which enables the buyer to acquire a plan or design via a jury. + + Additional information: + Design contests have traditionally mostly been used in the fields of town and country + planning, architecture and engineering or data processing, other purposes, such as + to obtain plans for financial engineering + + The contest may include or not the award of prizes; + + WG approval 04-02-2021 xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isDPSTerminatedEnd of the Dynamic Purchase System (DPS). + + Additional Information: This property can be used in the contract award notice even + if no contracts are awarded. + + WG Approval 22/11/2019 + xsd:boolean [0..1]
epo:Noticeepo:isEUInstitutionxsd:boolean [0..1]
epo:SubmissionTermepo:isGuaranteeRequiredThe submitted information must include a financial commitment to be used in case of + default. + + Additional Information: + See the additional information provided in the definition of the 'Guarantee Description' + element. + + WG Approval 21/07/20 + + xsd:boolean [0..1]
epo:Procedureepo:isJointProcurementMultiple buyers procure together within the same procedure. + + Addition Information: + In case the joint procurement involves buyers from different countries, the national + law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:isJuryDecisionBindingIndicates whether the procuring entity is bound to apply the decision of the jury.xsd:boolean [0..1]
epo:Businessepo:isListedCompanyPublic companies listed on a stock exchange and subject to disclosure requirements + (either by stock exchange + rules or through law or enforceable means), which impose requirements to ensure adequate + transparency of + beneficial ownership. + + <u>Additional Information:</u> + + In eForms this indicator is used when the nationality of beneficial owner is not provided + because the Economic Operator is registered in a regulated market that is subject + to disclosure requirements consistent with Union law or subject to equivalent international + standards which ensure adequate transparency of ownership information. + + WG Approval 21/11/2019xsd:boolean [0..1]
epo:SubmissionTermepo:isMultipleTenderSubmissionAllowedTenderers may submit more than one competing tenders. + + WG Approval 10/10/2019 + + xsd:boolean [0..1]
epo:NonDisclosureAgreementTermepo:isNonDisclosureAgreementRequiredxsd:boolean [0..1]
epo:ProcedureTermepo:isOneLotOnlyAllowedIndicates whether tenders may be submitted for only one Lot. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG approval 23/08/2022 + + xsd:boolean [0..1]
epo:ElementChangeDescriptionepo:isProcurementDocumentChangedOne or more procurement documents have been changed. + + Additional information: + This corresponds in eForms to BT-718 Change Procurement Documents + + WG Approval 05/11/2019xsd:boolean [0..1]
epo:AccessTermepo:isProcurementDocumentRestrictedThe access to certain procurement documents is restricted. + + Additional Information: + This corresponds in eForms to BT-14 Documents Restricted. + + WG Approval 10/10/2019xsd:boolean [0..1]
epo:ProcurementObjectepo:isRecurrentThe Procurement being notified is likely to be included in another procedure in the + foreseeable future. + + Additional Information: + + For example, a regularly re-tendered municipal service. This does not include awarding + multiple contracts within a single qualification system, framework agreement, or a + dynamic purchasing system. + + This corresponds in eForms to BT-94 Recurrence. + + WG Approval 12/05/2020 + xsd:boolean [0..1]
epo:ContractTermepo:isRenewalIndicatorIndicates whether the contract is subject to a renewal clause. + WG Approval 09/11/2021xsd:boolean [0..1]
epo:SecurityClearanceTermepo:isSecurityClearanceRequiredxsd:boolean [0..1]
epo:ProcurementObjectepo:isSMESuitableThe Lot is suitable for small and medium enterprises (SMEs). + + Additional Information + + This allows the buyer to make emphasis on the fact that the procedure has been designed + having SMEs in mind. This indicator is also to be reflected in the selection criteria. + + For example, number of employees and turnover are applicable to the definition of + an SME. + + WG Approval 15/10/2019 + xsd:boolean [0..1]
epo:ProcedureTermepo:isSubmissionForAllLotsAllowedIndicates whether tenders may be submitted for all Lots. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms) + + WG approval 23/08/2022 + xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isToBeRelaunchedIndicator of whether the procurement object is to be relaunched. + + Additional information: + This can be instantiated in the post award phase. + + This corresponds in eForms to BT-634 Procurement Relaunch. + + WG Approval: 18/01/2022 + xsd:boolean [0..1]
epo:SelectionCriterionepo:isUsedForCandidateRestrictionThe criterion will be used to select the candidates to be invited for the second stage + of a multistage procedure. + + Additional Information: + This property is only used if a maximum number of candidates was foreseen in the procedure. + This corresponds in eForms to BT-40 Selection Criteria Second Stage Invitexsd:boolean [0..1]
epo:ProcurementObjectepo:isUsingEUFundsThe procurement foresees funding by the Union. + + Additional Information: + The funding may cover the whole procurement or part of the procurement. + + For example the European Structural and Investment Funds or grants awarded by the + European Union. + + xsd:boolean [0..1]
epo:Tenderepo:isVariantAlternative solution to fulfil the buyer's needs as opposed to solutions indicated + in the procurement documents. + + Additional Information: + + The permission to offer variants is only allowed if specified in a Contract Notice + or a Prior Information Notice that used as a means for calling for a competition. + The buyer lays out minimum requirements in the procurement documents that must be + respected by tenderers submitting variants. + + WG Approval 29/05/2019 + + xsd:boolean [0..1]
epo:ReviewRequestepo:isWithdrawnThe review request was withdrawn. + + Additional information: + This attribute corresponds in eForms to BT-796 Review Request Withdrawn.xsd:boolean [0..1]
cpv:Personfoaf:familyNameThe hereditary surname of a family. + rdf:langString [0..*]
cpv:Personfoaf:givenNameThe name(s) that identify the Person within a family with a common surname. + rdf:langString [0..*]
cpv:Personfoaf:nameThe complete name of the Person as one string.rdf:langString [0..*]
locn:Addresslocn:addressAreaThe name or names of a geographic area or locality that groups a number of addressable + objects for addressing purposes, without being an administrative unit. + + Additional Information: + This would typically be part of a city, a neighbourhood or village, e.g. Montmartre.rdf:langString [0..1]
locn:Addresslocn:adminUnitL1The name or names of a unit of administration related to the exercise of jurisdictional + rights, for local, regional and national governance. Level 1 refers to the uppermost + administrative unit for the address, almost always a country. + + Additional Information: + Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, + country names should be provided in a consistent manner to reduce ambiguity. For example, + either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing + the two. The Country controlled vocabulary from the Publications Office can be reused + for this.rdf:langString [0..1]
locn:Addresslocn:adminUnitL2The name or names of a unit of administration related to the exercise of jurisdictional + rights, for local, regional and national governance. Level 2 refers to the region + of the address, usually a county, state or other such area that typically encompasses + several localities. + + Additional Information: + Some recommended codelists from the EU Publications Office include: Administrative + Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement + of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" + in the ATU controlled vocabulary. + rdf:langString [0..1]
locn:Addresslocn:fullAddressThe complete address written as a formatted string. + + Additional Information: + Use of this property is recommended as it will not suffer any misunderstandings that + might arise through the breaking up of an address into its component parts. This property + is analogous to vCard's label property but with two important differences: (1) formatting + is not assumed so that, unlike vCard label, it may not be suitable to print this on + an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress + property has no such restriction. An example of a full address is "Champ de Mars, + 5 Avenue Anatole France, 75007 Paris, France".rdf:langString [0..1]
dct:Locationlocn:geographicNameA textual description for a Location. + + Additional Information: + The INSPIRE Data Specification on Geographical Names provides a detailed model for + describing a 'named place', including methods for providing multiple names in multiple + scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, + the concept of a geographic name used here is consistent. + + A geographic name is a proper noun applied to a spatial object. Taking the example + used in the INSPIRE document (page 15), the following are all valid geographic names + for the Greek capital: + + - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) + - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) + - "Athens"@en (the English language exonym) + INSPIRE has a detailed (XML-based) method of providing metadata about a geographic + name and in XML-data sets that may be the most appropriate method to follow. When + using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical + data (the use case for INSPIRE), the Code datatype or a simple language identifier + may be used to provide such metadata. + + The country codes defined in ISO 3166 may be used as geographic names and these are + generally preferred over either the long form or short form of a country's name (as + they are less error prone). The Publications Office of the European Union recommends + the use of ISO 3166-1 codes for countries in all cases except two: + + - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; + - use 'EL' in preference to the ISO 3166 code GR for Greece. + Where a country has changed its name or no longer exists (such as Czechoslovakia, + Yugoslavia etc.) use the ISO 3166-3 code.rdf:langString [0..1]
locn:Addresslocn:locatorDesignatorA number or a sequence of characters which allows a user or an application to interpret, + parse and format the locator within the relevant scope. A locator may include more + locator designators. + + Additional Information: + In simpler terms, this is the building number, apartment number, etc. For an address + such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17".rdf:PlainLiteral [0..1]
locn:Addresslocn:locatorNameProper noun(s) applied to the real world entity identified by the locator. + + Additional Information: + The locator name could be the name of the property or complex, of the building or + part of the building, or it could be the name of a room inside a building. + + The key difference between a locator and a locator name is that the latter is a proper + name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting + room within the European Commission headquarters for which locator name is more appropriate + than locator.rdf:langString [0..1]
locn:Addresslocn:postCodeThe post/zip code of an address. (INSPIRE's definition is "A code created and maintained + for postal purposes to identify a subdivision of addresses and postal delivery points.") + + Additional Information: + Post codes are common elements in many countries' postal address systems. One of the + many post codes of Paris is for example "75000".rdf:PlainLiteral [0..*]
locn:Addresslocn:postNameThe key postal division of the address, usually the city. (INSPIRE's definition is + "One or more names created and maintained for postal purposes to identify a subdivision + of addresses and postal delivery points.) For example, "Paris".rdf:langString [0..*]
locn:Addresslocn:thoroughfareAn address component that represents the name or names of a passage or way through + from one location to another. A thoroughfare is not necessarily a road, it might be + a waterway or some other feature. + + Additional Information: + For example, "Avenue des Champs-&#201;lys&#233;es".rdf:langString [0..*]
cpv:Personperson:birthNameFamily name of the Person given upon their birth. + WG Approval 09/11/2021rdf:langString [0..*]
cpv:Personperson:patronymicNameName based on the given name of the Person's father. + WG Approval 09/11/2021rdf:langString [0..*]
adms:Identifierskos:notationThe literal identifying an entity, like a person or an object.rdf:PlainLiteral [1..1]
cccev:InformationConcept
cccev:Requirement
skos:prefLabelThe preferred lexical label for a resource, in a given language. + + WG approval 30/05/2023 + + The preferred lexical label for a resource, in a given language. + + WG approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
epo:SpecificDurationtime:numericDurationValue of a temporal extent expressed as a number.xsd:decimal [1..1]
+

Predicates (object properties) and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Predicate nameDefinitionDomain, Range and Cardinality
adms:identifierA unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 + + A unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 A unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 + Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class.epo:Project -> adms:Identifier [0..1]
epo:LotGroup -> adms:Identifier [0..1]
epo:ProcurementElement -> adms:Identifier [1]
foaf:Agent -> adms:Identifier [0..*]
dct:Location -> adms:Identifier [0..1]
cccev:InformationConcept -> adms:Identifier [0..1]
epo:Document -> adms:Identifier [0..*]
epo:Fund -> adms:Identifier [0..1]
epo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:TransportEquipment (external) -> adms:Identifier [0..1]
epo-ful:ShipmentStage (external) -> adms:Identifier [0..1]
epo-ful:TransportEquipmentSeal (external) -> adms:Identifier [0..1]
epo-ful:ShipmentInformation (external) -> adms:Identifier [0..1]
epo-cat:Line (external) -> adms:Identifier [0..1]
epo-ful:AbstractContainer (external) -> adms:Identifier [0..1]
cccev:confidentialityLevelTypeSecurity classification assigned to an Evidence e.g. classified, sensitive, public. + + Additional Information: + + Classifications should be defined by an organisation/country as an outcome of a security + assessment. + cccev:Evidence -> at-voc:confidentiality-level [0..1]
cccev:constrainsInformation Concept about which a Constraint expresses a limitation. + + Additional Information: + Information Concepts are tools to make Requirements more machine processable: they + allow to provide more detail about a Requirement. This way, Constraints can be made + very precise, namely the limit that must be achieved, is a limit on the value for + the associated Information Concept. For example, the Information Concept would be + the age of a person and the Constraint would be the required age in the context of + a specific evaluation.cccev:Constraint -> cccev:InformationConcept [0..*]
cccev:hasRequirementA more specific Requirement that is part of the Requirement.cccev:Requirement -> cccev:Requirement [0..*]
cccev:supportsConceptInformation Concept providing facts found/inferred from the Evidence. + + Additional Information: + Examples of Information Concepts are values found explictly in the evidence such as + a birth date or information derived from the Evidence such as "I am older that 18 + years" or "this is a FairTrade product".cccev:Evidence -> cccev:InformationConcept [0..*]
cccev:supportsRequirementRequirement for which the Evidence provides proof.cccev:Evidence -> cccev:Requirement [0..*]
cv:addressAssociates any Resource with the corresponding Address. + + Additional Information: + Asserting the address relationship implies that the Resource has an Address. org:Organization -> locn:Address [0..*]
cpov:ContactPoint -> locn:Address [0..1]
cv:registeredAddressThe registered address relationship links a Resource with the legally registered Address. + + Additional Information: + It is the address to which formal communications can be sent, such as the postal address. The registered address relationship links a Resource with the legally registered Address. + + Additional Information: + It is the address to which formal communications can be sent, such as the postal address. + cpv:Person -> locn:Address [0..1]
org:Organization -> locn:Address [0..1]
dct:typeCategory to which the Requirement belongs.cccev:Criterion -> at-voc:criterion [0..1]
epo:actsOnBehalfOfRepresents.epo:ProcurementServiceProvider -> epo:Buyer [1..*]
epo:announcesAwardDecision epo-not:ResultNotice (external) -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice (external) -> epo:AwardDecision [0..*]
epo:announcesCompletionOfContractepo-not:CompletionNotice (external) -> epo:Contract [1]
epo:announcesContract epo-not:DirectAwardPrenotificationNotice (external) -> epo:Contract [0..*]
epo-not:ResultNotice (external) -> epo:Contract [0..*]
epo:announcesExclusionGroundepo:ESPDRequest (external) -> epo:ExclusionGround [1]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice (external) -> epo:Lot [1..*]
epo-not:CompetitionNotice (external) -> epo:Lot [1..*]
epo:announcesLotGroup epo-not:CompetitionNotice (external) -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice (external) -> epo:LotGroup [0..*]
epo:announcesLotGroupAwardInformation epo-not:DirectAwardPrenotificationNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. + + Additional Information: + For example, elements in the Contract Award Notice that should be published at a later + date. epo-not:ResultNotice (external) -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice (external) -> epo:PublicationProvision [0..*]
epo:announcesNoticeAwardInformation epo-not:DirectAwardPrenotificationNotice (external) -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice (external) -> epo:NoticeAwardInformation [0..1]
epo:announcesPlannedProcurementPartepo-not:PlanningNotice (external) -> epo:PlannedProcurementPart [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice (external) -> epo:Procedure [1]
epo-not:CompetitionNotice (external) -> epo:Procedure [1]
epo:announcesReviewObjectepo-not:CompletionNotice (external) -> epo:ReviewObject [1..*]
epo:announcesRole epo-not:DirectAwardPrenotificationNotice (external) -> epo:AgentInRole [1..*]
epo-not:ContractModificationNotice (external) -> epo:AgentInRole [0..*]
epo-not:PlanningNotice (external) -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice (external) -> epo:AgentInRole [1..*]
epo-not:CompletionNotice (external) -> epo:AgentInRole [0..*]
epo:announcesSelectionCriteriaepo:ESPDRequest (external) -> epo:SelectionCriterion [1]
epo:answersAwardCriteria epo:FinancialOffer (external) -> epo:AwardCriterion [1]
epo:TechnicalOffer (external) -> epo:AwardCriterion [1]
epo:answersExclusionGroundepo:ESPDResponse (external) -> epo:ExclusionGround [1]
epo:answersSelectionCriteriaepo:ESPDResponse (external) -> epo:SelectionCriterion [1]
epo:associatedWithThe document to which a document is associated. + + WGM 01/03/2022 + epo:Document -> epo:Document [0..*]
epo:bindsBuyerProvides legal constraint on the Buyer.epo:Contract -> epo:Buyer [0..*]
epo:bindsContractorProvides legal constraint on the Contractor.epo:Contract -> epo:Contractor [0..*]
epo:comprisesLotAwardDecisionIncorporates LotAwardOutcome.epo:AwardDecision -> epo:LotAwardDecision [0..*]
epo:comprisesMiniCompetitionAwardDecisionepo:AwardDecision -> epo:MiniCompetitionAwardDecision [0..*]
epo:comprisesTenderIncorporates Tender.epo:TenderGroup -> epo:Tender [1..*]
epo:comprisesTenderAwardOutcomeIncorporates TenderAwardOutcome.epo:AwardDecision -> epo:TenderAwardOutcome [0..*]
epo:concernsLotRelates to Lot. Relates to Lot.epo:ProcurementProcessInformation -> epo:Lot [0..1]
epo:LotAwardDecision -> epo:Lot [1]
epo:concernsMiniCompetitionepo:MiniCompetitionAwardDecision -> epo:MiniCompetition [0..1]
epo:concernsProcedureRelates to Procedure.epo:ProcurementProcessInformation -> epo:Procedure [0..1]
epo:concernsReviewSummaryForLotRelates to Lot review summary. + + Additional information: + This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier.epo:ReviewRequestSummary -> epo:Lot [1]
epo:concernsTenderepo:TenderAwardOutcome -> epo:Tender [1]
epo:conformsToLegalBasisThe Notice was designed in accordance with the given legal basis. + + Additional Information: + This Notice can be used for Procedures which do not have the same legal basis. + This holds for standard forms.epo:Notice -> at-voc:legal-basis [0..1]
epo:conformsToSpecificLegalBasisepo:Notice -> at-voc:legal-basis [0..1]
epo:containsCandidateepo:SelectedCandidateList -> epo:Candidate [0..*]
epo:containsModificationsOf + + Additional information + This relation shall be used between Instances of the SAME type/class. + + The "modifying-instance" can be minimally instantiated, carrying the fields/information + that override the fields in the "modified-instance". + + This means that the "modifying-instance" (is under-specified) and might violate minimal + cardinality restrictions in case they are checked. But the purpose of such an instance + is not to be used as a full instance. + owl:Thing -> owl:Thing [0..1]
epo:contextualisedByThe place of the AgentInRole in the procurement is expressed by a ProcurementObject.epo:AgentInRole -> epo:ProcurementObject [0..*]
epo:definesBudgetProviderRelation indicating a ProcedureTerm has a BudgetProvider.epo:ProcedureTerm -> epo:BudgetProvider [0..1]
epo:definesCatalogueProviderRelation indicating an AccessTerm has a CatalogueProvider.epo:AccessTerm -> epo:CatalogueProvider [0..*]
epo:definesCatalogueReceiverRelation indicating an AccessTerm has a CatalogueReceiver.epo:AccessTerm -> epo:CatalogueReceiver [0..*]
epo:definesContractDurationRelation indicating a ContractTerm has a Duration.epo:ContractTerm -> epo:Duration [0..1]
epo:definesContractPeriodRelation indicating a ContractTerm has a Period.epo:ContractTerm -> epo:Period [0..1]
epo:definesInformationProviderRelation indicating a ProcedureTerm has an information provider.epo:ProcedureTerm -> epo:AuxiliaryParty [0..*]
epo:definesLotGroupRelation indicating a ProcedureTerm has a LotGroup.epo:ProcedureTerm -> epo:LotGroup [0..*]
epo:definesMediatorRelation indicating a ProcedureTerm has a Mediator.epo:ProcedureTerm -> epo:Mediator [0..1]
epo:definesOfflineAccessProviderRelation indicating an AccessTerm has an OfflineAccessProvider.epo:AccessTerm -> epo:OfflineAccessProvider [0..1]
epo:definesOpeningPlaceThe place where the tenders will be publicly opened. + + WG Approval 10-10-2019epo:OpeningTerm -> locn:Address [0..1]
epo:definesParticipationRequestProcessorRelation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor.epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor [0..1]
epo:definesParticipationRequestReceiverRelation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver.epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver [0..1]
epo:definesPaymentExecutorRelation indicating a ContractTerm has a PaymentExecutor.epo:ContractTerm -> epo:PaymentExecutor [0..1]
epo:definesPlaceOfPerformanceRelation indicating the place of performance of a Contract. + + WG approval 21/03/2023epo:ContractTerm -> dct:Location [0..*]
epo:definesPrizeRelation indicating a DesignContestRegimeTerm has a Prize.epo:DesignContestRegimeTerm -> epo:Prize [0..*]
epo:definesProcurementProcedureInformationProviderRelation indicating an AccessTerm has a ProcurementProcedureInformationProvider.epo:AccessTerm -> epo:ProcurementProcedureInformationProvider [0..1]
epo:definesSubcontractingTermRelation indicating a ContractTerm has a SubcontractingTerm.Relation indicating a + term has a subterm.epo:ContractTerm -> epo:SubcontractTerm [0..1]
epo:definesTenderProcessorRelation indicating a SubmissionTerm has a TenderProcessor.epo:SubmissionTerm -> epo:TenderProcessor [0..1]
epo:definesTenderReceiverRelation indicating a SubmissionTerm has a TenderReceiver.epo:SubmissionTerm -> epo:TenderReceiver [0..1]
epo:delegatesAncillaryActivitiesToEntrusts ancillary purchasing activities to ProcurementServiceProvider. + + Additional Information: + Directive 2014/24/EU describes ancillary purchasing activities as activities consisting + in the provision of support to purchasing activities, in particular in the following + forms: + + (a) technical infrastructure enabling contracting authorities to award public contracts + or to conclude framework agreements for works, supplies or services; + + (b) advice on the conduct or design of public procurement procedures; + + (c) preparation and management of procurement procedures on behalf and for the account + of the contracting authority concerned;epo:Buyer -> epo:ProcurementServiceProvider [0..*]
epo:describesContractModificationepo-not:ContractModificationNotice (external) -> epo:ContractModification [0..*]
epo:describesLotCompletionepo:ContractLotCompletionInformation -> epo:Lot [1]
epo:describesLotGroupepo:LotGroupAwardInformation -> epo:LotGroup [1]
epo:describesNoticeepo:NoticeDescription -> epo:Notice [1]
epo:describesResultNotice epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice (external) [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice (external) [0..1]
epo:distributesOfferepo:OfferIssuer -> epo:Offer [0..*]
epo:exposesChannelepo:AgentInRole -> cv:Channel [0..*]
epo:exposesInvoiceeChannelepo:Buyer -> cv:Channel [0..*]
epo:followsRulesSetByepo:MiniCompetition -> epo:FrameworkAgreement [0..1]
epo:foreseesConcession epo:ProcurementObject -> epo:ConcessionEstimate [0..1]
epo:Tender -> epo:ConcessionEstimate [0..1]
epo:foreseesContractSpecificTermepo:ProcurementObject -> epo:ContractSpecificTerm [0..*]
epo:foreseesProcurementObjectRelation indicating the instance of a Procurement Object that is planned. + + Additional Information: + The properties of the Procurement Object that is foreseen should be read as foreseen + properties. + For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. + For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy.epo:PlannedProcurementPart -> epo:ProcurementObject [0..1]
epo:foreseesSubcontractingepo:Tender -> epo:SubcontractingEstimate [0..*]
epo:foreseesTechniqueepo:PlannedProcurementPart -> epo:Technique [0..*]
epo:fulfillsRequirementThe requirement to which the concept meets. + WG Approval 09/11/2021 + + The requirement to which the concept meets. + WG Approval 09/11/2021 + + The requirement to which the concept meets. + WG Approval 09/11/2021 + + epo:GreenProcurement -> at-voc:environmental-impact [1..*]
epo:InnovativeProcurement -> at-voc:innovative-acquisition [1..*]
epo:SocialProcurement -> at-voc:social-objective [1..*]
epo:fulfillsStrategicProcurementepo:ProcurementObject -> epo:StrategicProcurement [0..*]
epo:hasAdditionalClassificationepo:Purpose -> at-voc:cpv [0..*]
epo:hasAdditionalContractNatureAdditional type of acquisition taken into consideration in the contract. + + WG Approval 11/06/2020 + + epo:ContractTerm -> at-voc:contract-nature [0..*]
epo:hasAllegedIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-791 Review Irregularity Type + epo:ReviewRequest -> at-voc:irregularity-type [1..*]
epo:hasApproximateFrameworkAgreementValue epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasAwardCriterionTypeCategory of award criterion. + + epo:AwardCriterion -> at-voc:award-criterion-type [0..1]
epo:hasAwardedEstimatedValueThe estimated value that can be spent as provided by the Award Decision. + + <u>Additional Information</u>: + This property is used for framework agreements and dynamic purchasing systems. + Different cases of awarded values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + + WG Approval 12/12/2019 + + epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardedValueThe value of the procurement provided by the Award Decision. + + Additional Information: + Different cases of awarded values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + + In the case of framework agreements and dynamic purchasing systems this refers to + the maximum awarded value. + + WG Approval 10/12/2019epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardStatusIndicates whether the lot is awarded, not awarded or still open. + WG Approval 03/12/2019 + + epo:AwardDecision -> at-voc:winner-selection-status [0..1]
epo:hasBargainPriceThe value of procured supplies that have used a particularly advantageous opportunity + available for a very short time at a value considerably lower than normal market prices. + + WG approval 23/05/2023epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasBatchIDThe identifier assigned to a specific batch of the produced Item. + WG Approval 16/05/2023 + epo-cat:Batch (external) -> adms:Identifier [0..1]
epo:hasBeneficialOwnerA role of any natural person(s) who ultimately owns or controls the organisation or + on whose behalf a transaction or activity is being conducted. + Additional Information: + This role is defined in the directive EU 2015/849 and it's beyond the scope for public + eProcurement domain. + WG approval 14/09/2021epo:Business -> cpv:Person [0..*]
epo:hasBroadPlaceOfPerformanceGeopolitical zone where the contract can be executed. + + Additional Information + + Used for setting restrictions that cannot be established with one country code or + a geographical zone identifier (like NUTS), because they have a broader scope (geographical, + economic, political, other). + epo:ContractTerm -> at-voc:other-place-service [0..1]
epo:hasBusinessSizeThe category of the business depending on number of employees and turnover. + + Additional information: + + See Commission Recommendation of 6 May 2003 concerning the definition of micro, small + and medium-sized enterprises. + + WG Approval 28/05/2020 + + epo:Business -> at-voc:economic-operator-size [0..1]
epo:hasBuyerItemIDThis refers to the identifier for the specific instance of the produced concept. + WG Approval 16/05/2023 + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasBuyerLegalTypeA category that indicates the right of an Organisation to play the role of a buyer. + + Additional Information: + The category also effects the rules that the buyer has to abide to within the public + procurement procedure. + WG 07/09/2021 + + org:Organization -> at-voc:buyer-legal-type [0..1]
epo:hasCandidateListepo:DynamicPurchasingSystem -> epo:SelectedCandidateList [0..*]
epo:hasCertificationRelation to the proof of conformance. + + WG approval 30/05/2023 Relation to the proof of conformance. + + WG approval 30/05/2023foaf:Person -> epo-cat:Certificate (external) [0..*]
org:Organization -> epo-cat:Certificate (external) [0..*]
epo:hasChangeJustificationCode explaining the change. + + WG Approval 5/11/2019 + The motives for the change. + + WG 5/11/2019 + + The codelist to be used is at-voc:change-corrig-justification which is available at + + http://publications.europa.eu/resource/dataset/change-corrig-justificationepo:ElementChangeDescription -> at-voc:change-corrig-justification [1]
epo:hasConcessionEstimatedValueepo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasConfirmedIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-791 Review Irregularity Typeepo:ReviewDecision -> at-voc:irregularity-type [0..*]
epo:hasConstraintepo:ProcurementCriterion -> cccev:Constraint [0..*]
epo:hasContactPointInRoleepo:AgentInRole -> cpov:ContactPoint [0..*]
epo:hasContractAmendmentepo:Contract -> epo:AmendedContract (external) [0..*]
epo:hasContractNatureTypeSubject of the acquisition. + + WG Approval 11/06/2020 + + epo:ContractTerm -> at-voc:contract-nature [0..1]
epo:hasContractValueepo:Contract -> epo:MonetaryValue [0..1]
epo:hasCountryCode + dct:Location -> at-voc:country [0..1]
locn:Address -> at-voc:country [0..1]
epo:hasCountryOfBirthThe country in which the Person was born. + cpv:Person -> at-voc:country [0..1]
epo:hasCurrencyThe identifier of the currency as in the standard code list used. + + epo:MonetaryValue -> at-voc:currency [0..1]
epo:hasDirectAwardJustificationList of reasons for using a procedure which allows awarding contracts directly without + publishing a notice. + + WG Approval 28/05/2020 + epo:DirectAwardTerm -> at-voc:direct-award-justification [0..1]
epo:hasDocumentRestrictionJustificationAn explanation about the reasons why some procurement documents are restricted. + + Additional Information: + This corresponds in eForms to BT-707 Documents Restricted Justification. + + WG Approval 09/03/2021 + epo:AccessTerm -> at-voc:communication-justification [0..1]
epo:hasDocumentStatushttps://test-docs.peppol.eu/logistics/transport-execution/codelist/DocumentStatusCode/epo:Document -> at-voc-new:document-status (external) [0..1]
epo:hasDocumentType + + https://docs.peppol.eu/poacc/upgrade-3/2022-Q4/codelist/UNCL1001_T01/epo:Document -> at-voc-new:document-type (external) [0..1]
epo:hasDPSScopeExplanation as to whether a dps is used and by whom. + + Additional Information: + This corresponds in eForms to BT-766 Dynamic Purchasing System. + WG Approval 09/11/2021 + Explanation as to whether a dps is used and by whom. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usageepo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage [0..1]
epo:hasECataloguePermissionThe extent to which electronic catalogues may be used in tenders. + + WG Approval 03/10/2019 + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEInvoicingPermissionepo:ContractTerm -> at-voc:permission [0..1]
epo:hasElectronicDigestepo:Document -> epo:Document [0..*]
epo:hasElectronicSignatureepo:Document -> epo:ElectronicSignature [0..*]
epo:hasElementChangeepo:NoticeChange -> epo:ElementChangeDescription [1..*]
epo:hasElementConfidentialityRelation indication that the publication provision applies to a given field of a document.epo:PublicationProvision -> epo:ElementConfidentialityDescription [1..*]
epo:hasElementDescriptionepo:NoticeDescription -> epo:ElementDescription [0..*]
epo:hasElementModificationepo:ContractModification -> epo:ElementModificationDescription [1..*]
epo:hasEndpointIdentifiercv:Channel -> adms:Identifier [0..*]
epo:hasEstimatedBuyerConcessionRevenueThe expected payments made by the buyer to the economic operator awarded the concession + that are not directly related to the use of the concession. + + <u>Additional Information:</u> + For example the public buyer pays a yearly fee to provide a ticketing solution to + the public. The fee the public pays for every ticket sold through the solution is + not included in this estimation but in the estimation of the user concession revenue. + + This corresponds to BT-160 in eForms. + + WG Approval 07/01/2020epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedDurationRelation indicating a Contract has an estimated Duration. + + Additional Information + + When the Lot uses a Technique the contract estimated duration applies to the Technique. + epo:Contract -> epo:Duration [0..1]
epo:hasEstimatedUserConcessionRevenueThe estimated revenue coming from the use of the concession. + + Additional Information: + Revenues are for example fees and fines. For example, the fees and fines coming from + the cars using a motorway. + + This corresponds to BT-162 in eForms. + epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedValueA forecast of the value of the procurement before competition. + + Additional Information: + Different cases of estimated values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + The forecast is calculated by the buyer and covers all revenues whether coming from + the buyer or third parties. + See for example recital (19), Article 5 of Directive 2014/24/EU and other articles + from the rest of Directives about procurement. + + In the case of framework agreements and dynamic purchasing systems this refers to + the maximum estimated value. + + This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used + for BT-157 (for LotGroup). + <b> + </b><b>WG Approval 05/12/2019</b> + + epo:ProcurementElement -> epo:MonetaryValue [0..1]
epo:hasESubmissionPermissionThe requirements as to what extent electronic submission is allowed. + + WG Approval 03/10/2019 + + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEvaluationMemberAn agent involved in an evaluation board. + WG approval 14/09/2021epo:EvaluationBoard (external) -> epo:JuryMember [1..*]
epo:hasFinancialOfferValueThe value offered by the Tenderer for a Lot. + + Additional Information: + This value is normally the one awarded for a winning Tender Lot. In case of negotiated + procedures the original financial value may be reviewed and the offer updated. + + This corresponds to BT-720 in eForms.epo:Tender -> epo:MonetaryValue [0..1]
epo:hasFixedValueTypeThe method to interpret the fixed value as pertaining to a total or unit. + + WG Approval 17/09/2019 + + epo:AwardCriterion -> at-voc:number-fixed [0..1]
epo:hasFormTypeA categorisation of the steps in which the Notice is used. + + WG Approval 12/05/2020 + + epo:Notice -> at-voc:form-type [0..1]
epo:hasFrameworkAgreementEstimatedValueThis refers to BT-660 in eForms.epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementMaximumValueepo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementTypeThe form of framework agreement used in a procurement procedure. + + Addition information: + + A concept to distinguish the different types of framework agreement, which are: + 1. Framework agreement without reopening of competition, + 2. Framework agreement with reopening of competition, or + 3. Framework agreement partly without reopening of competition. + + WG Approval 19/09/2019 + + epo:FrameworkAgreementTerm -> at-voc:framework-agreement [1]
epo:hasFundProgrammeepo:Fund -> at-voc:EU-programme [0..1]
epo:hasGroupFrameworkAgreementMaximumValueThis corresponds to BT-156 in the eForms.epo:LotGroupAwardInformation -> epo:MonetaryValue [0..1]
epo:hasHighestReceivedTenderValueAmount of the Tender with the highest value. + + Additional Information + The value must correspond to an admissible tender. For example, tenders compliant + with the procurement document requirements, not having an abnormally low price or + cost, etc. + + + WG Approval 12/12/2019 + + + epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasInternalIdentifierepo:ProcurementElement -> adms:Identifier [0..*]
epo:hasIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity + Typeepo:ReviewIrregularitySummary -> at-voc:irregularity-type [1]
epo:hasItemCountryOfOriginThe source country of the product or service. + + Additional Information: + + The country of origin can be provided by the buyer as a requirement or by the tenderer + information of the item to be provided. + + WG Approval 07/01/2020 + + The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/countryepo:Tender -> at-voc:country [0..*]
epo:hasItemStandardIDThe identifier for the instance of the concept based on a standard scheme. + + Additional information: + For example the GTIN scheme (Global Trade Item Number). + + WG Approval 24/02/2022 + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasLanguageLanguage in which the submitted information is to be expressed. + + WG Approval 21/07/2020 + + epo:SubmissionTerm -> at-voc:language [0..*]
epo:hasLateSubmissionPermissionWhether economic operator-related information can be supplemented even after the submission + deadline. + + Additional Information + This is specific to the information on the economic operator and not the actual offer. + This does not apply to the requests for clarification. + + WG Approval 21/07/2020 + epo:SubmissionTerm -> at-voc:missing-info-submission [0..1]
epo:hasLaunchFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLaunchGroupFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLegalBasisThe legal basis under which the procurement procedure takes place. + + Additional Information: + For example European Directives or Regulations, national laws etc. + The recommended code list is the example for the legal basis at the European level. + + WG 04/04/2023 + + The legal basis under which the procurement procedure takes place. + + Additional Information: + For example European Directives or Regulations, national law + + WG 09/11/2021 + + The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis + epo:ProcurementObject -> at-voc:legal-basis [0..*]
epo:hasLegalIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasLegalRegimeepo:ProcurementObject -> epo:legal-regime [0..*]
epo:hasLotReferenceepo:Contract -> epo:Lot [1..*]
epo:hasLowestReceivedTenderValueAmount of the Tender with the lowest value. + + Additional Information + The value must correspond to an admissible tender. For example, tenders compliant + with the procurement document requirements, not having an abnormally low price or + cost, etc. + + WG Approval 12/12/2019 + + epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasMainActivityThe principal sectoral area in which an organisation operates. + + Additional information: + + The activities associated with buyers are derived from the top level of the Classification + of the functions of the government (COFOG) from the United Nations Statistics Division. + + The activities associated with buyer are derived from sectors explicitly falling within + the sectoral directive (2014/25/EU Art. 8 - Art. 14). + + WG Approval 05/05/2020 + + org:Organization -> at-voc:main-activity [0..1]
epo:hasMainClassificationepo:Purpose -> at-voc:cpv [1..*]
epo:hasManufacturerIDThe manufacturer's identifier for the item. + epo-cat:Manufacturer (external) -> adms:Identifier [0..1]
epo:hasManufacturerItemIDThis refers to the general identifier for the concept as defined by the manufacturer. + + + WG Approval 16/05/2023 + + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasMaximumFrameworkAgreementAwardedValueThe maximum value which can be spent through all the framework agreements announced + in this notice, including options and renewals of contracts. + + Additional information: + + The value provided is a threshold value that implicity means that it cannot be exceeded + however it may not be reached during the execution of a contract. + + The Framework Agreements in a CAN are to be traced back and added to provide this + value. + + This corresponds to the BT-118 in eForms. + + WG Approval 03/12/2019epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasMemberepo:OrganisationGroup -> org:Organization [1..*]
epo:hasModificationJustificationExplanation of why a contract was modified. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:modification-justification which is available at + http://publications.europa.eu/resource/dataset/modification-justification + + Additional Information + + This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . + + This corresponds in eForms to BT-200. + + Explanation of why a contract was modified. + + WG Approval 09/11/2021 + + The codelist to be used is at-voc:modification-justification which is available at + http://publications.europa.eu/resource/dataset/modification-justification + + Additional Information + + This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . + + This corresponds in eForms to BT-200. + + + epo:ElementModificationDescription -> at-voc:modification-justification [1]
epo:AmendedContract (external) -> at-voc:modification-justification [1]
epo:hasNationality + cpv:Person -> at-voc:country [0..*]
epo:hasNonAwardJustificationOn hold; Enumeration. + + + epo:AwardDecision -> at-voc:non-award-justification [0..1]
epo:hasNonElectronicSubmissionJustification + Reason for not accepting electronic information. + + WG Approval 21/07/2020 + epo:SubmissionTerm -> at-voc:communication-justification [0..*]
epo:hasNonPublicationJustificationThe reason why data is not published. + WG Approval 11/06/2020 + + epo:ElementConfidentialityDescription -> at-voc:non-publication-justification [1]
epo:hasNoticeTypeepo:Notice -> at-voc:notice-type [1]
epo:hasNotificationContentTypeA categorisation of templates for sets of Procurement information to be conveyed in + Notices. + + WG Approval 12/05/2020epo:Notice -> epo:notification-phases-content-types [0..1]
epo:hasNutsCode dct:Location -> at-voc:nuts [0..1]
locn:Address -> at-voc:nuts [0..1]
epo:hasOfficialLanguageThe language(s) in which the instances of the given concepts are officially available. + These linguistic versions are equally legally valid. + + WG Approval 03/10/2019 + + epo:Document -> at-voc:language [1..*]
epo:hasPerformingStaffQualificationInformation + Additional information: + + This relation corresponds in eForms to BT-79.Explanation as to if and/or when information + of the persons to carry out the contract is to be provided. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage + epo:ProcurementCriterion -> at-voc:requirement-stage [0..*]
epo:hasPlannedDurationepo:PlannedProcurementPart -> epo:Duration [0..1]
epo:hasPlannedPeriodepo:PlannedProcurementPart -> epo:Period [0..1]
epo:hasPrimaryContactPointorg:Organization -> cpov:ContactPoint [0..*]
epo:hasPrizeValueThe monetary value of a prize, if any, for the winner (or runners-up) of the design + contest. + + Additional Information: + This corresponds to BT-644 in eForms. + + WG Approval 29/08/2019 + + epo:Prize -> epo:MonetaryValue [0..1]
epo:hasProcedureTypeIdentification of the Procedure used. + + WG Approval 09/06/2020 + epo:Procedure -> at-voc:procurement-procedure-type [1]
epo:hasProcurementClassificationepo:Contract -> at-voc:cpv [0..1]
epo:hasProcurementHighestReceivedTenderValueThe highest received tender value for the procurement. + + Additional Information: + This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementLowestReceivedTenderValueThe lowest received tender value for the procurement. + + Additional Information: + This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementScopeDividedIntoLotepo:Procedure -> epo:Lot [1..*]
epo:hasPurposeRelation indicating a procurement part has a puropse.epo:ProcurementObject -> epo:Purpose [0..1]
epo:hasQualificationSystemDurationepo:MultipleStageProcedureTerm -> epo:Duration [0..1]
epo:hasReceivedSubmissionTypeepo:SubmissionStatisticalInformation -> at-voc:received-submission-type [0..1]
epo:hasRegistrationCountryorg:Organization -> at-voc:country [0..1]
epo:hasRemedyValueAdditional information: + This relation corresponds in eForms to BT-793 Review Remedy Value.epo:ReviewDecision -> epo:MonetaryValue [0..1]
epo:hasReservedExecutionepo:ContractTerm -> at-voc:applicability [0..1]
epo:hasReservedProcurementExplanation as to whether a procurement may be reserved for the participation of certain + types of organisation. + + Additional information: + This property corresponds in eForms to the BT-71 + WG Approval 09/11/2021 + Explanation as to whether a procurement may be reserved for the participation of certain + types of organisation. + + Additional information: + This property corresponds in eForms to the BT-71 + WG Approval 09/11/2021 + epo:ParticipationCondition -> at-voc:reserved-procurement [0..*]
epo:ParticipationConditionsSummary -> at-voc:reserved-procurement [0..*]
epo:hasReviewBodyTypeepo:Reviewer -> at-voc:review-body-type [0..*]
epo:hasReviewDecisionTypeAdditional information: + This relation corresponds in eForms to BT-790 Review Decision Type.epo:ReviewDecision -> at-voc:review-decision-type [0..*]
epo:hasReviewIrregularitySummaryAdditional information: + This relation corresponds in eForms to BG-613 Buyer Review Requestsepo:ReviewRequestSummary -> epo:ReviewIrregularitySummary [0..*]
epo:hasReviewRequestFeeAdditional information: + This relation corresponds in eForms to BT-795 Review Request Fee.epo:ReviewRequest -> epo:MonetaryValue [0..1]
epo:hasSelectionCriteriaUsage + Additional Information: + This corresponds in eForms to BT-748 Selection Criteria Used.epo:SelectionCriterion -> at-voc:usage [0..1]
epo:hasSelectionCriterionTypeThe classification of the selection criteria. + + + Additional Information: + + This corresponds in eForms to BT-747 Selection Criteria Type. + + WG Approval 09/11/2021 + epo:SelectionCriterion -> at-voc:selection-criterion [0..1]
epo:hasSellerItemID The general identifier for the concept as defined by the seller. + + WG Approval 16/05/2023 + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasSerialIDThe identifier assigned to the specific instance of the produced concept. + WG Approval 16/05/2023 + epo-cat:Item (external) -> adms:Identifier [0..1]
epo:hasStartDateepo:SelectedCandidateList -> epo:Period [0..1]
epo:hasSubcontractingEstimatedValueThe estimated value of a single subcontract. + + This relates to BT-553 in eForms. + + WG Approval 01/09/2020 + + epo:SubcontractingEstimate -> epo:MonetaryValue [0..1]
epo:hasSubcontractingObligationThe requirement the tender must meet with regard to subcontracting parts of the contract. + WG Approval 09/11/2021 + + epo:SubcontractTerm -> at-voc:subcontracting-obligation [0..*]
epo:hasTaxIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasTenderSubcontractingInformationThe information about subcontracting that must be indicated in the tender. + + WG Approval 10/10/2019 + + epo:SubmissionTerm -> at-voc:subcontracting-indication [0..*]
epo:hasTenderValidityPeriodThe relation indicating until when a tender instance is applicable. + epo:SubmissionTerm -> epo:Period [0..1]
epo:hasThresholdTypeThe method to interpret the threshold value as minimum or a maximum. + + WG Approval 17/09/2019 + cccev:Constraint -> at-voc:number-threshold [0..*]
epo:hasTimePeriod + + epo:Period -> at-voc:timeperiod [1..*]
epo:hasTotalAwardedValueThe awarded value of all lots announced in this notice, including options and renewals. + + + Additional information: + The values of the individual Lots awarded under a framework agreement and mentioned + in this notice are included. + + The values of the individual lots announced in a CAN are to be traced back and added + to provide this value. + + This corresponds to the BT-161 in eForms. + + WG Approval 03/12/2019 + epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasTotalQuantityThe number of units required. + + Additional Information: + The quantity needs to go along with the unit. + + + + epo:Purpose -> epo:Quantity [0..1]
epo:hasTotalValue epo:TenderGroup -> epo:MonetaryValue [1]
epo:Deliverable (external) -> epo:MonetaryValue [0..1]
epo:hasUnitCodeepo:Quantity -> at-voc:measurement-unit [1]
epo:hasUnofficialLanguageThe language translation(s) in which the instances of the given concepts are available. + These linguistic versions are not an official translation, they are provided only + for information. + + WG Approval 03/10/2019 + epo:Document -> at-voc:language [0..*]
epo:hasUsageThe codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage + epo:Technique -> at-voc:usage [0..1]
epo:hasUUIDA universally unique identifier for an instance of this document. + + WG Approval 12/05/2020epo:Document -> adms:Identifier [0..1]
epo:hasValidityPeriodThe relation indicating until when a given instance of a concept is applicable. + + WG approval 30/05/2023 + The relation indicating until when a given instance of a concept is applicable. + + WG approval 30/05/2023epo:Technique -> epo:Period [0..1]
epo-cat:Certificate (external) -> epo:Period [0..1]
epo:hasVariantPermissionThe obligation or possibility for tenderers to submit variants or not. + + Additional Information: + + Variants are alternative ways to fulfil the buyer's needs as opposed to solutions + indicated in the procurement documents. + + eForms: Whether tenderers are required, allowed or forbidden to submit tenders which + fulfil the buyer's needs differently than as proposed in the procurement documents. + + + Additional Information: + + Further conditions for submitting variant tenders are in the procurement documents. + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasWeightValueTypeNo definition. Waiting on CCCEV alignment. + + + epo:ProcurementCriterion -> at-voc:number-weight [0..1]
epo:includesAccessibilityCriterionExplanation as to whether accessibility Criterion are used or not. + WG Approval 09/11/2021 + + epo:StrategicProcurement -> at-voc:accessibility [0..*]
epo:includesTenderAdditional information: + This corresponds in eForms to BT-3202 Contract Tender Identifier. + epo:Contract -> epo:Tender [0..*]
epo:indicatesAwardToWinnerReveals the winner to whom the tender award outcome is attributed.epo:TenderAwardOutcome -> epo:Winner [0..1]
epo:indicatesInvoiceeContactPointepo:Buyer -> cpov:ContactPoint []
epo:involvesBuyerepo:Procedure -> epo:Buyer [0..*]
epo:involvesProcurementDocumentepo:AccessTerm -> epo:ProcurementDocument [1]
epo:isAppointedByepo:EvaluationBoard (external) -> epo:Buyer [1]
epo:isAssignedForEvaluationOfepo:EvaluationBoard (external) -> epo:Lot [0..*]
epo:isBasedOnImplementingRegulationIndicates under which regulation a notice is created. + + WG Acceptance 06/09/2022epo:Notice -> at-voc:legal-basis [0..1]
epo:isBeneficialOwnerOfA role of any natural person(s) who ultimately owns or controls the organisation or + on whose behalf a transaction or activity is being conducted. + Additional Information: + This role is defined in the directive EU 2015/849 and it's beyond the scope for public + eProcurement domain. + WG approval 14/09/2021epo:Business [,0..*] <- cpv:Person
epo:isCalculatedOnThe monetary amount to which the multiplier factor is applied in calculating the amount + of this allowance or charge. + + The monetary amount to which the multiplier factor is applied in calculating the amount + of this allowance or charge.epo-ord:AllowanceChargeInformation (external) -> epo:MonetaryValue [0..1]
epo-ord:TaxInformation (external) -> epo:MonetaryValue [0..1]
epo:isExecutedByProcurementServiceProviderepo:Procedure -> epo:ProcurementServiceProvider [0..1]
epo:isFundedByFunding is provided either completely or partially by a Fund. + + Additional information: + This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 + Contract EU Funds (applied per Contract lot) + Funds may change between the lot and the contract, for example in the case of an emergency + crisis, a contract may be financed by a budget that was not foreseen in the call. + + epo:ProcurementObject -> epo:Fund [0..*]
epo:isOwnedByAgentepo:System -> foaf:Agent [0..1]
epo:isResponsibilityOfBuyerThe buyer in charge of the procedure. + + Additional Information: + In case there are multiple buyers, it may be the case that one or more buyers are + in charge of the procedure. + + epo:Procedure -> epo:Buyer [0..*]
epo:isSubjectToContractSpecificTermepo:Contract -> epo:ContractSpecificTerm [0..*]
epo:isSubjectToGroupingepo:Tender -> epo:LotGroup [0..1]
epo:isSubjectToLotSpecificTermepo:Lot -> epo:LotSpecificTerm [0..*]
epo:isSubjectToProcedureSpecificTermepo:Procedure -> epo:ProcedureSpecificTerm [1..*]
epo:isSubjectToTermepo:ProcurementObject -> epo:Term [0..*]
epo:isSubmitedByRelation indicating the submission of a tender by an economic operator. + WG approval 18/05/2021epo:Tender -> epo:Tenderer [0..1]
epo:isSubmittedForLotepo:Tender -> epo:Lot [1]
epo:isSubmittedForLotGroupepo:TenderGroup -> epo:LotGroup [1]
epo:isSupportedBy epo:Tender -> epo:TechnicalOffer (external) [1]
epo:Tender -> epo:ESPDResponse (external) [1]
epo:Tender -> epo:FinancialOffer (external) [1]
epo:leadByepo:OrganisationGroup -> org:Organization [0..1]
epo:needsToBeATendererThe Winner must be a Tenderer.epo:Winner -> epo:Tenderer [0..1]
epo:needsToBeAWinnerThe Contractor must be a Winner. + epo:Contractor -> epo:Winner [0..1]
epo:ownsSystemepo:System [,0..*] <- foaf:Agent
epo:playedBy epo:AgentInRole -> foaf:Agent [1]
epo-ful:TransportMeansOperator (external) -> foaf:Person [0..1]
epo:JuryMember -> foaf:Person [0..1]
epo:providesContractTotalPaymentValueAdditional Information: + This corresponds to BT-779 in eForms. epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesContractTotalPenaltyValue + Additional Information: + This corresponds to BT-782 in eForms. + epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesRulingOnRemedyStates the measures to be taken after a review procedure.epo:ReviewDecision -> at-voc:remedy-type [0..*]
epo:refersToAwardDecision epo-not:CompletionNotice (external) -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice (external) -> epo:AwardDecision [0..*]
epo:refersToContractepo:ContractLotCompletionInformation -> epo:Contract [1]
epo:refersToContractToBeModifiedepo-not:ContractModificationNotice (external) -> epo:Contract [1]
epo:refersToLot epo:Notice -> epo:Lot [1..*]
epo-not:CompletionNotice (external) -> epo:Lot [1..*]
epo-not:ContractModificationNotice (external) -> epo:Lot [1..*]
epo-not:ResultNotice (external) -> epo:Lot [1..*]
epo:refersToLotGroup epo-not:ContractModificationNotice (external) -> epo:LotGroup [0..*]
epo-not:ResultNotice (external) -> epo:LotGroup [0..*]
epo-not:CompletionNotice (external) -> epo:LotGroup [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice (external) -> epo:LotGroupAwardInformation [0..*]
epo:refersToNonPublishedElementepo-not:CompletionNotice (external) -> epo:PublicationProvision [0..*]
epo:refersToNoticeepo:Notice -> epo:Notice [0..1]
epo:refersToNoticeAwardInformationepo-not:CompletionNotice (external) -> epo:NoticeAwardInformation [0..1]
epo:refersToOriginalNoticeepo:ContractModification -> epo:Notice [0..1]
epo:refersToPlannedPartepo:AccessTerm -> epo:PlannedProcurementPart [0..*]
epo:refersToPreviousepo:Document -> epo:Document [0..*]
epo:refersToPreviousNotice + Additional information: + This corresponds in eForms to BT-758 Change Notice Version Identifier.epo:NoticeChange -> epo:Notice [0..1]
epo:refersToPreviousProcedureReference to a previous procedure. + + Additional Information: + In the case of Direct Award Terms, this property points to a previous Procedure justifying + the use of Direct Award without a prior publication. + + This corresponds in the eForms to BT-1252 Direct Award Justification Previous + Procedure Identifierepo:DirectAwardTerm -> epo:Procedure [0..1]
epo:refersToPreviousProcedureLotReference to one or more Lots in a previous procedure. + + Additional Information: + In the case of Direct Award Terms, this property points to a previous Procedure justifying + the use of Direct Award without a prior publication. + + This corresponds in the eForms to BT-1252 Direct Award Justification Previous + Procedure Identifier + + WG Approval 22/11/2019 14:33:55epo:DirectAwardTerm -> epo:Lot [0..*]
epo:refersToPreviousReviewAdditional information: + This relation corresponds in eForms to BT-785 "Review Previous Identifier".epo:ReviewObject -> epo:ReviewObject [0..1]
epo:refersToProcedure epo-not:ResultNotice (external) -> epo:Procedure [1]
epo-not:ContractModificationNotice (external) -> epo:Procedure [1]
epo-not:CompletionNotice (external) -> epo:Procedure [1]
epo:Notice -> epo:Procedure [1]
epo:refersToProjectepo-ord:Order (external) -> epo:Project [0..1]
epo:refersToRoleepo-not:CompletionNotice (external) -> epo:AgentInRole [0..*]
epo:requestsRemedyTypeAdditional information: + This relation corresponds in eForms to BT-792 Review Remedy Typeepo:ReviewRequest -> at-voc:remedy-type [0..*]
epo:resolvesReviewRequestepo:ReviewDecision -> epo:ReviewRequest [1]
epo:resultsFromLotAwardDecision epo:DirectContract -> epo:LotAwardDecision [0..*]
epo:FrameworkAgreement -> epo:LotAwardDecision [0..*]
epo:resultsFromMiniCompetitionAwardDecisionepo:PurchaseContract -> epo:MiniCompetitionAwardDecision [0..1]
epo:resultsInDynamicPurchasingSystemepo:DynamicPurchaseSystemTechnique -> epo:DynamicPurchasingSystem [1]
epo:setsGroupingContextForLotepo:LotGroup -> epo:Lot [1..*]
epo:signedByBuyerepo:Contract -> epo:Buyer [0..*]
epo:signedByContractorepo:Contract -> epo:Contractor [0..*]
epo:signsAwardDecisionepo:Buyer -> epo:AwardDecision [0..*]
epo:specifiesAwardCriterionepo:MiniCompetition -> epo:AwardCriterion [0..*]
epo:specifiesBuyer epo-cat:Catalogue (external) -> epo:Buyer [0..*]
epo-ord:Order (external) -> epo:Buyer [1]
epo:specifiesCatalogueProviderepo-cat:Catalogue (external) -> epo:CatalogueProvider [0..1]
epo:specifiesCatalogueReceiverepo-cat:Catalogue (external) -> epo:CatalogueReceiver [0..1]
epo:specifiesDeliverableepo:Contract -> epo:Deliverable (external) [0..*]
epo:specifiesProcurementCriteriaSummaryepo:Procedure -> epo:ProcurementCriteriaSummary [0..*]
epo:specifiesProcurementCriterion epo:Lot -> epo:ProcurementCriterion [0..*]
epo:LotGroup -> epo:ProcurementCriterion [0..*]
epo:specifiesSubcontractorsepo:Tender -> epo:Subcontractor [0..*]
epo:substantiatesExclusionGroundepo:Tenderer -> epo:ExclusionGround [0..1]
epo:summarisesInformationForAwardDecisionRelates to submission for the given competition, either at Lot level or Mini-Competition + level. + + WG approval 30/05/2023epo:SubmissionStatisticalInformation -> epo:AwardDecision [1]
epo:usesCandidateListepo:MiniCompetition -> epo:SelectedCandidateList [0..1]
epo:usesChannelepo:ProcurementElement -> cv:Channel [0..*]
epo:usesTechniqueepo:ProcurementObject -> epo:Technique [0..*]
epo-cat:hasAmountThe predetermined monetary value charged in addition to the price. + + WG approval 26/07/2022 The predetermined monetary value charged in addition to the price. + + WG approval 26/07/2022 + + epo-ord:AllowanceChargeInformation (external) -> epo:MonetaryValue [1]
epo-ord:TaxInformation (external) -> epo:MonetaryValue [0..1]
epo-cat:hasBaseQuantityThe quantity at which the net monetary value applies.epo-cat:Price (external) -> epo:Quantity [0..1]
epo-cat:hasCatalogueLineValidityepo-cat:CatalogueLine (external) -> epo:Period [0..1]
epo-cat:hasCountryOfOriginThe source country of the product or service. + + Additional Information: + + The country of origin can be provided by the buyer as a requirement or by the tenderer + information of the item to be provided. + + WG Approval 07/01/2020 + epo-cat:Item (external) -> at-voc:country [0..1]
epo-cat:hasDeliveryLocationLocation delivery area where the Item can be ordered to the given price. + epo-cat:Price (external) -> dct:Location [0..1]
epo-cat:hasExpectedDeliveryTimeThe expected amount of time between the order and delivery of an item. + + WG approval 26/07/2022 + epo-cat:Price (external) -> epo:Duration [0..1]
epo-cat:hasExternalSpecificationURI reference to external item information or specifications, e.g. web address. + epo-cat:Item (external) -> epo:Document []
epo-cat:hasMaximumOrderQuantityThe maximum number of orderable units that can be ordered according to details provided + in the catalogue line, such as price. + epo-cat:CatalogueLine (external) -> epo:Quantity [0..1]
epo-cat:hasMinimumQuantityGuaranteedForDeliveryThe minimum quantity of an item that is guaranteed by the seller to be delivered. + + epo-cat:CatalogueLine (external) -> epo:Quantity [0..1]
epo-cat:hasNetMonetaryValueThe price amount of an Item exclusive of taxes and after substracting price discounts. + epo-cat:Price (external) -> epo:MonetaryValue [1]
epo-cat:hasNetQuantityThe net quantity of the item that is contained in each consumable unit, excluding + any packaging materials. + epo-cat:Item (external) -> epo:Quantity [0..1]
epo-cat:hasOrderabableUnitFactorRateThe factor by which the base unit of the price can be converted to orderable unit. + + Additional information: + This is needed when the base price is provided different than the orderable unit. + For example, when selling paper, the price may be set per page, but the orderable + unit is a package of 500 pieces. Therefore the price needs to be converted to the + orderable unit. + + epo-cat:Price (external) -> epo:Quantity [0..1]
epo-cat:hasPriceValidityThe period of time when the Item can be ordered to the given price. + epo-cat:Price (external) -> epo:Period [1]
epo-cat:hasQualifiedValueQualified value of the property, which is defined in a classification scheme. + + Additional Information: + For example, the (0173-1#02-AAA026#007) drilling diameter of an item has value of + 12 inches. + + WG approval 28/07/2022epo-cat:ItemProperty (external) -> epo:Quantity [0..1]
epo-cat:hasQuantity epo-ord:OrderLine (external) -> epo:Quantity [1]
epo:Deliverable (external) -> epo:Quantity [0..1]
epo-cat:hasQuantityThresholdThe minimum quantity of the item that can be ordered to the given net monetary value.epo-cat:Price (external) -> epo:Quantity [0..1]
epo-cat:isSubordinatedToContractepo-cat:Catalogue (external) -> epo:Contract [0..1]
epo-ful:agreedByBuyerepo-ful:ShipmentAgreement (external) -> epo:Buyer [1..*]
epo-ful:hasAssociatedDocument epo-ful:DespatchAdvice (external) -> epo:Document [0..1]
epo-ful:DespatchLine (external) -> epo:Document [0..1]
epo-ful:hasCarrierConsignmentIDepo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:hasChargeableWeightepo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasConsigneeConsignmentIDepo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:hasConsignmentDeclaredStatisticsValueepo-ful:Consignment (external) -> epo:MonetaryValue [0..1]
epo-ful:hasConsignmentFreeOnBoardValueepo-ful:Consignment (external) -> epo:MonetaryValue [0..1]
epo-ful:hasConsignmentInvoiceValueDeclared amount of the Consignment. + + Additional Information: + + This is a logistics information needed for logistics, security measures, customs check, + etc.epo-ful:Consignment (external) -> epo:MonetaryValue [0..1]
epo-ful:hasDeclaredStatisticalValueepo-ful:GoodsItem (external) -> epo:MonetaryValue [0..*]
epo-ful:hasDespatchedQuantityQuantity despatched for delivered.epo-ful:DespatchLine (external) -> epo:Quantity [1]
epo-ful:hasEstimatedDeliveryPeriodepo-ful:ShipmentInformation (external) -> epo:Period [0..1]
epo-ful:hasFreightForwarderConsignmentIDepo-ful:Consignment (external) -> adms:Identifier [0..1]
epo-ful:hasGrossVolume epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasGrossWeight epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasHeightepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:hasLengthepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:hasLoadingLengthepo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasMaximumTemperatureepo-ful:TemperatureSpecification (external) -> epo:Quantity [0..1]
epo-ful:hasMinimumTemperatureepo-ful:TemperatureSpecification (external) -> epo:Quantity [0..1]
epo-ful:hasNetVolumeepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:hasNetWeight epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasOperatorLicenceIDepo-ful:TransportMeansOperator (external) -> adms:Identifier [0..1]
epo-ful:hasOutstandingQuantityepo-ful:DespatchLine (external) -> epo:Quantity [0..1]
epo-ful:hasTotalGoodsItemQuantity epo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasTraceIDepo-ful:GoodsItem (external) -> adms:Identifier [0..1]
epo-ful:hasTrackingIDepo-ord:DeliveryInformation (external) -> adms:Identifier [0..1]
epo-ful:hasTransportHandlingUnitQuantityepo-ful:Consignment (external) -> epo:Quantity [0..1]
epo-ful:hasVehicleIDepo-ful:TransportMeans (external) -> adms:Identifier [1]
epo-ful:hasVehicleSegmentIDepo-ful:TransportMeans (external) -> adms:Identifier [0..1]
epo-ful:hasWidthepo-ful:AbstractContainer (external) -> epo:Quantity [0..1]
epo-ful:specifiesPlaceOfDespatchepo-ful:ShipmentInformation (external) -> dct:Location [0..1]
epo-not:announcesRoleepo-not:ResultNotice (external) -> epo:AgentInRole [0..*]
epo-not:refersToRoleepo-not:ResultNotice (external) -> epo:AgentInRole [1..*]
epo-ord:concernsContractepo-ord:ContractInformation (external) -> epo:Contract [1]
epo-ord:concernsOriginatorRequestepo-ord:OriginatorInformation (external) -> epo:OriginatorRequest [0..1]
epo-ord:hasAmountDueForPaymentepo-ord:Order (external) -> epo:MonetaryValue [1]
epo-ord:hasDeliveryPeriodepo-ord:DeliveryInformation (external) -> epo:Period [0..1]
epo-ord:hasPrepaidAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasRoundingAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTaxInformation epo:Tender -> epo-ord:TaxInformation (external) [0..1]
epo:Contract -> epo-ord:TaxInformation (external) [0..1]
epo-ord:hasTotalAllowanceAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTotalChargeAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTotalLineAmountepo-ord:Order (external) -> epo:MonetaryValue [1]
epo-ord:hasTotalTaxExclusiveAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:hasTotalTaxInclusiveAmountepo-ord:Order (external) -> epo:MonetaryValue [0..1]
epo-ord:implementsContractepo-ord:OrderResponse (external) -> epo:Contract [0..1]
epo-ord:specifiesBuyerepo-ord:OrderResponse (external) -> epo:Buyer [0..1]
epo-ord:specifiesDeliveryAgreementLocationepo-ord:DeliveryAgreement (external) -> dct:Location [0..1]
epo-ord:specifiesPlaceOfDeliveryepo-ord:DeliveryInformation (external) -> dct:Location [0..1]
locn:addressdct:Location -> locn:Address [0..1]
locn:addressIDA globally unique identifier for each instance of an Address. + + Additional Information: + The concept of adding a globally unique identifier for each instance of an address + is a crucial part of the INSPIRE data spec. A number of EU countries have already + implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. + OASIS xAL also includes an address identifier. It is the address Identifier that allows + an address to be represented in a format other than INSPIRE whilst remaining conformant + to the Core Vocabulary. + + The INSPIRE method of representing addresses is very detailed, designed primarily + for use in databases of addresses. Whilst data that is published in full conformance + with the INSPIRE data structure can be made available using the Location Core Vocabulary + the reverse is not true since the Core Vocabulary allows much greater flexibility. + + Many datasets that include address data as one piece of information about something + else are likely to have that data in simpler formats. These might be tailored to the + specific need of the dataset, follow a national norm, or make use of a standard like + vCard. + + To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable + with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location + Core Vocabulary provides the extra property of full address and makes use of INSPIRE's + addressID.locn:Address -> adms:Identifier [0..1]
locn:geographicIdentifierA URI that identifies the Location. + + Additional Information: + GeoNames.org provides stable, widely recognised identifiers for more than 10 million + geographical names that can be used as links to further information. For example, + http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately + these URIs cannot easily be automatically deduced since the URI scheme uses simple + numeric codes. Finding a GeoNames identifier for a Location is almost always a manual + process. Where such identifiers are known or can be found, however, it is recommended + that they be used. + + Where the Location Class is used to identify a country, if the geonames URI is not + known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX + where XX is the ISO 3166 two character code for the country. + + The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece + and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct + URIs for these countries are: + + - http://dbpedia.org/resource/ISO_3166-1:GR + - http://dbpedia.org/resource/ISO_3166-1:GB + even when the geographic name is given as EL or UK. + + The use of a URIs has added advantages: + + - it can be used by automated systems to look up additional data (linked data); + - a triple store may store only one copy of the URI, whereas if a string is used, + a copy of that string is always stored for each and every person in the database. + Thus, in large data sets, the saving on memory capacity and the improvement in transmission + efficiency can be substantial. + dct:Location -> adms:Identifier [0..1]
locn:geometrydct:Location -> locn:Geometry [0..1]
person:placeOfBirthThe Location where the Person was born.cpv:Person -> dct:Location [0..1]
person:placeOfDeathThe Location where the Person died.cpv:Person -> dct:Location [0..1]
time:unitTypeepo:SpecificDuration -> time:TemporalUnit [1]
+
+
+ + \ No newline at end of file diff --git a/glossary/demo_ontology_module_CM_glossary.html b/glossary/demo_ontology_module_CM_glossary.html new file mode 100644 index 0000000..d1d5fdd --- /dev/null +++ b/glossary/demo_ontology_module_CM_glossary.html @@ -0,0 +1,692 @@ + + + + + + + + + + + + + + + + Model glossary + + +
+
+
+

Table of contents

+
+
+
+

Glossary

+

Class names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameDefinition
epo-not:CANDefence-D81
epo-not:CANSocial-D25
epo-not:CANSocialNotice
epo-not:CANSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:CANStandard-D24
epo-not:CANStandardNotice
epo-not:CNDefence-D81
epo-not:CNSocial-D25
epo-not:CNSocialNotice
epo-not:CNSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:CNStandard-D24
epo-not:CNStandardNotice
epo-not:CompetitionNoticeAn announcement of the launch of a Procurement Procedure by a Procuring Entity. + + WG approval 18/05/2018 +
epo-not:CompletionNoticeAn announcement of the end of a Procurement by a Buyer.
epo-not:ConcessionAwardNotice-D23
epo-not:ConcessionNotice-D23
epo-not:ContractModificationNoticeAn announcement of the Modification Of a Contract/Concession during its term by a + Procuring Entity.
epo-not:DesignContest-D24
epo-not:DesignContest-D25
epo-not:DesignContestNotice
epo-not:DesignContestResult-D24
epo-not:DesignContestResult-D25
epo-not:DesignContestResultNotice
epo-not:DirectAwardPrenotificationNoticeNotice which sets out the Buyer's purchasing intention to award a Contract without + prior notification of Competition.
epo-not:eFormsNotice
epo-not:Modification-D23
epo-not:Modification-D24
epo-not:Modification-D25
epo-not:Notice1
epo-not:Notice10
epo-not:Notice11
epo-not:Notice12
epo-not:Notice13
epo-not:Notice14
epo-not:Notice15
epo-not:Notice16
epo-not:Notice17
epo-not:Notice18
epo-not:Notice19
epo-not:Notice2
epo-not:Notice20
epo-not:Notice21
epo-not:Notice22
epo-not:Notice23
epo-not:Notice24
epo-not:Notice25
epo-not:Notice26
epo-not:Notice27
epo-not:Notice28
epo-not:Notice29
epo-not:Notice3
epo-not:Notice30
epo-not:Notice31
epo-not:Notice32
epo-not:Notice33
epo-not:Notice34
epo-not:Notice35
epo-not:Notice36
epo-not:Notice37
epo-not:Notice38
epo-not:Notice39
epo-not:Notice4
epo-not:Notice40
epo-not:Notice5
epo-not:Notice6
epo-not:Notice7
epo-not:Notice8
epo-not:Notice9
epo-not:PIN-CFCSocial-D25
epo-not:PIN-CFCSocialNotice
epo-not:PIN-CFCSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:PIN-CFCStandard-D24
epo-not:PIN-CFCStandardNotice
epo-not:PINDefence-D81
epo-not:PINOnly-D24
epo-not:PINOnly-D25
epo-not:PINOnlyNoticePriorInformationNotice
epo-not:PINProfile-D24
epo-not:PINProfile-D25
epo-not:PINProfile-D81
epo-not:PINProfileNotice
epo-not:PIN-RTL-D24
epo-not:PIN-RTL-D25
epo-not:PINTimeLimitNotice
epo-not:PlanningNoticeNotice which sets out the Contracting Authority's purchasing intentions. It is used + by Contracting Authorities to provide Suppliers with information about a Procurement + Process. +
epo-not:PMCNotice
epo-not:QS-D25
epo-not:QSNotice
epo-not:QSNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:ResultNoticeAn announcement of the award or non-award of a Contract by a Buyer. + + (WG approval 27/03/2019)
epo-not:SocialAndOtherSpecificServices-D23
epo-not:SocialAndOtherSpecificServices-D24public contracts
epo-not:StandardFormsNotice
epo-not:Subcontract-D81
epo-not:SubcontractNotice
epo-not:VEAT-D23
epo-not:VEAT-D24
epo-not:VEAT-D25
epo-not:VEAT-D81
epo-not:VoluntaryEx-AnteTransparencyNoticeA Notice informing of the intention to award a Contract without prior publication + of a Contract Notice. + + Additional Information: + + For European Notices above the threshold + + "A means of advertising the intention to award the Contract without opening it up + to formal Competition. A Contracting Authority may decide that a Contract does not + require prior publication through a Contract Notice in the O.J.E.U. A reason for this + decision may be that the Contract meets the exceptional conditions described in Article + 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme + urgency brought about by events unforeseeable by the Contracting Entity and in accordance + with the strict conditions stated in the Directive” . + "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems + that a Contract does not require prior publication of a Contract Notice in the European + Journal (OJEU). This may apply, for example, if the Contract meets the exceptional + conditions justifying direct award of contracts. + + <b>This definition is still to be worked on.</b> +
+

Attributes (datatype properties) names and definitions

+ + + + + + + + + + +
Class nameAttribute nameDefinitionData type / cardinality
+

Predicates (object properties) and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Predicate nameDefinitionDomain, Range and Cardinality
epo:announcesAwardDecision epo-not:ResultNotice -> epo:AwardDecision (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision (external) [0..*]
epo:announcesCompletionOfContractepo-not:CompletionNotice -> epo:Contract (external) [1]
epo:announcesContract epo-not:ResultNotice -> epo:Contract (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract (external) [0..*]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice -> epo:Lot (external) [1..*]
epo-not:CompetitionNotice -> epo:Lot (external) [1..*]
epo:announcesLotGroup epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup (external) [0..*]
epo-not:CompetitionNotice -> epo:LotGroup (external) [0..*]
epo:announcesLotGroupAwardInformation epo-not:ResultNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. + + Additional Information: + For example, elements in the Contract Award Notice that should be published at a later + date. epo-not:ResultNotice -> epo:PublicationProvision (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision (external) [0..*]
epo:announcesNoticeAwardInformation epo-not:ResultNotice -> epo:NoticeAwardInformation (external) [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation (external) [0..1]
epo:announcesPlannedProcurementPartepo-not:PlanningNotice -> epo:PlannedProcurementPart (external) [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice -> epo:Procedure (external) [1]
epo-not:CompetitionNotice -> epo:Procedure (external) [1]
epo:announcesReviewObjectepo-not:CompletionNotice -> epo:ReviewObject (external) [1..*]
epo:announcesRole epo-not:CompletionNotice -> epo:AgentInRole (external) [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole (external) [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole (external) [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole (external) [1..*]
epo-not:PlanningNotice -> epo:AgentInRole (external) [1..*]
epo:describesContractModificationepo-not:ContractModificationNotice -> epo:ContractModification (external) [0..*]
epo:describesResultNotice epo:NoticeAwardInformation (external) -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation (external) -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:hasFormType epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
epo:hasImplementingRegulation epo-not:eFormsNotice -> (EU) 2019/1780 [0..1]
epo-not:StandardFormsNotice -> (EU) 2015/1986 [0..1]
epo:hasLegalBasis epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
epo:hasNoticeType epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
epo:refersToAwardDecision epo-not:CompletionNotice -> epo:AwardDecision (external) [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision (external) [0..*]
epo:refersToContractToBeModifiedepo-not:ContractModificationNotice -> epo:Contract (external) [1]
epo:refersToLot epo-not:CompletionNotice -> epo:Lot (external) [1..*]
epo-not:ContractModificationNotice -> epo:Lot (external) [1..*]
epo-not:ResultNotice -> epo:Lot (external) [1..*]
epo:refersToLotGroup epo-not:CompletionNotice -> epo:LotGroup (external) [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup (external) [0..*]
epo-not:ResultNotice -> epo:LotGroup (external) [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation (external) [0..*]
epo:refersToNonPublishedElementepo-not:CompletionNotice -> epo:PublicationProvision (external) [0..*]
epo:refersToNoticeAwardInformationepo-not:CompletionNotice -> epo:NoticeAwardInformation (external) [0..1]
epo:refersToProcedure epo-not:CompletionNotice -> epo:Procedure (external) [1]
epo-not:ContractModificationNotice -> epo:Procedure (external) [1]
epo-not:ResultNotice -> epo:Procedure (external) [1]
epo:refersToRoleepo-not:CompletionNotice -> epo:AgentInRole (external) [0..*]
epo-not:announcesRoleepo-not:ResultNotice -> epo:AgentInRole (external) [0..*]
epo-not:hasLegalBasisepo-not:Modification-D24 -> Directive 24 [0..1]
epo-not:refersToRoleepo-not:ResultNotice -> epo:AgentInRole (external) [1..*]
+
+
+ + \ No newline at end of file diff --git a/glossary/ontologies-combined_glossary.html b/glossary/ontologies-combined_glossary.html new file mode 100644 index 0000000..4f9aad5 --- /dev/null +++ b/glossary/ontologies-combined_glossary.html @@ -0,0 +1,6393 @@ + + + + + + + + + + + + + + + + Model glossary + + +
+
+
+

Table of contents

+
+
+
+

Glossary

+

Class names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameDefinition
adms:IdentifierA character string to identify and distinguish uniquely, one instance of an object + in an identification scheme from all other objects in the same scheme together with + relevant supplementary information.
cccev:ConstraintLimitation applied to an Information Concept. + + Additional Information: + Constraints are Requirements in themselves, since they impose prerequisites which + influence the definition, use and/or Fulfilment of the Requirement. They represent + hard conditions such as minimum or maximum expressions which can be used to evaluate + pieces of information, the required age, income, involvement in activities, etc. An + example from the eProcurement domain is a threshold as the minimum turnover required + by the buying Organisation to select the Candidates. Note that CCCEV does not provide + any specific guidance on when which kind of Requirement should be used. Users of this + vocabulary should make decisions on this topic in their specific context.
cccev:CriterionCondition for evaluation or assessment. + + Additional Information: + In general, Criteria are used for comparison, filtering or Selection purposes. Criteria + usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need + to be met in order to pass the Requirements or to fulfil them to a certain degree + or quality. The concept of Criteria is broader than the concept of Constraint since + it covers more usages. The evaluation of the fulfilment is usually supported by the + provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology + defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria + or Award Criteria. A concrete example of a Criterion is 'participation in a criminal + organisation' which could also be considered as an Exclusion Ground Criterion in the + procurement domain or for requiring a public service.
cccev:EvidenceProof that a Requirement is met. + +
cccev:InformationConceptPiece of information that the Evidence provides or the Requirement needs.
cccev:RequirementCondition or prerequisite that is to be proven by Evidence. + + Additional Information: + Requirement is a generic class representing any type of prerequisite that may be desired, + needed or imposed as an obligation. CCCEV recommends to not use the Requirement class + directly, but rather a more semantically-enriched subclass such as Criterion, Information + Requirement or Constraint. Also note that the Requirement class is specified at a + more abstract level and is not to be used as the instantiation of a Requirement for + a specific Agent. + To illustrate the notion: the European Directive on services in the internal market + defines requirement as any obligation, prohibition, condition or limit provided for + in the laws, regulations or administrative provisions of the Member States or in consequence + of case-law, administrative practice, the rules of professional bodies, or the collective + rules of professional associations or other professional Organisations, adopted in + the exercise of their legal autonomy. + To stay consistent to how identification is realised in the eProcurement ontology, + we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification.
cpov:ContactPointInformation (e.g. e-mail address, telephone number) of a Person or department through + which the user can get in touch with. + + Additional information: + This class represents the contact information for a Public Service, Channel, Public + Organisation, etc. + The Contact Point could be a role, email address, telephone number, etc. + + WG approval 5/11/2019
cpov:PublicOrganisationAn Organisation that is defined as being part of the public sector by a legal framework + at any level. + + Additional information: + A body governed by public law: + - (a) established for the specific Purpose of meeting needs in the general interest + - (b) having legal personality; + - (c) financed, for the most part by the State, or regional or local authorities. + + + Examples of Public Organisations are municipality, international public body, ministry, + others. + + WG Approval 28/04/2020
cpv:PersonA individual human being who may be dead or alive, but not imaginary. +
cv:ChannelA medium through which Agents interact. + + Additional Information + Typical examples include online services, email, endpoint on eDelivery infrastructure, + phone, etc. + + Software solutions and electronic devices for communication and exchange of information + between Buyers and economic Operators. + Lots may use ad-hoc electronic means of communication that are not generally available + such as specific solutions for secure and dedicated communication or non-standard + eCatalogues. + + See also Directive recitals 53 to 56. + + WG approval 2023-02-14
dct:LocationAn identifiable geographic place or named place.
epo:AccessTermConditions and stipulations about where and how to access the Procurement Documents. + + WG Approval 09/03/2021 + +
epo:AcquiringCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of + the acquisition of supplies and/or services intended for other Buyers. + Additional Information: + In Public Procurement the Role of Acquiring Central Purchasing Body is carried out + by a Central Purchasing Body for other Contracting Authorities. + + WG approval 05/08/2021 +
epo:AcquiringPartyThe Role of an Agent that acts on the buying side of a Procurement Process. +
epo:AdHocChannelWeb page where tools and devices for electronic communication that are not generally + available can be downloaded free of charge. + + Additional Information: + + This corresponds in eForms to BT-724 Tool Atypical. + + + WG Acceptance 10/01/2023 +
epo:AgentInRoleRelative concept that ties an Agent to a part they play in a given Situational Context. + + Additional information: + The classification of roles is based is based on the degree of involvement into the + Procurement Process: + - Primary (Procurement) Pole is directly involved in the Procurement Process; + - Secondary (Procurement sub-) Role is secondary to the Procurement Process + - Tertiary (Related) Role is not involved in the Procurement Process.
epo:AuxiliaryPartyRole of an Agent who may be mentioned in the information exchanged during the Procurement + Process but who does not play an active part in it.
epo:AwardCriteriaSummary
epo:AwardCriterionCriterion that describes a Requirement that the Tender needs to resolve and on which + the Tender is evaluated and ranked. + + WG approval 05/11/2018
epo:AwardDecisionResolution of the Buyer as to the result of the Procurement Procedure. + + WG approval 14/11/2018
epo:AwarderA Role of an Agent that signs the Award Decision.
epo:AwardEvaluationTermConditions and stipulations defining particularities of the evaluation of Award Criteria.
epo:AwardingCentralPurchasingBodyRole of an Agent procuring activities conducted on a permanent basis in the form of + the award of Public Contracts or the conclusion of Framework Agreements for works, + supplies or services intended for other Buyers. + Additional Information: + In Public Procurement the Role of Awarding Central purchasing Body is carried out + by a Central Purchasing Body for other Contracting Authorities. + + WG approval 05/08/2021 +
epo:BudgetProviderA role of an agent whose Budget is used to pay for the Contract.
epo:BusinessA private law company registered in a national registry. + + WG Approval 28/04/2020 + +
epo:BuyerA Role of an Agent that awards a Contract and/or purchases items. + + Additional information: + In Public Procurement the Role of Buyer is carried out by the following types of Organisation: + Contracting Authority, Contracting Entity, a defense Contractor, an international + Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. + In Pre-Award, the Buyer generally awards the Contract, however future purchasers may + be foreseen. + In Post-Award the buyer generally refers to the purchaser of items.
epo:CandidateThe Role of an Agent that has sought an invitation or has been invited to take part + in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated + Procedure without prior publication, in a competitive dialogue or in an innovation + partnership. + + WG approval 30/05/2023
epo:CatalogueProviderA Role of an Agent compiling and supplying a Catalogue. + + Additional Information: + + The Catalogue Provider Role is usually played by the Agent that acts as a Seller, + or by another Agent that acts on behalf of the Seller. + + WG Approval 28/01/2021 +
epo:CatalogueReceiverA Role of an Agent processing a Catalogue. + + Additional Information: + The Catalogue Receiver may not only receive it but also validate it, process it, etc. + + The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or + by another Agent that acts on behalf of the Buyer. + + WG Approval 28/01/2021
epo:CentralPurchasingBodyRole of an Agent that provides centralised purchasing activities and, possibly, ancillary + purchasing activities for other Buyers. + + Additional Information: + In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting + Authority for other Contracting Authorities. + Contracting Authority procuring activities conducted on a permanent basis, in one + of the following forms:[...](b) the award of Public Contracts or the conclusion of + Framework Agreements for works, supplies or services intended for Contracting Authorities; + + WG approval 05/08/2021
epo:ConcessionContractA Contract between one or more Buyers and one or more Economic Operators giving the + right to the Economic Operators to exploit the rights foreseen in the Contract which + may include the receipt of Payments. + + WG Approval 24/05/2022
epo:ConcessionEstimate
epo:ContextSpecificDescriptionA description concerning a Procurement Object or a Notice in a specific Situation + Context. + + Additional Information: + The description has its own identity (+I) but is dependent (+D) on the concerned Entity. + + + We say that ContextSpecificDescription *concerns* an Entity. +
epo:ContextualProjectionProjection of an Entity and all of its properties that hold in a given Situation Context. + + + Additional Information: + The contextual projection does not have its own identity (-I), is dependent (+D) + on the described Entity, and is anti-rigid (~R) + + We say that ContextualProjection *describes* an Entity. + + Adaptation of ContextSlices pattern encoding a 4D view. + http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices
epo:ContractA voluntary, deliberate, and legally binding agreement between two or more competent + parties. + + Additional information: + This includes Concession Contracts. + + (WG approval 01/06/2018)
epo:ContractLotCompletionInformationInformation related to a given Lot at the end of the procurement.
epo:ContractModificationAn Announcement of the Modification Of a Contract/Concession during its Term by a + Buyer.
epo:ContractorThe Role of an Agent that has signed a Contract with a Buyer. + + WG approval 08/11/2022
epo:ContractSpecificTermGathering class for conditions and stipulations related to a contract in the Post-Award + Phase.
epo:ContractTermConditions and stipulations defining particularities of the Post Award Phase. + + (WG approval 23/11/2018) +
epo:DesignContestRegimeTermConditions and stipulations defining particularities of a Design Contest. + + WG approval: 04-02-2021
epo:DirectAwardTermConditions and stipulations defining particularities of the award of a Contract without + prior publication. + + Addtional Information: + + Direct award may refer to a previous Procedure and/or specific Lot(s). + + It may also refer to other justified situations whereby there is no previous Procedure. + + See Directive 2014/24/EU Article 32. + + WG Approval 22/11/2019 + + +
epo:DirectContract
epo:DocumentA set of interrelated Business Information representing the Business facts and associated + metadata. + The information may be conveyed in any language, medium or form, including textual, + numerical, graphic, cartographic, audio-visual forms, etc. + + WG Approval 23/05/2019 +
epo:DurationThe length of time in which a concept occurs.
epo:DynamicPurchaseSystemTechniqueA Technique that allows the selection of Candidates throughout the Procedure via the + Qualification Criteria, followed by individual Mini-Competitions for the Award of + Purchase Contracts. + + WG approval 23/05/2023
epo:DynamicPurchasingSystemAn electronic System that is set up by a Buyer which lists the Economic Operators + that satisfy the Qualification Criteria, which may later be put into competition via + a Mini-Competition in view of awarding a Purchase Contract. + + WG approval 23/05/2023 +
epo:EAuctionTechniqueA repetitive Technique in which new Prices, revised downwards, and/or new values concerning + certain elements of Tenders are bid on-line. + + Additional Information: + This corresponds in eForms to BT-767 Electronic Auction . + + WG approval 20/07/2018
epo:EconomicStandingSummary
epo:ElectronicSignature
epo:ElementChangeDescriptionInformation about a specific field to be changed with regard to a previous Notice.
epo:ElementConfidentialityDescriptionInformation about a specific field not intended for publication. + + Additional Information: + In the model, a field is identified by a combination of a class and a property on + that class. Therefore, these two references should be both provided. +
epo:ElementDescriptionDescription about a specific resource.
epo:ElementModificationDescriptionInformation about a specific field to be changed with regard to the Modification Of + a Contract.
epo:EmploymentInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for employment protection and working conditions.
epo:EnvironmentalProtectionInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for Environmental Protection.
epo:EstimateAn approximate calculation or a judgement of the value, number, Quantity or extent + of something.
epo:EvaluationTermConditions and stipulations defining particularities of the Tender evaluation. + + (WG approval 23/11/2018) + + +
epo:ExclusionGroundCriterion that describes a legal Requirement to be met by the Economic Operator to + be a Candidate in the Procurement. + + Additional Information: + This corresponds in eForms to BG-701 Exclusion Grounds. + + WG approval 31/10/2018
epo:ExclusionGroundsSummary
epo:ExpressionOfInterestDocument presenting an Economic Operator's Request to be considered for Procedures + covering a specific domain. + WG approval 13/04/2021
epo:FrameworkAgreementAn agreement between one or more Contracting Authorities and one or more Economic + Operators. + + Additional Information: + When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which + describes a Lot which specifies the both the Qualification and Award Criteria. + + WG approval 18/05/2021
epo:FrameworkAgreementTechniqueTechnique that establishes the terms governing Contracts to be awarded during a given + Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. + + WG approval 18/05/2021
epo:FrameworkAgreementTermConditions and stipulations defining particularities in a Framework Agreement.
epo:FundA financial resource used to support the Procurement. + + Additional Information: + + In the context of EU, Funds can be divided into programmes, actions and projects. + + Examples of EU funds are: the European Structural and Investment Funds, European Social + Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme + and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which + supports the eProcurement Ontology under sub-action 3). + + Funds may change between the lot and the contract, for example in the case of an emergency + crisis, a contract may be financed by a budget that was not foreseen in the call. + + WG Approved 14/05/2019 + + + + +
epo:GreenProcurementApproach whereby Buyers seek to procure with a reduced Environmental Impact. + + Additional Information: + + The approach may apply to the complete life cycle. The reduced Environmental Impact + is in comparison to goods, services and works with the same primary function that + would otherwise be procured. + + Tightly related are article 68 - Life-cycle costing and article 67 - most economically + advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf + An instance of the class GreenProcurement is represented in eForms with the code "env-imp" + defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf
epo:IndefiniteDuration
epo:InnovativeProcurementAn instance of the class InnovativeProcurement is represented in eForms with the code + "inn-pur" defined in the codelist Strategic-Procurement. + + Research (21/01/2020): + + Purchasing and early adoption of solutions which are not yet available on large scale + commercial basis. + + Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative + Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions + + Additional Information: + ‘innovation’ means the implementation of a new or significantly improved product, + service or process, including but not limited to production, building or construction + processes, a new marketing method, or a new organizational method in business practices, + workplace Organisation or external relations inter alia with the purpose of helping + to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable + and inclusive growth; + See: Directive 2014/24 + Articles: 2, 26 (3), 31, 67 (2.a) + + Question: + Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?
epo:JuryMember
epo:LeadBuyerA Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. + + + WG agreement: 2022-11-22
epo:LotA qualitative, quantitative or strategic subdivision of the goods, services or works + to be procured, allowing the award of one or more Contracts. + + WG approval 12/09/2018
epo:LotAwardDecisionResult concerning the Lot attributed by the Awarder.
epo:LotGroupCombination of several Lots to conduct comparative assessment of the Tenders. + + Additional Information: + + The comparative assessment may refer to the Selection Criteria, Award and Value that + apply to several Lots. + + Pending of discussion with eForms + + + + Member States may provide that, where more than one lot may be awarded to the same + tenderer, contracting authorities may award contracts combining several or all lots + where they have specified in the contract notice or in the invitation to confirm interest + that they reserve the possibility of doing so and indicate the lots or groups of lots + that may be combined.
epo:LotGroupAwardInformationAward information related to a given Group of Lots.
epo:LotSpecificTermGathering class for conditions and stipulations related to a Lot.
epo:MediatorA Role of an Agent that attempts to resolve a dispute between different Agents + and come to an agreement. + WG approval 20/04/2021
epo:MiniCompetitionA process where multiple winners or candidates of previous stages of a procedure bid + for a specific procurement. + + Additional Information: + It is typically used in framework agreements where the suppliers have already been + pre-selected, and the mini competition is used to determine which supplier is best + suited for a particular project or contract. + It is also used in a Dynamic Purchasing System where the suppliers come from a list + of Candidates. + + WG approval 30/05/2023
epo:MiniCompetitionAwardDecisionResult concerning the Mini-Competition attributed by the Awarder. +
epo:MonetaryValueA number of monetary units specified using a given unit of currency. + + Additional information: + In the pre-award phase of the procurement, all monetary values are considered to exclude + VAT based on the Directive 2014/24/EU. + + WG approval 13/04/2021 +
epo:MultipleStageProcedureTermConditions and stipulations defining particularities of Procedures carried out in + several steps + Additional Information: + Generally this refers to Procedures where selection is carried out to qualify Tenderers + who are then requested to submit the rest of their Tender for evaluation is Restricted + Procedure. + WG Approval 15/04/2021
epo:NonDisclosureAgreementTermConditions and stipulations
epo:NoticeDocument published by the Buyer about market opportunities and results. + + WG Approval 23/05/2019 +
epo:NoticeAwardInformationInformation about an Award Notice.
epo:NoticeChangeInformation about a corrigendum in a Notice.
epo:NoticeDescriptionDescriptions about the notice publishing, or providing evolutions of resources.
epo:OfferDocument providing the Monetary Value and the details to fulfill the Requirements + set out in the Procurement Documents or Request for Offer. + + Additional information: + A quotation is considered to be an Offer in the eProcurement Ontology. + + WG approval 09/02/2023
epo:OfferingPartyThe Role of an Agent that acts on the Economic Operator side during a Procurement + Process. + + Additional information: + As per the European Procurement Directives the notion of ‘Economic Operators’ should + be interpreted in a broad manner so as to include any Persons and/or Entities which + offer the execution of works, the supply of products or the provision of services + on the market, irrespective of the legal form under which they have chosen to operate. + Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited + companies, universities, public or private, and other forms of entities than natural + Persons should all fall within the notion of Economic Operator, whether or not they + are ‘Legal Persons’ in all circumstances.
epo:OfferIssuerThe Role of an Agent that distributes an Offer. + + WG approval 09/02/2023
epo:OfflineAccessProviderA Role of an Agent responsible for providing offline access to the Procurement Documents.
epo:OpeningTermConditions and stipulations defining particularities of the opening of Tenders. + Additional Information: + The opening of Tenders is the event when Tenders are made accessible for evaluation, + it is generally the same date and time for all Tenders. + WG Approval 15/04/2021
epo:OrganisationGroupAgreed collaboration of several Organisations. + Additional Information: + This concept has been created to fulfill the need to represent a grouping of Organisations + that is not necessarily registered i.e, consortia. + WG approval 15/04/2021
epo:OriginatorRequestDocument in which the Originator describes his needs. + + WG approval 09/02/2023
epo:OtherEntityEconomic Operator (who is not a Subcontractor) on which the Tenderer relies upon, + to meet Selection Criteria.
epo:ParticipationConditionCriterion that describes a Requirement to take part in a procurement. + + WG approval 30/05/2023
epo:ParticipationConditionsSummary
epo:ParticipationRequestProcessorA Role of an Agent responsible for processing Requests To Participate.
epo:ParticipationRequestReceiverA Role of an Agent responsible for receiving Requests To Participate.
epo:ParticipationRequestTermConditions and stipulations defining particularities of requesting participation in + a Procedure.
epo:PaymentExecutorA Role of an Agent responsible for executing the Payment.
epo:PeriodA time interval or a Duration. + + (WG approval 28/04/2020) +
epo:PlannedProcurementPartA subdivision of a Planned Procurement that may later become one or more Lots or a + self-standing Procedure. A Lot or a Procedure can also cover one or more parts of + the Planned Procurement. + + WG Approval 20/06/2019
epo:PrizeA reward given in a Contest. + WG approval: 15/04/2021
epo:ProcedureA legally defined set of administrative activities conducted to conclude one or more + Contracts. + + Additional Information + The Procedure is categorised in the law according to different rules determining whether + the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see + Procedure Type). + + WG Approval 20/08/2019 +
epo:ProcedureSpecificTermGathering class for conditions and stipulations related to a Procedure.
epo:ProcedureTermConditions and stipulations defining particularities of the Procedure. + + (WG approval 23/11/2018)
epo:ProcessPlanningTermConditions and stipulations defining particularities of the unfolding of the Procurement + Process.
epo:ProcurementCriteriaSummaryWG approval 24/01/2023
epo:ProcurementCriterionA criterion specific to Procurement. + + Additional Information: + + This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award + Criterion. Each of these Criteria can contain subcriteria (Criterion class). + + WG Approval 23/04/2020
epo:ProcurementDocumentDocument produced or referred to by the Buyer to describe or determine elements of + the Procurement. + + Additional information: + + Procurement Documents are to be accessible since the date of publication of the Contract + Notice or the prior information Notice when used as a call for competition. + + Examples of Procurement Documents are Technical Specifications, the Descriptive Document, + proposed conditions of Contract, formats for the presentation of Documents by Candidates + and Tenderers, information on generally applicable obligations. + + Other Documents related to the Procedure such as Notices are not considered to be + Procurement Documents. + + WG Approval 23/05/2019 17:08:30
epo:ProcurementElementGathering class for critical/central elements in the Procurement Process. + + TODO: add definition + Additional information: + Alias: ProcurementComponent
epo:ProcurementObjectThe whole or a division of goods, services or works to be procured. + + Additional Information: + Anything that can specify the procurement content (i.e. goods, services, work) is + a Procurement Object. + In a sense, such an "object" can constitute the "object of a Contract". + To test whether something is a Procedure Object check if it can have a Purpose and/or + CPV classification (<i>The CPV establishes a single classification system for public + procurement aimed at standardising the references used by Contracting Authorities + and entities to describe the subject of Procurement Contracts.</i>). + + Note: + Procedure, seems to be an exception from this rule. Because it is a conflated term: + it carries process properties and "purpose" properties.
epo:ProcurementProcedureInformationProviderA Role of an Agent responsible for providing additional information about the Procurement + Procedure.
epo:ProcurementProcessInformationInformation about the temporal unfolding or succession of Procurement Objects.
epo:ProcurementServiceProviderRole of a public or private body which offers ancillary purchasing activities on the + market. + + Additional information + + "Ancillary Purchasing Activities" means activities consisting in the provision of + support to purchasing activities, in particular in the following forms: + (a) technical infrastructure enabling Contracting Authorities to award Public Contracts + or to conclude Framework Agreements for works, supplies or services; + (b) advice on the conduct or design of public Procurement Procedures; + (c) preparation and management of Procurement Procedures on behalf and for the account + of the Contracting Authority concerned; + + Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. + + This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity + managing the Procurement, which may be different from the Buyer who is paying / using + the items being procured'. + + WG Approval 24/03/2020 +
epo:ProfessionalSuitabilitySummary
epo:ProjectA collaborative enterprise that is carefully planned to achieve a particular aim.
epo:PublicationProvisionInformation about fields not intended for publication. + + + Additional Information: + The non-published information may become available at a later date and may differ + from one element to another within a given Document. + + Examples of fields that may not be immediately published are Winner, Tender and Procedure + Lot Result, etc., e.g. for security reasons. + + WG Approval 16/05/2019 + + + + +
epo:PurchaseContractA Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract.
epo:PurposeThe description of the objectives related to a Procurement. + + Additional information: + + The description of the objectives includes the Subject Matter and Quantities. + + + The quantification of the objectives related to a procurement. + + To be re-reviewed by the WG the soonest. + + (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) + + The old definition read as follows: + + The description of the objectives related to a procurement. + + (WG approval 05/12/2018) +
epo:QualificationCriteriaSummary
epo:QualificationCriterionCriterion used in the first stage of procurement. + + WG approval 30/05/2023
epo:QuantityA counted number of non-monetary units possibly including fractions. +
epo:RequestForClarificationA demand for elucidation of received information. + Additional Information: + Requests for clarification are usually used by Buyers during the process of award + or evaluation to understand specific aspects of the Tender without altering the Tender. + WG approval 20/04/2021
epo:RequestForParticipationApplication of an Economic Operator to be included in a Procurement Procedure. + WG approval: 20/04/2021
epo:ReviewDecisionInformation about Review Decisions.
epo:ReviewerRole of an Agent who investigates the overall correctness of a Procurement Procedure, + producing a related report. + Additional Information: + Any Organisation or Person may request a review of a Procurement Procedure. + WG approval: 20/04/2021
epo:ReviewIrregularitySummaryInformation about the number and type of requests the Buyer received to review any + of its decisions (e.g. the Technical Specifications, Award Decision). + + Additional information: + This class corresponds in eForms to BG-613 Buyer Review Requests. + + +
epo:ReviewObjectInformation about a Review Request or a Review Decision. + + Additional information: + This class corresponds to the BG-714 Review in eForms. + +
epo:ReviewProcedureInformationProviderA Role of an Agent who is providing more information on the time limits for review + Procedures.
epo:ReviewRequestInformation about requests to review procedures.
epo:ReviewRequesterRole of an Agent who requests the review of a (Procurement) Procedure. + + WG Approval 23/10/2021
epo:ReviewRequestSummarySummary information about the requests the Buyer received to review any of its decisions + (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive + 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the + requests. + + Additional information: + This class corresponds in eForms to BG-612 Buyer Review Summary.
epo:SecurityClearanceTermConditions and stipulations about the status requested of individuals allowing them + access to classified information (state or organisational secrets) or to restricted + areas, after completion of a thorough background check. + + Additional information: + This corresponds in eForms to BT-578, BT-78, BT-732 . + + WG approval 20/06/2023 +
epo:SelectedCandidateListRecord of Candidates admitted to take part in award phases of procurements. + + WG approval 30/05/2023
epo:SelectionCriteriaSummary
epo:SelectionCriterionCriterion that describes a capacity Requirement that the Economic Operator needs to + fulfill to participate in the procurement. + + Additional Information: + Selection criteria may relate to: + (a) suitability to pursue the professional activity; + (b) economic and financial standing; + (c) technical and professional ability + + WG approval 31/10/2018
epo:SelectionEvaluationTermConditions and stipulations defining particularities of the evaluation of Selection + Criteria.
epo:SocialProcurementAn instance of the class SocialProcurement is represented in eForms with the code + "soc-obj" defined in the codelist Strategic-Procurement. + + + Research (21/01/2020): + Socially Responsible Public Procurement (SRPP): + + ‘SRPP’ means Procurement Operations that take into account one or more of the following + social considerations: employment opportunities, decent work, compliance with social + and labour rights, social inclusion (including persons with disabilities), equal opportunities, + accessibility design for all, taking account of sustainability criteria, including + ethical trade issues and wider voluntary compliance with corporate social responsibility + (CSR), while observing the principles enshrined in the Treaty for the European Union + (TFEU) and the Procurement Directives. + Source: Buying Social - A Guide to Taking Account of Social Considerations in Public + Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en + See Article 18 and Annex X Directive 2014/24.
epo:SpecificDuration
epo:StatisticalInformationStatistical data on the Procedure and the Lot. + + Additional Information + + At the present time Procurement Procedures are not fully electronic. At a later date, + information on the Tenders received could be inferred by the data in the eProcurement + System. + Therefore this class is temporal and should cease to exist in fully electronic Procurement. + The need for its presence responds also to the alignment with the Regulation (EU) + 2019/1780 (eForms). + + Attention will have to be paid in the future to possible inconsistencies derived from + data placed in other classes and data held in the Statistical Information class; e.g. + the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender + indicator, which in case of being false, may enter in contradiction with the highest + or lowest Tender value for that very same inadmissible Tender. + + WG Approval 12/12/2019 +
epo:StrategicProcurementPublic Procurement that contributes to achieving pressing policy goals. + + Additional Information: + Specific strategic goals could be, for example, Environmental Protection, innovation, + job creation and the development of small and medium enterprises. + + This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given + by the choices in BT-06 Strategic Procurement. + + Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph + on "background information". + + WG Approval 10/03/2020
epo:SubcontractingEstimateInformation on the approximation of the foreseen Subcontracting.
epo:SubcontractorA Role of an Agent that has an agreement to perform part or all of the obligations + of another Agents's Contract. + Additional information + For some Procedures, the Subcontractor signs as well the Contract between the Buyer + and the Contractor. + + At tendering time, entities relied upon by the Economic Operators can be Subcontractors + or not. + + When modelling ESPD we well analyze whether we need or not a Role named "relied upon". + + WG approval 05/08/2021 +
epo:SubcontractTermA concept to describe the main information regarding the share of parts of the Contract + to third parties.
epo:SubmissionStatisticalInformationStatistical information about submissions on a given competition, either at Lot level + or Mini-Competition level. + + WG approval 30/05/2023
epo:SubmissionTermConditions and stipulations defining particularities of submitting Documents to the + Buyer. + + Additional Information: + These Documents can be Tenders, Request To Participate and expressions of interest. + + WG Approval 14/07/2020
epo:SystemSoftware application used for performing Procurement activities. + + WG Approval 28/04/2020 + +
epo:TaxInformationProviderA Role of an Agent responsible for providing information concerning the general regulatory + framework for taxes.
epo:TechnicalAbilitySummary
epo:TechniqueMethod used for conducting Procurement Procedures. + + Addtional information: + This corresponds in eForms to BG-706 Techniques. + + Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction + can be carried out in a Framework Agreement or DPS). + + WG Approval 19/09/2019 +
epo:TenderInformation submitted by the Economic Operator to specify its Offer regarding a specific + Lot, in response to the call for Tender. + + (WG approval 03/05/2022) + + +
epo:TenderAwardOutcomeResult concerning the Tender attributed by the Awarder.
epo:TendererA Role of an Agent that has submitted a Tender. + + Additional Information: + A Tenderer is an Economic Operator or group of Economic Operators that has submitted + a Tender. + WG approval 05/08/2021
epo:TenderGroupSpecific Offer in response to a Lot Group. + + Additional Information: + This class is generally used to provide the Monetary Value in response to a Lot Group. +
epo:TenderProcessorA Role of an Agent responsible for processing Tenders.
epo:TenderReceiverA Role of an Agent responsible for receiving Tenders.
epo:TermA governing condition or stipulation.
epo:WinnerA Role of an Agent to whom a Lot is awarded. + WG approval 05/08/2021 (revised 26/10/2021)
epo-not:CANDefence-D81
epo-not:CANSocial-D25
epo-not:CANSocialNotice
epo-not:CANSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:CANStandard-D24
epo-not:CANStandardNotice
epo-not:CNDefence-D81
epo-not:CNSocial-D25
epo-not:CNSocialNotice
epo-not:CNSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:CNStandard-D24
epo-not:CNStandardNotice
epo-not:CompetitionNoticeAn announcement of the launch of a Procurement Procedure by a Procuring Entity. + + WG approval 18/05/2018 +
epo-not:CompletionNoticeAn announcement of the end of a Procurement by a Buyer.
epo-not:ConcessionAwardNotice-D23
epo-not:ConcessionNotice-D23
epo-not:ContractModificationNoticeAn announcement of the Modification Of a Contract/Concession during its term by a + Procuring Entity.
epo-not:DesignContest-D24
epo-not:DesignContest-D25
epo-not:DesignContestNotice
epo-not:DesignContestResult-D24
epo-not:DesignContestResult-D25
epo-not:DesignContestResultNotice
epo-not:DirectAwardPrenotificationNoticeNotice which sets out the Buyer's purchasing intention to award a Contract without + prior notification of Competition.
epo-not:eFormsNotice
epo-not:Modification-D23
epo-not:Modification-D24
epo-not:Modification-D25
epo-not:Notice1
epo-not:Notice10
epo-not:Notice11
epo-not:Notice12
epo-not:Notice13
epo-not:Notice14
epo-not:Notice15
epo-not:Notice16
epo-not:Notice17
epo-not:Notice18
epo-not:Notice19
epo-not:Notice2
epo-not:Notice20
epo-not:Notice21
epo-not:Notice22
epo-not:Notice23
epo-not:Notice24
epo-not:Notice25
epo-not:Notice26
epo-not:Notice27
epo-not:Notice28
epo-not:Notice29
epo-not:Notice3
epo-not:Notice30
epo-not:Notice31
epo-not:Notice32
epo-not:Notice33
epo-not:Notice34
epo-not:Notice35
epo-not:Notice36
epo-not:Notice37
epo-not:Notice38
epo-not:Notice39
epo-not:Notice4
epo-not:Notice40
epo-not:Notice5
epo-not:Notice6
epo-not:Notice7
epo-not:Notice8
epo-not:Notice9
epo-not:PIN-CFCSocial-D25
epo-not:PIN-CFCSocialNotice
epo-not:PIN-CFCSocialNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:PIN-CFCStandard-D24
epo-not:PIN-CFCStandardNotice
epo-not:PINDefence-D81
epo-not:PINOnly-D24
epo-not:PINOnly-D25
epo-not:PINOnlyNoticePriorInformationNotice
epo-not:PINProfile-D24
epo-not:PINProfile-D25
epo-not:PINProfile-D81
epo-not:PINProfileNotice
epo-not:PIN-RTL-D24
epo-not:PIN-RTL-D25
epo-not:PINTimeLimitNotice
epo-not:PlanningNoticeNotice which sets out the Contracting Authority's purchasing intentions. It is used + by Contracting Authorities to provide Suppliers with information about a Procurement + Process. +
epo-not:PMCNotice
epo-not:QS-D25
epo-not:QSNotice
epo-not:QSNotice-D25Additional information: + Social and other specific services – utilities +
epo-not:ResultNoticeAn announcement of the award or non-award of a Contract by a Buyer. + + (WG approval 27/03/2019)
epo-not:SocialAndOtherSpecificServices-D23
epo-not:SocialAndOtherSpecificServices-D24public contracts
epo-not:StandardFormsNotice
epo-not:Subcontract-D81
epo-not:SubcontractNotice
epo-not:VEAT-D23
epo-not:VEAT-D24
epo-not:VEAT-D25
epo-not:VEAT-D81
epo-not:VoluntaryEx-AnteTransparencyNoticeA Notice informing of the intention to award a Contract without prior publication + of a Contract Notice. + + Additional Information: + + For European Notices above the threshold + + "A means of advertising the intention to award the Contract without opening it up + to formal Competition. A Contracting Authority may decide that a Contract does not + require prior publication through a Contract Notice in the O.J.E.U. A reason for this + decision may be that the Contract meets the exceptional conditions described in Article + 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme + urgency brought about by events unforeseeable by the Contracting Entity and in accordance + with the strict conditions stated in the Directive” . + "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems + that a Contract does not require prior publication of a Contract Notice in the European + Journal (OJEU). This may apply, for example, if the Contract meets the exceptional + conditions justifying direct award of contracts. + + <b>This definition is still to be worked on.</b> +
foaf:AgentA Person, an Organisation, or a System that acts in Procurement or have the power + to act in Procurement. + + WG Approval 28/04/2020
foaf:PersonThe Person class represents people. Something is a Person if it is a Person. We don't + nitpick about whether they're alive, dead, real, or imaginary. The Person class is + a sub-class of the Agent class, since all people are considered 'Agents' in FOAF.
locn:AddressThe particulars of the place where a Person or an Organisation is located. + + WG Approval 28/04/2020 + + Additional Information: + An "Address Representation" as conceptually defined by the INSPIRE Address Representation + data type: "Representation of an address spatial object for use in external application + schemas that need to include the basic, address information in a readable way.". + + + The representation of Addresses varies widely from one country's postal System to + another. Even within countries, there are almost always examples of Addresses that + do not conform to the stated national standard. At the time of publication, work is + progressing on ISO 19160-1 that defines a method through which different Addresses + can be converted from one conceptual model to another. + + + This specification was heavily based on the INSPIRE Address Representation data type. + It is noteworthy that if an Address is provided using the detailed breakdown suggested + by the properties for this class, then it will be INSPIRE-conformant. To this very + granular set of properties, we add two further properties: + + - full address (the complete address as a formatted string) + - addressID (a unique identifier for the address) + The first of these allows publishers to simply provide the complete Address as one + string, with or without formatting. This is analogous to vCard's label property. + + The addressID is part of the INSPIRE guidelines and provides a hook that can be used + to link the Address to an alternative representation, such as vCard or OASIS xAL.
locn:GeometryThe Geometry class provides the means to identify a Location as a point, line, polygon, + etc. expressed using coordinates in some coordinate reference System. + + Additional Information: + This class defines the notion of "Geometry" at the conceptual level, and it shall + be encoded by using different formats (see usage note of the locn:geometry property). + We also refer to the Examples section of this specification for a number of different + Geometry examples expressed in different formats.
org:OrganizationA collection of people organized together into a community or other social, commercial + or political structure. The group has some common purpose or reason for existence + which goes beyond the set of people belonging to it and can act as an Agent. Organisations + are often decomposable into hierarchical structures. + + (WG approval 23/11/2018). +
owl:ThingAny individual in the domain of discourse is a Thing. + + + Additional Information: + + The most basic concepts in a domain should correspond to classes that are the roots + of various taxonomic trees. Every individual in the OWL world is a member of the class + owl:Thing.
+

Attributes (datatype properties) names and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class nameAttribute nameDefinitionData type / cardinality
adms:Identifieradms:schemaAgencyThe name of the agency that issued the identifier.rdf:PlainLiteral [0..*]
cccev:Criterioncccev:biasParameter used to adjust the evaluation of the Criterion. + + Additional Information: + The bias parameter tries to correct a systematic error. For example in procurement, + a home bias corresponds to the "presence of local preferences distorting international + specialisation and resource allocation". When quantified, this systematic error can + be removed.xsd:decimal [0..1]
cccev:Criterioncccev:weightRelative importance of the Criterion. + + Additional Information: + The weight must be between 0 and 1. Usually, all Criteria can be integrated within + a weighted sum equal to 1.xsd:decimal [0..1]
cccev:Criterioncccev:weightingConsiderationDescriptionExplanation of how the weighting of a Criterion is to be used. + + Additional Information: + This description gives the view of the creator of the Criterion weights on how to + interpret and use them during the evaluation process.rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:emailThe email of the Organisation. + + rdf:PlainLiteral [0..1]
cpov:ContactPointcpov:telephoneA telephone number through which the Contact Point can be contacted. + rdf:PlainLiteral [0..*]
cpv:Personcv:birthDateThe point in time on which the Person was born.xsd:date [0..1]
locn:Geometrycv:coordinatesThe coordinate list.rdf:PlainLiteral [0..*]
locn:Geometrycv:latitudeThe latitude.rdf:PlainLiteral [0..*]
locn:Geometrycv:longitudeThe longitude.rdf:PlainLiteral [0..*]
cpv:Persondct:alternativeAny name by which an individual is known other than their full name. + WG 09/11/2021rdf:langString [0..*]
epo:ProcurementElement
epo:System
epo:AgentInRole
cpov:ContactPoint
cv:Channel
epo:NonDisclosureAgreementTerm
epo:SecurityClearanceTerm
epo:SubcontractTerm
cccev:InformationConcept
cccev:Requirement
epo:Technique
epo:SubcontractingEstimate
epo:ElectronicSignature
epo:Document
epo:Fund
dct:descriptionAn account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 + An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023 + An account of the resource. + + Additional Information: + Description may include but is not limited to: an abstract, a table of contents, a + graphical representation, or a free-text account of the resource. + + WG Approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [1..1]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:Documentdct:issuedDate of formal issuance of the resource. + + Additional information: + This is generally used for modules other than eNotice. + The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or + xsd:timeStamp or any other variant of time expression. This extension needs to be + encoded/automated in the ontology and in the application profile. + Why is it like this? Because UML cannot handle such expressions of disjunctive property + ranges. + + WG approval 26/01/2023xsd:dateTime [0..1]
epo:ProcurementElement
foaf:Agent
epo:AgentInRole
epo:Document
epo:Fund
dct:titleA name given to the resource. + + WG approval 30/05/2023 A name given to the resource. + + WG approval 30/05/2023 A name given to the resource. + + WG approval 30/05/2023 + A name given to the resource. + + WG approval 30/05/2023 + + A name given to the resource. + + WG approval 30/05/2023 + rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:describesMinimumLevelOfStandardsrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesObjectiveParticipationRulesrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionrdf:PlainLiteral [0..1]
epo:ProfessionalSuitabilitySummaryepo:describesProfessionRelevantLawrdf:PlainLiteral [0..1]
epo:ParticipationConditionsSummaryepo:describesVerificationMethodrdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasAbnormallyLowTendersTenders received that were found irregular and non-acceptable due to an abnormally + low price or cost. + + Additional Information + The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. + + WG Approval 28/07/2020 + + xsd:integer [0..1]
epo:Procedureepo:hasAcceleratedProcedureJustificationThe reasons why the procedure is accelerated. + + Additional Information: + A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake + relief. + + WG Approval 09/06/2020 + + rdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasAccessibilityDateThe date at which unpublished data shall be published. + + WG Approval 11/06/2020xsd:date [0..1]
epo:Documentepo:hasAccessURLLocation where the resource can be accessed. + + WG approval 07/04/2022xsd:anyURI [0..*]
epo:Buyerepo:hasActivityDescriptionIn the ePO ontology a taxonomy with all activities, based on different classifications + (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively + to complement the definition attached to the MainActivityCode. + + However, in eForms there is the code "other" to cover undefined activities. For mapping + to this eForms feature one could also use this property. + rdf:PlainLiteral [0..*]
epo:ProcurementObject
epo:Notice
epo:ElementChangeDescription
epo:hasAdditionalInformationSupplementary data about the instance of the concept. + + WG Approval 15/10/2019 Supplementary data about the instance of the concept. + + WG Approval 15/10/2019 Supplementary data about the instance of the concept. + + WG Approval 15/10/2019 + rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
rdf:PlainLiteral [0..1]
epo:AccessTermepo:hasAdditionalInformationDeadlineThe time limit for requesting further information. + + Additional information: + + This is generally used to indicate the deadline for Economic Operators to request + further information of the procedure before the submission deadline. + + This corresponds in eForms to BT-13 Additional Information Deadline. + + WG Approval 09/06/2020 + xsd:dateTime [0..1]
epo:AwardDecisionepo:hasAdditionalNonAwardJustificationFurther justification for the non award . + + Additional information: + This is generally used when the non award reason code is set to "Other". + + WG: 18/01/2022rdf:PlainLiteral [0..1]
cv:Channelepo:hasAddressURLxsd:anyURI [0..1]
foaf:Agentepo:hasAliasAcronym or alternative name of the Agent. + WG Approval 25/03/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasAmountValueThe numeric value of the amount, including decimals.xsd:decimal [1..1]
epo:AwardEvaluationTermepo:hasAwardCriteriaEvaluationFormulaThe mathematical equation or any other description used for complicated weighing of + criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing + cannot be expressed per criterion. + + Additional Information: + This corresponds in eForms to BT-543 Award Criteria Complicated.rdf:PlainLiteral [0..*]
epo:AwardEvaluationTermepo:hasAwardCriteriaOrderJustificationThe justification for only indicating the award criteria's order of importance, not + their weighing. + + Additional Information: + This corresponds in eForms to BT-733 Award Criteria Order Justification.rdf:PlainLiteral [0..1]
epo:AwardCriterionepo:hasAwardCriteriaStatedInProcurementDocumentsxsd:boolean [1..1]
epo:ProcessPlanningTermepo:hasAwardDateScheduledPlanned date for the award decision. + WG Approval 09/11/2021xsd:date [0..1]
epo:AwardDecisionepo:hasAwardDecisionDateThe official date of the award decision. + + Additional Information: + This corresponds in eForms to BT-1451 Winner Decision Date. + + WG Approval 09/01/2020 + xsd:dateTime [0..1]
epo:TenderAwardOutcomeepo:hasAwardRankThe position of the tender (i.e. whether the tender ended up first, second, third, + etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) + or an innovation partnership. + + Additional Information: + This corresponds in eForms to BT-171 Tender Rank. + xsd:integer [0..1]
epo:Periodepo:hasBeginningThe date and time on which this period begins.xsd:dateTime [0..1]
epo:FrameworkAgreementTermepo:hasBuyerCategoryDescriptionA classification of buyers participating in a framework agreement. + + Additional Information: + Buyers that can use the Framework Agreement not mentioned by name. + + For example, the classification "all hospitals in the Tuscany region" is used instead + of naming each individual buyer. + + This corresponds in eForms to BT-111 Framework Buyer Categories. + + WG Approval 2019-05-06rdf:PlainLiteral [0..*]
org:Organizationepo:hasBuyerLegalTypeDescriptionSelf-explanatory text about the Buyer Legal Type. + + Additional information: + This field is used when the Buyer Legal Type is not available in the controlled list + at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard + Forms. It shall be deprecated in the future. + + WG Approval 06/09/2022rdf:PlainLiteral [0..1]
epo:Buyerepo:hasBuyerProfileWebsite address where the buyer publishes information on its procurement procedures + and general information. + + Additional information: + This corresponds in the eForms to BT-508 Buyer Profile URL. + + WG approval 04/05/2018 + xsd:anyURI [0..1]
epo:ConcessionEstimateepo:hasCalculationMethodFormula for obtaining values. + + Additional Information: + The possible values are monetary values, ranking scores, criterion weighting. + + WG Approval 25/05/2018rdf:PlainLiteral [0..1]
epo:ElementChangeDescriptionepo:hasChangeDescriptionExplanatory text about the instance of the concept. + + WG Approval 30/09/2019rdf:PlainLiteral [0..*]
epo:ElementChangeDescriptionepo:hasChangeReasonDescriptionExplanatory text about why the element is altered. + + Additional information: + This corresponds in eForms to BT-762 Change Reason Description.rdf:PlainLiteral [0..*]
epo:GreenProcurementepo:hasCleanVehiclesThe number of all clean vehicles that have either been purchased, leased, rented, + hired-purchased or their use has been contractually committed to for the provision + of a purchased service. + + Additional Information + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:QualificationCriteriaSummaryepo:hasConditionVerificationMethodrdf:PlainLiteral [0..*]
epo:ElementConfidentialityDescriptionepo:hasConfidentialityJustificationA narrative explanation of why data is not published. + + Additional Information: + This element is generally used when the non-publication-justification code chosen + is "other". + + WG Approval 09/11/2021 + rdf:PlainLiteral [0..1]
cpov:ContactPointepo:hasContactNameA short text by which a contact is known or referred to. + + WG Approval: 27/01/2022rdf:PlainLiteral [0..1]
epo:Contractepo:hasContractConclusionDateThe date the contract was signed by the last signatory party. + + <u>Additional Information:</u> + In exceptional cases contracts may be concluded without signature and therefore another + date may be used. The date of contract conclusion is always later than the end of + any standstill period. + This concept is not to be confused with the date of completion/end of the contract. + + This corresponds in eForms to BT-145 Contract Conclusion Date. + + WG Approval 09/01/2020xsd:date [0..1]
epo:ProcedureTermepo:hasCrossBorderLawThe applicable law when buyers from different countries procure together within one + procurement procedure. + + Additional Information: + This corresponds in eForms to BT-09 Cross Border Law.rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyIDIdentifier of the agency that maintains the currency code list used. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListAgencyNameName of the agency that maintains the currency code list used. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:MonetaryValueepo:hasCurrencyCodeListIDConcept scheme URI used for the currency code list. + WG approval 13/04/2021rdf:PlainLiteral [0..*]
epo:SecurityClearanceTermepo:hasDeadlineThe deadline by which the security clearance must be submitted to the buyer. + + WG Approval 12/09/2019 + + xsd:dateTime [0..1]
epo:ReviewDecisionepo:hasDecisionDateThe date of the review decision. + + Additional information: + This attribute corresponds to the BT-787 Review Date in eForms. + xsd:date [0..1]
epo:Documentepo:hasDispatchDateDate of transmission of a record to an organisation. + + WG Approval 12/05/2020xsd:date [0..1]
epo:FrameworkAgreementTermepo:hasDurationExtensionJustificationThe explanation of the reason why the framework agreement has an extended duration. + + Additional Information: + This corresponds in eForms to BT-109 Framework Duration Justification. + The justification for exceptional cases when the duration of the framework agreement + exceeds the legal limits. + + Four years in the case of the general procurement Directive, seven years in the case + of the defence Directive, and eight years in the case of the sectoral Directive. + + WG Approval 26/09/2019rdf:PlainLiteral [0..1]
epo:SubmissionTermepo:hasEAuctionURLThe internet address of the electronic auction. + + Additional Information: + + This corresponds in eForms to BT-123 Electronic Auction URL.xsd:anyURI [0..1]
epo:SubmissionStatisticalInformationepo:hasEEAReceivedTendersThe amount of tenders received from economic operators in other EEA countries other + than the country of the buyer. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:Noticeepo:hasEFormsSubtypexsd:integer [0..1]
epo:ContractTermepo:hasEInvoicingElectronic means will be used for invoicing in the post-award process. + + Additional Information: + This attribute is used for standard form mappings. + + WG Approval 12/09/2019 + xsd:boolean [0..1]
epo:Tenderepo:hasElectronicSubmissionTransmission of tenders is possible by electronic means of communication. xsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasElectronicTendersElectronic Tender Lots received. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:ReviewObject
epo:ElementChangeDescription
epo:ElementModificationDescription
epo:hasElementReferenceReference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. Reference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. Reference to the class instance in the current notice. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, + BT-786 Review Notice Section Identifier and BT-1501 Modification Previous + Notice Section Identifier. + xsd:anyURI [0..*]
xsd:anyURI [1..1]
xsd:anyURI [0..1]
epo:Periodepo:hasEndThe date and time at which this period ends.xsd:dateTime [0..1]
epo:Contractepo:hasEntryIntoForceDateThe date on which the contract enters into force. + + Additional information: + + This is generally the date on which the fulfillment of the contract begins. + + This corresponds in eForms to + + WG approval 05/11/2019xsd:date [0..1]
epo:ContractTermepo:hasEOrderingElectronic means will be used for requesting and purchasing in the post-award process. + + WG Approval 12/09/2019 + + xsd:boolean [0..1]
epo:ContractTermepo:hasEPaymentElectronic means must be used for paying. + WG Approval 09/11/2021 + xsd:boolean [0..1]
epo:Noticeepo:hasESenderDispatchDateThe date and time the notice was transmitted electronically by the eSender to the + Publications Office of the European Union. + + Additional Information: + Typically, eSenders include national Official Journals, Buyers sending a large number + of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement + software developers. + + WG approval 20/06/2023xsd:dateTime [0..1]
epo:ProcessPlanningTermepo:hasEstimatedContractNoticePublicationDateForeseen date for publication of Contract Notice. + + Additional information: + This corresponds in eForms BT-127 Future Notice. + + xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToExpressInterestDateThe estimated date of dispatch of the invitations to confirm interest. + + Additional Information: + This corresponds in eForms to BT-631 Dispatch Invitation Interest.xsd:date [0..1]
epo:MultipleStageProcedureTermepo:hasEstimatedInvitationToTenderDateThe estimated date of dispatch of the invitations to submit tenders in two (or more) + stage procedures. + + Additional Information: + This corresponds in eForms to BT-130 Dispatch Invitation Tender. + + WG Approval 01/10/2019xsd:date [0..1]
epo:SubcontractingEstimateepo:hasEstimatedPercentageThe estimated proportion foreseen to be subcontracted. + + WG Approval 07/01/2020xsd:decimal [0..1]
epo:ProcessPlanningTermepo:hasEstimatedTenderInvitationDateThe planned date for the dispatch of the invitations to submit tenders. + WG Approval 09/11/2021xsd:date [0..1]
epo:SubmissionStatisticalInformationepo:hasEstimatedTotalSubcontractsThe estimated amount of work to be subcontracted in the contract resulting from the + lot. + WG Approval 09/11/2021xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasEUReceivedTendersThe amount of tenders received from economic operators in other EU countries other + than the country of the buyer.xsd:integer [0..1]
cpov:ContactPointepo:hasFaxThe fax number used to reach a person or an organisation.rdf:PlainLiteral [0..*]
epo:AwardCriterionepo:hasFixedValueThis corresponds in the eForms to BT-541 Award Criterion Number in association with + BT-5422 Award Criterion Number Fixed.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractAny subsequent service contract will be awarded to the winner or, in the case of a + design contest, winners. + + WG Approval 29/08/2019 xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:hasFollowupContractInformationFurther information about follow-up contracts, prizes and payments (for example non-monetary + prizes, payments given for participation). + + WG Approval 03/09/2019rdf:PlainLiteral [0..*]
epo:Noticeepo:hasFormNumberxsd:integer [0..1]
epo:ProcurementCriterionepo:hasFormulaThe mathematical equation or any other description used for complicated weighing of + criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing + cannot be expressed per criterion. + + Additional Information: + This corresponds in eForms to BT-543.rdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasGroupLotEvaluationMethodDescription of how lots and groups of lots are evaluated against one another in the + procedure. + + + + rdf:PlainLiteral [0..*]
epo:OrganisationGroupepo:hasGroupTypeForm of collaboration agreement between organisations. + + Additional Information: + This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also + be used for Organisation Groups. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasGuaranteeDescriptionInformation on the financial commitment required from the economic operator. + + Additional Information: + 1. This information may include the amount and the way of delivering of the guarantee + 2. The financial commitment may be retained by the buyer in the case the tenderer + withdraws the submitted information (i.e. tender, expression of interest and request + for participation, but not request for clarifications) before the award of the contract + or does not sign the contract. + 3. Usual modalities are bonds, cheques, loans, other. + + WG Approval 21/07/20 + rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasInadmissibleTendersTenders received that cannot be awarded due to non-compliance to procurement document + requirements or having an abnormally low price or cost. + + <u>Additional Information: </u> + Non-compliance with a Procurement Document requirements include exclusion grounds, + selection criteria and submission deadline, etc. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:ElementConfidentialityDescriptionepo:hasInstanceReferenceThe URI of a given class that is being referred to.xsd:anyURI [1..1]
org:Organization
cpov:ContactPoint
epo:hasInternetAddressThe main web page used by the instance of the concept. + + WG Approval 01/06/2023 + The main web page used by the instance of the concept. + + WG Approval 01/06/2023 + + xsd:anyURI [0..*]
xsd:anyURI [0..1]
epo:DirectAwardTermepo:hasJustificationAn explanation about the reasons for using the concept. + WG Approval 5/11/2019 + rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasLateSubmissionInformationDescriptionA narrative text explaining the content of the economic operator information that + can be submitted late. + + Additional Information + This does not apply to requests for clarifications. + rdf:PlainLiteral [0..*]
epo:ProcurementObjectepo:hasLegalBasisDescriptionrdf:PlainLiteral [0..*]
epo:ContractTermepo:hasLegalFormRequirementThe legal form to be taken by a Contractor. + + Additional Information: + Generally, this is defined to cover the case where an Organisation Group is involved. + Note that the codelist provided at national level should be used.rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalFormTypeThe classification of an Organisation according to legislation. + + Additional Information: + Generally, this is defined for Tenderers who want to submit as an Organisation Group. + Note that the codelist provided at national level should be used. + rdf:PlainLiteral [0..1]
org:Organizationepo:hasLegalNameThe officially registered name of an organisation. + + WG Approval 10/01/2023rdf:PlainLiteral [0..*]
epo:Noticeepo:hasLongTitlerdf:PlainLiteral [0..1]
epo:ProcedureTermepo:hasLotAwardCombinationThe contracting authority reserves the right to award contracts combining lots or + groups of lots. + + Additional Information: + This property contains information about the Lots concerned. + This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard + Forms). + + WG approval 23/08/2022 + rdf:PlainLiteral [0..1]
org:Organizationepo:hasMainActivityDescriptionSelf-explanatory text about the Main Activity . + + Additional information: + This field is used when the Main Activity is not available in the controlled list + at-voc:main-activity-type . This is necessary in to cover data provided in the TED + Standard Forms. It shall be deprecated in the future. + + WG Approval 06/09/2022 + rdf:PlainLiteral [0..1]
epo:Procedureepo:hasMainFeatureMain features of the procedure and information about where the full rules for the + procedure can be found. + + Additional Information: + This information should be given when the procedure is not one of those mentioned + in the procurement directives. This can be the case for example for concessions, for + social and other specific services, and in case of voluntary publication of procurement + procedures below the EU procurement thresholds.rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasMaximumLotSubmissionAllowedThe total number of lots for which one Tenderer can submit Tenders. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG approval 12/12/2018 + + xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMaximumNumberOfCandidatesMaximum number of candidates to be invited for the second stage of the procedure. + + WG Approval 22/08/2019xsd:integer [0..1]
epo:ProcedureTermepo:hasMaximumNumberOfLotsToBeAwardedThe maximum number of lots for which contract(s) can be awarded to one tenderer. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG Approval 22/08/2019xsd:integer [0..1]
epo:ContractTermepo:hasMaximumNumberOfRenewalsThe maximum number of times the contract can be renewed. + + Additional Information + + By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract + (i.e. extend its duration) without a new procurement procedure. + For example, a contract may be valid for one year and the buyer may keep a possibility + to renew it (e.g. once, twice) for another three months, if he is content with the + services he received. + + PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken + from eForms. + xsd:integer [0..1]
epo:FrameworkAgreementTermepo:hasMaximumParticipantsNumberThe maximum number of participants in the framework agreement. + + Additional Information: + Maximum number of tenderers who may be awarded a contract within the framework agreement. + + The number is a positive integer. + + This corresponds in eForms to BT-113 Framework Maximum Participants Number. + + WG Approval 2019-02-05xsd:integer [0..1]
epo:SubcontractTermepo:hasMaximumShareThe maximum proportion of something to be distributed. + + Additional Information: + In the case of subcontracting the share may refer to the proportion of works, services + or supplies being subcontracted. + + WG Approval 17/09/2019 + + xsd:decimal [0..1]
epo:SubmissionStatisticalInformationepo:hasMediumTenderPerLotsTenders from medium-sized enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasMinimumNumberOfCandidatesMinimum number of candidates to be invited for the second stage of the procedure. + + WG Approval 22/08/2019 xsd:integer [0..1]
epo:SubcontractTermepo:hasMinimumShareThe minimum proportion of something to be distributed. + + Additional Information: + In the case of subcontracting the share may refer to the proportion of works, services + or supplies being subcontracted. + + WG Approval 17/09/2019xsd:decimal [0..1]
epo:SubcontractTermepo:hasMinimumSubcontractorsProposedObligationThe minimum percentage of the contract value that the contractor must subcontract. + + Additional information: + This is used for the competitive procedure described in Title III of Directive 2009/81/EC. + + + WG Approval 09/11/2021xsd:decimal [0..1]
epo:ElementModificationDescriptionepo:hasModificationDescriptionAn explanatory text about this context. + + Additional Information + + This corresponds in Standard forms to Field VII.2.1 in F20 + This corresponds in eForms to BT-202 . + + WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ElementModificationDescriptionepo:hasModificationReasonDescriptionAn explanation about the reasons for using the concept. + + Additional Information + This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. + + This corresponds in eForms to BT-201 . + + WG Approval 5/11/2019rdf:PlainLiteral [0..*]
epo:ProcedureTermepo:hasNationalProcedureRulesxsd:anyURI [0..*]
epo:StrategicProcurementepo:hasNonAccessibilityCriterionJustificationReason for not applying accessibility criteria. + + Additional information: + This corresponds in eForma to BT-755 Accessibility Justification. + + WG Approval 05/03/2019rdf:PlainLiteral [0..*]
epo:LotAwardDecisionepo:hasNonAwardedContractNumberThe number the contract would have had if it had been awarded. + + Additional information: + + This field is provided to support the data provided in the TED Standard Forms, and + it should be discontinued in the future. + + WG agreement: 06/09/2022 + rdf:PlainLiteral [0..1]
epo:LotAwardDecisionepo:hasNonAwardedContractTitleThe title the contract would have had if it had been awarded. + + Additional information: + + This field is provided to support the data provided in the TED Standard Forms, and + it should be discontinued in the future. + + WG agreement: 06/09/2022rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasNonEEAReceivedTendersThe amount of tenders received from economic operators in non-EEA countries. + + WG Approval 12/12/2019 15:20:36xsd:integer [0..1]
epo:MultipleStageProcedureTermepo:hasNoNegotiationNecessaryThe buyer reserves the right to award the contract on the basis of the initial tenders + without any further negotiations. + + Additional information: + See Article 29(4) of Directive 2014/24/EU. + xsd:boolean [0..1]
epo:SubmissionTermepo:hasNonElectronicSubmissionDescriptionTextual explanation of how non-electronic information is to be presented. + + WG Approval 21/07/2020 + + rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasNonEUReceivedTendersThe amount of tenders received from economic operators in non-EU countries. + xsd:integer [0..1]
epo:Noticeepo:hasNoticePublicationNumberrdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasNumberOfReviewRequestsThe number of requests the buyer received to review any of its decisions.xsd:integer [1..1]
epo:SubmissionStatisticalInformationepo:hasNumberOfTenderersInvitedNumber of economic operators invited to tender. + + Additional Information + This may be used for single-stage procedures or to indicate the number of candidates + invited to tender in multi-stage procedures. + + WG Approval 01/12/2020 + + xsd:integer [0..1]
epo:Noticeepo:hasOJSIssueNumberxsd:integer [0..1]
epo:Noticeepo:hasOJSTyperdf:PlainLiteral [0..1]
epo:OpeningTermepo:hasOpeningDateTimeDate and time for the opening of tenders. + + WG Approval 12/03/2019 + + xsd:dateTime [1..1]
epo:OpeningTermepo:hasOpeningDescriptionFurther information about the opening of tenders. + + Additional Information + For example, who may participate in the opening and whether any authorization is needed. + + WG Approval 12/03/2019rdf:PlainLiteral [0..*]
epo:OpeningTermepo:hasOpeningURLThe identifier of the address of the Opening of Tenders. + WG Approval 09/11/2021xsd:anyURI [0..1]
epo:ContractTermepo:hasOptionsThe buyer reserves the right (not an obligation) for additional purchases from the + contractor (while the contract is valid).xsd:boolean [0..1]
epo:ContractTermepo:hasOptionsDescriptionThe motivation and details about additional purchases that the buyer may undertake + while the contract is valid. + + WG Approval 09/04/2019 rdf:PlainLiteral [0..*]
org:Organizationepo:hasOrganisationUnitNameThe name of a subpart of an organisation. + + Additional Information: + E.g. the relevant department of a large organisation. + + We added this attribute in case of eProcurement notices where the Buyer is actually + a part of an Organization and the rest of the properties apply to the rest of the + Organisation as well.rdf:PlainLiteral [0..1]
epo:SubmissionStatisticalInformationepo:hasOtherCountriesReceivedTendersxsd:integer [0..1]
epo:AwardEvaluationTermepo:hasOverallCostAwardCriteriaPonderationThe weighting given to cost. + + Additional Information: + This weighting covers usually all cost criteria against price or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallPriceAwardCriteriaPonderationThe weighting given to price. + + Additional Information: + This weighting covers usually all price criteria against cost or quality criteria.xsd:decimal [0..1]
epo:AwardEvaluationTermepo:hasOverallQualityAwardCriteriaPonderationThe weighting given to quality. + + Additional Information: + This weighting covers usually all quality criteria against price or cost criteria.xsd:decimal [0..1]
epo:DesignContestRegimeTermepo:hasParticipationPaymentDetails on payments to participants + WG Approval 09/11/2021rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPaymentArrangementInformation about financial clauses that will govern some economic aspects of the + execution of the contract. + + Additional Information: These clauses usually refer to financial and payment provisions. + + This type of information should be structured instead of a free text in order to reuse + it an ideal world. Unfortunately this is an information that in the real life no one + is willing to provide pro-actively. + + WG Pending of discussion with eFormsrdf:PlainLiteral [0..*]
epo:ContractLotCompletionInformationepo:hasPaymentValueDiscrepancyJustificationrdf:PlainLiteral [0..1]
epo:ContractTermepo:hasPerformanceConditionsThe particular conditions and additional information related to the execution of the + contract. + + Additional Information: + + For example, specific information about the place of performance, intermediary deliverables, + compensation for damages, intellectual property rights. + + WG approval 15-01-2019rdf:PlainLiteral [0..*]
epo:ContractTermepo:hasPlaceOfPerformanceAdditionalInformationFurther details on the location of the execution of the contract. + + WG Approval 30/07/2019rdf:PlainLiteral [0..*]
epo:PublicationProvisionepo:hasPreferredPublicationDateThe date the buyer would like to have the record made publicly available. + + Additional Information: + This corresponds in eForms to BT-738 Notice Publication Date Preferred. + + WG Approval 12/05/2020xsd:date [0..1]
epo:ElementChangeDescriptionepo:hasPreviousVersionOfElementReferenceReference to the class instance in the previous version of the notice, which was changed. + + Additional information: + This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. + xsd:anyURI [0..1]
epo:Prizeepo:hasPrizeRankThe position of the prize (e.g. first place, second place) in a design contest list + of prizes. + + WG Approval 29/08/2019 + xsd:integer [0..1]
epo:ElementChangeDescriptionepo:hasProcurementDocumentChangeDateThe date and time of the change. + + Additional information: + This corresponds in eForms to BT-719 Change Procurement Documents Date + + WG Approval 5/11/2019 + xsd:date [0..1]
epo:ElementConfidentialityDescriptionepo:hasPropertyReferenceThe URI of a given attribute (property) that is being referred to.xsd:anyURI [1..1]
epo:AccessTermepo:hasPublicAccessURLWeb page where the procurement documents can be downloaded. + + Additional Information: + This corresponds in the eForms to BT-15 Documents URL. + + WG Approval 09/03/2021 + xsd:anyURI [0..1]
epo:Documentepo:hasPublicationDateDate of formal public issuance of the document. + + WG approval 20/06/2023xsd:date [0..1]
epo:QualificationCriteriaSummaryepo:hasQualificationConditionrdf:PlainLiteral [0..*]
epo:MultipleStageProcedureTermepo:hasQualificationSystemRenewalDescriptionrdf:PlainLiteral [0..1]
epo:Quantityepo:hasQuantityValueThe numeric value of the quantity, including decimals.xsd:decimal [1..1]
epo:SubmissionTermepo:hasReceiptDeadlineThe time limit for receiving submissions. + + Additional Information + This is the deadline by which the buyer must receive submissions (e.g. tenders, requests + to participate, clarifications, etc.) and is not the time at which the information + is submitted by the economic operator. + This attribute should be used for standard forms mappings. + + WG Approval 21/07/2020 + xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptExpressionDeadlineTime limit for receipt of expressions of interest. + + Pending of review by the WG + + xsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptParticipationRequestDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptPreliminaryMarketConsultationDeadlinexsd:dateTime [0..1]
epo:SubmissionTermepo:hasReceiptTenderDeadlinexsd:dateTime [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedMicroTendersThe amount of tenders received from a micro enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC.xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedParticipationRequestsThe amount of applications to participate from economic operators. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedSmallTendersTenders from small enterprise. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + + xsd:integer [0..1]
epo:SubmissionStatisticalInformationepo:hasReceivedTendersThe total amount of tenders received. + + WG Approval 12/12/2019xsd:integer [0..1]
epo:Documentepo:hasReceptionDateNotes: Date when a record is acknowledged by an organisation. + + WG Approval 12/05/2020xsd:date [0..1]
epo:ProcurementObjectepo:hasRecurrenceDescriptionAny additional information about the recurrence of the Procurement. + + Additional Information: + For example estimated timing of the Procedure. + + This corresponds in eForms to BT-95 Recurrence Description. + + (WG approval 2019-01-16) + rdf:PlainLiteral [0..1]
epo:ContractTermepo:hasRenewalDescriptionAny other information about the renewal(s). + + WG approval 16/04/2019 rdf:PlainLiteral [0..*]
epo:ReviewRequestepo:hasRequestDateThe date when the review request was submitted. + + Additional information: + This attribute corresponds to the BT-787 Review Date in eForms. + xsd:date [0..1]
epo:ContractTermepo:hasReservedExecutionThe execution of the contract is restricted to the framework of sheltered employment + programmes. + + Additional information: + This property corresponds in eForms to BT-736 + + WG Approval 12/09/2019 + + The codelist to be used is at-voc:applicability which is available at http://publications.europa.eu/resource/dataset/applicability + xsd:boolean [0..1]
epo:AccessTermepo:hasRestrictedAccessURLThe internet address with information on accessing the restricted (part of the) procurement + document. + + Additional Information: + This corresponds in eForms to BT-615 Documents Restricted URL. + xsd:anyURI [0..1]
epo:ReviewIrregularitySummaryepo:hasReviewIrregularityCountThe number of requests for a given irregularity. + + Additional information: + This attribute corresponds in eForms to BT-635 Buyer Review Requests Count.xsd:integer [1..1]
epo:ReviewObjectepo:hasReviewURLThe internet address of the documents concerning the review instance. + + Additional information: + This attribute corresponds in eForms to BT-794 Review URL. + xsd:anyURI [0..1]
adms:Identifierepo:hasSchemeThe name of the identification scheme.rdf:PlainLiteral [0..*]
adms:Identifierepo:hasSchemeVersionThe version of the identification scheme.rdf:PlainLiteral [0..*]
epo:SelectionCriteriaSummaryepo:hasSelectionCriteriaStatedInProcurementDocumentsxsd:boolean [0..1]
epo:ProfessionalSuitabilitySummaryepo:hasServiceReservedToParticularProfessionxsd:boolean [0..1]
epo:SubmissionStatisticalInformationepo:hasSMEReceivedTendersThe amount of tenders received from micro, small and medium-sized enterprises. + + <u>Additional Information:</u> + + See Commission Recommendation 2003/361/EC. + The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. + + WG Approval 05/03/2020 + xsd:integer [0..1]
epo:StrategicProcurementepo:hasStrategicProcurementDescriptionSelf-explanatory text about a concept. + rdf:PlainLiteral [0..*]
epo:SubcontractTermepo:hasSubcontractingInvolvedList of Subcontractors and the subject matter they cover are required. + + Additional Information: + The tenderer will ned to supply this information in the tender. + + WG Approval 28/02/2019xsd:boolean [0..1]
epo:SubcontractTermepo:hasSubcontractorsProposedAboveObligationThe maximum percentage of the contract value that the contractor must subcontract. + + Additional information: + This is used for the competitive procedure described in Title III of Directive 2009/81/EC. + + + WG Approval 09/11/2021xsd:decimal [0..1]
epo:SubcontractingEstimateepo:hasSubjectMatterDescription of the share of the contract that is to be subcontracted. + + Additional infromation: + This can be an aggregate of several subcontracts. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionTermepo:hasSubmissionURL + Additional Information: + This corresponds to the eForms BT-18 Submission URL. + + This corresponds in eForms to BT-509 Organisation eDelivery Gateway.xsd:anyURI [0..*]
epo:MultipleStageProcedureTermepo:hasSuccessiveReductionThe number of solutions or tenders will be reduced in iterative evaluations for multiple + staged procedures. + + Additional information: + This refers to multiple-stage procedures (included two-stage procedures, at least). + Open Procedures can be seen as one-stage procedures. + WG Approval 22/08/2019 xsd:boolean [0..1]
cccev:Constraintepo:hasThresholdValueThe cut-off level for a given concept. + + Additional Information: + This value is given as e.g. a minimum score, a maximum number of tenders with the + highest score passing (see codelist at-voc:number-threshold).xsd:decimal [1..1]
epo:ReviewRequestSummaryepo:hasTotalNumberOfComplainantsThe number of economic operators that requested the buyer to review any of its decisions + (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive + 89/665/EEC and Directive 92/13/EEC. + + Additional information: + This attribute corresponds in eForms to BT-712 Buyer Review Complainants + + WG Approval 11/04/2019xsd:integer [0..1]
epo:GreenProcurementepo:hasTotalVehiclesThe number of all vehicles (regardless of whether clean or not) that have either been + purchased, leased, rented, hired-purchased or their use has been contractually committed + to for the provision of a purchased service. + + Additional Information + + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:Quantityepo:hasUnitDescriptionA narrative explanation defining the units of items being counted + + Additional information: This could be for example individual items or pack or two. + + WG Approval 09/11/2021rdf:PlainLiteral [0..*]
epo:SubmissionStatisticalInformationepo:hasUnverifiedTendersOffers received for which it has not been verified if they are admissible or inadmissible + (e.g. because award criteria have been evaluated for all tenders and admissibility + is checked only for the winning tender). + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:Fundepo:hasURLThe identifier of a resource. + + Additional Information + + For example: + + 1. The URL of the system from where to access the procurement documents; + 2. The URL of the system for the submission of tender documents; + 3. The URL of the system from where to download a tool to communicate with the Buyer; + 4. The URL of the system used by a Technique to allow Economic Operators to exchange + information with the Buyer (e.g. eAuction and DPS Systems) + 5. The URL of the system used to exchange information between Buyer and EO for questions + and clarifications; + + WG Approval 30/09/2019xsd:anyURI [0..1]
epo:Documentepo:hasVersionA number that identifies a specific state of a document. + + WG approval: 18/11/2021 + rdf:PlainLiteral [0..1]
epo:ReviewRequestepo:hasWithdrawalDateThe date and time when the request for review was withdrawn. + + Additional information: + This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date.xsd:date [0..1]
epo:ReviewRequestepo:hasWithdrawalReasonThe explanation for withdrawing the request for review. + + Additional information: + This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasonsrdf:PlainLiteral [0..1]
epo:GreenProcurementepo:hasZeroEmissionVehiclesThe number of all zero-emission heavy-duty vehicles that have either been purchased, + leased, rented, hired-purchased or their use has been contractually committed to for + the provision of a purchased service. + + Additional Information + + In the European Union, the legal requirements and scope for the provision of these + vehicles or services are covered by Directive 2009/33/EC. + + WG Approval 28/07/2020 + xsd:integer [0..1]
epo:ProcurementCriteriaSummaryepo:indicatesPerformingStaffInformationRequirementxsd:boolean [0..1]
epo:Procedureepo:isAcceleratedStatement about the fact that the procedure will be reduced due to a state of urgency. + + Additional Information + + This modifies the time limit for the receipt of requests to participate or the receipt + of tenders. + + WG Approval 20/08/2019 + xsd:boolean [0..1]
epo:SubmissionTermepo:isAdvancedElectronicSignatureRequiredAdvanced or qualified electronic signature or seal (as defined in Regulation (EU) + No 910/2014) is required. + + + + The submitted information is required to be signed electronically. + + Additional Information: + + Signature can be defined as "data in electronic form which is attached to or logically + associated with other data in electronic form and which is used by the signatory to + sign. + For more details on the meaning and uses of electronic signature you may consult different + authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 + on electronic identification and trust services for electronic transactions in the + internal market. + + WG Approval 21/07/2020 + xsd:boolean [0..1]
epo:ProcedureTermepo:isAwardedByCPBProcedure is awarded by a Central Purchasing Body. + + xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isCompetitionTerminatedNo further contracts will be awarded in this procedure. + + Additional Information: + This can be instantiated in the post award phase. + + PIN for Competition needs to be signaled. This field can be used even if no contracts + are awarded in the contract award notice. + + This corresponds in eForms to BT-756 PIN Competition Termination.xsd:boolean [0..1]
epo:Buyerepo:isContractingEntityRole of entities, which: + + (a) are contracting authorities or public undertakings and which pursue one of the + activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. + + (b) when they are not contracting authorities or public undertakings, have as one + of their activities any of the activities referred to in Articles 8 to 14, or any + combination thereof and operate on the basis of special or exclusive rights granted + by a competent authority of a Member State. + + Additional Information + + The indicator is needed in order to discriminate between those contracts where the + Contracting Entity acts as a Contracting Authority undergoing the limits and the rules + of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed + constraints. + For example, the Contracting Entities have different thresholds for the application + of Directive 24 if compared with Contracting Authorities. + + WG Approval 28/04/2020 + xsd:boolean [0..1]
epo:ProcurementObjectepo:isCoveredByGPASpecifies whether the Agreement on Government Procurement (GPA) applies. + + Additional information: + The GPA aims to establish a multilateral framework of balanced rights and obligations + relating to public contracts with a view to achieving the liberalization and expansion + of world trade. + + This corresponds in the e Forms to BT-115 GPA Coverage. + + WG Approval 15/10/2019 + + xsd:boolean [0..1]
epo:Procedureepo:isDesignContestA competition which enables the buyer to acquire a plan or design via a jury. + + Additional information: + Design contests have traditionally mostly been used in the fields of town and country + planning, architecture and engineering or data processing, other purposes, such as + to obtain plans for financial engineering + + The contest may include or not the award of prizes; + + WG approval 04-02-2021 xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isDPSTerminatedEnd of the Dynamic Purchase System (DPS). + + Additional Information: This property can be used in the contract award notice even + if no contracts are awarded. + + WG Approval 22/11/2019 + xsd:boolean [0..1]
epo:Noticeepo:isEUInstitutionxsd:boolean [0..1]
epo:SubmissionTermepo:isGuaranteeRequiredThe submitted information must include a financial commitment to be used in case of + default. + + Additional Information: + See the additional information provided in the definition of the 'Guarantee Description' + element. + + WG Approval 21/07/20 + + xsd:boolean [0..1]
epo:Procedureepo:isJointProcurementMultiple buyers procure together within the same procedure. + + Addition Information: + In case the joint procurement involves buyers from different countries, the national + law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . xsd:boolean [0..1]
epo:DesignContestRegimeTermepo:isJuryDecisionBindingIndicates whether the procuring entity is bound to apply the decision of the jury.xsd:boolean [0..1]
epo:Businessepo:isListedCompanyPublic companies listed on a stock exchange and subject to disclosure requirements + (either by stock exchange + rules or through law or enforceable means), which impose requirements to ensure adequate + transparency of + beneficial ownership. + + <u>Additional Information:</u> + + In eForms this indicator is used when the nationality of beneficial owner is not provided + because the Economic Operator is registered in a regulated market that is subject + to disclosure requirements consistent with Union law or subject to equivalent international + standards which ensure adequate transparency of ownership information. + + WG Approval 21/11/2019xsd:boolean [0..1]
epo:SubmissionTermepo:isMultipleTenderSubmissionAllowedTenderers may submit more than one competing tenders. + + WG Approval 10/10/2019 + + xsd:boolean [0..1]
epo:NonDisclosureAgreementTermepo:isNonDisclosureAgreementRequiredxsd:boolean [0..1]
epo:ProcedureTermepo:isOneLotOnlyAllowedIndicates whether tenders may be submitted for only one Lot. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms). + + WG approval 23/08/2022 + + xsd:boolean [0..1]
epo:ElementChangeDescriptionepo:isProcurementDocumentChangedOne or more procurement documents have been changed. + + Additional information: + This corresponds in eForms to BT-718 Change Procurement Documents + + WG Approval 05/11/2019xsd:boolean [0..1]
epo:AccessTermepo:isProcurementDocumentRestrictedThe access to certain procurement documents is restricted. + + Additional Information: + This corresponds in eForms to BT-14 Documents Restricted. + + WG Approval 10/10/2019xsd:boolean [0..1]
epo:ProcurementObjectepo:isRecurrentThe Procurement being notified is likely to be included in another procedure in the + foreseeable future. + + Additional Information: + + For example, a regularly re-tendered municipal service. This does not include awarding + multiple contracts within a single qualification system, framework agreement, or a + dynamic purchasing system. + + This corresponds in eForms to BT-94 Recurrence. + + WG Approval 12/05/2020 + xsd:boolean [0..1]
epo:ContractTermepo:isRenewalIndicatorIndicates whether the contract is subject to a renewal clause. + WG Approval 09/11/2021xsd:boolean [0..1]
epo:SecurityClearanceTermepo:isSecurityClearanceRequiredxsd:boolean [0..1]
epo:ProcurementObjectepo:isSMESuitableThe Lot is suitable for small and medium enterprises (SMEs). + + Additional Information + + This allows the buyer to make emphasis on the fact that the procedure has been designed + having SMEs in mind. This indicator is also to be reflected in the selection criteria. + + For example, number of employees and turnover are applicable to the definition of + an SME. + + WG Approval 15/10/2019 + xsd:boolean [0..1]
epo:ProcedureTermepo:isSubmissionForAllLotsAllowedIndicates whether tenders may be submitted for all Lots. + + Additional information: + This field is used to complement the SubmissionTerms (which are at the Lot level) + for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled + in the TED Standard Forms) + + WG approval 23/08/2022 + xsd:boolean [0..1]
epo:ProcurementProcessInformationepo:isToBeRelaunchedIndicator of whether the procurement object is to be relaunched. + + Additional information: + This can be instantiated in the post award phase. + + This corresponds in eForms to BT-634 Procurement Relaunch. + + WG Approval: 18/01/2022 + xsd:boolean [0..1]
epo:SelectionCriterionepo:isUsedForCandidateRestrictionThe criterion will be used to select the candidates to be invited for the second stage + of a multistage procedure. + + Additional Information: + This property is only used if a maximum number of candidates was foreseen in the procedure. + This corresponds in eForms to BT-40 Selection Criteria Second Stage Invitexsd:boolean [0..1]
epo:ProcurementObjectepo:isUsingEUFundsThe procurement foresees funding by the Union. + + Additional Information: + The funding may cover the whole procurement or part of the procurement. + + For example the European Structural and Investment Funds or grants awarded by the + European Union. + + xsd:boolean [0..1]
epo:Tenderepo:isVariantAlternative solution to fulfil the buyer's needs as opposed to solutions indicated + in the procurement documents. + + Additional Information: + + The permission to offer variants is only allowed if specified in a Contract Notice + or a Prior Information Notice that used as a means for calling for a competition. + The buyer lays out minimum requirements in the procurement documents that must be + respected by tenderers submitting variants. + + WG Approval 29/05/2019 + + xsd:boolean [0..1]
epo:ReviewRequestepo:isWithdrawnThe review request was withdrawn. + + Additional information: + This attribute corresponds in eForms to BT-796 Review Request Withdrawn.xsd:boolean [0..1]
cpv:Personfoaf:familyNameThe hereditary surname of a family. + rdf:langString [0..*]
cpv:Personfoaf:givenNameThe name(s) that identify the Person within a family with a common surname. + rdf:langString [0..*]
cpv:Personfoaf:nameThe complete name of the Person as one string.rdf:langString [0..*]
locn:Addresslocn:addressAreaThe name or names of a geographic area or locality that groups a number of addressable + objects for addressing purposes, without being an administrative unit. + + Additional Information: + This would typically be part of a city, a neighbourhood or village, e.g. Montmartre.rdf:langString [0..1]
locn:Addresslocn:adminUnitL1The name or names of a unit of administration related to the exercise of jurisdictional + rights, for local, regional and national governance. Level 1 refers to the uppermost + administrative unit for the address, almost always a country. + + Additional Information: + Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, + country names should be provided in a consistent manner to reduce ambiguity. For example, + either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing + the two. The Country controlled vocabulary from the Publications Office can be reused + for this.rdf:langString [0..1]
locn:Addresslocn:adminUnitL2The name or names of a unit of administration related to the exercise of jurisdictional + rights, for local, regional and national governance. Level 2 refers to the region + of the address, usually a county, state or other such area that typically encompasses + several localities. + + Additional Information: + Some recommended codelists from the EU Publications Office include: Administrative + Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement + of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" + in the ATU controlled vocabulary. + rdf:langString [0..1]
locn:Addresslocn:fullAddressThe complete address written as a formatted string. + + Additional Information: + Use of this property is recommended as it will not suffer any misunderstandings that + might arise through the breaking up of an address into its component parts. This property + is analogous to vCard's label property but with two important differences: (1) formatting + is not assumed so that, unlike vCard label, it may not be suitable to print this on + an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress + property has no such restriction. An example of a full address is "Champ de Mars, + 5 Avenue Anatole France, 75007 Paris, France".rdf:langString [0..1]
dct:Locationlocn:geographicNameA textual description for a Location. + + Additional Information: + The INSPIRE Data Specification on Geographical Names provides a detailed model for + describing a 'named place', including methods for providing multiple names in multiple + scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, + the concept of a geographic name used here is consistent. + + A geographic name is a proper noun applied to a spatial object. Taking the example + used in the INSPIRE document (page 15), the following are all valid geographic names + for the Greek capital: + + - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) + - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) + - "Athens"@en (the English language exonym) + INSPIRE has a detailed (XML-based) method of providing metadata about a geographic + name and in XML-data sets that may be the most appropriate method to follow. When + using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical + data (the use case for INSPIRE), the Code datatype or a simple language identifier + may be used to provide such metadata. + + The country codes defined in ISO 3166 may be used as geographic names and these are + generally preferred over either the long form or short form of a country's name (as + they are less error prone). The Publications Office of the European Union recommends + the use of ISO 3166-1 codes for countries in all cases except two: + + - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; + - use 'EL' in preference to the ISO 3166 code GR for Greece. + Where a country has changed its name or no longer exists (such as Czechoslovakia, + Yugoslavia etc.) use the ISO 3166-3 code.rdf:langString [0..1]
locn:Addresslocn:locatorDesignatorA number or a sequence of characters which allows a user or an application to interpret, + parse and format the locator within the relevant scope. A locator may include more + locator designators. + + Additional Information: + In simpler terms, this is the building number, apartment number, etc. For an address + such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17".rdf:PlainLiteral [0..1]
locn:Addresslocn:locatorNameProper noun(s) applied to the real world entity identified by the locator. + + Additional Information: + The locator name could be the name of the property or complex, of the building or + part of the building, or it could be the name of a room inside a building. + + The key difference between a locator and a locator name is that the latter is a proper + name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting + room within the European Commission headquarters for which locator name is more appropriate + than locator.rdf:langString [0..1]
locn:Addresslocn:postCodeThe post/zip code of an address. (INSPIRE's definition is "A code created and maintained + for postal purposes to identify a subdivision of addresses and postal delivery points.") + + Additional Information: + Post codes are common elements in many countries' postal address systems. One of the + many post codes of Paris is for example "75000".rdf:PlainLiteral [0..*]
locn:Addresslocn:postNameThe key postal division of the address, usually the city. (INSPIRE's definition is + "One or more names created and maintained for postal purposes to identify a subdivision + of addresses and postal delivery points.) For example, "Paris".rdf:langString [0..*]
locn:Addresslocn:thoroughfareAn address component that represents the name or names of a passage or way through + from one location to another. A thoroughfare is not necessarily a road, it might be + a waterway or some other feature. + + Additional Information: + For example, "Avenue des Champs-&#201;lys&#233;es".rdf:langString [0..*]
cpv:Personperson:birthNameFamily name of the Person given upon their birth. + WG Approval 09/11/2021rdf:langString [0..*]
cpv:Personperson:patronymicNameName based on the given name of the Person's father. + WG Approval 09/11/2021rdf:langString [0..*]
adms:Identifierskos:notationThe literal identifying an entity, like a person or an object.rdf:PlainLiteral [1..1]
cccev:InformationConcept
cccev:Requirement
skos:prefLabelThe preferred lexical label for a resource, in a given language. + + WG approval 30/05/2023 + + The preferred lexical label for a resource, in a given language. + + WG approval 30/05/2023rdf:PlainLiteral [0..*]
rdf:PlainLiteral [0..1]
epo:SpecificDurationtime:numericDurationValue of a temporal extent expressed as a number.xsd:decimal [1..1]
+

Predicates (object properties) and definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Predicate nameDefinitionDomain, Range and Cardinality
adms:identifierA unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 + + A unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 A unique identifier of the instance of the concept. + + Additional Information + + For example, in the case of the Procurement Identifier, this could be the European + Public Procurement Identifier, and/or any other identifier provided by the buyer, + the service provider or any other stakeholder. + + WG Approval 12/11/2019 + Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class. Links a resource to an adms:Identifier class.epo:Project -> adms:Identifier [0..1]
epo:LotGroup -> adms:Identifier [0..1]
epo:ProcurementElement -> adms:Identifier [1]
foaf:Agent -> adms:Identifier [0..*]
dct:Location -> adms:Identifier [0..1]
cccev:InformationConcept -> adms:Identifier [0..1]
epo:Document -> adms:Identifier [0..*]
epo:Fund -> adms:Identifier [0..1]







cccev:confidentialityLevelTypeSecurity classification assigned to an Evidence e.g. classified, sensitive, public. + + Additional Information: + + Classifications should be defined by an organisation/country as an outcome of a security + assessment. + cccev:Evidence -> at-voc:confidentiality-level [0..1]
cccev:constrainsInformation Concept about which a Constraint expresses a limitation. + + Additional Information: + Information Concepts are tools to make Requirements more machine processable: they + allow to provide more detail about a Requirement. This way, Constraints can be made + very precise, namely the limit that must be achieved, is a limit on the value for + the associated Information Concept. For example, the Information Concept would be + the age of a person and the Constraint would be the required age in the context of + a specific evaluation.cccev:Constraint -> cccev:InformationConcept [0..*]
cccev:hasRequirementA more specific Requirement that is part of the Requirement.cccev:Requirement -> cccev:Requirement [0..*]
cccev:supportsConceptInformation Concept providing facts found/inferred from the Evidence. + + Additional Information: + Examples of Information Concepts are values found explictly in the evidence such as + a birth date or information derived from the Evidence such as "I am older that 18 + years" or "this is a FairTrade product".cccev:Evidence -> cccev:InformationConcept [0..*]
cccev:supportsRequirementRequirement for which the Evidence provides proof.cccev:Evidence -> cccev:Requirement [0..*]
cv:addressAssociates any Resource with the corresponding Address. + + Additional Information: + Asserting the address relationship implies that the Resource has an Address. org:Organization -> locn:Address [0..*]
cpov:ContactPoint -> locn:Address [0..1]
cv:registeredAddressThe registered address relationship links a Resource with the legally registered Address. + + Additional Information: + It is the address to which formal communications can be sent, such as the postal address. The registered address relationship links a Resource with the legally registered Address. + + Additional Information: + It is the address to which formal communications can be sent, such as the postal address. + cpv:Person -> locn:Address [0..1]
org:Organization -> locn:Address [0..1]
dct:typeCategory to which the Requirement belongs.cccev:Criterion -> at-voc:criterion [0..1]
epo:actsOnBehalfOfRepresents.epo:ProcurementServiceProvider -> epo:Buyer [1..*]
epo:announcesAwardDecision epo-not:ResultNotice -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision [0..*]
epo-not:ResultNotice -> epo:AwardDecision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AwardDecision [0..*]
epo:announcesCompletionOfContract epo-not:CompletionNotice -> epo:Contract [1]
epo-not:CompletionNotice -> epo:Contract [1]
epo:announcesContract epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo:announcesLot epo-not:DirectAwardPrenotificationNotice -> epo:Lot [1..*]
epo-not:CompetitionNotice -> epo:Lot [1..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Lot [1..*]
epo-not:CompetitionNotice -> epo:Lot [1..*]
epo:announcesLotGroup epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo:announcesLotGroupAwardInformation epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo:announcesNonPublishedElementRelation indicating which parts of a document are not published. + + Additional Information: + For example, elements in the Contract Award Notice that should be published at a later + date. Relation indicating which parts of a document are not published. + + Additional Information: + For example, elements in the Contract Award Notice that should be published at a later + date. epo-not:ResultNotice -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision [0..*]
epo-not:ResultNotice -> epo:PublicationProvision [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:PublicationProvision [0..*]
epo:announcesNoticeAwardInformation epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo:announcesPlannedProcurementPart epo-not:PlanningNotice -> epo:PlannedProcurementPart [0..*]
epo-not:PlanningNotice -> epo:PlannedProcurementPart [0..*]
epo:announcesProcedure epo-not:DirectAwardPrenotificationNotice -> epo:Procedure [1]
epo-not:CompetitionNotice -> epo:Procedure [1]
epo-not:DirectAwardPrenotificationNotice -> epo:Procedure [1]
epo-not:CompetitionNotice -> epo:Procedure [1]
epo:announcesReviewObject epo-not:CompletionNotice -> epo:ReviewObject [1..*]
epo-not:CompletionNotice -> epo:ReviewObject [1..*]
epo:announcesRole epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo:associatedWithThe document to which a document is associated. + + WGM 01/03/2022 + epo:Document -> epo:Document [0..*]
epo:bindsBuyerProvides legal constraint on the Buyer.epo:Contract -> epo:Buyer [0..*]
epo:bindsContractorProvides legal constraint on the Contractor.epo:Contract -> epo:Contractor [0..*]
epo:comprisesLotAwardDecisionIncorporates LotAwardOutcome.epo:AwardDecision -> epo:LotAwardDecision [0..*]
epo:comprisesMiniCompetitionAwardDecisionepo:AwardDecision -> epo:MiniCompetitionAwardDecision [0..*]
epo:comprisesTenderIncorporates Tender.epo:TenderGroup -> epo:Tender [1..*]
epo:comprisesTenderAwardOutcomeIncorporates TenderAwardOutcome.epo:AwardDecision -> epo:TenderAwardOutcome [0..*]
epo:concernsLotRelates to Lot. Relates to Lot.epo:ProcurementProcessInformation -> epo:Lot [0..1]
epo:LotAwardDecision -> epo:Lot [1]
epo:concernsMiniCompetitionepo:MiniCompetitionAwardDecision -> epo:MiniCompetition [0..1]
epo:concernsProcedureRelates to Procedure.epo:ProcurementProcessInformation -> epo:Procedure [0..1]
epo:concernsReviewSummaryForLotRelates to Lot review summary. + + Additional information: + This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier.epo:ReviewRequestSummary -> epo:Lot [1]
epo:concernsTenderepo:TenderAwardOutcome -> epo:Tender [1]
epo:conformsToLegalBasisThe Notice was designed in accordance with the given legal basis. + + Additional Information: + This Notice can be used for Procedures which do not have the same legal basis. + This holds for standard forms.epo:Notice -> at-voc:legal-basis [0..1]
epo:conformsToSpecificLegalBasisepo:Notice -> at-voc:legal-basis [0..1]
epo:containsCandidateepo:SelectedCandidateList -> epo:Candidate [0..*]
epo:containsModificationsOf + + Additional information + This relation shall be used between Instances of the SAME type/class. + + The "modifying-instance" can be minimally instantiated, carrying the fields/information + that override the fields in the "modified-instance". + + This means that the "modifying-instance" (is under-specified) and might violate minimal + cardinality restrictions in case they are checked. But the purpose of such an instance + is not to be used as a full instance. + owl:Thing -> owl:Thing [0..1]
epo:contextualisedByThe place of the AgentInRole in the procurement is expressed by a ProcurementObject.epo:AgentInRole -> epo:ProcurementObject [0..*]
epo:definesBudgetProviderRelation indicating a ProcedureTerm has a BudgetProvider.epo:ProcedureTerm -> epo:BudgetProvider [0..1]
epo:definesCatalogueProviderRelation indicating an AccessTerm has a CatalogueProvider.epo:AccessTerm -> epo:CatalogueProvider [0..*]
epo:definesCatalogueReceiverRelation indicating an AccessTerm has a CatalogueReceiver.epo:AccessTerm -> epo:CatalogueReceiver [0..*]
epo:definesContractDurationRelation indicating a ContractTerm has a Duration.epo:ContractTerm -> epo:Duration [0..1]
epo:definesContractPeriodRelation indicating a ContractTerm has a Period.epo:ContractTerm -> epo:Period [0..1]
epo:definesInformationProviderRelation indicating a ProcedureTerm has an information provider.epo:ProcedureTerm -> epo:AuxiliaryParty [0..*]
epo:definesLotGroupRelation indicating a ProcedureTerm has a LotGroup.epo:ProcedureTerm -> epo:LotGroup [0..*]
epo:definesMediatorRelation indicating a ProcedureTerm has a Mediator.epo:ProcedureTerm -> epo:Mediator [0..1]
epo:definesOfflineAccessProviderRelation indicating an AccessTerm has an OfflineAccessProvider.epo:AccessTerm -> epo:OfflineAccessProvider [0..1]
epo:definesOpeningPlaceThe place where the tenders will be publicly opened. + + WG Approval 10-10-2019epo:OpeningTerm -> locn:Address [0..1]
epo:definesParticipationRequestProcessorRelation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor.epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor [0..1]
epo:definesParticipationRequestReceiverRelation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver.epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver [0..1]
epo:definesPaymentExecutorRelation indicating a ContractTerm has a PaymentExecutor.epo:ContractTerm -> epo:PaymentExecutor [0..1]
epo:definesPlaceOfPerformanceRelation indicating the place of performance of a Contract. + + WG approval 21/03/2023epo:ContractTerm -> dct:Location [0..*]
epo:definesPrizeRelation indicating a DesignContestRegimeTerm has a Prize.epo:DesignContestRegimeTerm -> epo:Prize [0..*]
epo:definesProcurementProcedureInformationProviderRelation indicating an AccessTerm has a ProcurementProcedureInformationProvider.epo:AccessTerm -> epo:ProcurementProcedureInformationProvider [0..1]
epo:definesSubcontractingTermRelation indicating a ContractTerm has a SubcontractingTerm.Relation indicating a + term has a subterm.epo:ContractTerm -> epo:SubcontractTerm [0..1]
epo:definesTenderProcessorRelation indicating a SubmissionTerm has a TenderProcessor.epo:SubmissionTerm -> epo:TenderProcessor [0..1]
epo:definesTenderReceiverRelation indicating a SubmissionTerm has a TenderReceiver.epo:SubmissionTerm -> epo:TenderReceiver [0..1]
epo:delegatesAncillaryActivitiesToEntrusts ancillary purchasing activities to ProcurementServiceProvider. + + Additional Information: + Directive 2014/24/EU describes ancillary purchasing activities as activities consisting + in the provision of support to purchasing activities, in particular in the following + forms: + + (a) technical infrastructure enabling contracting authorities to award public contracts + or to conclude framework agreements for works, supplies or services; + + (b) advice on the conduct or design of public procurement procedures; + + (c) preparation and management of procurement procedures on behalf and for the account + of the contracting authority concerned;epo:Buyer -> epo:ProcurementServiceProvider [0..*]
epo:describesContractModification epo-not:ContractModificationNotice -> epo:ContractModification [0..*]
epo-not:ContractModificationNotice -> epo:ContractModification [0..*]
epo:describesLotCompletionepo:ContractLotCompletionInformation -> epo:Lot [1]
epo:describesLotGroupepo:LotGroupAwardInformation -> epo:LotGroup [1]
epo:describesNoticeepo:NoticeDescription -> epo:Notice [1]
epo:describesResultNotice epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:distributesOfferepo:OfferIssuer -> epo:Offer [0..*]
epo:exposesChannelepo:AgentInRole -> cv:Channel [0..*]
epo:exposesInvoiceeChannelepo:Buyer -> cv:Channel [0..*]
epo:followsRulesSetByepo:MiniCompetition -> epo:FrameworkAgreement [0..1]
epo:foreseesConcession epo:ProcurementObject -> epo:ConcessionEstimate [0..1]
epo:Tender -> epo:ConcessionEstimate [0..1]
epo:foreseesContractSpecificTermepo:ProcurementObject -> epo:ContractSpecificTerm [0..*]
epo:foreseesProcurementObjectRelation indicating the instance of a Procurement Object that is planned. + + Additional Information: + The properties of the Procurement Object that is foreseen should be read as foreseen + properties. + For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. + For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy.epo:PlannedProcurementPart -> epo:ProcurementObject [0..1]
epo:foreseesSubcontractingepo:Tender -> epo:SubcontractingEstimate [0..*]
epo:foreseesTechniqueepo:PlannedProcurementPart -> epo:Technique [0..*]
epo:fulfillsRequirementThe requirement to which the concept meets. + WG Approval 09/11/2021 + + The requirement to which the concept meets. + WG Approval 09/11/2021 + + The requirement to which the concept meets. + WG Approval 09/11/2021 + + epo:GreenProcurement -> at-voc:environmental-impact [1..*]
epo:InnovativeProcurement -> at-voc:innovative-acquisition [1..*]
epo:SocialProcurement -> at-voc:social-objective [1..*]
epo:fulfillsStrategicProcurementepo:ProcurementObject -> epo:StrategicProcurement [0..*]
epo:hasAdditionalClassificationepo:Purpose -> at-voc:cpv [0..*]
epo:hasAdditionalContractNatureAdditional type of acquisition taken into consideration in the contract. + + WG Approval 11/06/2020 + + epo:ContractTerm -> at-voc:contract-nature [0..*]
epo:hasAllegedIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-791 Review Irregularity Type + epo:ReviewRequest -> at-voc:irregularity-type [1..*]
epo:hasApproximateFrameworkAgreementValue epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasAwardCriterionTypeCategory of award criterion. + + epo:AwardCriterion -> at-voc:award-criterion-type [0..1]
epo:hasAwardedEstimatedValueThe estimated value that can be spent as provided by the Award Decision. + + <u>Additional Information</u>: + This property is used for framework agreements and dynamic purchasing systems. + Different cases of awarded values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + + WG Approval 12/12/2019 + + epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardedValueThe value of the procurement provided by the Award Decision. + + Additional Information: + Different cases of awarded values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + + In the case of framework agreements and dynamic purchasing systems this refers to + the maximum awarded value. + + WG Approval 10/12/2019epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasAwardStatusIndicates whether the lot is awarded, not awarded or still open. + WG Approval 03/12/2019 + + epo:AwardDecision -> at-voc:winner-selection-status [0..1]
epo:hasBargainPriceThe value of procured supplies that have used a particularly advantageous opportunity + available for a very short time at a value considerably lower than normal market prices. + + WG approval 23/05/2023epo:AwardDecision -> epo:MonetaryValue [0..1]
epo:hasBeneficialOwnerA role of any natural person(s) who ultimately owns or controls the organisation or + on whose behalf a transaction or activity is being conducted. + Additional Information: + This role is defined in the directive EU 2015/849 and it's beyond the scope for public + eProcurement domain. + WG approval 14/09/2021epo:Business -> cpv:Person [0..*]
epo:hasBroadPlaceOfPerformanceGeopolitical zone where the contract can be executed. + + Additional Information + + Used for setting restrictions that cannot be established with one country code or + a geographical zone identifier (like NUTS), because they have a broader scope (geographical, + economic, political, other). + epo:ContractTerm -> at-voc:other-place-service [0..1]
epo:hasBusinessSizeThe category of the business depending on number of employees and turnover. + + Additional information: + + See Commission Recommendation of 6 May 2003 concerning the definition of micro, small + and medium-sized enterprises. + + WG Approval 28/05/2020 + + epo:Business -> at-voc:economic-operator-size [0..1]
epo:hasBuyerLegalTypeA category that indicates the right of an Organisation to play the role of a buyer. + + Additional Information: + The category also effects the rules that the buyer has to abide to within the public + procurement procedure. + WG 07/09/2021 + + org:Organization -> at-voc:buyer-legal-type [0..1]
epo:hasCandidateListepo:DynamicPurchasingSystem -> epo:SelectedCandidateList [0..*]
epo:hasChangeJustificationCode explaining the change. + + WG Approval 5/11/2019 + The motives for the change. + + WG 5/11/2019 + + The codelist to be used is at-voc:change-corrig-justification which is available at + + http://publications.europa.eu/resource/dataset/change-corrig-justificationepo:ElementChangeDescription -> at-voc:change-corrig-justification [1]
epo:hasConcessionEstimatedValueepo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasConfirmedIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-791 Review Irregularity Typeepo:ReviewDecision -> at-voc:irregularity-type [0..*]
epo:hasConstraintepo:ProcurementCriterion -> cccev:Constraint [0..*]
epo:hasContactPointInRoleepo:AgentInRole -> cpov:ContactPoint [0..*]
epo:hasContractNatureTypeSubject of the acquisition. + + WG Approval 11/06/2020 + + epo:ContractTerm -> at-voc:contract-nature [0..1]
epo:hasContractValueepo:Contract -> epo:MonetaryValue [0..1]
epo:hasCountryCode + dct:Location -> at-voc:country [0..1]
locn:Address -> at-voc:country [0..1]
epo:hasCountryOfBirthThe country in which the Person was born. + cpv:Person -> at-voc:country [0..1]
epo:hasCurrencyThe identifier of the currency as in the standard code list used. + + epo:MonetaryValue -> at-voc:currency [0..1]
epo:hasDirectAwardJustificationList of reasons for using a procedure which allows awarding contracts directly without + publishing a notice. + + WG Approval 28/05/2020 + epo:DirectAwardTerm -> at-voc:direct-award-justification [0..1]
epo:hasDocumentRestrictionJustificationAn explanation about the reasons why some procurement documents are restricted. + + Additional Information: + This corresponds in eForms to BT-707 Documents Restricted Justification. + + WG Approval 09/03/2021 + epo:AccessTerm -> at-voc:communication-justification [0..1]
epo:hasDPSScopeExplanation as to whether a dps is used and by whom. + + Additional Information: + This corresponds in eForms to BT-766 Dynamic Purchasing System. + WG Approval 09/11/2021 + Explanation as to whether a dps is used and by whom. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usageepo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage [0..1]
epo:hasECataloguePermissionThe extent to which electronic catalogues may be used in tenders. + + WG Approval 03/10/2019 + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasEInvoicingPermissionepo:ContractTerm -> at-voc:permission [0..1]
epo:hasElectronicDigestepo:Document -> epo:Document [0..*]
epo:hasElectronicSignatureepo:Document -> epo:ElectronicSignature [0..*]
epo:hasElementChangeepo:NoticeChange -> epo:ElementChangeDescription [1..*]
epo:hasElementConfidentialityRelation indication that the publication provision applies to a given field of a document.epo:PublicationProvision -> epo:ElementConfidentialityDescription [1..*]
epo:hasElementDescriptionepo:NoticeDescription -> epo:ElementDescription [0..*]
epo:hasElementModificationepo:ContractModification -> epo:ElementModificationDescription [1..*]
epo:hasEndpointIdentifiercv:Channel -> adms:Identifier [0..*]
epo:hasEstimatedBuyerConcessionRevenueThe expected payments made by the buyer to the economic operator awarded the concession + that are not directly related to the use of the concession. + + <u>Additional Information:</u> + For example the public buyer pays a yearly fee to provide a ticketing solution to + the public. The fee the public pays for every ticket sold through the solution is + not included in this estimation but in the estimation of the user concession revenue. + + This corresponds to BT-160 in eForms. + + WG Approval 07/01/2020epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedDurationRelation indicating a Contract has an estimated Duration. + + Additional Information + + When the Lot uses a Technique the contract estimated duration applies to the Technique. + epo:Contract -> epo:Duration [0..1]
epo:hasEstimatedUserConcessionRevenueThe estimated revenue coming from the use of the concession. + + Additional Information: + Revenues are for example fees and fines. For example, the fees and fines coming from + the cars using a motorway. + + This corresponds to BT-162 in eForms. + epo:ConcessionEstimate -> epo:MonetaryValue [0..1]
epo:hasEstimatedValueA forecast of the value of the procurement before competition. + + Additional Information: + Different cases of estimated values may refer to a lot, the global value of the procedure, + or of a combinatorial value of a group of lots. + The forecast is calculated by the buyer and covers all revenues whether coming from + the buyer or third parties. + See for example recital (19), Article 5 of Directive 2014/24/EU and other articles + from the rest of Directives about procurement. + + In the case of framework agreements and dynamic purchasing systems this refers to + the maximum estimated value. + + This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used + for BT-157 (for LotGroup). + <b> + </b><b>WG Approval 05/12/2019</b> + + epo:ProcurementElement -> epo:MonetaryValue [0..1]
epo:hasESubmissionPermissionThe requirements as to what extent electronic submission is allowed. + + WG Approval 03/10/2019 + + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasFinancialOfferValueThe value offered by the Tenderer for a Lot. + + Additional Information: + This value is normally the one awarded for a winning Tender Lot. In case of negotiated + procedures the original financial value may be reviewed and the offer updated. + + This corresponds to BT-720 in eForms.epo:Tender -> epo:MonetaryValue [0..1]
epo:hasFixedValueTypeThe method to interpret the fixed value as pertaining to a total or unit. + + WG Approval 17/09/2019 + + epo:AwardCriterion -> at-voc:number-fixed [0..1]
epo:hasFormTypeA categorisation of the steps in which the Notice is used. + + WG Approval 12/05/2020 + + epo:Notice -> at-voc:form-type [0..1]
epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
epo:hasFrameworkAgreementEstimatedValueThis refers to BT-660 in eForms.epo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementMaximumValueepo:LotAwardDecision -> epo:MonetaryValue [0..1]
epo:hasFrameworkAgreementTypeThe form of framework agreement used in a procurement procedure. + + Addition information: + + A concept to distinguish the different types of framework agreement, which are: + 1. Framework agreement without reopening of competition, + 2. Framework agreement with reopening of competition, or + 3. Framework agreement partly without reopening of competition. + + WG Approval 19/09/2019 + + epo:FrameworkAgreementTerm -> at-voc:framework-agreement [1]
epo:hasFundProgrammeepo:Fund -> at-voc:EU-programme [0..1]
epo:hasGroupFrameworkAgreementMaximumValueThis corresponds to BT-156 in the eForms.epo:LotGroupAwardInformation -> epo:MonetaryValue [0..1]
epo:hasHighestReceivedTenderValueAmount of the Tender with the highest value. + + Additional Information + The value must correspond to an admissible tender. For example, tenders compliant + with the procurement document requirements, not having an abnormally low price or + cost, etc. + + + WG Approval 12/12/2019 + + + epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasImplementingRegulation epo-not:eFormsNotice -> (EU) 2019/1780 [0..1]
epo-not:StandardFormsNotice -> (EU) 2015/1986 [0..1]
epo:hasInternalIdentifierepo:ProcurementElement -> adms:Identifier [0..*]
epo:hasIrregularityTypeAdditional information: + This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity + Typeepo:ReviewIrregularitySummary -> at-voc:irregularity-type [1]
epo:hasItemCountryOfOriginThe source country of the product or service. + + Additional Information: + + The country of origin can be provided by the buyer as a requirement or by the tenderer + information of the item to be provided. + + WG Approval 07/01/2020 + + The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/countryepo:Tender -> at-voc:country [0..*]
epo:hasLanguageLanguage in which the submitted information is to be expressed. + + WG Approval 21/07/2020 + + epo:SubmissionTerm -> at-voc:language [0..*]
epo:hasLateSubmissionPermissionWhether economic operator-related information can be supplemented even after the submission + deadline. + + Additional Information + This is specific to the information on the economic operator and not the actual offer. + This does not apply to the requests for clarification. + + WG Approval 21/07/2020 + epo:SubmissionTerm -> at-voc:missing-info-submission [0..1]
epo:hasLaunchFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLaunchGroupFrameworkAgreementMaximumValueepo:FrameworkAgreementTerm -> epo:MonetaryValue [0..1]
epo:hasLegalBasisThe legal basis under which the procurement procedure takes place. + + Additional Information: + For example European Directives or Regulations, national laws etc. + The recommended code list is the example for the legal basis at the European level. + + WG 04/04/2023 + + The legal basis under which the procurement procedure takes place. + + Additional Information: + For example European Directives or Regulations, national law + + WG 09/11/2021 + + The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis + epo:ProcurementObject -> at-voc:legal-basis [0..*]
epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
epo:hasLegalIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasLegalRegimeepo:ProcurementObject -> epo:legal-regime [0..*]
epo:hasLotReferenceepo:Contract -> epo:Lot [1..*]
epo:hasLowestReceivedTenderValueAmount of the Tender with the lowest value. + + Additional Information + The value must correspond to an admissible tender. For example, tenders compliant + with the procurement document requirements, not having an abnormally low price or + cost, etc. + + WG Approval 12/12/2019 + + epo:SubmissionStatisticalInformation -> epo:MonetaryValue [0..1]
epo:hasMainActivityThe principal sectoral area in which an organisation operates. + + Additional information: + + The activities associated with buyers are derived from the top level of the Classification + of the functions of the government (COFOG) from the United Nations Statistics Division. + + The activities associated with buyer are derived from sectors explicitly falling within + the sectoral directive (2014/25/EU Art. 8 - Art. 14). + + WG Approval 05/05/2020 + + org:Organization -> at-voc:main-activity [0..1]
epo:hasMainClassificationepo:Purpose -> at-voc:cpv [1..*]
epo:hasMaximumFrameworkAgreementAwardedValueThe maximum value which can be spent through all the framework agreements announced + in this notice, including options and renewals of contracts. + + Additional information: + + The value provided is a threshold value that implicity means that it cannot be exceeded + however it may not be reached during the execution of a contract. + + The Framework Agreements in a CAN are to be traced back and added to provide this + value. + + This corresponds to the BT-118 in eForms. + + WG Approval 03/12/2019epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasMemberepo:OrganisationGroup -> org:Organization [1..*]
epo:hasModificationJustificationExplanation of why a contract was modified. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:modification-justification which is available at + http://publications.europa.eu/resource/dataset/modification-justification + + Additional Information + + This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . + + This corresponds in eForms to BT-200. + + Explanation of why a contract was modified. + + WG Approval 09/11/2021 + + The codelist to be used is at-voc:modification-justification which is available at + http://publications.europa.eu/resource/dataset/modification-justification + + Additional Information + + This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . + + This corresponds in eForms to BT-200. + + + epo:ElementModificationDescription -> at-voc:modification-justification [1]

epo:hasNationality + cpv:Person -> at-voc:country [0..*]
epo:hasNonAwardJustificationOn hold; Enumeration. + + + epo:AwardDecision -> at-voc:non-award-justification [0..1]
epo:hasNonElectronicSubmissionJustification + Reason for not accepting electronic information. + + WG Approval 21/07/2020 + epo:SubmissionTerm -> at-voc:communication-justification [0..*]
epo:hasNonPublicationJustificationThe reason why data is not published. + WG Approval 11/06/2020 + + epo:ElementConfidentialityDescription -> at-voc:non-publication-justification [1]
epo:hasNoticeType epo:Notice -> at-voc:notice-type [1]
epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
epo:hasNotificationContentTypeA categorisation of templates for sets of Procurement information to be conveyed in + Notices. + + WG Approval 12/05/2020epo:Notice -> epo:notification-phases-content-types [0..1]
epo:hasNutsCode dct:Location -> at-voc:nuts [0..1]
locn:Address -> at-voc:nuts [0..1]
epo:hasOfficialLanguageThe language(s) in which the instances of the given concepts are officially available. + These linguistic versions are equally legally valid. + + WG Approval 03/10/2019 + + epo:Document -> at-voc:language [1..*]
epo:hasPerformingStaffQualificationInformation + Additional information: + + This relation corresponds in eForms to BT-79.Explanation as to if and/or when information + of the persons to carry out the contract is to be provided. + WG Approval 09/11/2021 + + The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage + epo:ProcurementCriterion -> at-voc:requirement-stage [0..*]
epo:hasPlannedDurationepo:PlannedProcurementPart -> epo:Duration [0..1]
epo:hasPlannedPeriodepo:PlannedProcurementPart -> epo:Period [0..1]
epo:hasPrimaryContactPointorg:Organization -> cpov:ContactPoint [0..*]
epo:hasPrizeValueThe monetary value of a prize, if any, for the winner (or runners-up) of the design + contest. + + Additional Information: + This corresponds to BT-644 in eForms. + + WG Approval 29/08/2019 + + epo:Prize -> epo:MonetaryValue [0..1]
epo:hasProcedureTypeIdentification of the Procedure used. + + WG Approval 09/06/2020 + epo:Procedure -> at-voc:procurement-procedure-type [1]
epo:hasProcurementClassificationepo:Contract -> at-voc:cpv [0..1]
epo:hasProcurementHighestReceivedTenderValueThe highest received tender value for the procurement. + + Additional Information: + This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementLowestReceivedTenderValueThe lowest received tender value for the procurement. + + Additional Information: + This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986.epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasProcurementScopeDividedIntoLotepo:Procedure -> epo:Lot [1..*]
epo:hasPurposeRelation indicating a procurement part has a puropse.epo:ProcurementObject -> epo:Purpose [0..1]
epo:hasQualificationSystemDurationepo:MultipleStageProcedureTerm -> epo:Duration [0..1]
epo:hasReceivedSubmissionTypeepo:SubmissionStatisticalInformation -> at-voc:received-submission-type [0..1]
epo:hasRegistrationCountryorg:Organization -> at-voc:country [0..1]
epo:hasRemedyValueAdditional information: + This relation corresponds in eForms to BT-793 Review Remedy Value.epo:ReviewDecision -> epo:MonetaryValue [0..1]
epo:hasReservedExecutionepo:ContractTerm -> at-voc:applicability [0..1]
epo:hasReservedProcurementExplanation as to whether a procurement may be reserved for the participation of certain + types of organisation. + + Additional information: + This property corresponds in eForms to the BT-71 + WG Approval 09/11/2021 + Explanation as to whether a procurement may be reserved for the participation of certain + types of organisation. + + Additional information: + This property corresponds in eForms to the BT-71 + WG Approval 09/11/2021 + epo:ParticipationCondition -> at-voc:reserved-procurement [0..*]
epo:ParticipationConditionsSummary -> at-voc:reserved-procurement [0..*]
epo:hasReviewBodyTypeepo:Reviewer -> at-voc:review-body-type [0..*]
epo:hasReviewDecisionTypeAdditional information: + This relation corresponds in eForms to BT-790 Review Decision Type.epo:ReviewDecision -> at-voc:review-decision-type [0..*]
epo:hasReviewIrregularitySummaryAdditional information: + This relation corresponds in eForms to BG-613 Buyer Review Requestsepo:ReviewRequestSummary -> epo:ReviewIrregularitySummary [0..*]
epo:hasReviewRequestFeeAdditional information: + This relation corresponds in eForms to BT-795 Review Request Fee.epo:ReviewRequest -> epo:MonetaryValue [0..1]
epo:hasSelectionCriteriaUsage + Additional Information: + This corresponds in eForms to BT-748 Selection Criteria Used.epo:SelectionCriterion -> at-voc:usage [0..1]
epo:hasSelectionCriterionTypeThe classification of the selection criteria. + + + Additional Information: + + This corresponds in eForms to BT-747 Selection Criteria Type. + + WG Approval 09/11/2021 + epo:SelectionCriterion -> at-voc:selection-criterion [0..1]
epo:hasStartDateepo:SelectedCandidateList -> epo:Period [0..1]
epo:hasSubcontractingEstimatedValueThe estimated value of a single subcontract. + + This relates to BT-553 in eForms. + + WG Approval 01/09/2020 + + epo:SubcontractingEstimate -> epo:MonetaryValue [0..1]
epo:hasSubcontractingObligationThe requirement the tender must meet with regard to subcontracting parts of the contract. + WG Approval 09/11/2021 + + epo:SubcontractTerm -> at-voc:subcontracting-obligation [0..*]
epo:hasTaxIdentifierorg:Organization -> adms:Identifier [0..*]
epo:hasTenderSubcontractingInformationThe information about subcontracting that must be indicated in the tender. + + WG Approval 10/10/2019 + + epo:SubmissionTerm -> at-voc:subcontracting-indication [0..*]
epo:hasTenderValidityPeriodThe relation indicating until when a tender instance is applicable. + epo:SubmissionTerm -> epo:Period [0..1]
epo:hasThresholdTypeThe method to interpret the threshold value as minimum or a maximum. + + WG Approval 17/09/2019 + cccev:Constraint -> at-voc:number-threshold [0..*]
epo:hasTimePeriod + + epo:Period -> at-voc:timeperiod [1..*]
epo:hasTotalAwardedValueThe awarded value of all lots announced in this notice, including options and renewals. + + + Additional information: + The values of the individual Lots awarded under a framework agreement and mentioned + in this notice are included. + + The values of the individual lots announced in a CAN are to be traced back and added + to provide this value. + + This corresponds to the BT-161 in eForms. + + WG Approval 03/12/2019 + epo:NoticeAwardInformation -> epo:MonetaryValue [0..1]
epo:hasTotalQuantityThe number of units required. + + Additional Information: + The quantity needs to go along with the unit. + + + + epo:Purpose -> epo:Quantity [0..1]
epo:hasTotalValue epo:TenderGroup -> epo:MonetaryValue [1]

epo:hasUnitCodeepo:Quantity -> at-voc:measurement-unit [1]
epo:hasUnofficialLanguageThe language translation(s) in which the instances of the given concepts are available. + These linguistic versions are not an official translation, they are provided only + for information. + + WG Approval 03/10/2019 + epo:Document -> at-voc:language [0..*]
epo:hasUsageThe codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage + epo:Technique -> at-voc:usage [0..1]
epo:hasUUIDA universally unique identifier for an instance of this document. + + WG Approval 12/05/2020epo:Document -> adms:Identifier [0..1]
epo:hasValidityPeriodThe relation indicating until when a given instance of a concept is applicable. + + WG approval 30/05/2023 + The relation indicating until when a given instance of a concept is applicable. + + WG approval 30/05/2023epo:Technique -> epo:Period [0..1]

epo:hasVariantPermissionThe obligation or possibility for tenderers to submit variants or not. + + Additional Information: + + Variants are alternative ways to fulfil the buyer's needs as opposed to solutions + indicated in the procurement documents. + + eForms: Whether tenderers are required, allowed or forbidden to submit tenders which + fulfil the buyer's needs differently than as proposed in the procurement documents. + + + Additional Information: + + Further conditions for submitting variant tenders are in the procurement documents. + epo:SubmissionTerm -> at-voc:permission [0..1]
epo:hasWeightValueTypeNo definition. Waiting on CCCEV alignment. + + + epo:ProcurementCriterion -> at-voc:number-weight [0..1]
epo:includesAccessibilityCriterionExplanation as to whether accessibility Criterion are used or not. + WG Approval 09/11/2021 + + epo:StrategicProcurement -> at-voc:accessibility [0..*]
epo:includesTenderAdditional information: + This corresponds in eForms to BT-3202 Contract Tender Identifier. + epo:Contract -> epo:Tender [0..*]
epo:indicatesAwardToWinnerReveals the winner to whom the tender award outcome is attributed.epo:TenderAwardOutcome -> epo:Winner [0..1]
epo:indicatesInvoiceeContactPointepo:Buyer -> cpov:ContactPoint []
epo:involvesBuyerepo:Procedure -> epo:Buyer [0..*]
epo:involvesProcurementDocumentepo:AccessTerm -> epo:ProcurementDocument [1]
epo:isBasedOnImplementingRegulationIndicates under which regulation a notice is created. + + WG Acceptance 06/09/2022epo:Notice -> at-voc:legal-basis [0..1]
epo:isBeneficialOwnerOfA role of any natural person(s) who ultimately owns or controls the organisation or + on whose behalf a transaction or activity is being conducted. + Additional Information: + This role is defined in the directive EU 2015/849 and it's beyond the scope for public + eProcurement domain. + WG approval 14/09/2021epo:Business [,0..*] <- cpv:Person
epo:isExecutedByProcurementServiceProviderepo:Procedure -> epo:ProcurementServiceProvider [0..1]
epo:isFundedByFunding is provided either completely or partially by a Fund. + + Additional information: + This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 + Contract EU Funds (applied per Contract lot) + Funds may change between the lot and the contract, for example in the case of an emergency + crisis, a contract may be financed by a budget that was not foreseen in the call. + + epo:ProcurementObject -> epo:Fund [0..*]
epo:isOwnedByAgentepo:System -> foaf:Agent [0..1]
epo:isResponsibilityOfBuyerThe buyer in charge of the procedure. + + Additional Information: + In case there are multiple buyers, it may be the case that one or more buyers are + in charge of the procedure. + + epo:Procedure -> epo:Buyer [0..*]
epo:isSubjectToContractSpecificTermepo:Contract -> epo:ContractSpecificTerm [0..*]
epo:isSubjectToGroupingepo:Tender -> epo:LotGroup [0..1]
epo:isSubjectToLotSpecificTermepo:Lot -> epo:LotSpecificTerm [0..*]
epo:isSubjectToProcedureSpecificTermepo:Procedure -> epo:ProcedureSpecificTerm [1..*]
epo:isSubjectToTermepo:ProcurementObject -> epo:Term [0..*]
epo:isSubmitedByRelation indicating the submission of a tender by an economic operator. + WG approval 18/05/2021epo:Tender -> epo:Tenderer [0..1]
epo:isSubmittedForLotepo:Tender -> epo:Lot [1]
epo:isSubmittedForLotGroupepo:TenderGroup -> epo:LotGroup [1]
epo:leadByepo:OrganisationGroup -> org:Organization [0..1]
epo:needsToBeATendererThe Winner must be a Tenderer.epo:Winner -> epo:Tenderer [0..1]
epo:needsToBeAWinnerThe Contractor must be a Winner. + epo:Contractor -> epo:Winner [0..1]
epo:ownsSystemepo:System [,0..*] <- foaf:Agent
epo:playedBy epo:AgentInRole -> foaf:Agent [1]

epo:JuryMember -> foaf:Person [0..1]
epo:providesContractTotalPaymentValueAdditional Information: + This corresponds to BT-779 in eForms. epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesContractTotalPenaltyValue + Additional Information: + This corresponds to BT-782 in eForms. + epo:ContractLotCompletionInformation -> epo:MonetaryValue [0..1]
epo:providesRulingOnRemedyStates the measures to be taken after a review procedure.epo:ReviewDecision -> at-voc:remedy-type [0..*]
epo:refersToAwardDecision epo-not:CompletionNotice -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision [0..*]
epo-not:CompletionNotice -> epo:AwardDecision [0..*]
epo-not:ContractModificationNotice -> epo:AwardDecision [0..*]
epo:refersToContractepo:ContractLotCompletionInformation -> epo:Contract [1]
epo:refersToContractToBeModified epo-not:ContractModificationNotice -> epo:Contract [1]
epo-not:ContractModificationNotice -> epo:Contract [1]
epo:refersToLot epo:Notice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo:refersToLotGroup epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo:refersToLotGroupAwardInformation epo-not:CompletionNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:CompletionNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ContractModificationNotice -> epo:LotGroupAwardInformation [0..*]
epo:refersToNonPublishedElement epo-not:CompletionNotice -> epo:PublicationProvision [0..*]
epo-not:CompletionNotice -> epo:PublicationProvision [0..*]
epo:refersToNoticeepo:Notice -> epo:Notice [0..1]
epo:refersToNoticeAwardInformation epo-not:CompletionNotice -> epo:NoticeAwardInformation [0..1]
epo-not:CompletionNotice -> epo:NoticeAwardInformation [0..1]
epo:refersToOriginalNoticeepo:ContractModification -> epo:Notice [0..1]
epo:refersToPlannedPartepo:AccessTerm -> epo:PlannedProcurementPart [0..*]
epo:refersToPreviousepo:Document -> epo:Document [0..*]
epo:refersToPreviousNotice + Additional information: + This corresponds in eForms to BT-758 Change Notice Version Identifier.epo:NoticeChange -> epo:Notice [0..1]
epo:refersToPreviousProcedureReference to a previous procedure. + + Additional Information: + In the case of Direct Award Terms, this property points to a previous Procedure justifying + the use of Direct Award without a prior publication. + + This corresponds in the eForms to BT-1252 Direct Award Justification Previous + Procedure Identifierepo:DirectAwardTerm -> epo:Procedure [0..1]
epo:refersToPreviousProcedureLotReference to one or more Lots in a previous procedure. + + Additional Information: + In the case of Direct Award Terms, this property points to a previous Procedure justifying + the use of Direct Award without a prior publication. + + This corresponds in the eForms to BT-1252 Direct Award Justification Previous + Procedure Identifier + + WG Approval 22/11/2019 14:33:55epo:DirectAwardTerm -> epo:Lot [0..*]
epo:refersToPreviousReviewAdditional information: + This relation corresponds in eForms to BT-785 "Review Previous Identifier".epo:ReviewObject -> epo:ReviewObject [0..1]
epo:refersToProcedure epo-not:ResultNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo:Notice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:ResultNotice -> epo:Procedure [1]
epo:refersToRole epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo:requestsRemedyTypeAdditional information: + This relation corresponds in eForms to BT-792 Review Remedy Typeepo:ReviewRequest -> at-voc:remedy-type [0..*]
epo:resolvesReviewRequestepo:ReviewDecision -> epo:ReviewRequest [1]
epo:resultsFromLotAwardDecision epo:DirectContract -> epo:LotAwardDecision [0..*]
epo:FrameworkAgreement -> epo:LotAwardDecision [0..*]
epo:resultsFromMiniCompetitionAwardDecisionepo:PurchaseContract -> epo:MiniCompetitionAwardDecision [0..1]
epo:resultsInDynamicPurchasingSystemepo:DynamicPurchaseSystemTechnique -> epo:DynamicPurchasingSystem [1]
epo:setsGroupingContextForLotepo:LotGroup -> epo:Lot [1..*]
epo:signedByBuyerepo:Contract -> epo:Buyer [0..*]
epo:signedByContractorepo:Contract -> epo:Contractor [0..*]
epo:signsAwardDecisionepo:Buyer -> epo:AwardDecision [0..*]
epo:specifiesAwardCriterionepo:MiniCompetition -> epo:AwardCriterion [0..*]
epo:specifiesProcurementCriteriaSummaryepo:Procedure -> epo:ProcurementCriteriaSummary [0..*]
epo:specifiesProcurementCriterion epo:Lot -> epo:ProcurementCriterion [0..*]
epo:LotGroup -> epo:ProcurementCriterion [0..*]
epo:specifiesSubcontractorsepo:Tender -> epo:Subcontractor [0..*]
epo:substantiatesExclusionGroundepo:Tenderer -> epo:ExclusionGround [0..1]
epo:summarisesInformationForAwardDecisionRelates to submission for the given competition, either at Lot level or Mini-Competition + level. + + WG approval 30/05/2023epo:SubmissionStatisticalInformation -> epo:AwardDecision [1]
epo:usesCandidateListepo:MiniCompetition -> epo:SelectedCandidateList [0..1]
epo:usesChannelepo:ProcurementElement -> cv:Channel [0..*]
epo:usesTechniqueepo:ProcurementObject -> epo:Technique [0..*]
epo-not:announcesRole epo-not:ResultNotice -> epo:AgentInRole [0..*]
epo-not:ResultNotice -> epo:AgentInRole [0..*]
epo-not:hasLegalBasisepo-not:Modification-D24 -> Directive 24 [0..1]
epo-not:refersToRole epo-not:ResultNotice -> epo:AgentInRole [1..*]
epo-not:ResultNotice -> epo:AgentInRole [1..*]
locn:addressdct:Location -> locn:Address [0..1]
locn:addressIDA globally unique identifier for each instance of an Address. + + Additional Information: + The concept of adding a globally unique identifier for each instance of an address + is a crucial part of the INSPIRE data spec. A number of EU countries have already + implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. + OASIS xAL also includes an address identifier. It is the address Identifier that allows + an address to be represented in a format other than INSPIRE whilst remaining conformant + to the Core Vocabulary. + + The INSPIRE method of representing addresses is very detailed, designed primarily + for use in databases of addresses. Whilst data that is published in full conformance + with the INSPIRE data structure can be made available using the Location Core Vocabulary + the reverse is not true since the Core Vocabulary allows much greater flexibility. + + Many datasets that include address data as one piece of information about something + else are likely to have that data in simpler formats. These might be tailored to the + specific need of the dataset, follow a national norm, or make use of a standard like + vCard. + + To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable + with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location + Core Vocabulary provides the extra property of full address and makes use of INSPIRE's + addressID.locn:Address -> adms:Identifier [0..1]
locn:geographicIdentifierA URI that identifies the Location. + + Additional Information: + GeoNames.org provides stable, widely recognised identifiers for more than 10 million + geographical names that can be used as links to further information. For example, + http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately + these URIs cannot easily be automatically deduced since the URI scheme uses simple + numeric codes. Finding a GeoNames identifier for a Location is almost always a manual + process. Where such identifiers are known or can be found, however, it is recommended + that they be used. + + Where the Location Class is used to identify a country, if the geonames URI is not + known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX + where XX is the ISO 3166 two character code for the country. + + The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece + and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct + URIs for these countries are: + + - http://dbpedia.org/resource/ISO_3166-1:GR + - http://dbpedia.org/resource/ISO_3166-1:GB + even when the geographic name is given as EL or UK. + + The use of a URIs has added advantages: + + - it can be used by automated systems to look up additional data (linked data); + - a triple store may store only one copy of the URI, whereas if a string is used, + a copy of that string is always stored for each and every person in the database. + Thus, in large data sets, the saving on memory capacity and the improvement in transmission + efficiency can be substantial. + dct:Location -> adms:Identifier [0..1]
locn:geometrydct:Location -> locn:Geometry [0..1]
person:placeOfBirthThe Location where the Person was born.cpv:Person -> dct:Location [0..1]
person:placeOfDeathThe Location where the Person died.cpv:Person -> dct:Location [0..1]
time:unitTypeepo:SpecificDuration -> time:TemporalUnit [1]
+
+
+ + \ No newline at end of file diff --git a/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html b/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html index c3f1694..791756f 100644 --- a/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html +++ b/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html @@ -56,7 +56,7 @@

Abstract

Generalisations
. Each major section lists model items that need correction of errors or consideration of warnings.

The UML model in file demo_ontology_CM.xml - was tested at 11:34 on November 1, 2023.

+ was tested at 11:50 on November 1, 2023.

Nomenclature

Class names

diff --git a/implementation/demo_ontology_module/conventions_report/demo_ontology_module_CM_convention_report.html b/implementation/demo_ontology_module/conventions_report/demo_ontology_module_CM_convention_report.html index dd46a00..283ec27 100644 --- a/implementation/demo_ontology_module/conventions_report/demo_ontology_module_CM_convention_report.html +++ b/implementation/demo_ontology_module/conventions_report/demo_ontology_module_CM_convention_report.html @@ -56,7 +56,7 @@

Abstract

Generalisations. Each major section lists model items that need correction of errors or consideration of warnings.

The UML model in file demo_ontology_module_CM.xml - was tested at 11:35 on November 1, 2023.

+ was tested at 11:51 on November 1, 2023.

Nomenclature

Class names

From f3d464ba29927b6cf5bdf6fb546da6cc450df2de Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 1 Nov 2023 11:52:11 +0000 Subject: [PATCH 16/21] Adding transformation files --- .../owl_ontology/demo_ontology_CM.rdf | 9583 ++++++++++++ .../owl_ontology/demo_ontology_CM.ttl | 3885 +++++ .../demo_ontology_CM_restrictions.rdf | 8441 +++++++++++ .../demo_ontology_CM_restrictions.ttl | 3609 +++++ .../shacl_shapes/demo_ontology_CM_shapes.rdf | 12215 ++++++++++++++++ .../shacl_shapes/demo_ontology_CM_shapes.ttl | 5364 +++++++ .../owl_ontology/demo_ontology_module_CM.rdf | 11107 ++++++++++++++ .../owl_ontology/demo_ontology_module_CM.ttl | 750 + .../demo_ontology_module_CM_restrictions.rdf | 4496 ++++++ .../demo_ontology_module_CM_restrictions.ttl | 625 + .../demo_ontology_module_CM_shapes.rdf | 1057 ++ .../demo_ontology_module_CM_shapes.ttl | 577 + 12 files changed, 61709 insertions(+) create mode 100644 implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf create mode 100644 implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl create mode 100644 implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf create mode 100644 implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl create mode 100644 implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf create mode 100644 implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl create mode 100644 implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf create mode 100644 implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl create mode 100644 implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf create mode 100644 implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl create mode 100644 implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf create mode 100644 implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf new file mode 100644 index 0000000..50bddcd --- /dev/null +++ b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf @@ -0,0 +1,9583 @@ + + + + + + + + + + + + + + + + + + + + + eProcurement Ontology - core + The eProcurement Ontology core describes the concepts and properties representing the European Public Procurement domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact. + http://publications.europa.eu/resource/authority/corporate-body/PUBL + This version is automatically generated from demo_ontology_CM.xml on 2023-11-01 + + + + + 2023-11-01 + 2021-06-01 + 4.0.0 + 3.1.0 + + http://data.europa.eu/a4g/ontology#core-3.1.0 + http://data.europa.eu/a4g/ontology# + epo + © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). + + + + Dynamic purchasing system + + + An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. WG approval 23/05/2023 + + + + + + + Mini competition + + + A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. Additional Information: It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. WG approval 30/05/2023 + + + + + + + Mini competition award decision + + + Result concerning the Mini-Competition attributed by the Awarder. + + + + + + + Selected candidate list + + + Record of Candidates admitted to take part in award phases of procurements. WG approval 30/05/2023 + + + + + + + Project + + + A collaborative enterprise that is carefully planned to achieve a particular aim. + + + + + + + Procurement object + + + The whole or a division of goods, services or works to be procured. Additional Information: Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. In a sense, such an "object" can constitute the "object of a Contract". To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (<i>The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.</i>). Note: Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and "purpose" properties. + + + + + + + Lot + + + A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. WG approval 12/09/2018 + + + + + + + Planned procurement part + + + A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. WG Approval 20/06/2019 + + + + + + + Procedure + + + A legally defined set of administrative activities conducted to conclude one or more Contracts. Additional Information The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). WG Approval 20/08/2019 + + + + + + this is a note + + + this is a french label + + + this is a romanina + + + + Lot group + + + Combination of several Lots to conduct comparative assessment of the Tenders. Additional Information: The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. Pending of discussion with eForms Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined. + + + + + + + Procurement element + + + Gathering class for critical/central elements in the Procurement Process. TODO: add definition Additional information: Alias: ProcurementComponent + + + + + + + Purpose + + + The description of the objectives related to a Procurement. Additional information: The description of the objectives includes the Subject Matter and Quantities. The quantification of the objectives related to a procurement. To be re-reviewed by the WG the soonest. (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) The old definition read as follows: The description of the objectives related to a procurement. (WG approval 05/12/2018) + + + + + + + Tender group + + + Specific Offer in response to a Lot Group. Additional Information: This class is generally used to provide the Monetary Value in response to a Lot Group. + + + + + + + Public organisation + + + An Organisation that is defined as being part of the public sector by a legal framework at any level. Additional information: A body governed by public law: - (a) established for the specific Purpose of meeting needs in the general interest - (b) having legal personality; - (c) financed, for the most part by the State, or regional or local authorities. Examples of Public Organisations are municipality, international public body, ministry, others. WG Approval 28/04/2020 + + + + Person + + + A individual human being who may be dead or alive, but not imaginary. + + + + Ad hoc channel + + + Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023 + + + + + + + Business + + + A private law company registered in a national registry. WG Approval 28/04/2020 + + + + + + + Organisation group + + + Agreed collaboration of several Organisations. Additional Information: This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. WG approval 15/04/2021 + + + + + + + System + + + Software application used for performing Procurement activities. WG Approval 28/04/2020 + + + + + + + Agent + + + A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. WG Approval 28/04/2020 + + + + Person + + + The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF. + + + + Organization + + + A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. (WG approval 23/11/2018). + + + + Acquiring central purchasing body + + + Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021 + + + + + + + Acquiring party + + + The Role of an Agent that acts on the buying side of a Procurement Process. + + + + + + + Agent in role + + + Relative concept that ties an Agent to a part they play in a given Situational Context. Additional information: The classification of roles is based is based on the degree of involvement into the Procurement Process: - Primary (Procurement) Pole is directly involved in the Procurement Process; - Secondary (Procurement sub-) Role is secondary to the Procurement Process - Tertiary (Related) Role is not involved in the Procurement Process. + + + + + + + Auxiliary party + + + Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it. + + + + + + + Awarder + + + A Role of an Agent that signs the Award Decision. + + + + + + + Awarding central purchasing body + + + Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. Additional Information: In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021 + + + + + + + Budget provider + + + A role of an agent whose Budget is used to pay for the Contract. + + + + + + + Buyer + + + A Role of an Agent that awards a Contract and/or purchases items. Additional information: In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. In Post-Award the buyer generally refers to the purchaser of items. + + + + + + + Candidate + + + The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. WG approval 30/05/2023 + + + + + + + Catalogue provider + + + A Role of an Agent compiling and supplying a Catalogue. Additional Information: The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. WG Approval 28/01/2021 + + + + + + + Catalogue receiver + + + A Role of an Agent processing a Catalogue. Additional Information: The Catalogue Receiver may not only receive it but also validate it, process it, etc. The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. WG Approval 28/01/2021 + + + + + + + Central purchasing body + + + Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. Additional Information: In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; WG approval 05/08/2021 + + + + + + + Contractor + + + The Role of an Agent that has signed a Contract with a Buyer. WG approval 08/11/2022 + + + + + + + Employment information provider + + + A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions. + + + + + + + Environmental protection information provider + + + A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection. + + + + + + + Jury member + + + + + + + Lead buyer + + + A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. WG agreement: 2022-11-22 + + + + + + + Mediator + + + A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. WG approval 20/04/2021 + + + + + + + Offering party + + + The Role of an Agent that acts on the Economic Operator side during a Procurement Process. Additional information: As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances. + + + + + + + Offer issuer + + + The Role of an Agent that distributes an Offer. WG approval 09/02/2023 + + + + + + + Offline access provider + + + A Role of an Agent responsible for providing offline access to the Procurement Documents. + + + + + + + Other entity + + + Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria. + + + + + + + Participation request processor + + + A Role of an Agent responsible for processing Requests To Participate. + + + + + + + Participation request receiver + + + A Role of an Agent responsible for receiving Requests To Participate. + + + + + + + Payment executor + + + A Role of an Agent responsible for executing the Payment. + + + + + + + Procurement procedure information provider + + + A Role of an Agent responsible for providing additional information about the Procurement Procedure. + + + + + + + Procurement service provider + + + Role of a public or private body which offers ancillary purchasing activities on the market. Additional information "Ancillary Purchasing Activities" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; (b) advice on the conduct or design of public Procurement Procedures; (c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. WG Approval 24/03/2020 + + + + + + + Reviewer + + + Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. Additional Information: Any Organisation or Person may request a review of a Procurement Procedure. WG approval: 20/04/2021 + + + + + + + Review procedure information provider + + + A Role of an Agent who is providing more information on the time limits for review Procedures. + + + + + + + Review requester + + + Role of an Agent who requests the review of a (Procurement) Procedure. WG Approval 23/10/2021 + + + + + + + Subcontractor + + + A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. Additional information For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. When modelling ESPD we well analyze whether we need or not a Role named "relied upon". WG approval 05/08/2021 + + + + + + + Tax information provider + + + A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes. + + + + + + + Tenderer + + + A Role of an Agent that has submitted a Tender. Additional Information: A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. WG approval 05/08/2021 + + + + + + + Tender processor + + + A Role of an Agent responsible for processing Tenders. + + + + + + + Tender receiver + + + A Role of an Agent responsible for receiving Tenders. + + + + + + + Winner + + + A Role of an Agent to whom a Lot is awarded. WG approval 05/08/2021 (revised 26/10/2021) + + + + + + + Contact point + + + Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. Additional information: This class represents the contact information for a Public Service, Channel, Public Organisation, etc. The Contact Point could be a role, email address, telephone number, etc. WG approval 5/11/2019 + + + + Channel + + + A medium through which Agents interact. Additional Information Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. See also Directive recitals 53 to 56. WG approval 2023-02-14 + + + + Location + + + An identifiable geographic place or named place. + + + + Address + + + The particulars of the place where a Person or an Organisation is located. WG Approval 28/04/2020 Additional Information: An "Address Representation" as conceptually defined by the INSPIRE Address Representation data type: "Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.". The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - full address (the complete address as a formatted string) - addressID (a unique identifier for the address) The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL. + + + + Geometry + + + The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. Additional Information: This class defines the notion of "Geometry" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats. + + + + Contract specific term + + + Gathering class for conditions and stipulations related to a contract in the Post-Award Phase. + + + + + + + Lot specific term + + + Gathering class for conditions and stipulations related to a Lot. + + + + + + + Procedure specific term + + + Gathering class for conditions and stipulations related to a Procedure. + + + + + + + Process planning term + + + Conditions and stipulations defining particularities of the unfolding of the Procurement Process. + + + + + + + Term + + + A governing condition or stipulation. + + + + + + + Participation request term + + + Conditions and stipulations defining particularities of requesting participation in a Procedure. + + + + + + + Access term + + + Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021 + + + + + + + Non disclosure agreement term + + + Conditions and stipulations + + + + + + + Opening term + + + Conditions and stipulations defining particularities of the opening of Tenders. Additional Information: The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. WG Approval 15/04/2021 + + + + + + + Security clearance term + + + Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. Additional information: This corresponds in eForms to BT-578, BT-78, BT-732 . WG approval 20/06/2023 + + + + + + + Direct award term + + + Conditions and stipulations defining particularities of the award of a Contract without prior publication. Addtional Information: Direct award may refer to a previous Procedure and/or specific Lot(s). It may also refer to other justified situations whereby there is no previous Procedure. See Directive 2014/24/EU Article 32. WG Approval 22/11/2019 + + + + + + + Procedure term + + + Conditions and stipulations defining particularities of the Procedure. (WG approval 23/11/2018) + + + + + + + Submission term + + + Conditions and stipulations defining particularities of submitting Documents to the Buyer. Additional Information: These Documents can be Tenders, Request To Participate and expressions of interest. WG Approval 14/07/2020 + + + + + + + Contract term + + + Conditions and stipulations defining particularities of the Post Award Phase. (WG approval 23/11/2018) + + + + + + + Design contest regime term + + + Conditions and stipulations defining particularities of a Design Contest. WG approval: 04-02-2021 + + + + + + + Framework agreement term + + + Conditions and stipulations defining particularities in a Framework Agreement. + + + + + + + Multiple stage procedure term + + + Conditions and stipulations defining particularities of Procedures carried out in several steps Additional Information: Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. WG Approval 15/04/2021 + + + + + + + Prize + + + A reward given in a Contest. WG approval: 15/04/2021 + + + + + + + Subcontract term + + + A concept to describe the main information regarding the share of parts of the Contract to third parties. + + + + + + + Award evaluation term + + + Conditions and stipulations defining particularities of the evaluation of Award Criteria. + + + + + + + Evaluation term + + + Conditions and stipulations defining particularities of the Tender evaluation. (WG approval 23/11/2018) + + + + + + + Selection evaluation term + + + Conditions and stipulations defining particularities of the evaluation of Selection Criteria. + + + + + + + Constraint + + + Limitation applied to an Information Concept. Additional Information: Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context. + + + + Criterion + + + Condition for evaluation or assessment. Additional Information: In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service. + + + + Evidence + + + Proof that a Requirement is met. + + + + Information concept + + + Piece of information that the Evidence provides or the Requirement needs. + + + + Requirement + + + Condition or prerequisite that is to be proven by Evidence. Additional Information: Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification. + + + + Award criteria summary + + + + + + + Award criterion + + + Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018 + + + + + + + Economic standing summary + + + + + + + Exclusion ground + + + Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. Additional Information: This corresponds in eForms to BG-701 Exclusion Grounds. WG approval 31/10/2018 + + + + + + + Exclusion grounds summary + + + + + + + Participation condition + + + Criterion that describes a Requirement to take part in a procurement. WG approval 30/05/2023 + + + + + + + Participation conditions summary + + + + + + + Procurement criteria summary + + + WG approval 24/01/2023 + + + + + + + Procurement criterion + + + A criterion specific to Procurement. Additional Information: This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). WG Approval 23/04/2020 + + + + + + + Professional suitability summary + + + + + + + Qualification criteria summary + + + + + + + Qualification criterion + + + Criterion used in the first stage of procurement. WG approval 30/05/2023 + + + + + + + Selection criteria summary + + + + + + + Selection criterion + + + Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. Additional Information: Selection criteria may relate to: (a) suitability to pursue the professional activity; (b) economic and financial standing; (c) technical and professional ability WG approval 31/10/2018 + + + + + + + Technical ability summary + + + + + + + Green procurement + + + Approach whereby Buyers seek to procure with a reduced Environmental Impact. Additional Information: The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf An instance of the class GreenProcurement is represented in eForms with the code "env-imp" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf + + + + + + + Innovative procurement + + + An instance of the class InnovativeProcurement is represented in eForms with the code "inn-pur" defined in the codelist Strategic-Procurement. Research (21/01/2020): Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions Additional Information: ‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; See: Directive 2014/24 Articles: 2, 26 (3), 31, 67 (2.a) Question: Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement? + + + + + + + Social procurement + + + An instance of the class SocialProcurement is represented in eForms with the code "soc-obj" defined in the codelist Strategic-Procurement. Research (21/01/2020): Socially Responsible Public Procurement (SRPP): ‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en See Article 18 and Annex X Directive 2014/24. + + + + + + + Strategic procurement + + + Public Procurement that contributes to achieving pressing policy goals. Additional Information: Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on "background information". WG Approval 10/03/2020 + + + + + + + Dynamic purchase system technique + + + A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. WG approval 23/05/2023 + + + + + + + E auction technique + + + A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. Additional Information: This corresponds in eForms to BT-767 Electronic Auction . WG approval 20/07/2018 + + + + + + + Framework agreement technique + + + Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. WG approval 18/05/2021 + + + + + + + Technique + + + Method used for conducting Procurement Procedures. Addtional information: This corresponds in eForms to BG-706 Techniques. Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). WG Approval 19/09/2019 + + + + + + + Context specific description + + + A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity. + + + + + + + Contextual projection + + + Projection of an Entity and all of its properties that hold in a given Situation Context. Additional Information: The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) We say that ContextualProjection *describes* an Entity. Adaptation of ContextSlices pattern encoding a 4D view. http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices + + + + + + + Estimate + + + An approximate calculation or a judgement of the value, number, Quantity or extent of something. + + + + + + + Procurement process information + + + Information about the temporal unfolding or succession of Procurement Objects. + + + + + + + Statistical information + + + Statistical data on the Procedure and the Lot. Additional Information At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. Therefore this class is temporal and should cease to exist in fully electronic Procurement. The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. WG Approval 12/12/2019 + + + + + + + Concession estimate + + + + + + + Subcontracting estimate + + + Information on the approximation of the foreseen Subcontracting. + + + + + + + Lot award decision + + + Result concerning the Lot attributed by the Awarder. + + + + + + + Lot group award information + + + Award information related to a given Group of Lots. + + + + + + + Notice award information + + + Information about an Award Notice. + + + + + + + Tender award outcome + + + Result concerning the Tender attributed by the Awarder. + + + + + + + Review irregularity summary + + + Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). Additional information: This class corresponds in eForms to BG-613 Buyer Review Requests. + + + + + + + Review request summary + + + Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. Additional information: This class corresponds in eForms to BG-612 Buyer Review Summary. + + + + + + + Submission statistical information + + + Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 + + + + + + + Contract lot completion information + + + Information related to a given Lot at the end of the procurement. + + + + + + + Electronic signature + + + + + + + Originator request + + + Document in which the Originator describes his needs. WG approval 09/02/2023 + + + + + + + Tender + + + Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. (WG approval 03/05/2022) + + + + + + + Offer + + + Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. Additional information: A quotation is considered to be an Offer in the eProcurement Ontology. WG approval 09/02/2023 + + + + + + + Procurement document + + + Document produced or referred to by the Buyer to describe or determine elements of the Procurement. Additional information: Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. WG Approval 23/05/2019 17:08:30 + + + + + + + Notice + + + Document published by the Buyer about market opportunities and results. WG Approval 23/05/2019 + + + + + + + Document + + + A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019 + + + + + + + Award decision + + + Resolution of the Buyer as to the result of the Procurement Procedure. WG approval 14/11/2018 + + + + + + + Request for participation + + + Application of an Economic Operator to be included in a Procurement Procedure. WG approval: 20/04/2021 + + + + + + + Expression of interest + + + Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. WG approval 13/04/2021 + + + + + + + Request for clarification + + + A demand for elucidation of received information. Additional Information: Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. WG approval 20/04/2021 + + + + + + + Direct contract + + + + + + + Concession contract + + + A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. WG Approval 24/05/2022 + + + + + + + Purchase contract + + + A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract. + + + + + + + Fund + + + A financial resource used to support the Procurement. Additional Information: In the context of EU, Funds can be divided into programmes, actions and projects. Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. WG Approved 14/05/2019 + + + + + + + Framework agreement + + + An agreement between one or more Contracting Authorities and one or more Economic Operators. Additional Information: When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. WG approval 18/05/2021 + + + + + + + Contract + + + A voluntary, deliberate, and legally binding agreement between two or more competent parties. Additional information: This includes Concession Contracts. (WG approval 01/06/2018) + + + + + + + Review decision + + + Information about Review Decisions. + + + + + + + Review object + + + Information about a Review Request or a Review Decision. Additional information: This class corresponds to the BG-714 Review in eForms. + + + + + + + Review request + + + Information about requests to review procedures. + + + + + + + Contract modification + + + An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer. + + + + + + + Element change description + + + Information about a specific field to be changed with regard to a previous Notice. + + + + + + + Element confidentiality description + + + Information about a specific field not intended for publication. Additional Information: In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided. + + + + + + + Element description + + + Description about a specific resource. + + + + + + + Element modification description + + + Information about a specific field to be changed with regard to the Modification Of a Contract. + + + + + + + Notice change + + + Information about a corrigendum in a Notice. + + + + + + + Notice description + + + Descriptions about the notice publishing, or providing evolutions of resources. + + + + + + + Publication provision + + + Information about fields not intended for publication. Additional Information: The non-published information may become available at a later date and may differ from one element to another within a given Document. Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. WG Approval 16/05/2019 + + + + + + + Identifier + + + A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. + + + + Duration + + + The length of time in which a concept occurs. + + + + + + + Indefinite duration + + + + + + + Monetary value + + + A number of monetary units specified using a given unit of currency. Additional information: In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. WG approval 13/04/2021 + + + + + + + Period + + + A time interval or a Duration. (WG approval 28/04/2020) + + + + + + + Quantity + + + A counted number of non-monetary units possibly including fractions. + + + + + + + Specific duration + + + + + + + Thing + + + Any individual in the domain of discourse is a Thing. Additional Information: The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing. + + + + Accessibility + + + This table provides a list of options for the use of accessibility Criteria for Person with disabilities in the technical specifications within the domain of Public Procurement. + + + + Applicability + + + This table provides a list of the options pertinent to be chosen for a matter concerning the applicability of predefined fields. It is designed for but not restricted to the context of public procurement. + + + + Award-criterion-type + + + This table provides the list of rules to be taken into account for the Award Decisions within the in public Procurement Procedures. The initial values are those foreseen in the public procurement directives of 2014 (Directives 2014/23/EU, 2014/24/EU and 2014/25/EU). + + + + Buyer-legal-type + + + This table provides a list of the type of Procuring Authorities within the domain of public procurement according to legislation. + + + + Change-corrig-justification + + + This table provides the codes and values used in case of justification of corrections applied to a Notice within the context of Public Procurement. + + + + Communication-justification + + + This table provides the justification for restricting access rights to resources within the context of Public Procurement + + + + Confidentiality-level + + + The Confidentiality level authority table is a controlled vocabulary used to define the information confidentiality levels according to the European Commission Security Notice ‘Information assessment and classification’, C(2019) 1903 final, 5.3.2019. + + + + Contract-nature + + + This table provides a list of different types of subjects and goods that can be acquired by means of a public Contract such as works, supplies and services by one or more Contracting Authorities from Economic Operators. + + + + Country + + + The Country authority table is a controlled vocabulary that lists concepts associated with names of countries and territories. Its main scope is to support documentary metadata activities. The concepts included are correlated with the ISO 3166 international standard. ISO 3166-1 contains a two-letter code which is recommended as the general purpose code, a three-letter code which has better mnenomic properties and a numeric-3 code which can be useful if script independence of the codes is important. The authority code relies on the ISO 3166-1/alpha-3 positions. If an authority code is needed for a country without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic or numeric. A country code comparison is provided between ISO codes, IANA codes (Internet Country-code Top-level Domains) and TIR (Transport International par la Route) Vehicle system codes. + + + + Cpv + + + To support an effective Single Market, the Commission encourages suppliers and Contracting Authorities/Entities to adopt best practice and use electronic communication and information technology to provide all the relevant information, so as to ensure best value for money in Public Procurement. + + + + Criterion + + + This table provides Criteria used for Public Procurement Procedures. + + + + Currency + + + The Currency authority table is a controlled vocabulary that lists concepts associated with currencies and currency subunits. The concepts included are correlated with the ISO 4217 international standard. + + + + Direct-award-justification + + + This table provides the list of reasons for using a Procedure which allows awarding Contracts directly without the Requirement of publishing a call for competition in the Official Journal of the European Union. + + + + Dps-usage + + + This table provides a list wether a dynamic purchasing system is involved in a Procurement and, in case of central purchasing bodies, whether it can be used by buyers not listed in the Notice of the Official Journal of the European Union. + + + + Economic-operator-size + + + This table provides the different categories in which the Tenderers to whom a Contract can be awarded are classified, according to their size (using as Criteria the number of employees). + + + + Environmental-impact + + + This table provides the information about whether a Procurement includes a process to procure goods, services and works with a reduced Environmental Impact throughout their life cycle. + + + + E u-programme + + + The EU programme authority table (AT) is a controlled vocabulary providing the list of programmes created and coordinated by the European Union and financially supported by the European Union or, in a few cases, by the contributions from the Member States. It has been developed specifically for the EU Budget as open linked data project. It indicates the authority code and start-use date of each concept and gives labels in all official EU languages. + + + + Form-type + + + This table provides the codes and values used for the type of forms published on TED. + + + + Framework-agreement + + + This table provides the list of codes to distinguish the different type Framework Agreement involved in a Tender. + + + + Innovative-acquisition + + + This table provides the codes and values used for innovative works, supplies or services being bought. + + + + Irregularity-type + + + This code list refers generally to the types of irregularities described in Section 2 of the Annex to the Commission Decision C(2019) 3452. + + + + Language + + + The Language authority table is a controlled vocabulary that lists concepts associated with languages. Its main scope is to support activities associated with publication process. The concepts included are correlated with the ISO 639 international standard. This standard is issued in several parts: ISO 639-1 contains strictly two alphabetic letters (alpha-2), ISO 639-2/B (B = bibliographic) is used for bibliographic purpose (alpha-3), ISO 639-2/T (T = terminology) is used for technical purpose (alpha-3), ISO 639-3 covers all the languages and macro-languages of the world (alpha-3); the values are compliant with ISO 639-2/T. If an authority code is needed for a language without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic. + + + + Legal-basis + + + This table provides the legal basis based on the legal acts used for a given Public Procurement Procedure. The table is provided by the Publications Office. + + + + Main-activity + + + This table provides the list of main activities of the Buyers. The codes associated with Contracting Authorities are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The codes associated with contracting entities are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). + + + + Measurement-unit + + + The Measurement unit authority table is a controlled vocabulary listing units of measurement with their authority codes. The labels and symbols are given in all official EU languages. If available, the codes are based on the code list recommendation N&#176;. 20 "Codes for Units of Measure Used in International Trade" (as revised periodically) maintained and published by UNECE through its Center for Trade Facilitation and Electronic Business (UN/CEFACT). The Measurement unit authority table is maintained by the Publications Office of the European Union on the EU Vocabularies website. + + + + Missing-info-submission + + + This table provides the list of codes indicating wether Tenderer-related information (complete or partial) can be supplemented even after the submission deadline. + + + + Modification-justification + + + This table provides the main reasons for modifying a Contract within the domain of Public Procurement. + + + + Non-award-justification + + + This table provides the list of reasons of the Buyer for not choosing a Winner in the Procurement Procedure. + + + + Non-publication-justification + + + This table provides codes and values for the main reasons for not immediately publishing a Notice within the context of Public Procurement. + + + + Notice-type + + + This table provides a list of Public Procurement Notices according to procurement legislation published once a project is approved. + + + + Number-fixed + + + This table provides the codes linked to fix values within the context of Public Procurement. + + + + Number-threshold + + + This table provides the codes linked to the type of threshold values within the context of Public Procurement. + + + + Number-weight + + + This table provides the codes linked to the type of weight values used in Award Criteria within the context of Public Procurement. + + + + Nuts + + + The NUTS classification (Nomenclature of territorial units for statistics) is a hierarchical system for dividing up the economic territory of the EU and the UK. The NUTS 2021 compiles the versions 2010, 2013, 2016 and 2021 of the NUTS classification as well as the Statistical Regions for countries that do not belong to the EU such as candidate countries, potential candidates or countries belonging to the EFTA (European Free Trade Association). + + + + Other-place-service + + + This table provides the broad geopolitical areas linked to the Location of works and the place of performance or delivery within the context of Public Procurement. + + + + Permission + + + This table provides the codes linked to the different values of permission and/or obligation. + + + + Procurement-procedure-type + + + This table provides a list of activities leading to the conclusion of public Contracts used in Public Procurement according to the legislation. + + + + Received-submission-type + + + This table provides the list of relevant categories used to classify Tenders or requests to participate received within the context of Public Procurement. + + + + Remedy-type + + + This table describes the measures taken following a Review. + + + + Requirement-stage + + + This table describes when and whether a given Requirement must be provided in a Procedure. + + + + Reserved-procurement + + + This table provides the values used to indicate wether the participation in the Procurement is reserved for specific Organisations. + + + + Review-body-type + + + This table covers the list of organisations providing the review of a given procedure. + + + + Review-decision-type + + + This table describes the decision made a review body. + + + + Selection-criterion + + + This table provides the list of conditions that are concerned for evaluation purposes. In the domain of Public Procurement, Selection Criteria are normally based on a specific legal framework. This codelist is a subset of the ESPD codelist CriterionTaxonomy. + + + + Social-objective + + + This table provides the values linked to any social objective promoted by the technical specifications, Award Criteria, Selection Criteria or Contract performance conditions included in a Procurement. + + + + Subcontracting-indication + + + This table provides the list of codes and values used to indicate information regarding the share of parts of a Contract to third parties. The share may refer to the portion of work, services or supplies and/or to the subject matter being subcontracted. + + + + Subcontracting-obligation + + + This table provides the list of codes and values used for the obligation of the Economic Operator of sharing parts of the original Contract to third parties. The share may refer to the portion of work, services or supplies. + + + + Timeperiod + + + The Time-period authority table is a controlled vocabulary which lists the periods of time in the 24 official languages of the EU. It enumerates the names of the seasons, months, weekdays and the main units of time when the issues are published. It also contains concepts for ‘unlimited’ or ‘unknown’ time periods. + + + + Usage + + + This table provides the list of codes and values indicating the application of Criteria or other concepts and information. + + + + Winner-selection-status + + + This table provides the list of codes and values used to indicate whether a tenderer was chosen to be awarded with a Contract and wether the competition is open. + + + + Legal-regime + + + + + + + Notification-phases-content-types + + + + + + + Temporal unit + + + standard duration, which provides the scale factor for a time extent, or the granularity or precision for a time position. + + + + Plain literal + + + + Any u r i + + + + Boolean + + + + Date + + + + Date time + + + + Decimal + + + + Integer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) + + + When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions. + + + This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping + + + In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria. + + + In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) + + + Check definitions for all concepts and relations. + + + Check definitions for all concepts and relations. + + + Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract. + + + Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. + + + Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. + + + Proposal to omit this link until we bring tax into ePO core because this does not appear in the data + + + <b>Procedure/ PlannedProcurementPart / Lot</b> are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the "process" description and "whole procurement subject matter". TODO: revise this definition. TODO: specify that all procedures have al least one lot. + + + should this be moved to document? + + + if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject. + + + there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..* + + + In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. + + + In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. + + + A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023 + + + based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure + + + BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision. + + + Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms). + + + Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. + + + Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. + + + To be decided if this should stay in the core or in the Offer module + + + What are the entities that can be reviewed? + + + This does not work in practice. + + + Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms. + + + + Has candidate list + + + + + + + Results in dynamic purchasing system + + + + + + + Uses candidate list + + + + + + + Specifies award criterion + + + + + + + Follows rules set by + + + + + + + Concerns mini competition + + + + + + + Comprises mini competition award decision + + + + + + + Results from mini competition award decision + + + + + + + Contains candidate + + + + + + + Has start date + + + + + + + Identifier + + + A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:Project -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:LotGroup -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:ProcurementElement -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (foaf:Agent -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (dct:Location -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (cccev:InformationConcept -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Document -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Fund -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:Consignment -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:ShipmentInformation -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-cat:Line -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:AbstractContainer -> adms:Identifier (+adms:identifier)) + + + + Refers to project + + + + + + + Has purpose + + + Relation indicating a procurement part has a puropse. (epo:ProcurementObject -> epo:Purpose (+epo:hasPurpose)) + + + + + + + Is funded by + + + Funding is provided either completely or partially by a Fund. Additional information: This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. (epo:ProcurementObject -> epo:Fund (+epo:isFundedBy)) + + + + + + + Has legal basis + + + The legal basis under which the procurement procedure takes place. Additional Information: For example European Directives or Regulations, national laws etc. The recommended code list is the example for the legal basis at the European level. WG 04/04/2023 (epo:ProcurementObject -> at-voc:legal-basis (+epo:hasLegalBasis)) + + + + + + + Is subject to term + + + + + + + Fulfills strategic procurement + + + + + + + Foresees concession + + + + + + + Uses technique + + + + + + + Foresees contract specific term + + + + + + + Has legal regime + + + + + + + Contextualised by + + + The place of the AgentInRole in the procurement is expressed by a ProcurementObject. (epo:AgentInRole -> epo:ProcurementObject (+epo:contextualisedBy)) + + + + + + + Foresees procurement object + + + Relation indicating the instance of a Procurement Object that is planned. Additional Information: The properties of the Procurement Object that is foreseen should be read as foreseen properties. For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy. (epo:PlannedProcurementPart -> epo:ProcurementObject (+epo:foreseesProcurementObject)) + + + + + + + Specifies procurement criterion + + + + + + + Is subject to lot specific term + + + + + + + Has lot reference + + + + + + + Sets grouping context for lot + + + + + + + Refers to lot + + + + + + + Refers to previous procedure lot + + + Reference to one or more Lots in a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier WG Approval 22/11/2019 14:33:55 (epo:DirectAwardTerm -> epo:Lot (+epo:refersToPreviousProcedureLot)) + + + + + + + Announces lot + + + + + + + Is assigned for evaluation of + + + + + + + Is submitted for lot + + + + + + + Concerns review summary for lot + + + Relates to Lot review summary. Additional information: This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier. (epo:ReviewRequestSummary -> epo:Lot (+epo:concernsReviewSummaryForLot)) + + + + + + + Describes lot completion + + + + + + + Concerns lot + + + Relates to Lot. (epo:ProcurementProcessInformation -> epo:Lot (+epo:concernsLot)) Relates to Lot. (epo:LotAwardDecision -> epo:Lot (+epo:concernsLot)) + + + + + + + Has procurement scope divided into lot + + + + + + + Foresees technique + + + + + + + Has planned period + + + + + + + Has planned duration + + + + + + + Announces planned procurement part + + + + + + + Refers to planned part + + + + + + + Has procedure type + + + Identification of the Procedure used. WG Approval 09/06/2020 (epo:Procedure -> at-voc:procurement-procedure-type (+epo:hasProcedureType)) + + + + + + + Is subject to procedure specific term + + + + + + + Is executed by procurement service provider + + + + + + + Involves buyer + + + + + + + Is responsibility of buyer + + + The buyer in charge of the procedure. Additional Information: In case there are multiple buyers, it may be the case that one or more buyers are in charge of the procedure. (epo:Procedure -> epo:Buyer (+epo:isResponsibilityOfBuyer)) + + + + + + + Specifies procurement criteria summary + + + + + + + Refers to previous procedure + + + Reference to a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier (epo:DirectAwardTerm -> epo:Procedure (+epo:refersToPreviousProcedure)) + + + + + + + Refers to procedure + + + + + + + Concerns procedure + + + Relates to Procedure. (epo:ProcurementProcessInformation -> epo:Procedure (+epo:concernsProcedure)) + + + + + + + Announces procedure + + + + + + + Refers to lot group + + + + + + + Defines lot group + + + Relation indicating a ProcedureTerm has a LotGroup. (epo:ProcedureTerm -> epo:LotGroup (+epo:definesLotGroup)) + + + + + + + Describes lot group + + + + + + + Is subject to grouping + + + + + + + Announces lot group + + + + + + + Is submitted for lot group + + + + + + + Uses channel + + + + + + + Has internal identifier + + + + + + + Has estimated value + + + A forecast of the value of the procurement before competition. Additional Information: Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). <b> </b><b>WG Approval 05/12/2019</b> (epo:ProcurementElement -> epo:MonetaryValue (+epo:hasEstimatedValue)) + + + + + + + Has total quantity + + + The number of units required. Additional Information: The quantity needs to go along with the unit. (epo:Purpose -> epo:Quantity (+epo:hasTotalQuantity)) + + + + + + + Has main classification + + + + + + + Has additional classification + + + + + + + Comprises tender + + + Incorporates Tender. (epo:TenderGroup -> epo:Tender (+epo:comprisesTender)) + + + + + + + Has total value + + + + + + + Registered address + + + The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. (cpv:Person -> locn:Address (+cv:registeredAddress)) The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. (org:Organization -> locn:Address (+cv:registeredAddress)) + + + + Has nationality + + + (cpv:Person -> at-voc:country (+epo:hasNationality)) + + + + + + + Has country of birth + + + The country in which the Person was born. (cpv:Person -> at-voc:country (+epo:hasCountryOfBirth)) + + + + + + + Place of birth + + + The Location where the Person was born. (cpv:Person -> dct:Location (+person:placeOfBirth)) + + + + Place of death + + + The Location where the Person died. (cpv:Person -> dct:Location (+person:placeOfDeath)) + + + + Is beneficial owner of + + + A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf)) + + + + + + + Has beneficial owner + + + A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf)) + + + + + + + Has business size + + + The category of the business depending on number of employees and turnover. Additional information: See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. WG Approval 28/05/2020 (epo:Business -> at-voc:economic-operator-size (+epo:hasBusinessSize)) + + + + + + + Has member + + + + + + + Lead by + + + + + + + Owns system + + + + + + + Is owned by agent + + + + + + + Played by + + + + + + + Has certification + + + Relation to the proof of conformance. WG approval 30/05/2023 (foaf:Person -> epo-cat:Certificate (+epo:hasCertification)) Relation to the proof of conformance. WG approval 30/05/2023 (org:Organization -> epo-cat:Certificate (+epo:hasCertification)) + + + + + + + Has legal identifier + + + + + + + Has main activity + + + The principal sectoral area in which an organisation operates. Additional information: The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). WG Approval 05/05/2020 (org:Organization -> at-voc:main-activity (+epo:hasMainActivity)) + + + + + + + Has registration country + + + + + + + Address + + + Associates any Resource with the corresponding Address. Additional Information: Asserting the address relationship implies that the Resource has an Address. (org:Organization -> locn:Address (+cv:address)) + + + + Has primary contact point + + + + + + + Has buyer legal type + + + A category that indicates the right of an Organisation to play the role of a buyer. Additional Information: The category also effects the rules that the buyer has to abide to within the public procurement procedure. WG 07/09/2021 (org:Organization -> at-voc:buyer-legal-type (+epo:hasBuyerLegalType)) + + + + + + + Has tax identifier + + + + + + + Exposes channel + + + + + + + Has contact point in role + + + + + + + Refers to role + + + + + + + Announces role + + + + + + + Announces role + + + + + + + Refers to role + + + + + + + Defines information provider + + + Relation indicating a ProcedureTerm has an information provider. (epo:ProcedureTerm -> epo:AuxiliaryParty (+epo:definesInformationProvider)) + + + + + + + Defines budget provider + + + Relation indicating a ProcedureTerm has a BudgetProvider. (epo:ProcedureTerm -> epo:BudgetProvider (+epo:definesBudgetProvider)) + + + + + + + Signs award decision + + + + + + + Indicates invoicee contact point + + + + + + + Exposes invoicee channel + + + + + + + Delegates ancillary activities to + + + Entrusts ancillary purchasing activities to ProcurementServiceProvider. Additional Information: Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; (b) advice on the conduct or design of public procurement procedures; (c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned; (epo:Buyer -> epo:ProcurementServiceProvider (+epo:delegatesAncillaryActivitiesTo)) + + + + + + + Binds buyer + + + Provides legal constraint on the Buyer. (epo:Contract -> epo:Buyer (+epo:bindsBuyer)) + + + + + + + Acts on behalf of + + + Represents. (epo:ProcurementServiceProvider -> epo:Buyer (+epo:actsOnBehalfOf)) + + + + + + + Is appointed by + + + + + + + Agreed by buyer + + + + + + + Specifies buyer + + + + + + + Specifies buyer + + + + + + + Signed by buyer + + + + + + + Defines catalogue provider + + + Relation indicating an AccessTerm has a CatalogueProvider. (epo:AccessTerm -> epo:CatalogueProvider (+epo:definesCatalogueProvider)) + + + + + + + Specifies catalogue provider + + + + + + + Specifies catalogue receiver + + + + + + + Defines catalogue receiver + + + Relation indicating an AccessTerm has a CatalogueReceiver. (epo:AccessTerm -> epo:CatalogueReceiver (+epo:definesCatalogueReceiver)) + + + + + + + Needs to be a winner + + + The Contractor must be a Winner. (epo:Contractor -> epo:Winner (+epo:needsToBeAWinner)) + + + + + + + Signed by contractor + + + + + + + Binds contractor + + + Provides legal constraint on the Contractor. (epo:Contract -> epo:Contractor (+epo:bindsContractor)) + + + + + + + Has evaluation member + + + + + + + Defines mediator + + + Relation indicating a ProcedureTerm has a Mediator. (epo:ProcedureTerm -> epo:Mediator (+epo:definesMediator)) + + + + + + + Distributes offer + + + + + + + Defines offline access provider + + + Relation indicating an AccessTerm has an OfflineAccessProvider. (epo:AccessTerm -> epo:OfflineAccessProvider (+epo:definesOfflineAccessProvider)) + + + + + + + Defines participation request processor + + + Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor. (epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor (+epo:definesParticipationRequestProcessor)) + + + + + + + Defines participation request receiver + + + Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver. (epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver (+epo:definesParticipationRequestReceiver)) + + + + + + + Defines payment executor + + + Relation indicating a ContractTerm has a PaymentExecutor. (epo:ContractTerm -> epo:PaymentExecutor (+epo:definesPaymentExecutor)) + + + + + + + Defines procurement procedure information provider + + + Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider. (epo:AccessTerm -> epo:ProcurementProcedureInformationProvider (+epo:definesProcurementProcedureInformationProvider)) + + + + + + + Has review body type + + + + + + + Specifies subcontractors + + + + + + + Substantiates exclusion ground + + + + + + + Needs to be a tenderer + + + The Winner must be a Tenderer. (epo:Winner -> epo:Tenderer (+epo:needsToBeATenderer)) + + + + + + + Is submited by + + + Relation indicating the submission of a tender by an economic operator. WG approval 18/05/2021 (epo:Tender -> epo:Tenderer (+epo:isSubmitedBy)) + + + + + + + Defines tender processor + + + Relation indicating a SubmissionTerm has a TenderProcessor. (epo:SubmissionTerm -> epo:TenderProcessor (+epo:definesTenderProcessor)) + + + + + + + Defines tender receiver + + + Relation indicating a SubmissionTerm has a TenderReceiver. (epo:SubmissionTerm -> epo:TenderReceiver (+epo:definesTenderReceiver)) + + + + + + + Indicates award to winner + + + Reveals the winner to whom the tender award outcome is attributed. (epo:TenderAwardOutcome -> epo:Winner (+epo:indicatesAwardToWinner)) + + + + + + + Has endpoint identifier + + + + + + + Has country code + + + (locn:Address -> at-voc:country (+epo:hasCountryCode)) + + + + + + + Has nuts code + + + + + + + Geographic identifier + + + A URI that identifies the Location. Additional Information: GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - http://dbpedia.org/resource/ISO_3166-1:GR - http://dbpedia.org/resource/ISO_3166-1:GB even when the geographic name is given as EL or UK. The use of a URIs has added advantages: - it can be used by automated systems to look up additional data (linked data); - a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. (dct:Location -> adms:Identifier (+locn:geographicIdentifier)) + + + + Geometry + + + + Address + + + + Specifies place of despatch + + + + + + + Specifies delivery agreement location + + + + + + + Has delivery location + + + + + + + Specifies place of delivery + + + + + + + Defines place of performance + + + Relation indicating the place of performance of a Contract. WG approval 21/03/2023 (epo:ContractTerm -> dct:Location (+epo:definesPlaceOfPerformance)) + + + + + + + Address i d + + + A globally unique identifier for each instance of an Address. Additional Information: The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID. (locn:Address -> adms:Identifier (+locn:addressID)) + + + + Defines opening place + + + The place where the tenders will be publicly opened. WG Approval 10-10-2019 (epo:OpeningTerm -> locn:Address (+epo:definesOpeningPlace)) + + + + + + + Is subject to contract specific term + + + + + + + Involves procurement document + + + + + + + Has document restriction justification + + + An explanation about the reasons why some procurement documents are restricted. Additional Information: This corresponds in eForms to BT-707 Documents Restricted Justification. WG Approval 09/03/2021 (epo:AccessTerm -> at-voc:communication-justification (+epo:hasDocumentRestrictionJustification)) + + + + + + + Has direct award justification + + + List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. WG Approval 28/05/2020 (epo:DirectAwardTerm -> at-voc:direct-award-justification (+epo:hasDirectAwardJustification)) + + + + + + + Has late submission permission + + + Whether economic operator-related information can be supplemented even after the submission deadline. Additional Information This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:missing-info-submission (+epo:hasLateSubmissionPermission)) + + + + + + + Has non electronic submission justification + + + Reason for not accepting electronic information. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:communication-justification (+epo:hasNonElectronicSubmissionJustification)) + + + + + + + Has variant permission + + + The obligation or possibility for tenderers to submit variants or not. Additional Information: Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. Additional Information: Further conditions for submitting variant tenders are in the procurement documents. (epo:SubmissionTerm -> at-voc:permission (+epo:hasVariantPermission)) + + + + + + + Has e submission permission + + + The requirements as to what extent electronic submission is allowed. WG Approval 03/10/2019 (epo:SubmissionTerm -> at-voc:permission (+epo:hasESubmissionPermission)) + + + + + + + Has tender subcontracting information + + + The information about subcontracting that must be indicated in the tender. WG Approval 10/10/2019 (epo:SubmissionTerm -> at-voc:subcontracting-indication (+epo:hasTenderSubcontractingInformation)) + + + + + + + Has e catalogue permission + + + The extent to which electronic catalogues may be used in tenders. WG Approval 03/10/2019 (epo:SubmissionTerm -> at-voc:permission (+epo:hasECataloguePermission)) + + + + + + + Has tender validity period + + + The relation indicating until when a tender instance is applicable. (epo:SubmissionTerm -> epo:Period (+epo:hasTenderValidityPeriod)) + + + + + + + Has language + + + Language in which the submitted information is to be expressed. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:language (+epo:hasLanguage)) + + + + + + + Has broad place of performance + + + Geopolitical zone where the contract can be executed. Additional Information Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). (epo:ContractTerm -> at-voc:other-place-service (+epo:hasBroadPlaceOfPerformance)) + + + + + + + Defines contract duration + + + Relation indicating a ContractTerm has a Duration. (epo:ContractTerm -> epo:Duration (+epo:definesContractDuration)) + + + + + + + Has e invoicing permission + + + + + + + Has reserved execution + + + + + + + Has contract nature type + + + Subject of the acquisition. WG Approval 11/06/2020 (epo:ContractTerm -> at-voc:contract-nature (+epo:hasContractNatureType)) + + + + + + + Has additional contract nature + + + Additional type of acquisition taken into consideration in the contract. WG Approval 11/06/2020 (epo:ContractTerm -> at-voc:contract-nature (+epo:hasAdditionalContractNature)) + + + + + + + Defines subcontracting term + + + Relation indicating a ContractTerm has a SubcontractingTerm. (epo:ContractTerm -> epo:SubcontractTerm (+epo:definesSubcontractingTerm)) + + + + + + + Defines contract period + + + Relation indicating a ContractTerm has a Period. (epo:ContractTerm -> epo:Period (+epo:definesContractPeriod)) + + + + + + + Defines prize + + + Relation indicating a DesignContestRegimeTerm has a Prize. (epo:DesignContestRegimeTerm -> epo:Prize (+epo:definesPrize)) + + + + + + + Has launch framework agreement maximum value + + + + + + + Has framework agreement type + + + The form of framework agreement used in a procurement procedure. Addition information: A concept to distinguish the different types of framework agreement, which are: 1. Framework agreement without reopening of competition, 2. Framework agreement with reopening of competition, or 3. Framework agreement partly without reopening of competition. WG Approval 19/09/2019 (epo:FrameworkAgreementTerm -> at-voc:framework-agreement (+epo:hasFrameworkAgreementType)) + + + + + + + Has launch group framework agreement maximum value + + + + + + + Has qualification system duration + + + + + + + Has prize value + + + The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. Additional Information: This corresponds to BT-644 in eForms. WG Approval 29/08/2019 (epo:Prize -> epo:MonetaryValue (+epo:hasPrizeValue)) + + + + + + + Has subcontracting obligation + + + The requirement the tender must meet with regard to subcontracting parts of the contract. WG Approval 09/11/2021 (epo:SubcontractTerm -> at-voc:subcontracting-obligation (+epo:hasSubcontractingObligation)) + + + + + + + Constrains + + + Information Concept about which a Constraint expresses a limitation. Additional Information: Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation. (cccev:Constraint -> cccev:InformationConcept (+cccev:constrains)) + + + + Has threshold type + + + The method to interpret the threshold value as minimum or a maximum. WG Approval 17/09/2019 (cccev:Constraint -> at-voc:number-threshold (+epo:hasThresholdType)) + + + + + + + Has constraint + + + + + + + Type + + + Category to which the Requirement belongs. (cccev:Criterion -> at-voc:criterion (+dct:type)) + + + + Supports requirement + + + Requirement for which the Evidence provides proof. (cccev:Evidence -> cccev:Requirement (+cccev:supportsRequirement)) + + + + Supports concept + + + Information Concept providing facts found/inferred from the Evidence. Additional Information: Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as "I am older that 18 years" or "this is a FairTrade product". (cccev:Evidence -> cccev:InformationConcept (+cccev:supportsConcept)) + + + + Confidentiality level type + + + Security classification assigned to an Evidence e.g. classified, sensitive, public. Additional Information: Classifications should be defined by an organisation/country as an outcome of a security assessment. (cccev:Evidence -> at-voc:confidentiality-level (+cccev:confidentialityLevelType)) + + + + Has requirement + + + A more specific Requirement that is part of the Requirement. (cccev:Requirement -> cccev:Requirement (+cccev:hasRequirement)) + + + + Has award criterion type + + + Category of award criterion. (epo:AwardCriterion -> at-voc:award-criterion-type (+epo:hasAwardCriterionType)) + + + + + + + Has fixed value type + + + The method to interpret the fixed value as pertaining to a total or unit. WG Approval 17/09/2019 (epo:AwardCriterion -> at-voc:number-fixed (+epo:hasFixedValueType)) + + + + + + + Answers award criteria + + + + + + + Answers exclusion ground + + + + + + + Announces exclusion ground + + + + + + + Has reserved procurement + + + Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 (epo:ParticipationCondition -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 (epo:ParticipationConditionsSummary -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) + + + + + + + Has weight value type + + + No definition. Waiting on CCCEV alignment. (epo:ProcurementCriterion -> at-voc:number-weight (+epo:hasWeightValueType)) + + + + + + + Has performing staff qualification information + + + Additional information: This relation corresponds in eForms to BT-79. (epo:ProcurementCriterion -> at-voc:requirement-stage (+epo:hasPerformingStaffQualificationInformation)) + + + + + + + Has selection criteria usage + + + Additional Information: This corresponds in eForms to BT-748 Selection Criteria Used. (epo:SelectionCriterion -> at-voc:usage (+epo:hasSelectionCriteriaUsage)) + + + + + + + Has selection criterion type + + + The classification of the selection criteria. Additional Information: This corresponds in eForms to BT-747 Selection Criteria Type. WG Approval 09/11/2021 (epo:SelectionCriterion -> at-voc:selection-criterion (+epo:hasSelectionCriterionType)) + + + + + + + Announces selection criteria + + + + + + + Answers selection criteria + + + + + + + Fulfills requirement + + + The requirement to which the concept meets. WG Approval 09/11/2021 (epo:GreenProcurement -> at-voc:environmental-impact (+epo:fulfillsRequirement)) The requirement to which the concept meets. WG Approval 09/11/2021 (epo:InnovativeProcurement -> at-voc:innovative-acquisition (+epo:fulfillsRequirement)) The requirement to which the concept meets. WG Approval 09/11/2021 (epo:SocialProcurement -> at-voc:social-objective (+epo:fulfillsRequirement)) + + + + + + + Includes accessibility criterion + + + Explanation as to whether accessibility Criterion are used or not. WG Approval 09/11/2021 (epo:StrategicProcurement -> at-voc:accessibility (+epo:includesAccessibilityCriterion)) + + + + + + + Has d p s scope + + + Explanation as to whether a dps is used and by whom. Additional Information: This corresponds in eForms to BT-766 Dynamic Purchasing System. WG Approval 09/11/2021 (epo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage (+epo:hasDPSScope)) + + + + + + + Has usage + + + The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage (epo:Technique -> at-voc:usage (+epo:hasUsage)) + + + + + + + Has validity period + + + The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 (epo:Technique -> epo:Period (+epo:hasValidityPeriod)) The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 (epo-cat:Certificate -> epo:Period (+epo:hasValidityPeriod)) + + + + + + + Has concession estimated value + + + + + + + Has estimated user concession revenue + + + The estimated revenue coming from the use of the concession. Additional Information: Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. This corresponds to BT-162 in eForms. (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedUserConcessionRevenue)) + + + + + + + Has estimated buyer concession revenue + + + The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. <u>Additional Information:</u> For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. This corresponds to BT-160 in eForms. WG Approval 07/01/2020 (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedBuyerConcessionRevenue)) + + + + + + + Has subcontracting estimated value + + + The estimated value of a single subcontract. This relates to BT-553 in eForms. WG Approval 01/09/2020 (epo:SubcontractingEstimate -> epo:MonetaryValue (+epo:hasSubcontractingEstimatedValue)) + + + + + + + Foresees subcontracting + + + + + + + Has awarded estimated value + + + The estimated value that can be spent as provided by the Award Decision. <u>Additional Information</u>: This property is used for framework agreements and dynamic purchasing systems. Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. WG Approval 12/12/2019 (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasAwardedEstimatedValue)) + + + + + + + Has framework agreement maximum value + + + + + + + Has framework agreement estimated value + + + This refers to BT-660 in eForms. (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasFrameworkAgreementEstimatedValue)) + + + + + + + Has approximate framework agreement value + + + + + + + Results from lot award decision + + + + + + + Comprises lot award decision + + + Incorporates LotAwardOutcome. (epo:AwardDecision -> epo:LotAwardDecision (+epo:comprisesLotAwardDecision)) + + + + + + + Has group framework agreement maximum value + + + This corresponds to BT-156 in the eForms. (epo:LotGroupAwardInformation -> epo:MonetaryValue (+epo:hasGroupFrameworkAgreementMaximumValue)) + + + + + + + Announces lot group award information + + + + + + + Refers to lot group award information + + + + + + + Has maximum framework agreement awarded value + + + The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. Additional information: The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. The Framework Agreements in a CAN are to be traced back and added to provide this value. This corresponds to the BT-118 in eForms. WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasMaximumFrameworkAgreementAwardedValue)) + + + + + + + Describes result notice + + + + + + + Has procurement highest received tender value + + + The highest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementHighestReceivedTenderValue)) + + + + + + + Has procurement lowest received tender value + + + The lowest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementLowestReceivedTenderValue)) + + + + + + + Has total awarded value + + + The awarded value of all lots announced in this notice, including options and renewals. Additional information: The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. The values of the individual lots announced in a CAN are to be traced back and added to provide this value. This corresponds to the BT-161 in eForms. WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasTotalAwardedValue)) + + + + + + + Announces notice award information + + + + + + + Refers to notice award information + + + + + + + Concerns tender + + + + + + + Comprises tender award outcome + + + Incorporates TenderAwardOutcome. (epo:AwardDecision -> epo:TenderAwardOutcome (+epo:comprisesTenderAwardOutcome)) + + + + + + + Has irregularity type + + + Additional information: This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type (epo:ReviewIrregularitySummary -> at-voc:irregularity-type (+epo:hasIrregularityType)) + + + + + + + Has review irregularity summary + + + Additional information: This relation corresponds in eForms to BG-613 Buyer Review Requests (epo:ReviewRequestSummary -> epo:ReviewIrregularitySummary (+epo:hasReviewIrregularitySummary)) + + + + + + + Has highest received tender value + + + Amount of the Tender with the highest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasHighestReceivedTenderValue)) + + + + + + + Has received submission type + + + + + + + Has lowest received tender value + + + Amount of the Tender with the lowest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasLowestReceivedTenderValue)) + + + + + + + Summarises information for award decision + + + Relates to submission for the given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 (epo:SubmissionStatisticalInformation -> epo:AwardDecision (+epo:summarisesInformationForAwardDecision)) + + + + + + + Refers to contract + + + + + + + Provides contract total penalty value + + + Additional Information: This corresponds to BT-782 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPenaltyValue)) + + + + + + + Provides contract total payment value + + + Additional Information: This corresponds to BT-779 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPaymentValue)) + + + + + + + Has electronic signature + + + + + + + Concerns originator request + + + + + + + Has tax information + + + + + + + Is supported by + + + + + + + Has item country of origin + + + The source country of the product or service. Additional Information: The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. WG Approval 07/01/2020 The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country (epo:Tender -> at-voc:country (+epo:hasItemCountryOfOrigin)) + + + + + + + Has financial offer value + + + The value offered by the Tenderer for a Lot. Additional Information: This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. This corresponds to BT-720 in eForms. (epo:Tender -> epo:MonetaryValue (+epo:hasFinancialOfferValue)) + + + + + + + Includes tender + + + Additional information: This corresponds in eForms to BT-3202 Contract Tender Identifier. (epo:Contract -> epo:Tender (+epo:includesTender)) + + + + + + + Is based on implementing regulation + + + Indicates under which regulation a notice is created. WG Acceptance 06/09/2022 (epo:Notice -> at-voc:legal-basis (+epo:isBasedOnImplementingRegulation)) + + + + + + + Conforms to legal basis + + + The Notice was designed in accordance with the given legal basis. Additional Information: This Notice can be used for Procedures which do not have the same legal basis. This holds for standard forms. (epo:Notice -> at-voc:legal-basis (+epo:conformsToLegalBasis)) + + + + + + + Has notice type + + + + + + + Refers to notice + + + + + + + Has notification content type + + + A categorisation of templates for sets of Procurement information to be conveyed in Notices. WG Approval 12/05/2020 (epo:Notice -> epo:notification-phases-content-types (+epo:hasNotificationContentType)) + + + + + + + Conforms to specific legal basis + + + + + + + Has form type + + + A categorisation of the steps in which the Notice is used. WG Approval 12/05/2020 (epo:Notice -> at-voc:form-type (+epo:hasFormType)) + + + + + + + Describes notice + + + + + + + Refers to previous notice + + + Additional information: This corresponds in eForms to BT-758 Change Notice Version Identifier. (epo:NoticeChange -> epo:Notice (+epo:refersToPreviousNotice)) + + + + + + + Refers to original notice + + + + + + + Has u u i d + + + A universally unique identifier for an instance of this document. WG Approval 12/05/2020 (epo:Document -> adms:Identifier (+epo:hasUUID)) + + + + + + + Has document status + + + https://test-docs.peppol.eu/logistics/transport-execution/codelist/DocumentStatusCode/ (epo:Document -> at-voc-new:document-status (+epo:hasDocumentStatus)) + + + + + + + Has document type + + + https://docs.peppol.eu/poacc/upgrade-3/2022-Q4/codelist/UNCL1001_T01/ (epo:Document -> at-voc-new:document-type (+epo:hasDocumentType)) + + + + + + + Associated with + + + The document to which a document is associated. WGM 01/03/2022 (epo:Document -> epo:Document (+epo:associatedWith)) + + + + + + + Has official language + + + The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. WG Approval 03/10/2019 (epo:Document -> at-voc:language (+epo:hasOfficialLanguage)) + + + + + + + Has electronic digest + + + + + + + Has unofficial language + + + The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. WG Approval 03/10/2019 (epo:Document -> at-voc:language (+epo:hasUnofficialLanguage)) + + + + + + + Refers to previous + + + + + + + Has associated document + + + + + + + Has external specification + + + URI reference to external item information or specifications, e.g. web address. (epo-cat:Item -> epo:Document (+epo-cat:hasExternalSpecification)) + + + + + + + Has award status + + + Indicates whether the lot is awarded, not awarded or still open. WG Approval 03/12/2019 (epo:AwardDecision -> at-voc:winner-selection-status (+epo:hasAwardStatus)) + + + + + + + Has awarded value + + + The value of the procurement provided by the Award Decision. Additional Information: Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. WG Approval 10/12/2019 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasAwardedValue)) + + + + + + + Has non award justification + + + On hold; Enumeration. (epo:AwardDecision -> at-voc:non-award-justification (+epo:hasNonAwardJustification)) + + + + + + + Has bargain price + + + The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. WG approval 23/05/2023 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasBargainPrice)) + + + + + + + Refers to award decision + + + + + + + Announces award decision + + + + + + + Has fund programme + + + + + + + Specifies deliverable + + + + + + + Has contract value + + + + + + + Has contract amendment + + + + + + + Has estimated duration + + + Relation indicating a Contract has an estimated Duration. Additional Information When the Lot uses a Technique the contract estimated duration applies to the Technique. (epo:Contract -> epo:Duration (+epo:hasEstimatedDuration)) + + + + + + + Has procurement classification + + + + + + + Announces completion of contract + + + + + + + Refers to contract to be modified + + + + + + + Announces contract + + + + + + + Concerns contract + + + + + + + Is subordinated to contract + + + + + + + Implements contract + + + + + + + Resolves review request + + + + + + + Provides ruling on remedy + + + States the measures to be taken after a review procedure. (epo:ReviewDecision -> at-voc:remedy-type (+epo:providesRulingOnRemedy)) + + + + + + + Has remedy value + + + Additional information: This relation corresponds in eForms to BT-793 Review Remedy Value. (epo:ReviewDecision -> epo:MonetaryValue (+epo:hasRemedyValue)) + + + + + + + Has confirmed irregularity type + + + Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewDecision -> at-voc:irregularity-type (+epo:hasConfirmedIrregularityType)) + + + + + + + Has review decision type + + + Additional information: This relation corresponds in eForms to BT-790 Review Decision Type. (epo:ReviewDecision -> at-voc:review-decision-type (+epo:hasReviewDecisionType)) + + + + + + + Refers to previous review + + + Additional information: This relation corresponds in eForms to BT-785 "Review Previous Identifier". (epo:ReviewObject -> epo:ReviewObject (+epo:refersToPreviousReview)) + + + + + + + Announces review object + + + + + + + Has alleged irregularity type + + + Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewRequest -> at-voc:irregularity-type (+epo:hasAllegedIrregularityType)) + + + + + + + Has review request fee + + + Additional information: This relation corresponds in eForms to BT-795 Review Request Fee. (epo:ReviewRequest -> epo:MonetaryValue (+epo:hasReviewRequestFee)) + + + + + + + Requests remedy type + + + Additional information: This relation corresponds in eForms to BT-792 Review Remedy Type (epo:ReviewRequest -> at-voc:remedy-type (+epo:requestsRemedyType)) + + + + + + + Has element modification + + + + + + + Describes contract modification + + + + + + + Has change justification + + + Code explaining the change. WG Approval 5/11/2019 (epo:ElementChangeDescription -> at-voc:change-corrig-justification (+epo:hasChangeJustification)) + + + + + + + Has element change + + + + + + + Has non publication justification + + + The reason why data is not published. WG Approval 11/06/2020 (epo:ElementConfidentialityDescription -> at-voc:non-publication-justification (+epo:hasNonPublicationJustification)) + + + + + + + Has element confidentiality + + + Relation indication that the publication provision applies to a given field of a document. (epo:PublicationProvision -> epo:ElementConfidentialityDescription (+epo:hasElementConfidentiality)) + + + + + + + Has element description + + + + + + + Has modification justification + + + Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. (epo:ElementModificationDescription -> at-voc:modification-justification (+epo:hasModificationJustification)) Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. (epo:AmendedContract -> at-voc:modification-justification (+epo:hasModificationJustification)) + + + + + + + Announces non published element + + + Relation indicating which parts of a document are not published. Additional Information: For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement)) + + + + + + + Refers to non published element + + + + + + + Has operator licence i d + + + + + + + Has item standard i d + + + The identifier for the instance of the concept based on a standard scheme. Additional information: For example the GTIN scheme (Global Trade Item Number). WG Approval 24/02/2022 (epo-cat:Item -> adms:Identifier (+epo:hasItemStandardID)) + + + + + + + Has manufacturer i d + + + The manufacturer's identifier for the item. (epo-cat:Manufacturer -> adms:Identifier (+epo:hasManufacturerID)) + + + + + + + Has trace i d + + + + + + + Has vehicle segment i d + + + + + + + Has freight forwarder consignment i d + + + + + + + Has seller item i d + + + The general identifier for the concept as defined by the seller. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasSellerItemID)) + + + + + + + Has carrier consignment i d + + + + + + + Has vehicle i d + + + + + + + Has batch i d + + + The identifier assigned to a specific batch of the produced Item. WG Approval 16/05/2023 (epo-cat:Batch -> adms:Identifier (+epo:hasBatchID)) + + + + + + + Has serial i d + + + The identifier assigned to the specific instance of the produced concept. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasSerialID)) + + + + + + + Has manufacturer item i d + + + This refers to the general identifier for the concept as defined by the manufacturer. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasManufacturerItemID)) + + + + + + + Has buyer item i d + + + This refers to the identifier for the specific instance of the produced concept. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasBuyerItemID)) + + + + + + + Has tracking i d + + + + + + + Has consignee consignment i d + + + + + + + Has expected delivery time + + + The expected amount of time between the order and delivery of an item. WG approval 26/07/2022 (epo-cat:Price -> epo:Duration (+epo-cat:hasExpectedDeliveryTime)) + + + + + + + Has currency + + + The identifier of the currency as in the standard code list used. (epo:MonetaryValue -> at-voc:currency (+epo:hasCurrency)) + + + + + + + Is calculated on + + + The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:TaxInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) + + + + + + + Has total tax inclusive amount + + + + + + + Has total tax exclusive amount + + + + + + + Has consignment invoice value + + + Declared amount of the Consignment. Additional Information: This is a logistics information needed for logistics, security measures, customs check, etc. (epo-ful:Consignment -> epo:MonetaryValue (+epo-ful:hasConsignmentInvoiceValue)) + + + + + + + Has consignment free on board value + + + + + + + Has amount + + + The predetermined monetary value charged in addition to the price. WG approval 26/07/2022 (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) The predetermined monetary value charged in addition to the price. WG approval 26/07/2022 (epo-ord:TaxInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) + + + + + + + Has consignment declared statistics value + + + + + + + Has net monetary value + + + + + + + Has total line amount + + + + + + + Has total allowance amount + + + + + + + Has declared statistical value + + + + + + + Has rounding amount + + + + + + + Has prepaid amount + + + + + + + Has amount due for payment + + + + + + + Has total charge amount + + + + + + + Has time period + + + (epo:Period -> at-voc:timeperiod (+epo:hasTimePeriod)) + + + + + + + Has estimated delivery period + + + + + + + Has price validity + + + + + + + Has catalogue line validity + + + + + + + Has delivery period + + + + + + + Has unit code + + + + + + + Has gross weight + + + + + + + Has net weight + + + + + + + Has quantity + + + + + + + Has length + + + + + + + Has quantity threshold + + + + + + + Has gross volume + + + + + + + Has net quantity + + + The net quantity of the item that is contained in each consumable unit, excluding any packaging materials. (epo-cat:Item -> epo:Quantity (+epo-cat:hasNetQuantity)) + + + + + + + Has chargeable weight + + + + + + + Has transport handling unit quantity + + + + + + + Has despatched quantity + + + Quantity despatched for delivered. (epo-ful:DespatchLine -> epo:Quantity (+epo-ful:hasDespatchedQuantity)) + + + + + + + Has loading length + + + + + + + Has width + + + + + + + Has height + + + + + + + Has outstanding quantity + + + + + + + Has base quantity + + + The quantity at which the net monetary value applies. (epo-cat:Price -> epo:Quantity (+epo-cat:hasBaseQuantity)) + + + + + + + Has orderabable unit factor rate + + + + + + + Has maximum temperature + + + + + + + Has qualified value + + + Qualified value of the property, which is defined in a classification scheme. Additional Information: For example, the (0173-1#02-AAA026#007) drilling diameter of an item has value of 12 inches. WG approval 28/07/2022 (epo-cat:ItemProperty -> epo:Quantity (+epo-cat:hasQualifiedValue)) + + + + + + + Has total goods item quantity + + + + + + + Has minimum quantity guaranteed for delivery + + + The minimum quantity of an item that is guaranteed by the seller to be delivered. (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMinimumQuantityGuaranteedForDelivery)) + + + + + + + Has maximum order quantity + + + The maximum number of orderable units that can be ordered according to details provided in the catalogue line, such as price. (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMaximumOrderQuantity)) + + + + + + + Has minimum temperature + + + + + + + Has net volume + + + + + + + Unit type + + + + Contains modifications of + + + Additional information This relation shall be used between Instances of the SAME type/class. The "modifying-instance" can be minimally instantiated, carrying the fields/information that override the fields in the "modified-instance". This means that the "modifying-instance" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. (owl:Thing -> owl:Thing (+epo:containsModificationsOf)) + + + + + + + Has country of origin + + + + + + + Is s m e suitable + + + The Lot is suitable for small and medium enterprises (SMEs). Additional Information This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. For example, number of employees and turnover are applicable to the definition of an SME. WG Approval 15/10/2019 (epo:ProcurementObject) + + + + + + + Has additional information + + + Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:ProcurementObject) Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:Notice) Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:ElementChangeDescription) + + + + + + + Is using e u funds + + + The procurement foresees funding by the Union. Additional Information: The funding may cover the whole procurement or part of the procurement. For example the European Structural and Investment Funds or grants awarded by the European Union. (epo:ProcurementObject) + + + + + + + Is covered by g p a + + + Specifies whether the Agreement on Government Procurement (GPA) applies. Additional information: The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. This corresponds in the e Forms to BT-115 GPA Coverage. WG Approval 15/10/2019 (epo:ProcurementObject) + + + + + + + Is recurrent + + + The Procurement being notified is likely to be included in another procedure in the foreseeable future. Additional Information: For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. This corresponds in eForms to BT-94 Recurrence. WG Approval 12/05/2020 (epo:ProcurementObject) + + + + + + + Has recurrence description + + + Any additional information about the recurrence of the Procurement. Additional Information: For example estimated timing of the Procedure. This corresponds in eForms to BT-95 Recurrence Description. (WG approval 2019-01-16) (epo:ProcurementObject) + + + + + + + Has legal basis description + + + + + + + Is accelerated + + + Statement about the fact that the procedure will be reduced due to a state of urgency. Additional Information This modifies the time limit for the receipt of requests to participate or the receipt of tenders. WG Approval 20/08/2019 (epo:Procedure) + + + + + + + Has accelerated procedure justification + + + The reasons why the procedure is accelerated. Additional Information: A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. WG Approval 09/06/2020 (epo:Procedure) + + + + + + + Has main feature + + + Main features of the procedure and information about where the full rules for the procedure can be found. Additional Information: This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds. (epo:Procedure) + + + + + + + Is joint procurement + + + Multiple buyers procure together within the same procedure. Addition Information: In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . (epo:Procedure) + + + + + + + Is design contest + + + A competition which enables the buyer to acquire a plan or design via a jury. Additional information: Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering The contest may include or not the award of prizes; WG approval 04-02-2021 (epo:Procedure) + + + + + + + Title + + + A name given to the resource. WG approval 30/05/2023 (epo:ProcurementElement) A name given to the resource. WG approval 30/05/2023 (foaf:Agent) A name given to the resource. WG approval 30/05/2023 (epo:AgentInRole) A name given to the resource. WG approval 30/05/2023 (epo:Document) A name given to the resource. WG approval 30/05/2023 (epo:Fund) + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:ProcurementElement) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:System) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:AgentInRole) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cpov:ContactPoint) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cv:Channel) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:NonDisclosureAgreementTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SecurityClearanceTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SubcontractTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cccev:InformationConcept) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cccev:Requirement) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Technique) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SubcontractingEstimate) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:ElectronicSignature) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Document) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Fund) + + + + Name + + + The complete name of the Person as one string. (cpv:Person) + + + + Family name + + + The hereditary surname of a family. (cpv:Person) + + + + Given name + + + The name(s) that identify the Person within a family with a common surname. (cpv:Person) + + + + Patronymic name + + + Name based on the given name of the Person's father. WG Approval 09/11/2021 (cpv:Person) + + + + Alternative + + + Any name by which an individual is known other than their full name. WG 09/11/2021 (cpv:Person) + + + + Birth name + + + Family name of the Person given upon their birth. WG Approval 09/11/2021 (cpv:Person) + + + + Birth date + + + The point in time on which the Person was born. (cpv:Person) + + + + Is listed company + + + Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange rules or through law or enforceable means), which impose requirements to ensure adequate transparency of beneficial ownership. <u>Additional Information:</u> In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. WG Approval 21/11/2019 (epo:Business) + + + + + + + Has group type + + + Form of collaboration agreement between organisations. Additional Information: This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. WG Approval 09/11/2021 (epo:OrganisationGroup) + + + + + + + Has alias + + + Acronym or alternative name of the Agent. WG Approval 25/03/2021 (foaf:Agent) + + + + + + + Has legal name + + + The officially registered name of an organisation. WG Approval 10/01/2023 (org:Organization) + + + + + + + Has organisation unit name + + + The name of a subpart of an organisation. Additional Information: E.g. the relevant department of a large organisation. We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well. (org:Organization) + + + + + + + Has buyer legal type description + + + Self-explanatory text about the Buyer Legal Type. Additional information: This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 (org:Organization) + + + + + + + Has legal form type + + + The classification of an Organisation according to legislation. Additional Information: Generally, this is defined for Tenderers who want to submit as an Organisation Group. Note that the codelist provided at national level should be used. (org:Organization) + + + + + + + Has main activity description + + + Self-explanatory text about the Main Activity . Additional information: This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 (org:Organization) + + + + + + + Has internet address + + + The main web page used by the instance of the concept. WG Approval 01/06/2023 (org:Organization) The main web page used by the instance of the concept. WG Approval 01/06/2023 (cpov:ContactPoint) + + + + + + + Is contracting entity + + + Role of entities, which: (a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. (b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. Additional Information The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. WG Approval 28/04/2020 (epo:Buyer) + + + + + + + Has activity description + + + In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. However, in eForms there is the code "other" to cover undefined activities. For mapping to this eForms feature one could also use this property. (epo:Buyer) + + + + + + + Has buyer profile + + + Website address where the buyer publishes information on its procurement procedures and general information. Additional information: This corresponds in the eForms to BT-508 Buyer Profile URL. WG approval 04/05/2018 (epo:Buyer) + + + + + + + Has fax + + + The fax number used to reach a person or an organisation. (cpov:ContactPoint) + + + + + + + Telephone + + + A telephone number through which the Contact Point can be contacted. (cpov:ContactPoint) + + + + Email + + + The email of the Organisation. (cpov:ContactPoint) + + + + Has contact name + + + A short text by which a contact is known or referred to. WG Approval: 27/01/2022 (cpov:ContactPoint) + + + + + + + Has address u r l + + + + + + + Geographic name + + + A textual description for a Location. Additional Information: The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) - "Athens"@en (the English language exonym) INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - use 'EL' in preference to the ISO 3166 code GR for Greece. Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code. (dct:Location) + + + + Post name + + + The key postal division of the address, usually the city. (INSPIRE's definition is "One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, "Paris". (locn:Address) + + + + Address area + + + The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. Additional Information: This would typically be part of a city, a neighbourhood or village, e.g. Montmartre. (locn:Address) + + + + Locator name + + + Proper noun(s) applied to the real world entity identified by the locator. Additional Information: The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator. (locn:Address) + + + + Admin unit l2 + + + The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. Additional Information: Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" in the ATU controlled vocabulary. (locn:Address) + + + + Full address + + + The complete address written as a formatted string. Additional Information: Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is "Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France". (locn:Address) + + + + Locator designator + + + A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. Additional Information: In simpler terms, this is the building number, apartment number, etc. For an address such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17". (locn:Address) + + + + Admin unit l1 + + + The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. Additional Information: Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this. (locn:Address) + + + + Post code + + + The post/zip code of an address. (INSPIRE's definition is "A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.") Additional Information: Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example "75000". (locn:Address) + + + + Thoroughfare + + + An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. Additional Information: For example, "Avenue des Champs-&#201;lys&#233;es". (locn:Address) + + + + Coordinates + + + The coordinate list. (locn:Geometry) + + + + Longitude + + + The longitude. (locn:Geometry) + + + + Latitude + + + The latitude. (locn:Geometry) + + + + Has estimated contract notice publication date + + + Foreseen date for publication of Contract Notice. Additional information: This corresponds in eForms BT-127 Future Notice. (epo:ProcessPlanningTerm) + + + + + + + Has estimated tender invitation date + + + The planned date for the dispatch of the invitations to submit tenders. WG Approval 09/11/2021 (epo:ProcessPlanningTerm) + + + + + + + Has award date scheduled + + + Planned date for the award decision. WG Approval 09/11/2021 (epo:ProcessPlanningTerm) + + + + + + + Is procurement document restricted + + + The access to certain procurement documents is restricted. Additional Information: This corresponds in eForms to BT-14 Documents Restricted. WG Approval 10/10/2019 (epo:AccessTerm) + + + + + + + Has restricted access u r l + + + The internet address with information on accessing the restricted (part of the) procurement document. Additional Information: This corresponds in eForms to BT-615 Documents Restricted URL. (epo:AccessTerm) + + + + + + + Has additional information deadline + + + The time limit for requesting further information. Additional information: This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. This corresponds in eForms to BT-13 Additional Information Deadline. WG Approval 09/06/2020 (epo:AccessTerm) + + + + + + + Has public access u r l + + + Web page where the procurement documents can be downloaded. Additional Information: This corresponds in the eForms to BT-15 Documents URL. WG Approval 09/03/2021 (epo:AccessTerm) + + + + + + + Is non disclosure agreement required + + + + + + + Has opening date time + + + Date and time for the opening of tenders. WG Approval 12/03/2019 (epo:OpeningTerm) + + + + + + + Has opening description + + + Further information about the opening of tenders. Additional Information For example, who may participate in the opening and whether any authorization is needed. WG Approval 12/03/2019 (epo:OpeningTerm) + + + + + + + Has opening u r l + + + The identifier of the address of the Opening of Tenders. WG Approval 09/11/2021 (epo:OpeningTerm) + + + + + + + Has deadline + + + The deadline by which the security clearance must be submitted to the buyer. WG Approval 12/09/2019 (epo:SecurityClearanceTerm) + + + + + + + Is security clearance required + + + + + + + Has justification + + + An explanation about the reasons for using the concept. WG Approval 5/11/2019 (epo:DirectAwardTerm) + + + + + + + Is submission for all lots allowed + + + Indicates whether tenders may be submitted for all Lots. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) WG approval 23/08/2022 (epo:ProcedureTerm) + + + + + + + Has cross border law + + + The applicable law when buyers from different countries procure together within one procurement procedure. Additional Information: This corresponds in eForms to BT-09 Cross Border Law. (epo:ProcedureTerm) + + + + + + + Is one lot only allowed + + + Indicates whether tenders may be submitted for only one Lot. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 (epo:ProcedureTerm) + + + + + + + Has group lot evaluation method + + + Description of how lots and groups of lots are evaluated against one another in the procedure. (epo:ProcedureTerm) + + + + + + + Is awarded by c p b + + + Procedure is awarded by a Central Purchasing Body. (epo:ProcedureTerm) + + + + + + + Has maximum lot submission allowed + + + The total number of lots for which one Tenderer can submit Tenders. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 12/12/2018 (epo:ProcedureTerm) + + + + + + + Has lot award combination + + + The contracting authority reserves the right to award contracts combining lots or groups of lots. Additional Information: This property contains information about the Lots concerned. This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 (epo:ProcedureTerm) + + + + + + + Has maximum number of lots to be awarded + + + The maximum number of lots for which contract(s) can be awarded to one tenderer. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG Approval 22/08/2019 (epo:ProcedureTerm) + + + + + + + Has national procedure rules + + + + + + + Has e auction u r l + + + The internet address of the electronic auction. Additional Information: This corresponds in eForms to BT-123 Electronic Auction URL. (epo:SubmissionTerm) + + + + + + + Has receipt deadline + + + The time limit for receiving submissions. Additional Information This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. This attribute should be used for standard forms mappings. WG Approval 21/07/2020 (epo:SubmissionTerm) + + + + + + + Has receipt expression deadline + + + Time limit for receipt of expressions of interest. Pending of review by the WG (epo:SubmissionTerm) + + + + + + + Is guarantee required + + + The submitted information must include a financial commitment to be used in case of default. Additional Information: See the additional information provided in the definition of the 'Guarantee Description' element. WG Approval 21/07/20 (epo:SubmissionTerm) + + + + + + + Has guarantee description + + + Information on the financial commitment required from the economic operator. Additional Information: 1. This information may include the amount and the way of delivering of the guarantee 2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. 3. Usual modalities are bonds, cheques, loans, other. WG Approval 21/07/20 (epo:SubmissionTerm) + + + + + + + Has submission u r l + + + Additional Information: This corresponds to the eForms BT-18 Submission URL. This corresponds in eForms to BT-509 Organisation eDelivery Gateway. (epo:SubmissionTerm) + + + + + + + Has non electronic submission description + + + Textual explanation of how non-electronic information is to be presented. WG Approval 21/07/2020 (epo:SubmissionTerm) + + + + + + + Has receipt preliminary market consultation deadline + + + + + + + Is advanced electronic signature required + + + Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. The submitted information is required to be signed electronically. Additional Information: Signature can be defined as "data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. WG Approval 21/07/2020 (epo:SubmissionTerm) + + + + + + + Has receipt participation request deadline + + + + + + + Is multiple tender submission allowed + + + Tenderers may submit more than one competing tenders. WG Approval 10/10/2019 (epo:SubmissionTerm) + + + + + + + Has receipt tender deadline + + + + + + + Has late submission information description + + + A narrative text explaining the content of the economic operator information that can be submitted late. Additional Information This does not apply to requests for clarifications. (epo:SubmissionTerm) + + + + + + + Has e ordering + + + Electronic means will be used for requesting and purchasing in the post-award process. WG Approval 12/09/2019 (epo:ContractTerm) + + + + + + + Has e payment + + + Electronic means must be used for paying. WG Approval 09/11/2021 (epo:ContractTerm) + + + + + + + Has options + + + The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid). (epo:ContractTerm) + + + + + + + Has e invoicing + + + Electronic means will be used for invoicing in the post-award process. Additional Information: This attribute is used for standard form mappings. WG Approval 12/09/2019 (epo:ContractTerm) + + + + + + + Is renewal indicator + + + Indicates whether the contract is subject to a renewal clause. WG Approval 09/11/2021 (epo:ContractTerm) + + + + + + + Has maximum number of renewals + + + The maximum number of times the contract can be renewed. Additional Information By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. (epo:ContractTerm) + + + + + + + Has options description + + + The motivation and details about additional purchases that the buyer may undertake while the contract is valid. WG Approval 09/04/2019 (epo:ContractTerm) + + + + + + + Has renewal description + + + Any other information about the renewal(s). WG approval 16/04/2019 (epo:ContractTerm) + + + + + + + Has payment arrangement + + + Information about financial clauses that will govern some economic aspects of the execution of the contract. Additional Information: These clauses usually refer to financial and payment provisions. This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. WG Pending of discussion with eForms (epo:ContractTerm) + + + + + + + Has legal form requirement + + + The legal form to be taken by a Contractor. Additional Information: Generally, this is defined to cover the case where an Organisation Group is involved. Note that the codelist provided at national level should be used. (epo:ContractTerm) + + + + + + + Has place of performance additional information + + + Further details on the location of the execution of the contract. WG Approval 30/07/2019 (epo:ContractTerm) + + + + + + + Has performance conditions + + + The particular conditions and additional information related to the execution of the contract. Additional Information: For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. WG approval 15-01-2019 (epo:ContractTerm) + + + + + + + Is jury decision binding + + + Indicates whether the procuring entity is bound to apply the decision of the jury. (epo:DesignContestRegimeTerm) + + + + + + + Has participation payment + + + Details on payments to participants WG Approval 09/11/2021 (epo:DesignContestRegimeTerm) + + + + + + + Has followup contract + + + Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. WG Approval 29/08/2019 (epo:DesignContestRegimeTerm) + + + + + + + Has followup contract information + + + Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). WG Approval 03/09/2019 (epo:DesignContestRegimeTerm) + + + + + + + Has maximum participants number + + + The maximum number of participants in the framework agreement. Additional Information: Maximum number of tenderers who may be awarded a contract within the framework agreement. The number is a positive integer. This corresponds in eForms to BT-113 Framework Maximum Participants Number. WG Approval 2019-02-05 (epo:FrameworkAgreementTerm) + + + + + + + Has buyer category description + + + A classification of buyers participating in a framework agreement. Additional Information: Buyers that can use the Framework Agreement not mentioned by name. For example, the classification "all hospitals in the Tuscany region" is used instead of naming each individual buyer. This corresponds in eForms to BT-111 Framework Buyer Categories. WG Approval 2019-05-06 (epo:FrameworkAgreementTerm) + + + + + + + Has duration extension justification + + + The explanation of the reason why the framework agreement has an extended duration. Additional Information: This corresponds in eForms to BT-109 Framework Duration Justification. The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. WG Approval 26/09/2019 (epo:FrameworkAgreementTerm) + + + + + + + Has maximum number of candidates + + + Maximum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) + + + + + + + Has successive reduction + + + The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. Additional information: This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) + + + + + + + Has minimum number of candidates + + + Minimum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm) + + + + + + + Has estimated invitation to tender date + + + The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. Additional Information: This corresponds in eForms to BT-130 Dispatch Invitation Tender. WG Approval 01/10/2019 (epo:MultipleStageProcedureTerm) + + + + + + + Has no negotiation necessary + + + The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. Additional information: See Article 29(4) of Directive 2014/24/EU. (epo:MultipleStageProcedureTerm) + + + + + + + Has estimated invitation to express interest date + + + The estimated date of dispatch of the invitations to confirm interest. Additional Information: This corresponds in eForms to BT-631 Dispatch Invitation Interest. (epo:MultipleStageProcedureTerm) + + + + + + + Has qualification system renewal description + + + + + + + Has prize rank + + + The position of the prize (e.g. first place, second place) in a design contest list of prizes. WG Approval 29/08/2019 (epo:Prize) + + + + + + + Has maximum share + + + The maximum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 (epo:SubcontractTerm) + + + + + + + Has minimum share + + + The minimum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 (epo:SubcontractTerm) + + + + + + + Has subcontracting involved + + + List of Subcontractors and the subject matter they cover are required. Additional Information: The tenderer will ned to supply this information in the tender. WG Approval 28/02/2019 (epo:SubcontractTerm) + + + + + + + Has minimum subcontractors proposed obligation + + + The minimum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 (epo:SubcontractTerm) + + + + + + + Has subcontractors proposed above obligation + + + The maximum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 (epo:SubcontractTerm) + + + + + + + Has award criteria evaluation formula + + + The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543 Award Criteria Complicated. (epo:AwardEvaluationTerm) + + + + + + + Has overall quality award criteria ponderation + + + The weighting given to quality. Additional Information: This weighting covers usually all quality criteria against price or cost criteria. (epo:AwardEvaluationTerm) + + + + + + + Has overall price award criteria ponderation + + + The weighting given to price. Additional Information: This weighting covers usually all price criteria against cost or quality criteria. (epo:AwardEvaluationTerm) + + + + + + + Has award criteria order justification + + + The justification for only indicating the award criteria's order of importance, not their weighing. Additional Information: This corresponds in eForms to BT-733 Award Criteria Order Justification. (epo:AwardEvaluationTerm) + + + + + + + Has overall cost award criteria ponderation + + + The weighting given to cost. Additional Information: This weighting covers usually all cost criteria against price or quality criteria. (epo:AwardEvaluationTerm) + + + + + + + Has threshold value + + + The cut-off level for a given concept. Additional Information: This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold). (cccev:Constraint) + + + + + + + Bias + + + Parameter used to adjust the evaluation of the Criterion. Additional Information: The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the "presence of local preferences distorting international specialisation and resource allocation". When quantified, this systematic error can be removed. (cccev:Criterion) + + + + Weight + + + Relative importance of the Criterion. Additional Information: The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1. (cccev:Criterion) + + + + Weighting consideration description + + + Explanation of how the weighting of a Criterion is to be used. Additional Information: This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process. (cccev:Criterion) + + + + Pref label + + + The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 (cccev:InformationConcept) The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 (cccev:Requirement) + + + + Has award criteria stated in procurement documents + + + + + + + Has fixed value + + + This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed. (epo:AwardCriterion) + + + + + + + Describes objective participation rules + + + + + + + Describes verification method + + + + + + + Indicates performing staff information requirement + + + + + + + Has formula + + + The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543. (epo:ProcurementCriterion) + + + + + + + Describes profession relevant law + + + + + + + Has service reserved to particular profession + + + + + + + Describes profession + + + + + + + Has qualification condition + + + + + + + Has condition verification method + + + + + + + Has selection criteria stated in procurement documents + + + + + + + Describes minimum level of standards + + + + + + + Is used for candidate restriction + + + The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. Additional Information: This property is only used if a maximum number of candidates was foreseen in the procedure. This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite (epo:SelectionCriterion) + + + + + + + Has total vehicles + + + The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement) + + + + + + + Has zero emission vehicles + + + The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement) + + + + + + + Has clean vehicles + + + The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement) + + + + + + + Has non accessibility criterion justification + + + Reason for not applying accessibility criteria. Additional information: This corresponds in eForma to BT-755 Accessibility Justification. WG Approval 05/03/2019 (epo:StrategicProcurement) + + + + + + + Has strategic procurement description + + + Self-explanatory text about a concept. (epo:StrategicProcurement) + + + + + + + Is to be relaunched + + + Indicator of whether the procurement object is to be relaunched. Additional information: This can be instantiated in the post award phase. This corresponds in eForms to BT-634 Procurement Relaunch. WG Approval: 18/01/2022 (epo:ProcurementProcessInformation) + + + + + + + Is competition terminated + + + No further contracts will be awarded in this procedure. Additional Information: This can be instantiated in the post award phase. PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. This corresponds in eForms to BT-756 PIN Competition Termination. (epo:ProcurementProcessInformation) + + + + + + + Is d p s terminated + + + End of the Dynamic Purchase System (DPS). Additional Information: This property can be used in the contract award notice even if no contracts are awarded. WG Approval 22/11/2019 (epo:ProcurementProcessInformation) + + + + + + + Has calculation method + + + Formula for obtaining values. Additional Information: The possible values are monetary values, ranking scores, criterion weighting. WG Approval 25/05/2018 (epo:ConcessionEstimate) + + + + + + + Has estimated percentage + + + The estimated proportion foreseen to be subcontracted. WG Approval 07/01/2020 (epo:SubcontractingEstimate) + + + + + + + Has subject matter + + + Description of the share of the contract that is to be subcontracted. Additional infromation: This can be an aggregate of several subcontracts. WG Approval 09/11/2021 (epo:SubcontractingEstimate) + + + + + + + Has non awarded contract title + + + The title the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 (epo:LotAwardDecision) + + + + + + + Has non awarded contract number + + + The number the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 (epo:LotAwardDecision) + + + + + + + Has award rank + + + The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. Additional Information: This corresponds in eForms to BT-171 Tender Rank. (epo:TenderAwardOutcome) + + + + + + + Has review irregularity count + + + The number of requests for a given irregularity. Additional information: This attribute corresponds in eForms to BT-635 Buyer Review Requests Count. (epo:ReviewIrregularitySummary) + + + + + + + Has total number of complainants + + + The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. Additional information: This attribute corresponds in eForms to BT-712 Buyer Review Complainants WG Approval 11/04/2019 (epo:ReviewRequestSummary) + + + + + + + Has e e a received tenders + + + The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) + + + + + + + Has received participation requests + + + The amount of applications to participate from economic operators. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) + + + + + + + Has non e e a received tenders + + + The amount of tenders received from economic operators in non-EEA countries. WG Approval 12/12/2019 15:20:36 (epo:SubmissionStatisticalInformation) + + + + + + + Has s m e received tenders + + + The amount of tenders received from micro, small and medium-sized enterprises. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. WG Approval 05/03/2020 (epo:SubmissionStatisticalInformation) + + + + + + + Has received micro tenders + + + The amount of tenders received from a micro enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation) + + + + + + + Has received small tenders + + + Tenders from small enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation) + + + + + + + Has medium tender per lots + + + Tenders from medium-sized enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation) + + + + + + + Has received tenders + + + The total amount of tenders received. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) + + + + + + + Has inadmissible tenders + + + Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. <u>Additional Information: </u> Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation) + + + + + + + Has abnormally low tenders + + + Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. Additional Information The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation) + + + + + + + Has non e u received tenders + + + The amount of tenders received from economic operators in non-EU countries. (epo:SubmissionStatisticalInformation) + + + + + + + Has unverified tenders + + + Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation) + + + + + + + Has electronic tenders + + + Electronic Tender Lots received. WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation) + + + + + + + Has e u received tenders + + + The amount of tenders received from economic operators in other EU countries other than the country of the buyer. (epo:SubmissionStatisticalInformation) + + + + + + + Has other countries received tenders + + + + + + + Has estimated total subcontracts + + + The estimated amount of work to be subcontracted in the contract resulting from the lot. WG Approval 09/11/2021 (epo:SubmissionStatisticalInformation) + + + + + + + Has number of tenderers invited + + + Number of economic operators invited to tender. Additional Information This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. WG Approval 01/12/2020 (epo:SubmissionStatisticalInformation) + + + + + + + Has payment value discrepancy justification + + + + + + + Has electronic submission + + + Transmission of tenders is possible by electronic means of communication. (epo:Tender) + + + + + + + Is variant + + + Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. Additional Information: The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. WG Approval 29/05/2019 (epo:Tender) + + + + + + + Has o j s issue number + + + + + + + Has o j s type + + + + + + + Has long title + + + + + + + Has notice publication number + + + + + + + Has form number + + + + + + + Has e forms subtype + + + + + + + Is e u institution + + + + + + + Has e sender dispatch date + + + The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. Additional Information: Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. WG approval 20/06/2023 (epo:Notice) + + + + + + + Has publication date + + + Date of formal public issuance of the document. WG approval 20/06/2023 (epo:Document) + + + + + + + Has reception date + + + Notes: Date when a record is acknowledged by an organisation. WG Approval 12/05/2020 (epo:Document) + + + + + + + Has dispatch date + + + Date of transmission of a record to an organisation. WG Approval 12/05/2020 (epo:Document) + + + + + + + Issued + + + Date of formal issuance of the resource. Additional information: This is generally used for modules other than eNotice. The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. WG approval 26/01/2023 (epo:Document) + + + + Has access u r l + + + Location where the resource can be accessed. WG approval 07/04/2022 (epo:Document) + + + + + + + Has version + + + A number that identifies a specific state of a document. WG approval: 18/11/2021 (epo:Document) + + + + + + + Has award decision date + + + The official date of the award decision. Additional Information: This corresponds in eForms to BT-1451 Winner Decision Date. WG Approval 09/01/2020 (epo:AwardDecision) + + + + + + + Has additional non award justification + + + Further justification for the non award . Additional information: This is generally used when the non award reason code is set to "Other". WG: 18/01/2022 (epo:AwardDecision) + + + + + + + Has u r l + + + The identifier of a resource. Additional Information For example: 1. The URL of the system from where to access the procurement documents; 2. The URL of the system for the submission of tender documents; 3. The URL of the system from where to download a tool to communicate with the Buyer; 4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) 5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; WG Approval 30/09/2019 (epo:Fund) + + + + + + + Has contract conclusion date + + + The date the contract was signed by the last signatory party. <u>Additional Information:</u> In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. This concept is not to be confused with the date of completion/end of the contract. This corresponds in eForms to BT-145 Contract Conclusion Date. WG Approval 09/01/2020 (epo:Contract) + + + + + + + Has entry into force date + + + The date on which the contract enters into force. Additional information: This is generally the date on which the fulfillment of the contract begins. This corresponds in eForms to WG approval 05/11/2019 (epo:Contract) + + + + + + + Has decision date + + + The date of the review decision. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. (epo:ReviewDecision) + + + + + + + Has element reference + + + Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ReviewObject) Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementChangeDescription) Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementModificationDescription) + + + + + + + Has review u r l + + + The internet address of the documents concerning the review instance. Additional information: This attribute corresponds in eForms to BT-794 Review URL. (epo:ReviewObject) + + + + + + + Has number of review requests + + + The number of requests the buyer received to review any of its decisions. (epo:ReviewRequest) + + + + + + + Is withdrawn + + + The review request was withdrawn. Additional information: This attribute corresponds in eForms to BT-796 Review Request Withdrawn. (epo:ReviewRequest) + + + + + + + Has withdrawal date + + + The date and time when the request for review was withdrawn. Additional information: This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date. (epo:ReviewRequest) + + + + + + + Has withdrawal reason + + + The explanation for withdrawing the request for review. Additional information: This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons (epo:ReviewRequest) + + + + + + + Has request date + + + The date when the review request was submitted. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. (epo:ReviewRequest) + + + + + + + Has previous version of element reference + + + Reference to the class instance in the previous version of the notice, which was changed. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. (epo:ElementChangeDescription) + + + + + + + Has change description + + + Explanatory text about the instance of the concept. WG Approval 30/09/2019 (epo:ElementChangeDescription) + + + + + + + Has change reason description + + + Explanatory text about why the element is altered. Additional information: This corresponds in eForms to BT-762 Change Reason Description. (epo:ElementChangeDescription) + + + + + + + Is procurement document changed + + + One or more procurement documents have been changed. Additional information: This corresponds in eForms to BT-718 Change Procurement Documents WG Approval 05/11/2019 (epo:ElementChangeDescription) + + + + + + + Has procurement document change date + + + The date and time of the change. Additional information: This corresponds in eForms to BT-719 Change Procurement Documents Date WG Approval 5/11/2019 (epo:ElementChangeDescription) + + + + + + + Has instance reference + + + The URI of a given class that is being referred to. (epo:ElementConfidentialityDescription) + + + + + + + Has property reference + + + The URI of a given attribute (property) that is being referred to. (epo:ElementConfidentialityDescription) + + + + + + + Has accessibility date + + + The date at which unpublished data shall be published. WG Approval 11/06/2020 (epo:ElementConfidentialityDescription) + + + + + + + Has confidentiality justification + + + A narrative explanation of why data is not published. Additional Information: This element is generally used when the non-publication-justification code chosen is "other". WG Approval 09/11/2021 (epo:ElementConfidentialityDescription) + + + + + + + Has modification description + + + An explanatory text about this context. Additional Information This corresponds in Standard forms to Field VII.2.1 in F20 This corresponds in eForms to BT-202 . WG Approval 5/11/2019 (epo:ElementModificationDescription) + + + + + + + Has modification reason description + + + An explanation about the reasons for using the concept. Additional Information This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. This corresponds in eForms to BT-201 . WG Approval 5/11/2019 (epo:ElementModificationDescription) + + + + + + + Has preferred publication date + + + The date the buyer would like to have the record made publicly available. Additional Information: This corresponds in eForms to BT-738 Notice Publication Date Preferred. WG Approval 12/05/2020 (epo:PublicationProvision) + + + + + + + Notation + + + The literal identifying an entity, like a person or an object. (adms:Identifier) + + + + Schema agency + + + The name of the agency that issued the identifier. (adms:Identifier) + + + + Has scheme + + + The name of the identification scheme. (adms:Identifier) + + + + + + + Has scheme version + + + The version of the identification scheme. (adms:Identifier) + + + + + + + Has amount value + + + The numeric value of the amount, including decimals. (epo:MonetaryValue) + + + + + + + Has currency code list agency i d + + + Identifier of the agency that maintains the currency code list used. WG approval 13/04/2021 (epo:MonetaryValue) + + + + + + + Has currency code list agency name + + + Name of the agency that maintains the currency code list used. WG approval 13/04/2021 (epo:MonetaryValue) + + + + + + + Has currency code list i d + + + Concept scheme URI used for the currency code list. WG approval 13/04/2021 (epo:MonetaryValue) + + + + + + + Has beginning + + + The date and time on which this period begins. (epo:Period) + + + + + + + Has end + + + The date and time at which this period ends. (epo:Period) + + + + + + + Has quantity value + + + The numeric value of the quantity, including decimals. (epo:Quantity) + + + + + + + Has unit description + + + A narrative explanation defining the units of items being counted Additional information: This could be for example individual items or pack or two. WG Approval 09/11/2021 (epo:Quantity) + + + + + + + Numeric duration + + + Value of a temporal extent expressed as a number. (epo:SpecificDuration) + + diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl new file mode 100644 index 0000000..19b67bd --- /dev/null +++ b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl @@ -0,0 +1,3885 @@ +@prefix : . +@prefix adms: . +@prefix at-voc: . +@prefix cccev: . +@prefix dcterms: . +@prefix foaf: . +@prefix locn: . +@prefix org: . +@prefix owl: . +@prefix person: . +@prefix rdf: . +@prefix rdfs: . +@prefix skos: . +@prefix time: . +@prefix vann: . +@prefix xsd: . + +:AccessTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm, + :ProcedureSpecificTerm ; + skos:definition "Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021"@en ; + skos:prefLabel "Access term"@en . + +:AcquiringCentralPurchasingBody a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :CentralPurchasingBody ; + skos:definition "Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021"@en ; + skos:prefLabel "Acquiring central purchasing body"@en . + +:AdHocChannel a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf cccev:Channel ; + skos:definition "Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023"@en ; + skos:prefLabel "Ad hoc channel"@en . + +:AwardCriteriaSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementCriteriaSummary ; + skos:prefLabel "Award criteria summary"@en . + +:AwardCriterion a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementCriterion ; + skos:definition "Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018"@en ; + skos:prefLabel "Award criterion"@en . + +:AwardEvaluationTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :EvaluationTerm ; + skos:definition "Conditions and stipulations defining particularities of the evaluation of Award Criteria."@en ; + skos:prefLabel "Award evaluation term"@en . + +:Awarder a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent that signs the Award Decision."@en ; + skos:editorialNote "BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision."@en ; + skos:prefLabel "Awarder"@en . + +:AwardingCentralPurchasingBody a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :CentralPurchasingBody ; + skos:definition "Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. Additional Information: In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021"@en ; + skos:prefLabel "Awarding central purchasing body"@en . + +:BudgetProvider a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A role of an agent whose Budget is used to pay for the Contract."@en ; + skos:prefLabel "Budget provider"@en . + +:Business a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf org:Organization ; + skos:definition "A private law company registered in a national registry. WG Approval 28/04/2020"@en ; + skos:editorialNote "In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business."@en ; + skos:prefLabel "Business"@en . + +:Candidate a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :OfferingParty ; + skos:definition "The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. WG approval 30/05/2023"@en ; + skos:prefLabel "Candidate"@en . + +:CatalogueProvider a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :OfferingParty ; + skos:definition "A Role of an Agent compiling and supplying a Catalogue. Additional Information: The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. WG Approval 28/01/2021"@en ; + skos:prefLabel "Catalogue provider"@en . + +:CatalogueReceiver a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent processing a Catalogue. Additional Information: The Catalogue Receiver may not only receive it but also validate it, process it, etc. The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. WG Approval 28/01/2021"@en ; + skos:prefLabel "Catalogue receiver"@en . + +:ConcessionContract a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Contract ; + skos:definition "A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. WG Approval 24/05/2022"@en ; + skos:prefLabel "Concession contract"@en . + +:ConcessionEstimate a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Estimate ; + skos:prefLabel "Concession estimate"@en . + +:ContractLotCompletionInformation a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ContextualProjection ; + skos:definition "Information related to a given Lot at the end of the procurement."@en ; + skos:prefLabel "Contract lot completion information"@en . + +:ContractModification a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :NoticeDescription ; + skos:definition "An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer."@en ; + skos:prefLabel "Contract modification"@en . + +:ContractTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ContractSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities of the Post Award Phase. (WG approval 23/11/2018)"@en ; + skos:prefLabel "Contract term"@en . + +:Contractor a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :OfferingParty ; + skos:definition "The Role of an Agent that has signed a Contract with a Buyer. WG approval 08/11/2022"@en ; + skos:prefLabel "Contractor"@en . + +:DesignContestRegimeTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities of a Design Contest. WG approval: 04-02-2021"@en ; + skos:prefLabel "Design contest regime term"@en . + +:DirectAwardTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcedureSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities of the award of a Contract without prior publication. Addtional Information: Direct award may refer to a previous Procedure and/or specific Lot(s). It may also refer to other justified situations whereby there is no previous Procedure. See Directive 2014/24/EU Article 32. WG Approval 22/11/2019"@en ; + skos:prefLabel "Direct award term"@en . + +:DirectContract a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Contract ; + skos:prefLabel "Direct contract"@en . + +:DynamicPurchaseSystemTechnique a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Technique ; + skos:definition "A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. WG approval 23/05/2023"@en ; + skos:prefLabel "Dynamic purchase system technique"@en . + +:DynamicPurchasingSystem a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. WG approval 23/05/2023"@en ; + skos:prefLabel "Dynamic purchasing system"@en . + +:EAuctionTechnique a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Technique ; + skos:definition "A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. Additional Information: This corresponds in eForms to BT-767 Electronic Auction . WG approval 20/07/2018"@en ; + skos:prefLabel "E auction technique"@en . + +:EconomicStandingSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :SelectionCriteriaSummary ; + skos:prefLabel "Economic standing summary"@en . + +:ElectronicSignature a owl:Class ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Electronic signature"@en . + +:ElementChangeDescription a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ElementDescription ; + skos:definition "Information about a specific field to be changed with regard to a previous Notice."@en ; + skos:editorialNote "Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms."@en ; + skos:prefLabel "Element change description"@en . + +:ElementConfidentialityDescription a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ElementDescription ; + skos:definition "Information about a specific field not intended for publication. Additional Information: In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided."@en ; + skos:editorialNote "This does not work in practice."@en ; + skos:prefLabel "Element confidentiality description"@en . + +:ElementModificationDescription a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ElementDescription ; + skos:definition "Information about a specific field to be changed with regard to the Modification Of a Contract."@en ; + skos:prefLabel "Element modification description"@en . + +:EmploymentInformationProvider a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AuxiliaryParty ; + skos:definition "A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions."@en ; + skos:prefLabel "Employment information provider"@en . + +:EnvironmentalProtectionInformationProvider a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AuxiliaryParty ; + skos:definition "A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection."@en ; + skos:prefLabel "Environmental protection information provider"@en . + +:ExclusionGround a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :QualificationCriterion ; + skos:definition "Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. Additional Information: This corresponds in eForms to BG-701 Exclusion Grounds. WG approval 31/10/2018"@en ; + skos:prefLabel "Exclusion ground"@en . + +:ExclusionGroundsSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :QualificationCriteriaSummary ; + skos:prefLabel "Exclusion grounds summary"@en . + +:ExpressionOfInterest a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. WG approval 13/04/2021"@en ; + skos:prefLabel "Expression of interest"@en . + +:FrameworkAgreement a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Contract ; + skos:definition "An agreement between one or more Contracting Authorities and one or more Economic Operators. Additional Information: When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. WG approval 18/05/2021"@en ; + skos:prefLabel "Framework agreement"@en . + +:FrameworkAgreementTechnique a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Technique ; + skos:definition "Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. WG approval 18/05/2021"@en ; + skos:prefLabel "Framework agreement technique"@en . + +:FrameworkAgreementTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm, + :ProcedureSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities in a Framework Agreement."@en ; + skos:prefLabel "Framework agreement term"@en . + +:Fund a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A financial resource used to support the Procurement. Additional Information: In the context of EU, Funds can be divided into programmes, actions and projects. Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. WG Approved 14/05/2019"@en ; + skos:prefLabel "Fund"@en . + +:GreenProcurement a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :StrategicProcurement ; + skos:definition "Approach whereby Buyers seek to procure with a reduced Environmental Impact. Additional Information: The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf An instance of the class GreenProcurement is represented in eForms with the code \"env-imp\" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf"@en ; + skos:prefLabel "Green procurement"@en . + +:IndefiniteDuration a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Duration ; + skos:prefLabel "Indefinite duration"@en . + +:InnovativeProcurement a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :StrategicProcurement ; + skos:definition "An instance of the class InnovativeProcurement is represented in eForms with the code \"inn-pur\" defined in the codelist Strategic-Procurement. Research (21/01/2020): Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions Additional Information: ‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; See: Directive 2014/24 Articles: 2, 26 (3), 31, 67 (2.a) Question: Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?"@en ; + skos:prefLabel "Innovative procurement"@en . + +:JuryMember a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:prefLabel "Jury member"@en . + +:LeadBuyer a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Buyer ; + skos:definition "A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. WG agreement: 2022-11-22"@en ; + skos:prefLabel "Lead buyer"@en . + +:Lot a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementObject ; + skos:definition "A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. WG approval 12/09/2018"@en ; + skos:prefLabel "Lot"@en . + +:LotAwardDecision a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AwardDecision ; + skos:definition "Result concerning the Lot attributed by the Awarder."@en ; + skos:prefLabel "Lot award decision"@en . + +:LotGroup a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Combination of several Lots to conduct comparative assessment of the Tenders. Additional Information: The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. Pending of discussion with eForms Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined."@en ; + skos:prefLabel "Lot group"@en . + +:LotGroupAwardInformation a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ContextualProjection ; + skos:definition "Award information related to a given Group of Lots."@en ; + skos:prefLabel "Lot group award information"@en . + +:Mediator a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. WG approval 20/04/2021"@en ; + skos:prefLabel "Mediator"@en . + +:MiniCompetition a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. Additional Information: It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. WG approval 30/05/2023"@en ; + skos:prefLabel "Mini competition"@en . + +:MiniCompetitionAwardDecision a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AwardDecision ; + skos:definition "Result concerning the Mini-Competition attributed by the Awarder."@en ; + skos:prefLabel "Mini competition award decision"@en . + +:MonetaryValue a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A number of monetary units specified using a given unit of currency. Additional information: In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. WG approval 13/04/2021"@en ; + skos:prefLabel "Monetary value"@en . + +:MultipleStageProcedureTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities of Procedures carried out in several steps Additional Information: Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. WG Approval 15/04/2021"@en ; + skos:prefLabel "Multiple stage procedure term"@en . + +:NonDisclosureAgreementTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm ; + skos:definition "Conditions and stipulations"@en ; + skos:prefLabel "Non disclosure agreement term"@en . + +:Notice a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "Document published by the Buyer about market opportunities and results. WG Approval 23/05/2019"@en ; + skos:prefLabel "Notice"@en . + +:NoticeAwardInformation a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ContextSpecificDescription ; + skos:definition "Information about an Award Notice."@en ; + skos:prefLabel "Notice award information"@en . + +:NoticeChange a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :NoticeDescription ; + skos:definition "Information about a corrigendum in a Notice."@en ; + skos:prefLabel "Notice change"@en . + +:Offer a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. Additional information: A quotation is considered to be an Offer in the eProcurement Ontology. WG approval 09/02/2023"@en ; + skos:editorialNote "To be decided if this should stay in the core or in the Offer module"@en ; + skos:prefLabel "Offer"@en . + +:OfferIssuer a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :OfferingParty ; + skos:definition "The Role of an Agent that distributes an Offer. WG approval 09/02/2023"@en ; + skos:prefLabel "Offer issuer"@en . + +:OfflineAccessProvider a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent responsible for providing offline access to the Procurement Documents."@en ; + skos:prefLabel "Offline access provider"@en . + +:OpeningTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities of the opening of Tenders. Additional Information: The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. WG Approval 15/04/2021"@en ; + skos:prefLabel "Opening term"@en . + +:OrganisationGroup a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf org:Organization ; + skos:definition "Agreed collaboration of several Organisations. Additional Information: This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. WG approval 15/04/2021"@en ; + skos:prefLabel "Organisation group"@en . + +:OriginatorRequest a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "Document in which the Originator describes his needs. WG approval 09/02/2023"@en ; + skos:prefLabel "Originator request"@en . + +:OtherEntity a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :OfferingParty ; + skos:definition "Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria."@en ; + skos:prefLabel "Other entity"@en . + +:ParticipationCondition a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementCriterion ; + skos:definition "Criterion that describes a Requirement to take part in a procurement. WG approval 30/05/2023"@en ; + skos:prefLabel "Participation condition"@en . + +:ParticipationConditionsSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementCriteriaSummary ; + skos:prefLabel "Participation conditions summary"@en . + +:ParticipationRequestProcessor a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent responsible for processing Requests To Participate."@en ; + skos:prefLabel "Participation request processor"@en . + +:ParticipationRequestReceiver a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent responsible for receiving Requests To Participate."@en ; + skos:prefLabel "Participation request receiver"@en . + +:ParticipationRequestTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities of requesting participation in a Procedure."@en ; + skos:prefLabel "Participation request term"@en . + +:PaymentExecutor a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent responsible for executing the Payment."@en ; + skos:prefLabel "Payment executor"@en . + +:Period a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A time interval or a Duration. (WG approval 28/04/2020)"@en ; + skos:prefLabel "Period"@en . + +:PlannedProcurementPart a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementElement ; + skos:definition "A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. WG Approval 20/06/2019"@en ; + skos:editorialNote "if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject."@en ; + skos:prefLabel "Planned procurement part"@en . + +:Prize a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A reward given in a Contest. WG approval: 15/04/2021"@en ; + skos:prefLabel "Prize"@en . + +:Procedure a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementObject ; + skos:Label "this is a french label"@fr ; + skos:definition "A legally defined set of administrative activities conducted to conclude one or more Contracts. Additional Information The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). WG Approval 20/08/2019"@en ; + skos:editorialNote "this is a note"@en ; + skos:prefLabel "Procedure"@en, + "this is a romanina"@ro . + +:ProcedureTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcedureSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities of the Procedure. (WG approval 23/11/2018)"@en ; + skos:prefLabel "Procedure term"@en . + +:ProcessPlanningTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Term ; + skos:definition "Conditions and stipulations defining particularities of the unfolding of the Procurement Process."@en ; + skos:prefLabel "Process planning term"@en . + +:ProcurementDocument a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "Document produced or referred to by the Buyer to describe or determine elements of the Procurement. Additional information: Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. WG Approval 23/05/2019 17:08:30"@en ; + skos:prefLabel "Procurement document"@en . + +:ProcurementProcedureInformationProvider a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent responsible for providing additional information about the Procurement Procedure."@en ; + skos:prefLabel "Procurement procedure information provider"@en . + +:ProcurementProcessInformation a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ContextSpecificDescription ; + skos:definition "Information about the temporal unfolding or succession of Procurement Objects."@en ; + skos:prefLabel "Procurement process information"@en . + +:ProcurementServiceProvider a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "Role of a public or private body which offers ancillary purchasing activities on the market. Additional information \"Ancillary Purchasing Activities\" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; (b) advice on the conduct or design of public Procurement Procedures; (c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. WG Approval 24/03/2020"@en ; + skos:prefLabel "Procurement service provider"@en . + +:ProfessionalSuitabilitySummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :SelectionCriteriaSummary ; + skos:prefLabel "Professional suitability summary"@en . + +:Project a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A collaborative enterprise that is carefully planned to achieve a particular aim."@en ; + skos:prefLabel "Project"@en . + +:PublicationProvision a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :NoticeDescription ; + skos:definition "Information about fields not intended for publication. Additional Information: The non-published information may become available at a later date and may differ from one element to another within a given Document. Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. WG Approval 16/05/2019"@en ; + skos:prefLabel "Publication provision"@en . + +:PurchaseContract a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Contract ; + skos:definition "A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract."@en ; + skos:prefLabel "Purchase contract"@en . + +:Purpose a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "The description of the objectives related to a Procurement. Additional information: The description of the objectives includes the Subject Matter and Quantities. The quantification of the objectives related to a procurement. To be re-reviewed by the WG the soonest. (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) The old definition read as follows: The description of the objectives related to a procurement. (WG approval 05/12/2018)"@en ; + skos:prefLabel "Purpose"@en . + +:Quantity a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A counted number of non-monetary units possibly including fractions."@en ; + skos:prefLabel "Quantity"@en . + +:RequestForClarification a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "A demand for elucidation of received information. Additional Information: Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. WG approval 20/04/2021"@en ; + skos:prefLabel "Request for clarification"@en . + +:RequestForParticipation a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "Application of an Economic Operator to be included in a Procurement Procedure. WG approval: 20/04/2021"@en ; + skos:prefLabel "Request for participation"@en . + +:ReviewDecision a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ReviewObject ; + skos:definition "Information about Review Decisions."@en ; + skos:prefLabel "Review decision"@en . + +:ReviewIrregularitySummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :StatisticalInformation ; + skos:definition "Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). Additional information: This class corresponds in eForms to BG-613 Buyer Review Requests."@en ; + skos:prefLabel "Review irregularity summary"@en . + +:ReviewProcedureInformationProvider a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent who is providing more information on the time limits for review Procedures."@en ; + skos:prefLabel "Review procedure information provider"@en . + +:ReviewRequest a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ReviewObject ; + skos:definition "Information about requests to review procedures."@en ; + skos:prefLabel "Review request"@en . + +:ReviewRequestSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :StatisticalInformation ; + skos:definition "Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. Additional information: This class corresponds in eForms to BG-612 Buyer Review Summary."@en ; + skos:prefLabel "Review request summary"@en . + +:ReviewRequester a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :OfferingParty ; + skos:definition "Role of an Agent who requests the review of a (Procurement) Procedure. WG Approval 23/10/2021"@en ; + skos:prefLabel "Review requester"@en . + +:Reviewer a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. Additional Information: Any Organisation or Person may request a review of a Procurement Procedure. WG approval: 20/04/2021"@en ; + skos:prefLabel "Reviewer"@en . + +:SecurityClearanceTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm ; + skos:definition "Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. Additional information: This corresponds in eForms to BT-578, BT-78, BT-732 . WG approval 20/06/2023"@en ; + skos:prefLabel "Security clearance term"@en . + +:SelectedCandidateList a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Record of Candidates admitted to take part in award phases of procurements. WG approval 30/05/2023"@en ; + skos:prefLabel "Selected candidate list"@en . + +:SelectionCriterion a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :QualificationCriterion ; + skos:definition "Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. Additional Information: Selection criteria may relate to: (a) suitability to pursue the professional activity; (b) economic and financial standing; (c) technical and professional ability WG approval 31/10/2018"@en ; + skos:prefLabel "Selection criterion"@en . + +:SelectionEvaluationTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :EvaluationTerm ; + skos:definition "Conditions and stipulations defining particularities of the evaluation of Selection Criteria."@en ; + skos:prefLabel "Selection evaluation term"@en . + +:SocialProcurement a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :StrategicProcurement ; + skos:definition "An instance of the class SocialProcurement is represented in eForms with the code \"soc-obj\" defined in the codelist Strategic-Procurement. Research (21/01/2020): Socially Responsible Public Procurement (SRPP): ‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en See Article 18 and Annex X Directive 2014/24."@en ; + skos:prefLabel "Social procurement"@en . + +:SpecificDuration a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Duration ; + skos:prefLabel "Specific duration"@en . + +:SubcontractTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ContractSpecificTerm ; + skos:definition "A concept to describe the main information regarding the share of parts of the Contract to third parties."@en ; + skos:prefLabel "Subcontract term"@en . + +:SubcontractingEstimate a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Estimate ; + skos:definition "Information on the approximation of the foreseen Subcontracting."@en ; + skos:prefLabel "Subcontracting estimate"@en . + +:Subcontractor a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :OfferingParty ; + skos:definition "A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. Additional information For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. When modelling ESPD we well analyze whether we need or not a Role named \"relied upon\". WG approval 05/08/2021"@en ; + skos:prefLabel "Subcontractor"@en . + +:SubmissionStatisticalInformation a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :StatisticalInformation ; + skos:definition "Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023"@en ; + skos:editorialNote "Check definitions for all concepts and relations."@en ; + skos:prefLabel "Submission statistical information"@en . + +:SubmissionTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm, + :ProcedureSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities of submitting Documents to the Buyer. Additional Information: These Documents can be Tenders, Request To Participate and expressions of interest. WG Approval 14/07/2020"@en ; + skos:prefLabel "Submission term"@en . + +:System a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf foaf:Agent ; + skos:definition "Software application used for performing Procurement activities. WG Approval 28/04/2020"@en ; + skos:prefLabel "System"@en . + +:TaxInformationProvider a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AuxiliaryParty ; + skos:definition "A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes."@en ; + skos:prefLabel "Tax information provider"@en . + +:TechnicalAbilitySummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :SelectionCriteriaSummary ; + skos:prefLabel "Technical ability summary"@en . + +:Tender a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. (WG approval 03/05/2022)"@en ; + skos:prefLabel "Tender"@en . + +:TenderAwardOutcome a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ContextualProjection ; + skos:definition "Result concerning the Tender attributed by the Awarder."@en ; + skos:prefLabel "Tender award outcome"@en . + +:TenderGroup a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Specific Offer in response to a Lot Group. Additional Information: This class is generally used to provide the Monetary Value in response to a Lot Group."@en ; + skos:editorialNote "should this be moved to document?"@en ; + skos:prefLabel "Tender group"@en . + +:TenderProcessor a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent responsible for processing Tenders."@en ; + skos:prefLabel "Tender processor"@en . + +:TenderReceiver a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent responsible for receiving Tenders."@en ; + skos:prefLabel "Tender receiver"@en . + +:Tenderer a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :OfferingParty ; + skos:definition "A Role of an Agent that has submitted a Tender. Additional Information: A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. WG approval 05/08/2021"@en ; + skos:prefLabel "Tenderer"@en . + +:Winner a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :OfferingParty ; + skos:definition "A Role of an Agent to whom a Lot is awarded. WG approval 05/08/2021 (revised 26/10/2021)"@en ; + skos:prefLabel "Winner"@en . + +:actsOnBehalfOf a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Represents. (epo:ProcurementServiceProvider -> epo:Buyer (+epo:actsOnBehalfOf))"@en ; + skos:prefLabel "Acts on behalf of"@en . + +:agreedByBuyer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Agreed by buyer"@en . + +:announcesAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces award decision"@en . + +:announcesCompletionOfContract a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces completion of contract"@en . + +:announcesContract a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces contract"@en . + +:announcesExclusionGround a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces exclusion ground"@en . + +:announcesLot a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces lot"@en . + +:announcesLotGroup a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces lot group"@en . + +:announcesLotGroupAwardInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces lot group award information"@en . + +:announcesNonPublishedElement a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating which parts of a document are not published. Additional Information: For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement))"@en ; + skos:prefLabel "Announces non published element"@en . + +:announcesNoticeAwardInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces notice award information"@en . + +:announcesPlannedProcurementPart a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces planned procurement part"@en . + +:announcesProcedure a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces procedure"@en . + +:announcesReviewObject a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces review object"@en . + +:announcesRole a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces role"@en . + +:announcesSelectionCriteria a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Announces selection criteria"@en . + +:answersAwardCriteria a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Answers award criteria"@en . + +:answersExclusionGround a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Answers exclusion ground"@en . + +:answersSelectionCriteria a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Answers selection criteria"@en . + +:associatedWith a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The document to which a document is associated. WGM 01/03/2022 (epo:Document -> epo:Document (+epo:associatedWith))"@en ; + skos:prefLabel "Associated with"@en . + +:bindsBuyer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Provides legal constraint on the Buyer. (epo:Contract -> epo:Buyer (+epo:bindsBuyer))"@en ; + skos:prefLabel "Binds buyer"@en . + +:bindsContractor a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Provides legal constraint on the Contractor. (epo:Contract -> epo:Contractor (+epo:bindsContractor))"@en ; + skos:prefLabel "Binds contractor"@en . + +:comprisesLotAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Incorporates LotAwardOutcome. (epo:AwardDecision -> epo:LotAwardDecision (+epo:comprisesLotAwardDecision))"@en ; + skos:prefLabel "Comprises lot award decision"@en . + +:comprisesMiniCompetitionAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Comprises mini competition award decision"@en . + +:comprisesTender a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Incorporates Tender. (epo:TenderGroup -> epo:Tender (+epo:comprisesTender))"@en ; + skos:prefLabel "Comprises tender"@en . + +:comprisesTenderAwardOutcome a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Incorporates TenderAwardOutcome. (epo:AwardDecision -> epo:TenderAwardOutcome (+epo:comprisesTenderAwardOutcome))"@en ; + skos:prefLabel "Comprises tender award outcome"@en . + +:concernsContract a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Concerns contract"@en . + +:concernsLot a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relates to Lot. (epo:ProcurementProcessInformation -> epo:Lot (+epo:concernsLot)) Relates to Lot. (epo:LotAwardDecision -> epo:Lot (+epo:concernsLot))"@en ; + skos:prefLabel "Concerns lot"@en . + +:concernsMiniCompetition a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Concerns mini competition"@en . + +:concernsOriginatorRequest a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Concerns originator request"@en . + +:concernsProcedure a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relates to Procedure. (epo:ProcurementProcessInformation -> epo:Procedure (+epo:concernsProcedure))"@en ; + skos:prefLabel "Concerns procedure"@en . + +:concernsReviewSummaryForLot a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relates to Lot review summary. Additional information: This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier. (epo:ReviewRequestSummary -> epo:Lot (+epo:concernsReviewSummaryForLot))"@en ; + skos:prefLabel "Concerns review summary for lot"@en . + +:concernsTender a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Concerns tender"@en . + +:conformsToLegalBasis a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The Notice was designed in accordance with the given legal basis. Additional Information: This Notice can be used for Procedures which do not have the same legal basis. This holds for standard forms. (epo:Notice -> at-voc:legal-basis (+epo:conformsToLegalBasis))"@en ; + skos:prefLabel "Conforms to legal basis"@en . + +:conformsToSpecificLegalBasis a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Conforms to specific legal basis"@en . + +:containsCandidate a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Contains candidate"@en . + +:containsModificationsOf a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information This relation shall be used between Instances of the SAME type/class. The \"modifying-instance\" can be minimally instantiated, carrying the fields/information that override the fields in the \"modified-instance\". This means that the \"modifying-instance\" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. (owl:Thing -> owl:Thing (+epo:containsModificationsOf))"@en ; + skos:prefLabel "Contains modifications of"@en . + +:contextualisedBy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The place of the AgentInRole in the procurement is expressed by a ProcurementObject. (epo:AgentInRole -> epo:ProcurementObject (+epo:contextualisedBy))"@en ; + skos:prefLabel "Contextualised by"@en . + +:definesBudgetProvider a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ProcedureTerm has a BudgetProvider. (epo:ProcedureTerm -> epo:BudgetProvider (+epo:definesBudgetProvider))"@en ; + skos:prefLabel "Defines budget provider"@en . + +:definesCatalogueProvider a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating an AccessTerm has a CatalogueProvider. (epo:AccessTerm -> epo:CatalogueProvider (+epo:definesCatalogueProvider))"@en ; + skos:prefLabel "Defines catalogue provider"@en . + +:definesCatalogueReceiver a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating an AccessTerm has a CatalogueReceiver. (epo:AccessTerm -> epo:CatalogueReceiver (+epo:definesCatalogueReceiver))"@en ; + skos:prefLabel "Defines catalogue receiver"@en . + +:definesContractDuration a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ContractTerm has a Duration. (epo:ContractTerm -> epo:Duration (+epo:definesContractDuration))"@en ; + skos:prefLabel "Defines contract duration"@en . + +:definesContractPeriod a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ContractTerm has a Period. (epo:ContractTerm -> epo:Period (+epo:definesContractPeriod))"@en ; + skos:prefLabel "Defines contract period"@en . + +:definesInformationProvider a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ProcedureTerm has an information provider. (epo:ProcedureTerm -> epo:AuxiliaryParty (+epo:definesInformationProvider))"@en ; + skos:prefLabel "Defines information provider"@en . + +:definesLotGroup a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ProcedureTerm has a LotGroup. (epo:ProcedureTerm -> epo:LotGroup (+epo:definesLotGroup))"@en ; + skos:prefLabel "Defines lot group"@en . + +:definesMediator a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ProcedureTerm has a Mediator. (epo:ProcedureTerm -> epo:Mediator (+epo:definesMediator))"@en ; + skos:prefLabel "Defines mediator"@en . + +:definesOfflineAccessProvider a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating an AccessTerm has an OfflineAccessProvider. (epo:AccessTerm -> epo:OfflineAccessProvider (+epo:definesOfflineAccessProvider))"@en ; + skos:prefLabel "Defines offline access provider"@en . + +:definesOpeningPlace a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The place where the tenders will be publicly opened. WG Approval 10-10-2019 (epo:OpeningTerm -> locn:Address (+epo:definesOpeningPlace))"@en ; + skos:prefLabel "Defines opening place"@en . + +:definesParticipationRequestProcessor a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor. (epo:ParticipationRequestTerm -> epo:ParticipationRequestProcessor (+epo:definesParticipationRequestProcessor))"@en ; + skos:prefLabel "Defines participation request processor"@en . + +:definesParticipationRequestReceiver a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver. (epo:ParticipationRequestTerm -> epo:ParticipationRequestReceiver (+epo:definesParticipationRequestReceiver))"@en ; + skos:prefLabel "Defines participation request receiver"@en . + +:definesPaymentExecutor a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ContractTerm has a PaymentExecutor. (epo:ContractTerm -> epo:PaymentExecutor (+epo:definesPaymentExecutor))"@en ; + skos:prefLabel "Defines payment executor"@en . + +:definesPlaceOfPerformance a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating the place of performance of a Contract. WG approval 21/03/2023 (epo:ContractTerm -> dct:Location (+epo:definesPlaceOfPerformance))"@en ; + skos:prefLabel "Defines place of performance"@en . + +:definesPrize a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a DesignContestRegimeTerm has a Prize. (epo:DesignContestRegimeTerm -> epo:Prize (+epo:definesPrize))"@en ; + skos:prefLabel "Defines prize"@en . + +:definesProcurementProcedureInformationProvider a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider. (epo:AccessTerm -> epo:ProcurementProcedureInformationProvider (+epo:definesProcurementProcedureInformationProvider))"@en ; + skos:prefLabel "Defines procurement procedure information provider"@en . + +:definesSubcontractingTerm a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a ContractTerm has a SubcontractingTerm. (epo:ContractTerm -> epo:SubcontractTerm (+epo:definesSubcontractingTerm))"@en ; + skos:prefLabel "Defines subcontracting term"@en . + +:definesTenderProcessor a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a SubmissionTerm has a TenderProcessor. (epo:SubmissionTerm -> epo:TenderProcessor (+epo:definesTenderProcessor))"@en ; + skos:prefLabel "Defines tender processor"@en . + +:definesTenderReceiver a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a SubmissionTerm has a TenderReceiver. (epo:SubmissionTerm -> epo:TenderReceiver (+epo:definesTenderReceiver))"@en ; + skos:prefLabel "Defines tender receiver"@en . + +:delegatesAncillaryActivitiesTo a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Entrusts ancillary purchasing activities to ProcurementServiceProvider. Additional Information: Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; (b) advice on the conduct or design of public procurement procedures; (c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned; (epo:Buyer -> epo:ProcurementServiceProvider (+epo:delegatesAncillaryActivitiesTo))"@en ; + skos:prefLabel "Delegates ancillary activities to"@en . + +:describesContractModification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes contract modification"@en . + +:describesLotCompletion a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes lot completion"@en . + +:describesLotGroup a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes lot group"@en . + +:describesMinimumLevelOfStandards a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes minimum level of standards"@en . + +:describesNotice a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes notice"@en . + +:describesObjectiveParticipationRules a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes objective participation rules"@en . + +:describesProfession a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes profession"@en . + +:describesProfessionRelevantLaw a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes profession relevant law"@en . + +:describesResultNotice a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes result notice"@en . + +:describesVerificationMethod a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes verification method"@en . + +:distributesOffer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Distributes offer"@en . + +:exposesChannel a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Exposes channel"@en . + +:exposesInvoiceeChannel a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Exposes invoicee channel"@en . + +:followsRulesSetBy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Follows rules set by"@en . + +:foreseesConcession a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Foresees concession"@en . + +:foreseesContractSpecificTerm a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Foresees contract specific term"@en . + +:foreseesProcurementObject a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating the instance of a Procurement Object that is planned. Additional Information: The properties of the Procurement Object that is foreseen should be read as foreseen properties. For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy. (epo:PlannedProcurementPart -> epo:ProcurementObject (+epo:foreseesProcurementObject))"@en ; + skos:prefLabel "Foresees procurement object"@en . + +:foreseesSubcontracting a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Foresees subcontracting"@en . + +:foreseesTechnique a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Foresees technique"@en . + +:fulfillsRequirement a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The requirement to which the concept meets. WG Approval 09/11/2021 (epo:GreenProcurement -> at-voc:environmental-impact (+epo:fulfillsRequirement)) The requirement to which the concept meets. WG Approval 09/11/2021 (epo:InnovativeProcurement -> at-voc:innovative-acquisition (+epo:fulfillsRequirement)) The requirement to which the concept meets. WG Approval 09/11/2021 (epo:SocialProcurement -> at-voc:social-objective (+epo:fulfillsRequirement))"@en ; + skos:prefLabel "Fulfills requirement"@en . + +:fulfillsStrategicProcurement a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Fulfills strategic procurement"@en . + +:hasAbnormallyLowTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. Additional Information The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has abnormally low tenders"@en . + +:hasAcceleratedProcedureJustification a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The reasons why the procedure is accelerated. Additional Information: A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. WG Approval 09/06/2020 (epo:Procedure)"@en ; + skos:prefLabel "Has accelerated procedure justification"@en . + +:hasAccessURL a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Location where the resource can be accessed. WG approval 07/04/2022 (epo:Document)"@en ; + skos:prefLabel "Has access u r l"@en . + +:hasAccessibilityDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date at which unpublished data shall be published. WG Approval 11/06/2020 (epo:ElementConfidentialityDescription)"@en ; + skos:prefLabel "Has accessibility date"@en . + +:hasActivityDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. However, in eForms there is the code \"other\" to cover undefined activities. For mapping to this eForms feature one could also use this property. (epo:Buyer)"@en ; + skos:prefLabel "Has activity description"@en . + +:hasAdditionalClassification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has additional classification"@en . + +:hasAdditionalContractNature a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional type of acquisition taken into consideration in the contract. WG Approval 11/06/2020 (epo:ContractTerm -> at-voc:contract-nature (+epo:hasAdditionalContractNature))"@en ; + skos:prefLabel "Has additional contract nature"@en . + +:hasAdditionalInformation a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:ProcurementObject) Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:Notice) Supplementary data about the instance of the concept. WG Approval 15/10/2019 (epo:ElementChangeDescription)"@en ; + skos:prefLabel "Has additional information"@en . + +:hasAdditionalInformationDeadline a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The time limit for requesting further information. Additional information: This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. This corresponds in eForms to BT-13 Additional Information Deadline. WG Approval 09/06/2020 (epo:AccessTerm)"@en ; + skos:prefLabel "Has additional information deadline"@en . + +:hasAdditionalNonAwardJustification a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Further justification for the non award . Additional information: This is generally used when the non award reason code is set to \"Other\". WG: 18/01/2022 (epo:AwardDecision)"@en ; + skos:prefLabel "Has additional non award justification"@en . + +:hasAddressURL a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has address u r l"@en . + +:hasAlias a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Acronym or alternative name of the Agent. WG Approval 25/03/2021 (foaf:Agent)"@en ; + skos:prefLabel "Has alias"@en . + +:hasAllegedIrregularityType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewRequest -> at-voc:irregularity-type (+epo:hasAllegedIrregularityType))"@en ; + skos:prefLabel "Has alleged irregularity type"@en . + +:hasAmount a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The predetermined monetary value charged in addition to the price. WG approval 26/07/2022 (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo-cat:hasAmount)) The predetermined monetary value charged in addition to the price. WG approval 26/07/2022 (epo-ord:TaxInformation -> epo:MonetaryValue (+epo-cat:hasAmount))"@en ; + skos:prefLabel "Has amount"@en . + +:hasAmountDueForPayment a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has amount due for payment"@en . + +:hasAmountValue a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The numeric value of the amount, including decimals. (epo:MonetaryValue)"@en ; + skos:prefLabel "Has amount value"@en . + +:hasApproximateFrameworkAgreementValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has approximate framework agreement value"@en . + +:hasAssociatedDocument a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has associated document"@en . + +:hasAwardCriteriaEvaluationFormula a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543 Award Criteria Complicated. (epo:AwardEvaluationTerm)"@en ; + skos:prefLabel "Has award criteria evaluation formula"@en . + +:hasAwardCriteriaOrderJustification a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The justification for only indicating the award criteria's order of importance, not their weighing. Additional Information: This corresponds in eForms to BT-733 Award Criteria Order Justification. (epo:AwardEvaluationTerm)"@en ; + skos:prefLabel "Has award criteria order justification"@en . + +:hasAwardCriteriaStatedInProcurementDocuments a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has award criteria stated in procurement documents"@en . + +:hasAwardCriterionType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Category of award criterion. (epo:AwardCriterion -> at-voc:award-criterion-type (+epo:hasAwardCriterionType))"@en ; + skos:prefLabel "Has award criterion type"@en . + +:hasAwardDateScheduled a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Planned date for the award decision. WG Approval 09/11/2021 (epo:ProcessPlanningTerm)"@en ; + skos:prefLabel "Has award date scheduled"@en . + +:hasAwardDecisionDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The official date of the award decision. Additional Information: This corresponds in eForms to BT-1451 Winner Decision Date. WG Approval 09/01/2020 (epo:AwardDecision)"@en ; + skos:prefLabel "Has award decision date"@en . + +:hasAwardRank a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. Additional Information: This corresponds in eForms to BT-171 Tender Rank. (epo:TenderAwardOutcome)"@en ; + skos:prefLabel "Has award rank"@en . + +:hasAwardStatus a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Indicates whether the lot is awarded, not awarded or still open. WG Approval 03/12/2019 (epo:AwardDecision -> at-voc:winner-selection-status (+epo:hasAwardStatus))"@en ; + skos:prefLabel "Has award status"@en . + +:hasAwardedEstimatedValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The estimated value that can be spent as provided by the Award Decision. Additional Information: This property is used for framework agreements and dynamic purchasing systems. Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. WG Approval 12/12/2019 (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasAwardedEstimatedValue))"@en ; + skos:editorialNote "Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract."@en ; + skos:prefLabel "Has awarded estimated value"@en . + +:hasAwardedValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The value of the procurement provided by the Award Decision. Additional Information: Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. WG Approval 10/12/2019 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasAwardedValue))"@en ; + skos:editorialNote "Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract."@en ; + skos:prefLabel "Has awarded value"@en . + +:hasBargainPrice a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. WG approval 23/05/2023 (epo:AwardDecision -> epo:MonetaryValue (+epo:hasBargainPrice))"@en ; + skos:prefLabel "Has bargain price"@en . + +:hasBaseQuantity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The quantity at which the net monetary value applies. (epo-cat:Price -> epo:Quantity (+epo-cat:hasBaseQuantity))"@en ; + skos:prefLabel "Has base quantity"@en . + +:hasBatchID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The identifier assigned to a specific batch of the produced Item. WG Approval 16/05/2023 (epo-cat:Batch -> adms:Identifier (+epo:hasBatchID))"@en ; + skos:prefLabel "Has batch i d"@en . + +:hasBeginning a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date and time on which this period begins. (epo:Period)"@en ; + skos:prefLabel "Has beginning"@en . + +:hasBeneficialOwner a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf))"@en ; + skos:prefLabel "Has beneficial owner"@en . + +:hasBroadPlaceOfPerformance a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Geopolitical zone where the contract can be executed. Additional Information Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). (epo:ContractTerm -> at-voc:other-place-service (+epo:hasBroadPlaceOfPerformance))"@en ; + skos:prefLabel "Has broad place of performance"@en . + +:hasBusinessSize a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The category of the business depending on number of employees and turnover. Additional information: See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. WG Approval 28/05/2020 (epo:Business -> at-voc:economic-operator-size (+epo:hasBusinessSize))"@en ; + skos:prefLabel "Has business size"@en . + +:hasBuyerCategoryDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A classification of buyers participating in a framework agreement. Additional Information: Buyers that can use the Framework Agreement not mentioned by name. For example, the classification \"all hospitals in the Tuscany region\" is used instead of naming each individual buyer. This corresponds in eForms to BT-111 Framework Buyer Categories. WG Approval 2019-05-06 (epo:FrameworkAgreementTerm)"@en ; + skos:prefLabel "Has buyer category description"@en . + +:hasBuyerItemID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "This refers to the identifier for the specific instance of the produced concept. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasBuyerItemID))"@en ; + skos:prefLabel "Has buyer item i d"@en . + +:hasBuyerLegalType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A category that indicates the right of an Organisation to play the role of a buyer. Additional Information: The category also effects the rules that the buyer has to abide to within the public procurement procedure. WG 07/09/2021 (org:Organization -> at-voc:buyer-legal-type (+epo:hasBuyerLegalType))"@en ; + skos:prefLabel "Has buyer legal type"@en . + +:hasBuyerLegalTypeDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Self-explanatory text about the Buyer Legal Type. Additional information: This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 (org:Organization)"@en ; + skos:prefLabel "Has buyer legal type description"@en . + +:hasBuyerProfile a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Website address where the buyer publishes information on its procurement procedures and general information. Additional information: This corresponds in the eForms to BT-508 Buyer Profile URL. WG approval 04/05/2018 (epo:Buyer)"@en ; + skos:prefLabel "Has buyer profile"@en . + +:hasCalculationMethod a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Formula for obtaining values. Additional Information: The possible values are monetary values, ranking scores, criterion weighting. WG Approval 25/05/2018 (epo:ConcessionEstimate)"@en ; + skos:prefLabel "Has calculation method"@en . + +:hasCandidateList a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has candidate list"@en . + +:hasCarrierConsignmentID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has carrier consignment i d"@en . + +:hasCatalogueLineValidity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has catalogue line validity"@en . + +:hasCertification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation to the proof of conformance. WG approval 30/05/2023 (foaf:Person -> epo-cat:Certificate (+epo:hasCertification)) Relation to the proof of conformance. WG approval 30/05/2023 (org:Organization -> epo-cat:Certificate (+epo:hasCertification))"@en ; + skos:prefLabel "Has certification"@en . + +:hasChangeDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Explanatory text about the instance of the concept. WG Approval 30/09/2019 (epo:ElementChangeDescription)"@en ; + skos:prefLabel "Has change description"@en . + +:hasChangeJustification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Code explaining the change. WG Approval 5/11/2019 (epo:ElementChangeDescription -> at-voc:change-corrig-justification (+epo:hasChangeJustification))"@en ; + skos:prefLabel "Has change justification"@en . + +:hasChangeReasonDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Explanatory text about why the element is altered. Additional information: This corresponds in eForms to BT-762 Change Reason Description. (epo:ElementChangeDescription)"@en ; + skos:prefLabel "Has change reason description"@en . + +:hasChargeableWeight a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has chargeable weight"@en . + +:hasCleanVehicles a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement)"@en ; + skos:prefLabel "Has clean vehicles"@en . + +:hasConcessionEstimatedValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has concession estimated value"@en . + +:hasConditionVerificationMethod a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has condition verification method"@en . + +:hasConfidentialityJustification a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A narrative explanation of why data is not published. Additional Information: This element is generally used when the non-publication-justification code chosen is \"other\". WG Approval 09/11/2021 (epo:ElementConfidentialityDescription)"@en ; + skos:prefLabel "Has confidentiality justification"@en . + +:hasConfirmedIrregularityType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type (epo:ReviewDecision -> at-voc:irregularity-type (+epo:hasConfirmedIrregularityType))"@en ; + skos:prefLabel "Has confirmed irregularity type"@en . + +:hasConsigneeConsignmentID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has consignee consignment i d"@en . + +:hasConsignmentDeclaredStatisticsValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has consignment declared statistics value"@en . + +:hasConsignmentFreeOnBoardValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has consignment free on board value"@en . + +:hasConsignmentInvoiceValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Declared amount of the Consignment. Additional Information: This is a logistics information needed for logistics, security measures, customs check, etc. (epo-ful:Consignment -> epo:MonetaryValue (+epo-ful:hasConsignmentInvoiceValue))"@en ; + skos:prefLabel "Has consignment invoice value"@en . + +:hasConstraint a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + rdfs:subPropertyOf cccev:hasRequirement ; + skos:prefLabel "Has constraint"@en . + +:hasContactName a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A short text by which a contact is known or referred to. WG Approval: 27/01/2022 (cpov:ContactPoint)"@en ; + skos:prefLabel "Has contact name"@en . + +:hasContactPointInRole a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has contact point in role"@en . + +:hasContractAmendment a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has contract amendment"@en . + +:hasContractConclusionDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date the contract was signed by the last signatory party. Additional Information: In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. This concept is not to be confused with the date of completion/end of the contract. This corresponds in eForms to BT-145 Contract Conclusion Date. WG Approval 09/01/2020 (epo:Contract)"@en ; + skos:prefLabel "Has contract conclusion date"@en . + +:hasContractNatureType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Subject of the acquisition. WG Approval 11/06/2020 (epo:ContractTerm -> at-voc:contract-nature (+epo:hasContractNatureType))"@en ; + skos:prefLabel "Has contract nature type"@en . + +:hasContractValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has contract value"@en . + +:hasCountryCode a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "(locn:Address -> at-voc:country (+epo:hasCountryCode))"@en ; + skos:prefLabel "Has country code"@en . + +:hasCountryOfBirth a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The country in which the Person was born. (cpv:Person -> at-voc:country (+epo:hasCountryOfBirth))"@en ; + skos:prefLabel "Has country of birth"@en . + +:hasCountryOfOrigin a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has country of origin"@en . + +:hasCrossBorderLaw a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The applicable law when buyers from different countries procure together within one procurement procedure. Additional Information: This corresponds in eForms to BT-09 Cross Border Law. (epo:ProcedureTerm)"@en ; + skos:prefLabel "Has cross border law"@en . + +:hasCurrency a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The identifier of the currency as in the standard code list used. (epo:MonetaryValue -> at-voc:currency (+epo:hasCurrency))"@en ; + skos:prefLabel "Has currency"@en . + +:hasCurrencyCodeListAgencyID a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Identifier of the agency that maintains the currency code list used. WG approval 13/04/2021 (epo:MonetaryValue)"@en ; + skos:prefLabel "Has currency code list agency i d"@en . + +:hasCurrencyCodeListAgencyName a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Name of the agency that maintains the currency code list used. WG approval 13/04/2021 (epo:MonetaryValue)"@en ; + skos:prefLabel "Has currency code list agency name"@en . + +:hasCurrencyCodeListID a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Concept scheme URI used for the currency code list. WG approval 13/04/2021 (epo:MonetaryValue)"@en ; + skos:prefLabel "Has currency code list i d"@en . + +:hasDPSScope a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Explanation as to whether a dps is used and by whom. Additional Information: This corresponds in eForms to BT-766 Dynamic Purchasing System. WG Approval 09/11/2021 (epo:DynamicPurchaseSystemTechnique -> at-voc:dps-usage (+epo:hasDPSScope))"@en ; + skos:prefLabel "Has d p s scope"@en . + +:hasDeadline a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The deadline by which the security clearance must be submitted to the buyer. WG Approval 12/09/2019 (epo:SecurityClearanceTerm)"@en ; + skos:prefLabel "Has deadline"@en . + +:hasDecisionDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date of the review decision. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. (epo:ReviewDecision)"@en ; + skos:prefLabel "Has decision date"@en . + +:hasDeclaredStatisticalValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has declared statistical value"@en . + +:hasDeliveryLocation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has delivery location"@en . + +:hasDeliveryPeriod a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has delivery period"@en . + +:hasDespatchedQuantity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Quantity despatched for delivered. (epo-ful:DespatchLine -> epo:Quantity (+epo-ful:hasDespatchedQuantity))"@en ; + skos:prefLabel "Has despatched quantity"@en . + +:hasDirectAwardJustification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. WG Approval 28/05/2020 (epo:DirectAwardTerm -> at-voc:direct-award-justification (+epo:hasDirectAwardJustification))"@en ; + skos:prefLabel "Has direct award justification"@en . + +:hasDispatchDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Date of transmission of a record to an organisation. WG Approval 12/05/2020 (epo:Document)"@en ; + skos:prefLabel "Has dispatch date"@en . + +:hasDocumentRestrictionJustification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "An explanation about the reasons why some procurement documents are restricted. Additional Information: This corresponds in eForms to BT-707 Documents Restricted Justification. WG Approval 09/03/2021 (epo:AccessTerm -> at-voc:communication-justification (+epo:hasDocumentRestrictionJustification))"@en ; + skos:prefLabel "Has document restriction justification"@en . + +:hasDocumentStatus a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "https://test-docs.peppol.eu/logistics/transport-execution/codelist/DocumentStatusCode/ (epo:Document -> at-voc-new:document-status (+epo:hasDocumentStatus))"@en ; + skos:prefLabel "Has document status"@en . + +:hasDocumentType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "https://docs.peppol.eu/poacc/upgrade-3/2022-Q4/codelist/UNCL1001_T01/ (epo:Document -> at-voc-new:document-type (+epo:hasDocumentType))"@en ; + skos:prefLabel "Has document type"@en . + +:hasDurationExtensionJustification a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The explanation of the reason why the framework agreement has an extended duration. Additional Information: This corresponds in eForms to BT-109 Framework Duration Justification. The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. WG Approval 26/09/2019 (epo:FrameworkAgreementTerm)"@en ; + skos:prefLabel "Has duration extension justification"@en . + +:hasEAuctionURL a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The internet address of the electronic auction. Additional Information: This corresponds in eForms to BT-123 Electronic Auction URL. (epo:SubmissionTerm)"@en ; + skos:prefLabel "Has e auction u r l"@en . + +:hasECataloguePermission a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The extent to which electronic catalogues may be used in tenders. WG Approval 03/10/2019 (epo:SubmissionTerm -> at-voc:permission (+epo:hasECataloguePermission))"@en ; + skos:prefLabel "Has e catalogue permission"@en . + +:hasEEAReceivedTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has e e a received tenders"@en . + +:hasEFormsSubtype a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has e forms subtype"@en . + +:hasEInvoicing a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Electronic means will be used for invoicing in the post-award process. Additional Information: This attribute is used for standard form mappings. WG Approval 12/09/2019 (epo:ContractTerm)"@en ; + skos:prefLabel "Has e invoicing"@en . + +:hasEInvoicingPermission a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has e invoicing permission"@en . + +:hasEOrdering a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Electronic means will be used for requesting and purchasing in the post-award process. WG Approval 12/09/2019 (epo:ContractTerm)"@en ; + skos:prefLabel "Has e ordering"@en . + +:hasEPayment a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Electronic means must be used for paying. WG Approval 09/11/2021 (epo:ContractTerm)"@en ; + skos:prefLabel "Has e payment"@en . + +:hasESenderDispatchDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. Additional Information: Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. WG approval 20/06/2023 (epo:Notice)"@en ; + skos:prefLabel "Has e sender dispatch date"@en . + +:hasESubmissionPermission a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The requirements as to what extent electronic submission is allowed. WG Approval 03/10/2019 (epo:SubmissionTerm -> at-voc:permission (+epo:hasESubmissionPermission))"@en ; + skos:prefLabel "Has e submission permission"@en . + +:hasEUReceivedTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The amount of tenders received from economic operators in other EU countries other than the country of the buyer. (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has e u received tenders"@en . + +:hasElectronicDigest a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has electronic digest"@en . + +:hasElectronicSignature a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has electronic signature"@en . + +:hasElectronicSubmission a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Transmission of tenders is possible by electronic means of communication. (epo:Tender)"@en ; + skos:prefLabel "Has electronic submission"@en . + +:hasElectronicTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Electronic Tender Lots received. WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has electronic tenders"@en . + +:hasElementChange a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + rdfs:subPropertyOf :hasElementDescription ; + skos:prefLabel "Has element change"@en . + +:hasElementConfidentiality a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + rdfs:subPropertyOf :hasElementDescription ; + skos:definition "Relation indication that the publication provision applies to a given field of a document. (epo:PublicationProvision -> epo:ElementConfidentialityDescription (+epo:hasElementConfidentiality))"@en ; + skos:prefLabel "Has element confidentiality"@en . + +:hasElementModification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + rdfs:subPropertyOf :hasElementDescription ; + skos:prefLabel "Has element modification"@en . + +:hasElementReference a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ReviewObject) Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementChangeDescription) Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. (epo:ElementModificationDescription)"@en ; + skos:prefLabel "Has element reference"@en . + +:hasEnd a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date and time at which this period ends. (epo:Period)"@en ; + skos:prefLabel "Has end"@en . + +:hasEndpointIdentifier a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has endpoint identifier"@en . + +:hasEntryIntoForceDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date on which the contract enters into force. Additional information: This is generally the date on which the fulfillment of the contract begins. This corresponds in eForms to WG approval 05/11/2019 (epo:Contract)"@en ; + skos:prefLabel "Has entry into force date"@en . + +:hasEstimatedBuyerConcessionRevenue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. Additional Information: For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. This corresponds to BT-160 in eForms. WG Approval 07/01/2020 (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedBuyerConcessionRevenue))"@en ; + skos:prefLabel "Has estimated buyer concession revenue"@en . + +:hasEstimatedContractNoticePublicationDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Foreseen date for publication of Contract Notice. Additional information: This corresponds in eForms BT-127 Future Notice. (epo:ProcessPlanningTerm)"@en ; + skos:prefLabel "Has estimated contract notice publication date"@en . + +:hasEstimatedDeliveryPeriod a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has estimated delivery period"@en . + +:hasEstimatedDuration a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a Contract has an estimated Duration. Additional Information When the Lot uses a Technique the contract estimated duration applies to the Technique. (epo:Contract -> epo:Duration (+epo:hasEstimatedDuration))"@en ; + skos:prefLabel "Has estimated duration"@en . + +:hasEstimatedInvitationToExpressInterestDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The estimated date of dispatch of the invitations to confirm interest. Additional Information: This corresponds in eForms to BT-631 Dispatch Invitation Interest. (epo:MultipleStageProcedureTerm)"@en ; + skos:prefLabel "Has estimated invitation to express interest date"@en . + +:hasEstimatedInvitationToTenderDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. Additional Information: This corresponds in eForms to BT-130 Dispatch Invitation Tender. WG Approval 01/10/2019 (epo:MultipleStageProcedureTerm)"@en ; + skos:prefLabel "Has estimated invitation to tender date"@en . + +:hasEstimatedPercentage a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The estimated proportion foreseen to be subcontracted. WG Approval 07/01/2020 (epo:SubcontractingEstimate)"@en ; + skos:prefLabel "Has estimated percentage"@en . + +:hasEstimatedTenderInvitationDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The planned date for the dispatch of the invitations to submit tenders. WG Approval 09/11/2021 (epo:ProcessPlanningTerm)"@en ; + skos:prefLabel "Has estimated tender invitation date"@en . + +:hasEstimatedTotalSubcontracts a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The estimated amount of work to be subcontracted in the contract resulting from the lot. WG Approval 09/11/2021 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has estimated total subcontracts"@en . + +:hasEstimatedUserConcessionRevenue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The estimated revenue coming from the use of the concession. Additional Information: Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. This corresponds to BT-162 in eForms. (epo:ConcessionEstimate -> epo:MonetaryValue (+epo:hasEstimatedUserConcessionRevenue))"@en ; + skos:prefLabel "Has estimated user concession revenue"@en . + +:hasEstimatedValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A forecast of the value of the procurement before competition. Additional Information: Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). WG Approval 05/12/2019 (epo:ProcurementElement -> epo:MonetaryValue (+epo:hasEstimatedValue))"@en ; + skos:prefLabel "Has estimated value"@en . + +:hasEvaluationMember a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has evaluation member"@en . + +:hasExpectedDeliveryTime a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The expected amount of time between the order and delivery of an item. WG approval 26/07/2022 (epo-cat:Price -> epo:Duration (+epo-cat:hasExpectedDeliveryTime))"@en ; + skos:prefLabel "Has expected delivery time"@en . + +:hasExternalSpecification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "URI reference to external item information or specifications, e.g. web address. (epo-cat:Item -> epo:Document (+epo-cat:hasExternalSpecification))"@en ; + skos:prefLabel "Has external specification"@en . + +:hasFax a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The fax number used to reach a person or an organisation. (cpov:ContactPoint)"@en ; + skos:prefLabel "Has fax"@en . + +:hasFinancialOfferValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The value offered by the Tenderer for a Lot. Additional Information: This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. This corresponds to BT-720 in eForms. (epo:Tender -> epo:MonetaryValue (+epo:hasFinancialOfferValue))"@en ; + skos:prefLabel "Has financial offer value"@en . + +:hasFixedValue a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed. (epo:AwardCriterion)"@en ; + skos:prefLabel "Has fixed value"@en . + +:hasFixedValueType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The method to interpret the fixed value as pertaining to a total or unit. WG Approval 17/09/2019 (epo:AwardCriterion -> at-voc:number-fixed (+epo:hasFixedValueType))"@en ; + skos:prefLabel "Has fixed value type"@en . + +:hasFollowupContract a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. WG Approval 29/08/2019 (epo:DesignContestRegimeTerm)"@en ; + skos:prefLabel "Has followup contract"@en . + +:hasFollowupContractInformation a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). WG Approval 03/09/2019 (epo:DesignContestRegimeTerm)"@en ; + skos:prefLabel "Has followup contract information"@en . + +:hasFormNumber a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has form number"@en . + +:hasFormType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A categorisation of the steps in which the Notice is used. WG Approval 12/05/2020 (epo:Notice -> at-voc:form-type (+epo:hasFormType))"@en ; + skos:prefLabel "Has form type"@en . + +:hasFormula a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543. (epo:ProcurementCriterion)"@en ; + skos:prefLabel "Has formula"@en . + +:hasFrameworkAgreementEstimatedValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "This refers to BT-660 in eForms. (epo:LotAwardDecision -> epo:MonetaryValue (+epo:hasFrameworkAgreementEstimatedValue))"@en ; + skos:prefLabel "Has framework agreement estimated value"@en . + +:hasFrameworkAgreementMaximumValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has framework agreement maximum value"@en . + +:hasFrameworkAgreementType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The form of framework agreement used in a procurement procedure. Addition information: A concept to distinguish the different types of framework agreement, which are: 1. Framework agreement without reopening of competition, 2. Framework agreement with reopening of competition, or 3. Framework agreement partly without reopening of competition. WG Approval 19/09/2019 (epo:FrameworkAgreementTerm -> at-voc:framework-agreement (+epo:hasFrameworkAgreementType))"@en ; + skos:prefLabel "Has framework agreement type"@en . + +:hasFreightForwarderConsignmentID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has freight forwarder consignment i d"@en . + +:hasFundProgramme a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has fund programme"@en . + +:hasGrossVolume a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has gross volume"@en . + +:hasGrossWeight a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has gross weight"@en . + +:hasGroupFrameworkAgreementMaximumValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "This corresponds to BT-156 in the eForms. (epo:LotGroupAwardInformation -> epo:MonetaryValue (+epo:hasGroupFrameworkAgreementMaximumValue))"@en ; + skos:prefLabel "Has group framework agreement maximum value"@en . + +:hasGroupLotEvaluationMethod a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Description of how lots and groups of lots are evaluated against one another in the procedure. (epo:ProcedureTerm)"@en ; + skos:prefLabel "Has group lot evaluation method"@en . + +:hasGroupType a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Form of collaboration agreement between organisations. Additional Information: This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. WG Approval 09/11/2021 (epo:OrganisationGroup)"@en ; + skos:prefLabel "Has group type"@en . + +:hasGuaranteeDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Information on the financial commitment required from the economic operator. Additional Information: 1. This information may include the amount and the way of delivering of the guarantee 2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. 3. Usual modalities are bonds, cheques, loans, other. WG Approval 21/07/20 (epo:SubmissionTerm)"@en ; + skos:prefLabel "Has guarantee description"@en . + +:hasHeight a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has height"@en . + +:hasHighestReceivedTenderValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Amount of the Tender with the highest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasHighestReceivedTenderValue))"@en ; + skos:prefLabel "Has highest received tender value"@en . + +:hasInadmissibleTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. Additional Information: Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has inadmissible tenders"@en . + +:hasInstanceReference a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The URI of a given class that is being referred to. (epo:ElementConfidentialityDescription)"@en ; + skos:prefLabel "Has instance reference"@en . + +:hasInternalIdentifier a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has internal identifier"@en . + +:hasInternetAddress a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The main web page used by the instance of the concept. WG Approval 01/06/2023 (org:Organization) The main web page used by the instance of the concept. WG Approval 01/06/2023 (cpov:ContactPoint)"@en ; + skos:prefLabel "Has internet address"@en . + +:hasIrregularityType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type (epo:ReviewIrregularitySummary -> at-voc:irregularity-type (+epo:hasIrregularityType))"@en ; + skos:prefLabel "Has irregularity type"@en . + +:hasItemCountryOfOrigin a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The source country of the product or service. Additional Information: The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. WG Approval 07/01/2020 The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country (epo:Tender -> at-voc:country (+epo:hasItemCountryOfOrigin))"@en ; + skos:prefLabel "Has item country of origin"@en . + +:hasItemStandardID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The identifier for the instance of the concept based on a standard scheme. Additional information: For example the GTIN scheme (Global Trade Item Number). WG Approval 24/02/2022 (epo-cat:Item -> adms:Identifier (+epo:hasItemStandardID))"@en ; + skos:prefLabel "Has item standard i d"@en . + +:hasJustification a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "An explanation about the reasons for using the concept. WG Approval 5/11/2019 (epo:DirectAwardTerm)"@en ; + skos:prefLabel "Has justification"@en . + +:hasLanguage a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Language in which the submitted information is to be expressed. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:language (+epo:hasLanguage))"@en ; + skos:prefLabel "Has language"@en . + +:hasLateSubmissionInformationDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A narrative text explaining the content of the economic operator information that can be submitted late. Additional Information This does not apply to requests for clarifications. (epo:SubmissionTerm)"@en ; + skos:prefLabel "Has late submission information description"@en . + +:hasLateSubmissionPermission a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Whether economic operator-related information can be supplemented even after the submission deadline. Additional Information This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:missing-info-submission (+epo:hasLateSubmissionPermission))"@en ; + skos:prefLabel "Has late submission permission"@en . + +:hasLaunchFrameworkAgreementMaximumValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has launch framework agreement maximum value"@en . + +:hasLaunchGroupFrameworkAgreementMaximumValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has launch group framework agreement maximum value"@en . + +:hasLegalBasis a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The legal basis under which the procurement procedure takes place. Additional Information: For example European Directives or Regulations, national laws etc. The recommended code list is the example for the legal basis at the European level. WG 04/04/2023 (epo:ProcurementObject -> at-voc:legal-basis (+epo:hasLegalBasis))"@en ; + skos:prefLabel "Has legal basis"@en . + +:hasLegalBasisDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has legal basis description"@en . + +:hasLegalFormRequirement a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The legal form to be taken by a Contractor. Additional Information: Generally, this is defined to cover the case where an Organisation Group is involved. Note that the codelist provided at national level should be used. (epo:ContractTerm)"@en ; + skos:prefLabel "Has legal form requirement"@en . + +:hasLegalFormType a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The classification of an Organisation according to legislation. Additional Information: Generally, this is defined for Tenderers who want to submit as an Organisation Group. Note that the codelist provided at national level should be used. (org:Organization)"@en ; + skos:prefLabel "Has legal form type"@en . + +:hasLegalIdentifier a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has legal identifier"@en . + +:hasLegalName a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The officially registered name of an organisation. WG Approval 10/01/2023 (org:Organization)"@en ; + skos:prefLabel "Has legal name"@en . + +:hasLegalRegime a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has legal regime"@en . + +:hasLength a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has length"@en . + +:hasLoadingLength a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has loading length"@en . + +:hasLongTitle a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has long title"@en . + +:hasLotAwardCombination a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The contracting authority reserves the right to award contracts combining lots or groups of lots. Additional Information: This property contains information about the Lots concerned. This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 (epo:ProcedureTerm)"@en ; + skos:prefLabel "Has lot award combination"@en . + +:hasLotReference a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has lot reference"@en . + +:hasLowestReceivedTenderValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Amount of the Tender with the lowest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation -> epo:MonetaryValue (+epo:hasLowestReceivedTenderValue))"@en ; + skos:prefLabel "Has lowest received tender value"@en . + +:hasMainActivity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The principal sectoral area in which an organisation operates. Additional information: The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). WG Approval 05/05/2020 (org:Organization -> at-voc:main-activity (+epo:hasMainActivity))"@en ; + skos:prefLabel "Has main activity"@en . + +:hasMainActivityDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Self-explanatory text about the Main Activity . Additional information: This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 (org:Organization)"@en ; + skos:prefLabel "Has main activity description"@en . + +:hasMainClassification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has main classification"@en . + +:hasMainFeature a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Main features of the procedure and information about where the full rules for the procedure can be found. Additional Information: This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds. (epo:Procedure)"@en ; + skos:prefLabel "Has main feature"@en . + +:hasManufacturerID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The manufacturer's identifier for the item. (epo-cat:Manufacturer -> adms:Identifier (+epo:hasManufacturerID))"@en ; + skos:prefLabel "Has manufacturer i d"@en . + +:hasManufacturerItemID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "This refers to the general identifier for the concept as defined by the manufacturer. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasManufacturerItemID))"@en ; + skos:prefLabel "Has manufacturer item i d"@en . + +:hasMaximumFrameworkAgreementAwardedValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. Additional information: The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. The Framework Agreements in a CAN are to be traced back and added to provide this value. This corresponds to the BT-118 in eForms. WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasMaximumFrameworkAgreementAwardedValue))"@en ; + skos:prefLabel "Has maximum framework agreement awarded value"@en . + +:hasMaximumLotSubmissionAllowed a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The total number of lots for which one Tenderer can submit Tenders. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 12/12/2018 (epo:ProcedureTerm)"@en ; + skos:prefLabel "Has maximum lot submission allowed"@en . + +:hasMaximumNumberOfCandidates a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Maximum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm)"@en ; + skos:prefLabel "Has maximum number of candidates"@en . + +:hasMaximumNumberOfLotsToBeAwarded a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The maximum number of lots for which contract(s) can be awarded to one tenderer. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG Approval 22/08/2019 (epo:ProcedureTerm)"@en ; + skos:prefLabel "Has maximum number of lots to be awarded"@en . + +:hasMaximumNumberOfRenewals a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The maximum number of times the contract can be renewed. Additional Information By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. (epo:ContractTerm)"@en ; + skos:prefLabel "Has maximum number of renewals"@en . + +:hasMaximumOrderQuantity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The maximum number of orderable units that can be ordered according to details provided in the catalogue line, such as price. (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMaximumOrderQuantity))"@en ; + skos:prefLabel "Has maximum order quantity"@en . + +:hasMaximumParticipantsNumber a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The maximum number of participants in the framework agreement. Additional Information: Maximum number of tenderers who may be awarded a contract within the framework agreement. The number is a positive integer. This corresponds in eForms to BT-113 Framework Maximum Participants Number. WG Approval 2019-02-05 (epo:FrameworkAgreementTerm)"@en ; + skos:prefLabel "Has maximum participants number"@en . + +:hasMaximumShare a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The maximum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 (epo:SubcontractTerm)"@en ; + skos:prefLabel "Has maximum share"@en . + +:hasMaximumTemperature a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has maximum temperature"@en . + +:hasMediumTenderPerLots a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Tenders from medium-sized enterprise. Additional Information: See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has medium tender per lots"@en . + +:hasMember a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has member"@en . + +:hasMinimumNumberOfCandidates a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Minimum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm)"@en ; + skos:prefLabel "Has minimum number of candidates"@en . + +:hasMinimumQuantityGuaranteedForDelivery a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The minimum quantity of an item that is guaranteed by the seller to be delivered. (epo-cat:CatalogueLine -> epo:Quantity (+epo-cat:hasMinimumQuantityGuaranteedForDelivery))"@en ; + skos:prefLabel "Has minimum quantity guaranteed for delivery"@en . + +:hasMinimumShare a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The minimum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 (epo:SubcontractTerm)"@en ; + skos:prefLabel "Has minimum share"@en . + +:hasMinimumSubcontractorsProposedObligation a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The minimum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 (epo:SubcontractTerm)"@en ; + skos:prefLabel "Has minimum subcontractors proposed obligation"@en . + +:hasMinimumTemperature a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has minimum temperature"@en . + +:hasModificationDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "An explanatory text about this context. Additional Information This corresponds in Standard forms to Field VII.2.1 in F20 This corresponds in eForms to BT-202 . WG Approval 5/11/2019 (epo:ElementModificationDescription)"@en ; + skos:prefLabel "Has modification description"@en . + +:hasModificationJustification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. (epo:ElementModificationDescription -> at-voc:modification-justification (+epo:hasModificationJustification)) Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. (epo:AmendedContract -> at-voc:modification-justification (+epo:hasModificationJustification))"@en ; + skos:prefLabel "Has modification justification"@en . + +:hasModificationReasonDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "An explanation about the reasons for using the concept. Additional Information This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. This corresponds in eForms to BT-201 . WG Approval 5/11/2019 (epo:ElementModificationDescription)"@en ; + skos:prefLabel "Has modification reason description"@en . + +:hasNationalProcedureRules a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has national procedure rules"@en . + +:hasNationality a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "(cpv:Person -> at-voc:country (+epo:hasNationality))"@en ; + skos:prefLabel "Has nationality"@en . + +:hasNetMonetaryValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has net monetary value"@en . + +:hasNetQuantity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The net quantity of the item that is contained in each consumable unit, excluding any packaging materials. (epo-cat:Item -> epo:Quantity (+epo-cat:hasNetQuantity))"@en ; + skos:prefLabel "Has net quantity"@en . + +:hasNetVolume a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has net volume"@en . + +:hasNetWeight a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has net weight"@en . + +:hasNoNegotiationNecessary a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. Additional information: See Article 29(4) of Directive 2014/24/EU. (epo:MultipleStageProcedureTerm)"@en ; + skos:prefLabel "Has no negotiation necessary"@en . + +:hasNonAccessibilityCriterionJustification a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Reason for not applying accessibility criteria. Additional information: This corresponds in eForma to BT-755 Accessibility Justification. WG Approval 05/03/2019 (epo:StrategicProcurement)"@en ; + skos:prefLabel "Has non accessibility criterion justification"@en . + +:hasNonAwardJustification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "On hold; Enumeration. (epo:AwardDecision -> at-voc:non-award-justification (+epo:hasNonAwardJustification))"@en ; + skos:prefLabel "Has non award justification"@en . + +:hasNonAwardedContractNumber a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The number the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 (epo:LotAwardDecision)"@en ; + skos:prefLabel "Has non awarded contract number"@en . + +:hasNonAwardedContractTitle a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The title the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 (epo:LotAwardDecision)"@en ; + skos:prefLabel "Has non awarded contract title"@en . + +:hasNonEEAReceivedTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The amount of tenders received from economic operators in non-EEA countries. WG Approval 12/12/2019 15:20:36 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has non e e a received tenders"@en . + +:hasNonEUReceivedTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The amount of tenders received from economic operators in non-EU countries. (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has non e u received tenders"@en . + +:hasNonElectronicSubmissionDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Textual explanation of how non-electronic information is to be presented. WG Approval 21/07/2020 (epo:SubmissionTerm)"@en ; + skos:prefLabel "Has non electronic submission description"@en . + +:hasNonElectronicSubmissionJustification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Reason for not accepting electronic information. WG Approval 21/07/2020 (epo:SubmissionTerm -> at-voc:communication-justification (+epo:hasNonElectronicSubmissionJustification))"@en ; + skos:prefLabel "Has non electronic submission justification"@en . + +:hasNonPublicationJustification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The reason why data is not published. WG Approval 11/06/2020 (epo:ElementConfidentialityDescription -> at-voc:non-publication-justification (+epo:hasNonPublicationJustification))"@en ; + skos:prefLabel "Has non publication justification"@en . + +:hasNoticePublicationNumber a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has notice publication number"@en . + +:hasNoticeType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has notice type"@en . + +:hasNotificationContentType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A categorisation of templates for sets of Procurement information to be conveyed in Notices. WG Approval 12/05/2020 (epo:Notice -> epo:notification-phases-content-types (+epo:hasNotificationContentType))"@en ; + skos:prefLabel "Has notification content type"@en . + +:hasNumberOfReviewRequests a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The number of requests the buyer received to review any of its decisions. (epo:ReviewRequest)"@en ; + skos:prefLabel "Has number of review requests"@en . + +:hasNumberOfTenderersInvited a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Number of economic operators invited to tender. Additional Information This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. WG Approval 01/12/2020 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has number of tenderers invited"@en . + +:hasNutsCode a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has nuts code"@en . + +:hasOJSIssueNumber a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has o j s issue number"@en . + +:hasOJSType a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has o j s type"@en . + +:hasOfficialLanguage a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. WG Approval 03/10/2019 (epo:Document -> at-voc:language (+epo:hasOfficialLanguage))"@en ; + skos:prefLabel "Has official language"@en . + +:hasOpeningDateTime a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Date and time for the opening of tenders. WG Approval 12/03/2019 (epo:OpeningTerm)"@en ; + skos:prefLabel "Has opening date time"@en . + +:hasOpeningDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Further information about the opening of tenders. Additional Information For example, who may participate in the opening and whether any authorization is needed. WG Approval 12/03/2019 (epo:OpeningTerm)"@en ; + skos:prefLabel "Has opening description"@en . + +:hasOpeningURL a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The identifier of the address of the Opening of Tenders. WG Approval 09/11/2021 (epo:OpeningTerm)"@en ; + skos:prefLabel "Has opening u r l"@en . + +:hasOperatorLicenceID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has operator licence i d"@en . + +:hasOptions a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid). (epo:ContractTerm)"@en ; + skos:prefLabel "Has options"@en . + +:hasOptionsDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The motivation and details about additional purchases that the buyer may undertake while the contract is valid. WG Approval 09/04/2019 (epo:ContractTerm)"@en ; + skos:prefLabel "Has options description"@en . + +:hasOrderabableUnitFactorRate a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has orderabable unit factor rate"@en . + +:hasOrganisationUnitName a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The name of a subpart of an organisation. Additional Information: E.g. the relevant department of a large organisation. We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well. (org:Organization)"@en ; + skos:prefLabel "Has organisation unit name"@en . + +:hasOtherCountriesReceivedTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has other countries received tenders"@en . + +:hasOutstandingQuantity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has outstanding quantity"@en . + +:hasOverallCostAwardCriteriaPonderation a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The weighting given to cost. Additional Information: This weighting covers usually all cost criteria against price or quality criteria. (epo:AwardEvaluationTerm)"@en ; + skos:prefLabel "Has overall cost award criteria ponderation"@en . + +:hasOverallPriceAwardCriteriaPonderation a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The weighting given to price. Additional Information: This weighting covers usually all price criteria against cost or quality criteria. (epo:AwardEvaluationTerm)"@en ; + skos:prefLabel "Has overall price award criteria ponderation"@en . + +:hasOverallQualityAwardCriteriaPonderation a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The weighting given to quality. Additional Information: This weighting covers usually all quality criteria against price or cost criteria. (epo:AwardEvaluationTerm)"@en ; + skos:prefLabel "Has overall quality award criteria ponderation"@en . + +:hasParticipationPayment a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Details on payments to participants WG Approval 09/11/2021 (epo:DesignContestRegimeTerm)"@en ; + skos:prefLabel "Has participation payment"@en . + +:hasPaymentArrangement a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Information about financial clauses that will govern some economic aspects of the execution of the contract. Additional Information: These clauses usually refer to financial and payment provisions. This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. WG Pending of discussion with eForms (epo:ContractTerm)"@en ; + skos:prefLabel "Has payment arrangement"@en . + +:hasPaymentValueDiscrepancyJustification a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has payment value discrepancy justification"@en . + +:hasPerformanceConditions a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The particular conditions and additional information related to the execution of the contract. Additional Information: For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. WG approval 15-01-2019 (epo:ContractTerm)"@en ; + skos:prefLabel "Has performance conditions"@en . + +:hasPerformingStaffQualificationInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BT-79. (epo:ProcurementCriterion -> at-voc:requirement-stage (+epo:hasPerformingStaffQualificationInformation))"@en ; + skos:prefLabel "Has performing staff qualification information"@en . + +:hasPlaceOfPerformanceAdditionalInformation a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Further details on the location of the execution of the contract. WG Approval 30/07/2019 (epo:ContractTerm)"@en ; + skos:prefLabel "Has place of performance additional information"@en . + +:hasPlannedDuration a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has planned duration"@en . + +:hasPlannedPeriod a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has planned period"@en . + +:hasPreferredPublicationDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date the buyer would like to have the record made publicly available. Additional Information: This corresponds in eForms to BT-738 Notice Publication Date Preferred. WG Approval 12/05/2020 (epo:PublicationProvision)"@en ; + skos:prefLabel "Has preferred publication date"@en . + +:hasPrepaidAmount a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has prepaid amount"@en . + +:hasPreviousVersionOfElementReference a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Reference to the class instance in the previous version of the notice, which was changed. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. (epo:ElementChangeDescription)"@en ; + skos:prefLabel "Has previous version of element reference"@en . + +:hasPriceValidity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has price validity"@en . + +:hasPrimaryContactPoint a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has primary contact point"@en . + +:hasPrizeRank a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The position of the prize (e.g. first place, second place) in a design contest list of prizes. WG Approval 29/08/2019 (epo:Prize)"@en ; + skos:prefLabel "Has prize rank"@en . + +:hasPrizeValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. Additional Information: This corresponds to BT-644 in eForms. WG Approval 29/08/2019 (epo:Prize -> epo:MonetaryValue (+epo:hasPrizeValue))"@en ; + skos:prefLabel "Has prize value"@en . + +:hasProcedureType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Identification of the Procedure used. WG Approval 09/06/2020 (epo:Procedure -> at-voc:procurement-procedure-type (+epo:hasProcedureType))"@en ; + skos:prefLabel "Has procedure type"@en . + +:hasProcurementClassification a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has procurement classification"@en . + +:hasProcurementDocumentChangeDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date and time of the change. Additional information: This corresponds in eForms to BT-719 Change Procurement Documents Date WG Approval 5/11/2019 (epo:ElementChangeDescription)"@en ; + skos:prefLabel "Has procurement document change date"@en . + +:hasProcurementHighestReceivedTenderValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The highest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementHighestReceivedTenderValue))"@en ; + skos:prefLabel "Has procurement highest received tender value"@en . + +:hasProcurementLowestReceivedTenderValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The lowest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986. (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasProcurementLowestReceivedTenderValue))"@en ; + skos:prefLabel "Has procurement lowest received tender value"@en . + +:hasProcurementScopeDividedIntoLot a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has procurement scope divided into lot"@en . + +:hasPropertyReference a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The URI of a given attribute (property) that is being referred to. (epo:ElementConfidentialityDescription)"@en ; + skos:prefLabel "Has property reference"@en . + +:hasPublicAccessURL a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Web page where the procurement documents can be downloaded. Additional Information: This corresponds in the eForms to BT-15 Documents URL. WG Approval 09/03/2021 (epo:AccessTerm)"@en ; + skos:prefLabel "Has public access u r l"@en . + +:hasPublicationDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Date of formal public issuance of the document. WG approval 20/06/2023 (epo:Document)"@en ; + skos:prefLabel "Has publication date"@en . + +:hasPurpose a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating a procurement part has a puropse. (epo:ProcurementObject -> epo:Purpose (+epo:hasPurpose))"@en ; + skos:prefLabel "Has purpose"@en . + +:hasQualificationCondition a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has qualification condition"@en . + +:hasQualificationSystemDuration a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has qualification system duration"@en . + +:hasQualificationSystemRenewalDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has qualification system renewal description"@en . + +:hasQualifiedValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Qualified value of the property, which is defined in a classification scheme. Additional Information: For example, the (0173-1#02-AAA026#007) drilling diameter of an item has value of 12 inches. WG approval 28/07/2022 (epo-cat:ItemProperty -> epo:Quantity (+epo-cat:hasQualifiedValue))"@en ; + skos:prefLabel "Has qualified value"@en . + +:hasQuantity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has quantity"@en . + +:hasQuantityThreshold a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has quantity threshold"@en . + +:hasQuantityValue a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The numeric value of the quantity, including decimals. (epo:Quantity)"@en ; + skos:prefLabel "Has quantity value"@en . + +:hasReceiptDeadline a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The time limit for receiving submissions. Additional Information This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. This attribute should be used for standard forms mappings. WG Approval 21/07/2020 (epo:SubmissionTerm)"@en ; + skos:prefLabel "Has receipt deadline"@en . + +:hasReceiptExpressionDeadline a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Time limit for receipt of expressions of interest. Pending of review by the WG (epo:SubmissionTerm)"@en ; + skos:prefLabel "Has receipt expression deadline"@en . + +:hasReceiptParticipationRequestDeadline a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has receipt participation request deadline"@en . + +:hasReceiptPreliminaryMarketConsultationDeadline a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has receipt preliminary market consultation deadline"@en . + +:hasReceiptTenderDeadline a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has receipt tender deadline"@en . + +:hasReceivedMicroTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The amount of tenders received from a micro enterprise. Additional Information: See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has received micro tenders"@en . + +:hasReceivedParticipationRequests a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The amount of applications to participate from economic operators. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has received participation requests"@en . + +:hasReceivedSmallTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Tenders from small enterprise. Additional Information: See Commission Recommendation 2003/361/EC. (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has received small tenders"@en . + +:hasReceivedSubmissionType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has received submission type"@en . + +:hasReceivedTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The total amount of tenders received. WG Approval 12/12/2019 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has received tenders"@en . + +:hasReceptionDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Notes: Date when a record is acknowledged by an organisation. WG Approval 12/05/2020 (epo:Document)"@en ; + skos:prefLabel "Has reception date"@en . + +:hasRecurrenceDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Any additional information about the recurrence of the Procurement. Additional Information: For example estimated timing of the Procedure. This corresponds in eForms to BT-95 Recurrence Description. (WG approval 2019-01-16) (epo:ProcurementObject)"@en ; + skos:prefLabel "Has recurrence description"@en . + +:hasRegistrationCountry a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has registration country"@en . + +:hasRemedyValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BT-793 Review Remedy Value. (epo:ReviewDecision -> epo:MonetaryValue (+epo:hasRemedyValue))"@en ; + skos:prefLabel "Has remedy value"@en . + +:hasRenewalDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Any other information about the renewal(s). WG approval 16/04/2019 (epo:ContractTerm)"@en ; + skos:prefLabel "Has renewal description"@en . + +:hasRequestDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date when the review request was submitted. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. (epo:ReviewRequest)"@en ; + skos:prefLabel "Has request date"@en . + +:hasReservedExecution a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has reserved execution"@en . + +:hasReservedProcurement a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 (epo:ParticipationCondition -> at-voc:reserved-procurement (+epo:hasReservedProcurement)) Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 (epo:ParticipationConditionsSummary -> at-voc:reserved-procurement (+epo:hasReservedProcurement))"@en ; + skos:prefLabel "Has reserved procurement"@en . + +:hasRestrictedAccessURL a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The internet address with information on accessing the restricted (part of the) procurement document. Additional Information: This corresponds in eForms to BT-615 Documents Restricted URL. (epo:AccessTerm)"@en ; + skos:prefLabel "Has restricted access u r l"@en . + +:hasReviewBodyType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has review body type"@en . + +:hasReviewDecisionType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BT-790 Review Decision Type. (epo:ReviewDecision -> at-voc:review-decision-type (+epo:hasReviewDecisionType))"@en ; + skos:prefLabel "Has review decision type"@en . + +:hasReviewIrregularityCount a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The number of requests for a given irregularity. Additional information: This attribute corresponds in eForms to BT-635 Buyer Review Requests Count. (epo:ReviewIrregularitySummary)"@en ; + skos:prefLabel "Has review irregularity count"@en . + +:hasReviewIrregularitySummary a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BG-613 Buyer Review Requests (epo:ReviewRequestSummary -> epo:ReviewIrregularitySummary (+epo:hasReviewIrregularitySummary))"@en ; + skos:prefLabel "Has review irregularity summary"@en . + +:hasReviewRequestFee a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BT-795 Review Request Fee. (epo:ReviewRequest -> epo:MonetaryValue (+epo:hasReviewRequestFee))"@en ; + skos:prefLabel "Has review request fee"@en . + +:hasReviewURL a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The internet address of the documents concerning the review instance. Additional information: This attribute corresponds in eForms to BT-794 Review URL. (epo:ReviewObject)"@en ; + skos:prefLabel "Has review u r l"@en . + +:hasRoundingAmount a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has rounding amount"@en . + +:hasSMEReceivedTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The amount of tenders received from micro, small and medium-sized enterprises. Additional Information: See Commission Recommendation 2003/361/EC. The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. WG Approval 05/03/2020 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has s m e received tenders"@en . + +:hasScheme a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The name of the identification scheme. (adms:Identifier)"@en ; + skos:prefLabel "Has scheme"@en . + +:hasSchemeVersion a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The version of the identification scheme. (adms:Identifier)"@en ; + skos:prefLabel "Has scheme version"@en . + +:hasSelectionCriteriaStatedInProcurementDocuments a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has selection criteria stated in procurement documents"@en . + +:hasSelectionCriteriaUsage a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional Information: This corresponds in eForms to BT-748 Selection Criteria Used. (epo:SelectionCriterion -> at-voc:usage (+epo:hasSelectionCriteriaUsage))"@en ; + skos:prefLabel "Has selection criteria usage"@en . + +:hasSelectionCriterionType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The classification of the selection criteria. Additional Information: This corresponds in eForms to BT-747 Selection Criteria Type. WG Approval 09/11/2021 (epo:SelectionCriterion -> at-voc:selection-criterion (+epo:hasSelectionCriterionType))"@en ; + skos:prefLabel "Has selection criterion type"@en . + +:hasSellerItemID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The general identifier for the concept as defined by the seller. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasSellerItemID))"@en ; + skos:prefLabel "Has seller item i d"@en . + +:hasSerialID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The identifier assigned to the specific instance of the produced concept. WG Approval 16/05/2023 (epo-cat:Item -> adms:Identifier (+epo:hasSerialID))"@en ; + skos:prefLabel "Has serial i d"@en . + +:hasServiceReservedToParticularProfession a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has service reserved to particular profession"@en . + +:hasStartDate a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has start date"@en . + +:hasStrategicProcurementDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Self-explanatory text about a concept. (epo:StrategicProcurement)"@en ; + skos:prefLabel "Has strategic procurement description"@en . + +:hasSubcontractingEstimatedValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The estimated value of a single subcontract. This relates to BT-553 in eForms. WG Approval 01/09/2020 (epo:SubcontractingEstimate -> epo:MonetaryValue (+epo:hasSubcontractingEstimatedValue))"@en ; + skos:prefLabel "Has subcontracting estimated value"@en . + +:hasSubcontractingInvolved a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "List of Subcontractors and the subject matter they cover are required. Additional Information: The tenderer will ned to supply this information in the tender. WG Approval 28/02/2019 (epo:SubcontractTerm)"@en ; + skos:prefLabel "Has subcontracting involved"@en . + +:hasSubcontractingObligation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The requirement the tender must meet with regard to subcontracting parts of the contract. WG Approval 09/11/2021 (epo:SubcontractTerm -> at-voc:subcontracting-obligation (+epo:hasSubcontractingObligation))"@en ; + skos:prefLabel "Has subcontracting obligation"@en . + +:hasSubcontractorsProposedAboveObligation a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The maximum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 (epo:SubcontractTerm)"@en ; + skos:prefLabel "Has subcontractors proposed above obligation"@en . + +:hasSubjectMatter a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Description of the share of the contract that is to be subcontracted. Additional infromation: This can be an aggregate of several subcontracts. WG Approval 09/11/2021 (epo:SubcontractingEstimate)"@en ; + skos:prefLabel "Has subject matter"@en . + +:hasSubmissionURL a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional Information: This corresponds to the eForms BT-18 Submission URL. This corresponds in eForms to BT-509 Organisation eDelivery Gateway. (epo:SubmissionTerm)"@en ; + skos:prefLabel "Has submission u r l"@en . + +:hasSuccessiveReduction a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. Additional information: This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. WG Approval 22/08/2019 (epo:MultipleStageProcedureTerm)"@en ; + skos:prefLabel "Has successive reduction"@en . + +:hasTaxIdentifier a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has tax identifier"@en . + +:hasTaxInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:editorialNote "Proposal to omit this link until we bring tax into ePO core because this does not appear in the data"@en ; + skos:prefLabel "Has tax information"@en . + +:hasTenderSubcontractingInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The information about subcontracting that must be indicated in the tender. WG Approval 10/10/2019 (epo:SubmissionTerm -> at-voc:subcontracting-indication (+epo:hasTenderSubcontractingInformation))"@en ; + skos:prefLabel "Has tender subcontracting information"@en . + +:hasTenderValidityPeriod a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The relation indicating until when a tender instance is applicable. (epo:SubmissionTerm -> epo:Period (+epo:hasTenderValidityPeriod))"@en ; + skos:prefLabel "Has tender validity period"@en . + +:hasThresholdType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The method to interpret the threshold value as minimum or a maximum. WG Approval 17/09/2019 (cccev:Constraint -> at-voc:number-threshold (+epo:hasThresholdType))"@en ; + skos:prefLabel "Has threshold type"@en . + +:hasThresholdValue a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The cut-off level for a given concept. Additional Information: This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold). (cccev:Constraint)"@en ; + skos:prefLabel "Has threshold value"@en . + +:hasTimePeriod a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "(epo:Period -> at-voc:timeperiod (+epo:hasTimePeriod))"@en ; + skos:prefLabel "Has time period"@en . + +:hasTotalAllowanceAmount a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has total allowance amount"@en . + +:hasTotalAwardedValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The awarded value of all lots announced in this notice, including options and renewals. Additional information: The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. The values of the individual lots announced in a CAN are to be traced back and added to provide this value. This corresponds to the BT-161 in eForms. WG Approval 03/12/2019 (epo:NoticeAwardInformation -> epo:MonetaryValue (+epo:hasTotalAwardedValue))"@en ; + skos:prefLabel "Has total awarded value"@en . + +:hasTotalChargeAmount a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has total charge amount"@en . + +:hasTotalGoodsItemQuantity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has total goods item quantity"@en . + +:hasTotalLineAmount a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has total line amount"@en . + +:hasTotalNumberOfComplainants a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. Additional information: This attribute corresponds in eForms to BT-712 Buyer Review Complainants WG Approval 11/04/2019 (epo:ReviewRequestSummary)"@en ; + skos:prefLabel "Has total number of complainants"@en . + +:hasTotalQuantity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The number of units required. Additional Information: The quantity needs to go along with the unit. (epo:Purpose -> epo:Quantity (+epo:hasTotalQuantity))"@en ; + skos:prefLabel "Has total quantity"@en . + +:hasTotalTaxExclusiveAmount a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has total tax exclusive amount"@en . + +:hasTotalTaxInclusiveAmount a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has total tax inclusive amount"@en . + +:hasTotalValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has total value"@en . + +:hasTotalVehicles a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement)"@en ; + skos:prefLabel "Has total vehicles"@en . + +:hasTraceID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has trace i d"@en . + +:hasTrackingID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has tracking i d"@en . + +:hasTransportHandlingUnitQuantity a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has transport handling unit quantity"@en . + +:hasURL a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The identifier of a resource. Additional Information For example: 1. The URL of the system from where to access the procurement documents; 2. The URL of the system for the submission of tender documents; 3. The URL of the system from where to download a tool to communicate with the Buyer; 4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) 5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; WG Approval 30/09/2019 (epo:Fund)"@en ; + skos:prefLabel "Has u r l"@en . + +:hasUUID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A universally unique identifier for an instance of this document. WG Approval 12/05/2020 (epo:Document -> adms:Identifier (+epo:hasUUID))"@en ; + skos:prefLabel "Has u u i d"@en . + +:hasUnitCode a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has unit code"@en . + +:hasUnitDescription a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A narrative explanation defining the units of items being counted Additional information: This could be for example individual items or pack or two. WG Approval 09/11/2021 (epo:Quantity)"@en ; + skos:prefLabel "Has unit description"@en . + +:hasUnofficialLanguage a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. WG Approval 03/10/2019 (epo:Document -> at-voc:language (+epo:hasUnofficialLanguage))"@en ; + skos:prefLabel "Has unofficial language"@en . + +:hasUnverifiedTenders a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). WG Approval 28/07/2020 (epo:SubmissionStatisticalInformation)"@en ; + skos:prefLabel "Has unverified tenders"@en . + +:hasUsage a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage (epo:Technique -> at-voc:usage (+epo:hasUsage))"@en ; + skos:prefLabel "Has usage"@en . + +:hasValidityPeriod a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 (epo:Technique -> epo:Period (+epo:hasValidityPeriod)) The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 (epo-cat:Certificate -> epo:Period (+epo:hasValidityPeriod))"@en ; + skos:prefLabel "Has validity period"@en . + +:hasVariantPermission a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The obligation or possibility for tenderers to submit variants or not. Additional Information: Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. Additional Information: Further conditions for submitting variant tenders are in the procurement documents. (epo:SubmissionTerm -> at-voc:permission (+epo:hasVariantPermission))"@en ; + skos:prefLabel "Has variant permission"@en . + +:hasVehicleID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has vehicle i d"@en . + +:hasVehicleSegmentID a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has vehicle segment i d"@en . + +:hasVersion a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A number that identifies a specific state of a document. WG approval: 18/11/2021 (epo:Document)"@en ; + skos:prefLabel "Has version"@en . + +:hasWeightValueType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "No definition. Waiting on CCCEV alignment. (epo:ProcurementCriterion -> at-voc:number-weight (+epo:hasWeightValueType))"@en ; + skos:prefLabel "Has weight value type"@en . + +:hasWidth a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has width"@en . + +:hasWithdrawalDate a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The date and time when the request for review was withdrawn. Additional information: This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date. (epo:ReviewRequest)"@en ; + skos:prefLabel "Has withdrawal date"@en . + +:hasWithdrawalReason a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The explanation for withdrawing the request for review. Additional information: This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons (epo:ReviewRequest)"@en ; + skos:prefLabel "Has withdrawal reason"@en . + +:hasZeroEmissionVehicles a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 (epo:GreenProcurement)"@en ; + skos:prefLabel "Has zero emission vehicles"@en . + +:implementsContract a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Implements contract"@en . + +:includesAccessibilityCriterion a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Explanation as to whether accessibility Criterion are used or not. WG Approval 09/11/2021 (epo:StrategicProcurement -> at-voc:accessibility (+epo:includesAccessibilityCriterion))"@en ; + skos:prefLabel "Includes accessibility criterion"@en . + +:includesTender a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This corresponds in eForms to BT-3202 Contract Tender Identifier. (epo:Contract -> epo:Tender (+epo:includesTender))"@en ; + skos:prefLabel "Includes tender"@en . + +:indicatesAwardToWinner a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Reveals the winner to whom the tender award outcome is attributed. (epo:TenderAwardOutcome -> epo:Winner (+epo:indicatesAwardToWinner))"@en ; + skos:prefLabel "Indicates award to winner"@en . + +:indicatesInvoiceeContactPoint a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Indicates invoicee contact point"@en . + +:indicatesPerformingStaffInformationRequirement a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Indicates performing staff information requirement"@en . + +:involvesProcurementDocument a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Involves procurement document"@en . + +:isAccelerated a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Statement about the fact that the procedure will be reduced due to a state of urgency. Additional Information This modifies the time limit for the receipt of requests to participate or the receipt of tenders. WG Approval 20/08/2019 (epo:Procedure)"@en ; + skos:prefLabel "Is accelerated"@en . + +:isAdvancedElectronicSignatureRequired a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. The submitted information is required to be signed electronically. Additional Information: Signature can be defined as \"data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. WG Approval 21/07/2020 (epo:SubmissionTerm)"@en ; + skos:prefLabel "Is advanced electronic signature required"@en . + +:isAppointedBy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is appointed by"@en . + +:isAssignedForEvaluationOf a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is assigned for evaluation of"@en . + +:isAwardedByCPB a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Procedure is awarded by a Central Purchasing Body. (epo:ProcedureTerm)"@en ; + skos:prefLabel "Is awarded by c p b"@en . + +:isBasedOnImplementingRegulation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Indicates under which regulation a notice is created. WG Acceptance 06/09/2022 (epo:Notice -> at-voc:legal-basis (+epo:isBasedOnImplementingRegulation))"@en ; + skos:prefLabel "Is based on implementing regulation"@en . + +:isBeneficialOwnerOf a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 (epo:Business <-> cpv:Person (+epo:hasBeneficialOwner +epo:isBeneficialOwnerOf))"@en ; + skos:prefLabel "Is beneficial owner of"@en . + +:isCalculatedOn a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:AllowanceChargeInformation -> epo:MonetaryValue (+epo:isCalculatedOn)) The monetary amount to which the multiplier factor is applied in calculating the amount of this allowance or charge. (epo-ord:TaxInformation -> epo:MonetaryValue (+epo:isCalculatedOn))"@en ; + skos:prefLabel "Is calculated on"@en . + +:isCompetitionTerminated a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "No further contracts will be awarded in this procedure. Additional Information: This can be instantiated in the post award phase. PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. This corresponds in eForms to BT-756 PIN Competition Termination. (epo:ProcurementProcessInformation)"@en ; + skos:prefLabel "Is competition terminated"@en . + +:isContractingEntity a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Role of entities, which: (a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. (b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. Additional Information The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. WG Approval 28/04/2020 (epo:Buyer)"@en ; + skos:prefLabel "Is contracting entity"@en . + +:isCoveredByGPA a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Specifies whether the Agreement on Government Procurement (GPA) applies. Additional information: The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. This corresponds in the e Forms to BT-115 GPA Coverage. WG Approval 15/10/2019 (epo:ProcurementObject)"@en ; + skos:prefLabel "Is covered by g p a"@en . + +:isDPSTerminated a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "End of the Dynamic Purchase System (DPS). Additional Information: This property can be used in the contract award notice even if no contracts are awarded. WG Approval 22/11/2019 (epo:ProcurementProcessInformation)"@en ; + skos:prefLabel "Is d p s terminated"@en . + +:isDesignContest a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "A competition which enables the buyer to acquire a plan or design via a jury. Additional information: Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering The contest may include or not the award of prizes; WG approval 04-02-2021 (epo:Procedure)"@en ; + skos:prefLabel "Is design contest"@en . + +:isEUInstitution a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is e u institution"@en . + +:isExecutedByProcurementServiceProvider a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is executed by procurement service provider"@en . + +:isFundedBy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Funding is provided either completely or partially by a Fund. Additional information: This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. (epo:ProcurementObject -> epo:Fund (+epo:isFundedBy))"@en ; + skos:prefLabel "Is funded by"@en . + +:isGuaranteeRequired a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The submitted information must include a financial commitment to be used in case of default. Additional Information: See the additional information provided in the definition of the 'Guarantee Description' element. WG Approval 21/07/20 (epo:SubmissionTerm)"@en ; + skos:prefLabel "Is guarantee required"@en . + +:isJointProcurement a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Multiple buyers procure together within the same procedure. Addition Information: In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . (epo:Procedure)"@en ; + skos:prefLabel "Is joint procurement"@en . + +:isJuryDecisionBinding a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Indicates whether the procuring entity is bound to apply the decision of the jury. (epo:DesignContestRegimeTerm)"@en ; + skos:prefLabel "Is jury decision binding"@en . + +:isListedCompany a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange rules or through law or enforceable means), which impose requirements to ensure adequate transparency of beneficial ownership. Additional Information: In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. WG Approval 21/11/2019 (epo:Business)"@en ; + skos:prefLabel "Is listed company"@en . + +:isMultipleTenderSubmissionAllowed a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Tenderers may submit more than one competing tenders. WG Approval 10/10/2019 (epo:SubmissionTerm)"@en ; + skos:prefLabel "Is multiple tender submission allowed"@en . + +:isNonDisclosureAgreementRequired a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is non disclosure agreement required"@en . + +:isOneLotOnlyAllowed a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Indicates whether tenders may be submitted for only one Lot. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 (epo:ProcedureTerm)"@en ; + skos:prefLabel "Is one lot only allowed"@en . + +:isOwnedByAgent a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is owned by agent"@en . + +:isProcurementDocumentChanged a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "One or more procurement documents have been changed. Additional information: This corresponds in eForms to BT-718 Change Procurement Documents WG Approval 05/11/2019 (epo:ElementChangeDescription)"@en ; + skos:prefLabel "Is procurement document changed"@en . + +:isProcurementDocumentRestricted a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The access to certain procurement documents is restricted. Additional Information: This corresponds in eForms to BT-14 Documents Restricted. WG Approval 10/10/2019 (epo:AccessTerm)"@en ; + skos:prefLabel "Is procurement document restricted"@en . + +:isRecurrent a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The Procurement being notified is likely to be included in another procedure in the foreseeable future. Additional Information: For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. This corresponds in eForms to BT-94 Recurrence. WG Approval 12/05/2020 (epo:ProcurementObject)"@en ; + skos:prefLabel "Is recurrent"@en . + +:isRenewalIndicator a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Indicates whether the contract is subject to a renewal clause. WG Approval 09/11/2021 (epo:ContractTerm)"@en ; + skos:prefLabel "Is renewal indicator"@en . + +:isResponsibilityOfBuyer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + rdfs:subPropertyOf :involvesBuyer ; + skos:definition "The buyer in charge of the procedure. Additional Information: In case there are multiple buyers, it may be the case that one or more buyers are in charge of the procedure. (epo:Procedure -> epo:Buyer (+epo:isResponsibilityOfBuyer))"@en ; + skos:prefLabel "Is responsibility of buyer"@en . + +:isSMESuitable a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The Lot is suitable for small and medium enterprises (SMEs). Additional Information This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. For example, number of employees and turnover are applicable to the definition of an SME. WG Approval 15/10/2019 (epo:ProcurementObject)"@en ; + skos:prefLabel "Is s m e suitable"@en . + +:isSecurityClearanceRequired a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is security clearance required"@en . + +:isSubjectToContractSpecificTerm a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is subject to contract specific term"@en . + +:isSubjectToGrouping a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is subject to grouping"@en . + +:isSubjectToLotSpecificTerm a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + rdfs:subPropertyOf :isSubjectToTerm ; + skos:prefLabel "Is subject to lot specific term"@en . + +:isSubjectToProcedureSpecificTerm a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + rdfs:subPropertyOf :isSubjectToTerm ; + skos:prefLabel "Is subject to procedure specific term"@en . + +:isSubmissionForAllLotsAllowed a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Indicates whether tenders may be submitted for all Lots. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) WG approval 23/08/2022 (epo:ProcedureTerm)"@en ; + skos:prefLabel "Is submission for all lots allowed"@en . + +:isSubmitedBy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relation indicating the submission of a tender by an economic operator. WG approval 18/05/2021 (epo:Tender -> epo:Tenderer (+epo:isSubmitedBy))"@en ; + skos:prefLabel "Is submited by"@en . + +:isSubmittedForLot a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is submitted for lot"@en . + +:isSubmittedForLotGroup a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is submitted for lot group"@en . + +:isSubordinatedToContract a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is subordinated to contract"@en . + +:isSupportedBy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is supported by"@en . + +:isToBeRelaunched a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Indicator of whether the procurement object is to be relaunched. Additional information: This can be instantiated in the post award phase. This corresponds in eForms to BT-634 Procurement Relaunch. WG Approval: 18/01/2022 (epo:ProcurementProcessInformation)"@en ; + skos:prefLabel "Is to be relaunched"@en . + +:isUsedForCandidateRestriction a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. Additional Information: This property is only used if a maximum number of candidates was foreseen in the procedure. This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite (epo:SelectionCriterion)"@en ; + skos:prefLabel "Is used for candidate restriction"@en . + +:isUsingEUFunds a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The procurement foresees funding by the Union. Additional Information: The funding may cover the whole procurement or part of the procurement. For example the European Structural and Investment Funds or grants awarded by the European Union. (epo:ProcurementObject)"@en ; + skos:prefLabel "Is using e u funds"@en . + +:isVariant a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. Additional Information: The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. WG Approval 29/05/2019 (epo:Tender)"@en ; + skos:prefLabel "Is variant"@en . + +:isWithdrawn a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The review request was withdrawn. Additional information: This attribute corresponds in eForms to BT-796 Review Request Withdrawn. (epo:ReviewRequest)"@en ; + skos:prefLabel "Is withdrawn"@en . + +:leadBy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Lead by"@en . + +:legal-regime a skos:ConceptScheme ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Legal-regime"@en . + +:needsToBeATenderer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The Winner must be a Tenderer. (epo:Winner -> epo:Tenderer (+epo:needsToBeATenderer))"@en ; + skos:prefLabel "Needs to be a tenderer"@en . + +:needsToBeAWinner a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "The Contractor must be a Winner. (epo:Contractor -> epo:Winner (+epo:needsToBeAWinner))"@en ; + skos:prefLabel "Needs to be a winner"@en . + +:notification-phases-content-types a skos:ConceptScheme ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Notification-phases-content-types"@en . + +:ownsSystem a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Owns system"@en . + +:playedBy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Played by"@en . + +:providesContractTotalPaymentValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional Information: This corresponds to BT-779 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPaymentValue))"@en ; + skos:prefLabel "Provides contract total payment value"@en . + +:providesContractTotalPenaltyValue a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional Information: This corresponds to BT-782 in eForms. (epo:ContractLotCompletionInformation -> epo:MonetaryValue (+epo:providesContractTotalPenaltyValue))"@en ; + skos:prefLabel "Provides contract total penalty value"@en . + +:providesRulingOnRemedy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "States the measures to be taken after a review procedure. (epo:ReviewDecision -> at-voc:remedy-type (+epo:providesRulingOnRemedy))"@en ; + skos:prefLabel "Provides ruling on remedy"@en . + +:refersToAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to award decision"@en . + +:refersToContract a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to contract"@en . + +:refersToContractToBeModified a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to contract to be modified"@en . + +:refersToLot a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to lot"@en . + +:refersToLotGroup a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to lot group"@en . + +:refersToLotGroupAwardInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to lot group award information"@en . + +:refersToNonPublishedElement a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to non published element"@en . + +:refersToNotice a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to notice"@en . + +:refersToNoticeAwardInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to notice award information"@en . + +:refersToOriginalNotice a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to original notice"@en . + +:refersToPlannedPart a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to planned part"@en . + +:refersToPrevious a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to previous"@en . + +:refersToPreviousNotice a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This corresponds in eForms to BT-758 Change Notice Version Identifier. (epo:NoticeChange -> epo:Notice (+epo:refersToPreviousNotice))"@en ; + skos:prefLabel "Refers to previous notice"@en . + +:refersToPreviousProcedure a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Reference to a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier (epo:DirectAwardTerm -> epo:Procedure (+epo:refersToPreviousProcedure))"@en ; + skos:prefLabel "Refers to previous procedure"@en . + +:refersToPreviousProcedureLot a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Reference to one or more Lots in a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier WG Approval 22/11/2019 14:33:55 (epo:DirectAwardTerm -> epo:Lot (+epo:refersToPreviousProcedureLot))"@en ; + skos:prefLabel "Refers to previous procedure lot"@en . + +:refersToPreviousReview a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BT-785 \"Review Previous Identifier\". (epo:ReviewObject -> epo:ReviewObject (+epo:refersToPreviousReview))"@en ; + skos:prefLabel "Refers to previous review"@en . + +:refersToProcedure a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to procedure"@en . + +:refersToProject a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to project"@en . + +:refersToRole a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Refers to role"@en . + +:requestsRemedyType a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Additional information: This relation corresponds in eForms to BT-792 Review Remedy Type (epo:ReviewRequest -> at-voc:remedy-type (+epo:requestsRemedyType))"@en ; + skos:prefLabel "Requests remedy type"@en . + +:resolvesReviewRequest a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Resolves review request"@en . + +:resultsFromLotAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Results from lot award decision"@en . + +:resultsFromMiniCompetitionAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Results from mini competition award decision"@en . + +:resultsInDynamicPurchasingSystem a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Results in dynamic purchasing system"@en . + +:setsGroupingContextForLot a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Sets grouping context for lot"@en . + +:signedByBuyer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Signed by buyer"@en . + +:signedByContractor a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Signed by contractor"@en . + +:signsAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Signs award decision"@en . + +:specifiesAwardCriterion a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies award criterion"@en . + +:specifiesBuyer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies buyer"@en . + +:specifiesCatalogueProvider a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies catalogue provider"@en . + +:specifiesCatalogueReceiver a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies catalogue receiver"@en . + +:specifiesDeliverable a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies deliverable"@en . + +:specifiesDeliveryAgreementLocation a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies delivery agreement location"@en . + +:specifiesPlaceOfDelivery a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies place of delivery"@en . + +:specifiesPlaceOfDespatch a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies place of despatch"@en . + +:specifiesProcurementCriteriaSummary a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies procurement criteria summary"@en . + +:specifiesProcurementCriterion a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:editorialNote "In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria."@en, + "When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions."@en ; + skos:prefLabel "Specifies procurement criterion"@en . + +:specifiesSubcontractors a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Specifies subcontractors"@en . + +:substantiatesExclusionGround a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Substantiates exclusion ground"@en . + +:summarisesInformationForAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Relates to submission for the given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 (epo:SubmissionStatisticalInformation -> epo:AwardDecision (+epo:summarisesInformationForAwardDecision))"@en ; + skos:editorialNote "Check definitions for all concepts and relations."@en ; + skos:prefLabel "Summarises information for award decision"@en . + +:usesCandidateList a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Uses candidate list"@en . + +:usesChannel a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Uses channel"@en . + +:usesTechnique a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:editorialNote "In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3)"@en ; + skos:prefLabel "Uses technique"@en . + +cccev:Constraint a owl:Class ; + rdfs:subClassOf cccev:Requirement ; + skos:definition "Limitation applied to an Information Concept. Additional Information: Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context."@en ; + skos:prefLabel "Constraint"@en . + +cccev:ContactPoint a owl:Class ; + skos:definition "Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. Additional information: This class represents the contact information for a Public Service, Channel, Public Organisation, etc. The Contact Point could be a role, email address, telephone number, etc. WG approval 5/11/2019"@en ; + skos:editorialNote "there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..*"@en ; + skos:prefLabel "Contact point"@en . + +cccev:Evidence a owl:Class ; + skos:definition "Proof that a Requirement is met."@en ; + skos:prefLabel "Evidence"@en . + +cccev:InformationConcept a owl:Class ; + skos:definition "Piece of information that the Evidence provides or the Requirement needs."@en ; + skos:prefLabel "Information concept"@en . + +cccev:Person a owl:Class ; + rdfs:subClassOf foaf:Person ; + skos:definition "A individual human being who may be dead or alive, but not imaginary."@en ; + skos:prefLabel "Person"@en . + +cccev:PublicOrganisation a owl:Class ; + rdfs:subClassOf org:Organization ; + skos:definition "An Organisation that is defined as being part of the public sector by a legal framework at any level. Additional information: A body governed by public law: - (a) established for the specific Purpose of meeting needs in the general interest - (b) having legal personality; - (c) financed, for the most part by the State, or regional or local authorities. Examples of Public Organisations are municipality, international public body, ministry, others. WG Approval 28/04/2020"@en ; + skos:prefLabel "Public organisation"@en . + +cccev:address a owl:ObjectProperty ; + skos:definition "Associates any Resource with the corresponding Address. Additional Information: Asserting the address relationship implies that the Resource has an Address. (org:Organization -> locn:Address (+cv:address))"@en ; + skos:prefLabel "Address"@en . + +cccev:bias a owl:DatatypeProperty ; + skos:definition "Parameter used to adjust the evaluation of the Criterion. Additional Information: The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the \"presence of local preferences distorting international specialisation and resource allocation\". When quantified, this systematic error can be removed. (cccev:Criterion)"@en ; + skos:prefLabel "Bias"@en . + +cccev:birthDate a owl:DatatypeProperty ; + skos:definition "The point in time on which the Person was born. (cpv:Person)"@en ; + skos:prefLabel "Birth date"@en . + +cccev:confidentialityLevelType a owl:ObjectProperty ; + skos:definition "Security classification assigned to an Evidence e.g. classified, sensitive, public. Additional Information: Classifications should be defined by an organisation/country as an outcome of a security assessment. (cccev:Evidence -> at-voc:confidentiality-level (+cccev:confidentialityLevelType))"@en ; + skos:prefLabel "Confidentiality level type"@en . + +cccev:constrains a owl:ObjectProperty ; + skos:definition "Information Concept about which a Constraint expresses a limitation. Additional Information: Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation. (cccev:Constraint -> cccev:InformationConcept (+cccev:constrains))"@en ; + skos:prefLabel "Constrains"@en . + +cccev:coordinates a owl:DatatypeProperty ; + skos:definition "The coordinate list. (locn:Geometry)"@en ; + skos:prefLabel "Coordinates"@en . + +cccev:email a owl:DatatypeProperty ; + skos:definition "The email of the Organisation. (cpov:ContactPoint)"@en ; + skos:prefLabel "Email"@en . + +cccev:latitude a owl:DatatypeProperty ; + skos:definition "The latitude. (locn:Geometry)"@en ; + skos:prefLabel "Latitude"@en . + +cccev:longitude a owl:DatatypeProperty ; + skos:definition "The longitude. (locn:Geometry)"@en ; + skos:prefLabel "Longitude"@en . + +cccev:registeredAddress a owl:ObjectProperty ; + skos:definition "The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. (cpv:Person -> locn:Address (+cv:registeredAddress)) The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. (org:Organization -> locn:Address (+cv:registeredAddress))"@en ; + skos:prefLabel "Registered address"@en . + +cccev:supportsConcept a owl:ObjectProperty ; + skos:definition "Information Concept providing facts found/inferred from the Evidence. Additional Information: Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as \"I am older that 18 years\" or \"this is a FairTrade product\". (cccev:Evidence -> cccev:InformationConcept (+cccev:supportsConcept))"@en ; + skos:prefLabel "Supports concept"@en . + +cccev:supportsRequirement a owl:ObjectProperty ; + skos:definition "Requirement for which the Evidence provides proof. (cccev:Evidence -> cccev:Requirement (+cccev:supportsRequirement))"@en ; + skos:prefLabel "Supports requirement"@en . + +cccev:telephone a owl:DatatypeProperty ; + skos:definition "A telephone number through which the Contact Point can be contacted. (cpov:ContactPoint)"@en ; + skos:prefLabel "Telephone"@en . + +cccev:weight a owl:DatatypeProperty ; + skos:definition "Relative importance of the Criterion. Additional Information: The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1. (cccev:Criterion)"@en ; + skos:prefLabel "Weight"@en . + +cccev:weightingConsiderationDescription a owl:DatatypeProperty ; + skos:definition "Explanation of how the weighting of a Criterion is to be used. Additional Information: This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process. (cccev:Criterion)"@en ; + skos:prefLabel "Weighting consideration description"@en . + +at-voc:EU-programme a skos:ConceptScheme ; + skos:definition "The EU programme authority table (AT) is a controlled vocabulary providing the list of programmes created and coordinated by the European Union and financially supported by the European Union or, in a few cases, by the contributions from the Member States. It has been developed specifically for the EU Budget as open linked data project. It indicates the authority code and start-use date of each concept and gives labels in all official EU languages."@en ; + skos:prefLabel "E u-programme"@en . + +at-voc:accessibility a skos:ConceptScheme ; + skos:definition "This table provides a list of options for the use of accessibility Criteria for Person with disabilities in the technical specifications within the domain of Public Procurement."@en ; + skos:prefLabel "Accessibility"@en . + +at-voc:applicability a skos:ConceptScheme ; + skos:definition "This table provides a list of the options pertinent to be chosen for a matter concerning the applicability of predefined fields. It is designed for but not restricted to the context of public procurement."@en ; + skos:prefLabel "Applicability"@en . + +at-voc:award-criterion-type a skos:ConceptScheme ; + skos:definition "This table provides the list of rules to be taken into account for the Award Decisions within the in public Procurement Procedures. The initial values are those foreseen in the public procurement directives of 2014 (Directives 2014/23/EU, 2014/24/EU and 2014/25/EU)."@en ; + skos:prefLabel "Award-criterion-type"@en . + +at-voc:buyer-legal-type a skos:ConceptScheme ; + skos:definition "This table provides a list of the type of Procuring Authorities within the domain of public procurement according to legislation."@en ; + skos:prefLabel "Buyer-legal-type"@en . + +at-voc:change-corrig-justification a skos:ConceptScheme ; + skos:definition "This table provides the codes and values used in case of justification of corrections applied to a Notice within the context of Public Procurement."@en ; + skos:prefLabel "Change-corrig-justification"@en . + +at-voc:communication-justification a skos:ConceptScheme ; + skos:definition "This table provides the justification for restricting access rights to resources within the context of Public Procurement"@en ; + skos:prefLabel "Communication-justification"@en . + +at-voc:confidentiality-level a skos:ConceptScheme ; + skos:definition "The Confidentiality level authority table is a controlled vocabulary used to define the information confidentiality levels according to the European Commission Security Notice ‘Information assessment and classification’, C(2019) 1903 final, 5.3.2019."@en ; + skos:prefLabel "Confidentiality-level"@en . + +at-voc:contract-nature a skos:ConceptScheme ; + skos:definition "This table provides a list of different types of subjects and goods that can be acquired by means of a public Contract such as works, supplies and services by one or more Contracting Authorities from Economic Operators."@en ; + skos:prefLabel "Contract-nature"@en . + +at-voc:country a skos:ConceptScheme ; + skos:definition "The Country authority table is a controlled vocabulary that lists concepts associated with names of countries and territories. Its main scope is to support documentary metadata activities. The concepts included are correlated with the ISO 3166 international standard. ISO 3166-1 contains a two-letter code which is recommended as the general purpose code, a three-letter code which has better mnenomic properties and a numeric-3 code which can be useful if script independence of the codes is important. The authority code relies on the ISO 3166-1/alpha-3 positions. If an authority code is needed for a country without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic or numeric. A country code comparison is provided between ISO codes, IANA codes (Internet Country-code Top-level Domains) and TIR (Transport International par la Route) Vehicle system codes."@en ; + skos:prefLabel "Country"@en . + +at-voc:cpv a skos:ConceptScheme ; + skos:definition "To support an effective Single Market, the Commission encourages suppliers and Contracting Authorities/Entities to adopt best practice and use electronic communication and information technology to provide all the relevant information, so as to ensure best value for money in Public Procurement."@en ; + skos:prefLabel "Cpv"@en . + +at-voc:criterion a skos:ConceptScheme ; + skos:definition "This table provides Criteria used for Public Procurement Procedures."@en ; + skos:prefLabel "Criterion"@en . + +at-voc:currency a skos:ConceptScheme ; + skos:definition "The Currency authority table is a controlled vocabulary that lists concepts associated with currencies and currency subunits. The concepts included are correlated with the ISO 4217 international standard."@en ; + skos:prefLabel "Currency"@en . + +at-voc:direct-award-justification a skos:ConceptScheme ; + skos:definition "This table provides the list of reasons for using a Procedure which allows awarding Contracts directly without the Requirement of publishing a call for competition in the Official Journal of the European Union."@en ; + skos:prefLabel "Direct-award-justification"@en . + +at-voc:dps-usage a skos:ConceptScheme ; + skos:definition "This table provides a list wether a dynamic purchasing system is involved in a Procurement and, in case of central purchasing bodies, whether it can be used by buyers not listed in the Notice of the Official Journal of the European Union."@en ; + skos:prefLabel "Dps-usage"@en . + +at-voc:economic-operator-size a skos:ConceptScheme ; + skos:definition "This table provides the different categories in which the Tenderers to whom a Contract can be awarded are classified, according to their size (using as Criteria the number of employees)."@en ; + skos:prefLabel "Economic-operator-size"@en . + +at-voc:environmental-impact a skos:ConceptScheme ; + skos:definition "This table provides the information about whether a Procurement includes a process to procure goods, services and works with a reduced Environmental Impact throughout their life cycle."@en ; + skos:prefLabel "Environmental-impact"@en . + +at-voc:form-type a skos:ConceptScheme ; + skos:definition "This table provides the codes and values used for the type of forms published on TED."@en ; + skos:prefLabel "Form-type"@en . + +at-voc:framework-agreement a skos:ConceptScheme ; + skos:definition "This table provides the list of codes to distinguish the different type Framework Agreement involved in a Tender."@en ; + skos:prefLabel "Framework-agreement"@en . + +at-voc:innovative-acquisition a skos:ConceptScheme ; + skos:definition "This table provides the codes and values used for innovative works, supplies or services being bought."@en ; + skos:prefLabel "Innovative-acquisition"@en . + +at-voc:irregularity-type a skos:ConceptScheme ; + skos:definition "This code list refers generally to the types of irregularities described in Section 2 of the Annex to the Commission Decision C(2019) 3452."@en ; + skos:prefLabel "Irregularity-type"@en . + +at-voc:language a skos:ConceptScheme ; + skos:definition "The Language authority table is a controlled vocabulary that lists concepts associated with languages. Its main scope is to support activities associated with publication process. The concepts included are correlated with the ISO 639 international standard. This standard is issued in several parts: ISO 639-1 contains strictly two alphabetic letters (alpha-2), ISO 639-2/B (B = bibliographic) is used for bibliographic purpose (alpha-3), ISO 639-2/T (T = terminology) is used for technical purpose (alpha-3), ISO 639-3 covers all the languages and macro-languages of the world (alpha-3); the values are compliant with ISO 639-2/T. If an authority code is needed for a language without assigned ISO code, an alphanumeric code is created in order to not confuse with ISO codes that are strictly alphabetic."@en ; + skos:prefLabel "Language"@en . + +at-voc:legal-basis a skos:ConceptScheme ; + skos:definition "This table provides the legal basis based on the legal acts used for a given Public Procurement Procedure. The table is provided by the Publications Office."@en ; + skos:prefLabel "Legal-basis"@en . + +at-voc:main-activity a skos:ConceptScheme ; + skos:definition "This table provides the list of main activities of the Buyers. The codes associated with Contracting Authorities are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The codes associated with contracting entities are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14)."@en ; + skos:prefLabel "Main-activity"@en . + +at-voc:measurement-unit a skos:ConceptScheme ; + skos:definition "The Measurement unit authority table is a controlled vocabulary listing units of measurement with their authority codes. The labels and symbols are given in all official EU languages. If available, the codes are based on the code list recommendation N°. 20 \"Codes for Units of Measure Used in International Trade\" (as revised periodically) maintained and published by UNECE through its Center for Trade Facilitation and Electronic Business (UN/CEFACT). The Measurement unit authority table is maintained by the Publications Office of the European Union on the EU Vocabularies website."@en ; + skos:prefLabel "Measurement-unit"@en . + +at-voc:missing-info-submission a skos:ConceptScheme ; + skos:definition "This table provides the list of codes indicating wether Tenderer-related information (complete or partial) can be supplemented even after the submission deadline."@en ; + skos:prefLabel "Missing-info-submission"@en . + +at-voc:modification-justification a skos:ConceptScheme ; + skos:definition "This table provides the main reasons for modifying a Contract within the domain of Public Procurement."@en ; + skos:prefLabel "Modification-justification"@en . + +at-voc:non-award-justification a skos:ConceptScheme ; + skos:definition "This table provides the list of reasons of the Buyer for not choosing a Winner in the Procurement Procedure."@en ; + skos:prefLabel "Non-award-justification"@en . + +at-voc:non-publication-justification a skos:ConceptScheme ; + skos:definition "This table provides codes and values for the main reasons for not immediately publishing a Notice within the context of Public Procurement."@en ; + skos:prefLabel "Non-publication-justification"@en . + +at-voc:notice-type a skos:ConceptScheme ; + skos:definition "This table provides a list of Public Procurement Notices according to procurement legislation published once a project is approved."@en ; + skos:prefLabel "Notice-type"@en . + +at-voc:number-fixed a skos:ConceptScheme ; + skos:definition "This table provides the codes linked to fix values within the context of Public Procurement."@en ; + skos:prefLabel "Number-fixed"@en . + +at-voc:number-threshold a skos:ConceptScheme ; + skos:definition "This table provides the codes linked to the type of threshold values within the context of Public Procurement."@en ; + skos:prefLabel "Number-threshold"@en . + +at-voc:number-weight a skos:ConceptScheme ; + skos:definition "This table provides the codes linked to the type of weight values used in Award Criteria within the context of Public Procurement."@en ; + skos:prefLabel "Number-weight"@en . + +at-voc:nuts a skos:ConceptScheme ; + skos:definition "The NUTS classification (Nomenclature of territorial units for statistics) is a hierarchical system for dividing up the economic territory of the EU and the UK. The NUTS 2021 compiles the versions 2010, 2013, 2016 and 2021 of the NUTS classification as well as the Statistical Regions for countries that do not belong to the EU such as candidate countries, potential candidates or countries belonging to the EFTA (European Free Trade Association)."@en ; + skos:prefLabel "Nuts"@en . + +at-voc:other-place-service a skos:ConceptScheme ; + skos:definition "This table provides the broad geopolitical areas linked to the Location of works and the place of performance or delivery within the context of Public Procurement."@en ; + skos:prefLabel "Other-place-service"@en . + +at-voc:permission a skos:ConceptScheme ; + skos:definition "This table provides the codes linked to the different values of permission and/or obligation."@en ; + skos:prefLabel "Permission"@en . + +at-voc:procurement-procedure-type a skos:ConceptScheme ; + skos:definition "This table provides a list of activities leading to the conclusion of public Contracts used in Public Procurement according to the legislation."@en ; + skos:prefLabel "Procurement-procedure-type"@en . + +at-voc:received-submission-type a skos:ConceptScheme ; + skos:definition "This table provides the list of relevant categories used to classify Tenders or requests to participate received within the context of Public Procurement."@en ; + skos:prefLabel "Received-submission-type"@en . + +at-voc:remedy-type a skos:ConceptScheme ; + skos:definition "This table describes the measures taken following a Review."@en ; + skos:prefLabel "Remedy-type"@en . + +at-voc:requirement-stage a skos:ConceptScheme ; + skos:definition "This table describes when and whether a given Requirement must be provided in a Procedure."@en ; + skos:prefLabel "Requirement-stage"@en . + +at-voc:reserved-procurement a skos:ConceptScheme ; + skos:definition "This table provides the values used to indicate wether the participation in the Procurement is reserved for specific Organisations."@en ; + skos:prefLabel "Reserved-procurement"@en . + +at-voc:review-body-type a skos:ConceptScheme ; + skos:definition "This table covers the list of organisations providing the review of a given procedure."@en ; + skos:prefLabel "Review-body-type"@en . + +at-voc:review-decision-type a skos:ConceptScheme ; + skos:definition "This table describes the decision made a review body."@en ; + skos:prefLabel "Review-decision-type"@en . + +at-voc:selection-criterion a skos:ConceptScheme ; + skos:definition "This table provides the list of conditions that are concerned for evaluation purposes. In the domain of Public Procurement, Selection Criteria are normally based on a specific legal framework. This codelist is a subset of the ESPD codelist CriterionTaxonomy."@en ; + skos:prefLabel "Selection-criterion"@en . + +at-voc:social-objective a skos:ConceptScheme ; + skos:definition "This table provides the values linked to any social objective promoted by the technical specifications, Award Criteria, Selection Criteria or Contract performance conditions included in a Procurement."@en ; + skos:prefLabel "Social-objective"@en . + +at-voc:subcontracting-indication a skos:ConceptScheme ; + skos:definition "This table provides the list of codes and values used to indicate information regarding the share of parts of a Contract to third parties. The share may refer to the portion of work, services or supplies and/or to the subject matter being subcontracted."@en ; + skos:prefLabel "Subcontracting-indication"@en . + +at-voc:subcontracting-obligation a skos:ConceptScheme ; + skos:definition "This table provides the list of codes and values used for the obligation of the Economic Operator of sharing parts of the original Contract to third parties. The share may refer to the portion of work, services or supplies."@en ; + skos:prefLabel "Subcontracting-obligation"@en . + +at-voc:timeperiod a skos:ConceptScheme ; + skos:definition "The Time-period authority table is a controlled vocabulary which lists the periods of time in the 24 official languages of the EU. It enumerates the names of the seasons, months, weekdays and the main units of time when the issues are published. It also contains concepts for ‘unlimited’ or ‘unknown’ time periods."@en ; + skos:prefLabel "Timeperiod"@en . + +at-voc:usage a skos:ConceptScheme ; + skos:definition "This table provides the list of codes and values indicating the application of Criteria or other concepts and information."@en ; + skos:prefLabel "Usage"@en . + +at-voc:winner-selection-status a skos:ConceptScheme ; + skos:definition "This table provides the list of codes and values used to indicate whether a tenderer was chosen to be awarded with a Contract and wether the competition is open."@en ; + skos:editorialNote "This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping"@en ; + skos:prefLabel "Winner-selection-status"@en . + +dcterms:Location a owl:Class ; + skos:definition "An identifiable geographic place or named place."@en ; + skos:prefLabel "Location"@en . + +dcterms:alternative a owl:DatatypeProperty ; + skos:definition "Any name by which an individual is known other than their full name. WG 09/11/2021 (cpv:Person)"@en ; + skos:prefLabel "Alternative"@en . + +dcterms:description a owl:DatatypeProperty ; + skos:definition "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:ProcurementElement) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:System) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:AgentInRole) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cpov:ContactPoint) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cv:Channel) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:NonDisclosureAgreementTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SecurityClearanceTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SubcontractTerm) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cccev:InformationConcept) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (cccev:Requirement) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Technique) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:SubcontractingEstimate) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:ElectronicSignature) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Document) An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 (epo:Fund)"@en ; + skos:prefLabel "Description"@en . + +dcterms:issued a owl:DatatypeProperty ; + skos:definition "Date of formal issuance of the resource. Additional information: This is generally used for modules other than eNotice. The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. WG approval 26/01/2023 (epo:Document)"@en ; + skos:prefLabel "Issued"@en . + +dcterms:title a owl:DatatypeProperty ; + skos:definition "A name given to the resource. WG approval 30/05/2023 (epo:ProcurementElement) A name given to the resource. WG approval 30/05/2023 (foaf:Agent) A name given to the resource. WG approval 30/05/2023 (epo:AgentInRole) A name given to the resource. WG approval 30/05/2023 (epo:Document) A name given to the resource. WG approval 30/05/2023 (epo:Fund)"@en ; + skos:prefLabel "Title"@en . + +dcterms:type a owl:ObjectProperty ; + skos:definition "Category to which the Requirement belongs. (cccev:Criterion -> at-voc:criterion (+dct:type))"@en ; + skos:prefLabel "Type"@en . + +rdf:PlainLiteral a rdfs:Datatype ; + skos:prefLabel "Plain literal"@en . + +xsd:anyURI a rdfs:Datatype ; + skos:prefLabel "Any u r i"@en . + +xsd:boolean a rdfs:Datatype ; + skos:prefLabel "Boolean"@en . + +xsd:date a rdfs:Datatype ; + skos:prefLabel "Date"@en . + +xsd:dateTime a rdfs:Datatype ; + skos:prefLabel "Date time"@en . + +xsd:decimal a rdfs:Datatype ; + skos:prefLabel "Decimal"@en . + +xsd:integer a rdfs:Datatype ; + skos:prefLabel "Integer"@en . + +owl:Thing a owl:Class ; + skos:definition "Any individual in the domain of discourse is a Thing. Additional Information: The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing."@en ; + skos:prefLabel "Thing"@en . + +skos:notation a owl:DatatypeProperty ; + skos:definition "The literal identifying an entity, like a person or an object. (adms:Identifier)"@en ; + skos:prefLabel "Notation"@en . + +skos:prefLabel a owl:DatatypeProperty ; + skos:definition "The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 (cccev:InformationConcept) The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 (cccev:Requirement)"@en ; + skos:prefLabel "Pref label"@en . + +time:TemporalUnit a skos:ConceptScheme ; + skos:definition "standard duration, which provides the scale factor for a time extent, or the granularity or precision for a time position."@en ; + skos:prefLabel "Temporal unit"@en . + +time:numericDuration a owl:DatatypeProperty ; + skos:definition "Value of a temporal extent expressed as a number. (epo:SpecificDuration)"@en ; + skos:prefLabel "Numeric duration"@en . + +time:unitType a owl:ObjectProperty ; + skos:prefLabel "Unit type"@en . + +adms:Identifier a owl:Class ; + skos:definition "A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information."@en ; + skos:prefLabel "Identifier"@en . + +adms:identifier a owl:ObjectProperty ; + skos:definition "A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:Project -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:LotGroup -> adms:Identifier (+adms:identifier)) A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 (epo:ProcurementElement -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (foaf:Agent -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (dct:Location -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (cccev:InformationConcept -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Document -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo:Fund -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:Consignment -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:ShipmentInformation -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-cat:Line -> adms:Identifier (+adms:identifier)) Links a resource to an adms:Identifier class. (epo-ful:AbstractContainer -> adms:Identifier (+adms:identifier))"@en ; + skos:prefLabel "Identifier"@en . + +adms:schemaAgency a owl:DatatypeProperty ; + skos:definition "The name of the agency that issued the identifier. (adms:Identifier)"@en ; + skos:prefLabel "Schema agency"@en . + +locn:Address a owl:Class ; + skos:definition "The particulars of the place where a Person or an Organisation is located. WG Approval 28/04/2020 Additional Information: An \"Address Representation\" as conceptually defined by the INSPIRE Address Representation data type: \"Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.\". The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - full address (the complete address as a formatted string) - addressID (a unique identifier for the address) The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL."@en ; + skos:prefLabel "Address"@en . + +locn:Geometry a owl:Class ; + skos:definition "The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. Additional Information: This class defines the notion of \"Geometry\" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats."@en ; + skos:prefLabel "Geometry"@en . + +locn:address a owl:ObjectProperty ; + skos:prefLabel "Address"@en . + +locn:addressArea a owl:DatatypeProperty ; + skos:definition "The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. Additional Information: This would typically be part of a city, a neighbourhood or village, e.g. Montmartre. (locn:Address)"@en ; + skos:prefLabel "Address area"@en . + +locn:addressID a owl:ObjectProperty ; + skos:definition "A globally unique identifier for each instance of an Address. Additional Information: The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID. (locn:Address -> adms:Identifier (+locn:addressID))"@en ; + skos:prefLabel "Address i d"@en . + +locn:adminUnitL1 a owl:DatatypeProperty ; + skos:definition "The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. Additional Information: Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this. (locn:Address)"@en ; + skos:prefLabel "Admin unit l1"@en . + +locn:adminUnitL2 a owl:DatatypeProperty ; + skos:definition "The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. Additional Information: Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as \"http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01\" in the ATU controlled vocabulary. (locn:Address)"@en ; + skos:prefLabel "Admin unit l2"@en . + +locn:fullAddress a owl:DatatypeProperty ; + skos:definition "The complete address written as a formatted string. Additional Information: Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is \"Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France\". (locn:Address)"@en ; + skos:prefLabel "Full address"@en . + +locn:geographicIdentifier a owl:ObjectProperty ; + skos:definition "A URI that identifies the Location. Additional Information: GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - http://dbpedia.org/resource/ISO_3166-1:GR - http://dbpedia.org/resource/ISO_3166-1:GB even when the geographic name is given as EL or UK. The use of a URIs has added advantages: - it can be used by automated systems to look up additional data (linked data); - a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. (dct:Location -> adms:Identifier (+locn:geographicIdentifier))"@en ; + skos:prefLabel "Geographic identifier"@en . + +locn:geographicName a owl:DatatypeProperty ; + skos:definition "A textual description for a Location. Additional Information: The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - \"Aθnνa\"@gr-Grek (the Greek endonym written in the Greek script) - \"Athína\"@gr-Latn (the standard Romanisation of the endonym) - \"Athens\"@en (the English language exonym) INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - use 'EL' in preference to the ISO 3166 code GR for Greece. Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code. (dct:Location)"@en ; + skos:prefLabel "Geographic name"@en . + +locn:geometry a owl:ObjectProperty ; + skos:prefLabel "Geometry"@en . + +locn:locatorDesignator a owl:DatatypeProperty ; + skos:definition "A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. Additional Information: In simpler terms, this is the building number, apartment number, etc. For an address such as \"Flat 3, 17 Bridge Street\", the locator is \"flat 3, 17\". (locn:Address)"@en ; + skos:prefLabel "Locator designator"@en . + +locn:locatorName a owl:DatatypeProperty ; + skos:definition "Proper noun(s) applied to the real world entity identified by the locator. Additional Information: The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, \"Shumann, Berlaymont\" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator. (locn:Address)"@en ; + skos:prefLabel "Locator name"@en . + +locn:postCode a owl:DatatypeProperty ; + skos:definition "The post/zip code of an address. (INSPIRE's definition is \"A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.\") Additional Information: Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example \"75000\". (locn:Address)"@en ; + skos:prefLabel "Post code"@en . + +locn:postName a owl:DatatypeProperty ; + skos:definition "The key postal division of the address, usually the city. (INSPIRE's definition is \"One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, \"Paris\". (locn:Address)"@en ; + skos:prefLabel "Post name"@en . + +locn:thoroughfare a owl:DatatypeProperty ; + skos:definition "An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. Additional Information: For example, \"Avenue des Champs-Élysées\". (locn:Address)"@en ; + skos:prefLabel "Thoroughfare"@en . + +person:birthName a owl:DatatypeProperty ; + skos:definition "Family name of the Person given upon their birth. WG Approval 09/11/2021 (cpv:Person)"@en ; + skos:prefLabel "Birth name"@en . + +person:patronymicName a owl:DatatypeProperty ; + skos:definition "Name based on the given name of the Person's father. WG Approval 09/11/2021 (cpv:Person)"@en ; + skos:prefLabel "Patronymic name"@en . + +person:placeOfBirth a owl:ObjectProperty ; + skos:definition "The Location where the Person was born. (cpv:Person -> dct:Location (+person:placeOfBirth))"@en ; + skos:prefLabel "Place of birth"@en . + +person:placeOfDeath a owl:ObjectProperty ; + skos:definition "The Location where the Person died. (cpv:Person -> dct:Location (+person:placeOfDeath))"@en ; + skos:prefLabel "Place of death"@en . + +foaf:familyName a owl:DatatypeProperty ; + skos:definition "The hereditary surname of a family. (cpv:Person)"@en ; + skos:prefLabel "Family name"@en . + +foaf:givenName a owl:DatatypeProperty ; + skos:definition "The name(s) that identify the Person within a family with a common surname. (cpv:Person)"@en ; + skos:prefLabel "Given name"@en . + +foaf:name a owl:DatatypeProperty ; + skos:definition "The complete name of the Person as one string. (cpv:Person)"@en ; + skos:prefLabel "Name"@en . + +:involvesBuyer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Involves buyer"@en . + +cccev:Channel a owl:Class ; + skos:definition "A medium through which Agents interact. Additional Information Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. See also Directive recitals 53 to 56. WG approval 2023-02-14"@en ; + skos:editorialNote "based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure"@en ; + skos:prefLabel "Channel"@en . + +cccev:Criterion a owl:Class ; + rdfs:subClassOf cccev:Requirement ; + skos:definition "Condition for evaluation or assessment. Additional Information: In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service."@en ; + skos:prefLabel "Criterion"@en . + +cccev:hasRequirement a owl:ObjectProperty ; + skos:definition "A more specific Requirement that is part of the Requirement. (cccev:Requirement -> cccev:Requirement (+cccev:hasRequirement))"@en ; + skos:prefLabel "Has requirement"@en . + +foaf:Person a owl:Class ; + rdfs:subClassOf foaf:Agent ; + skos:definition "The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF."@en ; + skos:prefLabel "Person"@en . + +:AwardDecision a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "Resolution of the Buyer as to the result of the Procurement Procedure. WG approval 14/11/2018"@en ; + skos:prefLabel "Award decision"@en . + +:Buyer a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AcquiringParty ; + skos:definition "A Role of an Agent that awards a Contract and/or purchases items. Additional information: In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. In Post-Award the buyer generally refers to the purchaser of items."@en ; + skos:prefLabel "Buyer"@en . + +:CentralPurchasingBody a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Buyer ; + skos:definition "Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. Additional Information: In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; WG approval 05/08/2021"@en ; + skos:prefLabel "Central purchasing body"@en . + +:ContractSpecificTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Term ; + skos:definition "Gathering class for conditions and stipulations related to a contract in the Post-Award Phase."@en ; + skos:prefLabel "Contract specific term"@en . + +:Duration a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "The length of time in which a concept occurs."@en ; + skos:prefLabel "Duration"@en . + +:Estimate a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "An approximate calculation or a judgement of the value, number, Quantity or extent of something."@en ; + skos:prefLabel "Estimate"@en . + +:EvaluationTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm ; + skos:definition "Conditions and stipulations defining particularities of the Tender evaluation. (WG approval 23/11/2018)"@en ; + skos:prefLabel "Evaluation term"@en . + +:ProcurementElement a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Gathering class for critical/central elements in the Procurement Process. TODO: add definition Additional information: Alias: ProcurementComponent"@en ; + skos:prefLabel "Procurement element"@en . + +:ProcurementObject a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementElement ; + skos:definition "The whole or a division of goods, services or works to be procured. Additional Information: Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. In a sense, such an \"object\" can constitute the \"object of a Contract\". To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.). Note: Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and \"purpose\" properties."@en ; + skos:editorialNote "Procedure/ PlannedProcurementPart / Lot are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the \"process\" description and \"whole procurement subject matter\". TODO: revise this definition. TODO: specify that all procedures have al least one lot."@en, + "Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future."@en ; + skos:prefLabel "Procurement object"@en . + +:QualificationCriteriaSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementCriteriaSummary ; + skos:prefLabel "Qualification criteria summary"@en . + +:QualificationCriterion a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementCriterion ; + skos:definition "Criterion used in the first stage of procurement. WG approval 30/05/2023"@en ; + skos:prefLabel "Qualification criterion"@en . + +:ReviewObject a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "Information about a Review Request or a Review Decision. Additional information: This class corresponds to the BG-714 Review in eForms."@en ; + skos:editorialNote "What are the entities that can be reviewed?"@en ; + skos:prefLabel "Review object"@en . + +:isSubjectToTerm a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Is subject to term"@en . + +:AgentInRole a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Relative concept that ties an Agent to a part they play in a given Situational Context. Additional information: The classification of roles is based is based on the degree of involvement into the Procurement Process: - Primary (Procurement) Pole is directly involved in the Procurement Process; - Secondary (Procurement sub-) Role is secondary to the Procurement Process - Tertiary (Related) Role is not involved in the Procurement Process."@en ; + skos:prefLabel "Agent in role"@en . + +:AuxiliaryParty a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AgentInRole ; + skos:definition "Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it."@en ; + skos:prefLabel "Auxiliary party"@en . + +:ContextSpecificDescription a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity."@en ; + skos:prefLabel "Context specific description"@en . + +:ContextualProjection a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Projection of an Entity and all of its properties that hold in a given Situation Context. Additional Information: The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) We say that ContextualProjection *describes* an Entity. Adaptation of ContextSlices pattern encoding a 4D view. http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices"@en ; + skos:prefLabel "Contextual projection"@en . + +:ElementDescription a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Description about a specific resource."@en ; + skos:prefLabel "Element description"@en . + +:NoticeDescription a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Descriptions about the notice publishing, or providing evolutions of resources."@en ; + skos:prefLabel "Notice description"@en . + +:ProcurementCriteriaSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf cccev:Requirement ; + skos:definition "WG approval 24/01/2023"@en ; + skos:prefLabel "Procurement criteria summary"@en . + +:ProcurementCriterion a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf cccev:Criterion ; + skos:definition "A criterion specific to Procurement. Additional Information: This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). WG Approval 23/04/2020"@en ; + skos:prefLabel "Procurement criterion"@en . + +:SelectionCriteriaSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :QualificationCriteriaSummary ; + skos:prefLabel "Selection criteria summary"@en . + +:StatisticalInformation a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ContextSpecificDescription ; + skos:definition "Statistical data on the Procedure and the Lot. Additional Information At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. Therefore this class is temporal and should cease to exist in fully electronic Procurement. The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. WG Approval 12/12/2019"@en ; + skos:prefLabel "Statistical information"@en . + +:StrategicProcurement a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Public Procurement that contributes to achieving pressing policy goals. Additional Information: Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on \"background information\". WG Approval 10/03/2020"@en ; + skos:prefLabel "Strategic procurement"@en . + +:Technique a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "Method used for conducting Procurement Procedures. Addtional information: This corresponds in eForms to BG-706 Techniques. Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). WG Approval 19/09/2019"@en ; + skos:prefLabel "Technique"@en . + +:hasElementDescription a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Has element description"@en . + +cccev:Requirement a owl:Class ; + skos:definition "Condition or prerequisite that is to be proven by Evidence. Additional Information: Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification."@en ; + skos:prefLabel "Requirement"@en . + +org:Organization a owl:Class ; + rdfs:subClassOf foaf:Agent ; + skos:definition "A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. (WG approval 23/11/2018)."@en ; + skos:editorialNote "A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023"@en, + "In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business."@en ; + skos:prefLabel "Organization"@en . + +foaf:Agent a owl:Class ; + skos:definition "A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. WG Approval 28/04/2020"@en ; + skos:prefLabel "Agent"@en . + +:Contract a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Document ; + skos:definition "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 ; + skos:editorialNote "Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract."@en ; + skos:prefLabel "Contract"@en . + +:Term a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A governing condition or stipulation."@en ; + skos:editorialNote "Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future."@en ; + skos:prefLabel "Term"@en . + +:ProcedureSpecificTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Term ; + skos:definition "Gathering class for conditions and stipulations related to a Procedure."@en ; + skos:editorialNote "Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms)."@en ; + skos:prefLabel "Procedure specific term"@en . + +:OfferingParty a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AgentInRole ; + skos:definition "The Role of an Agent that acts on the Economic Operator side during a Procurement Process. Additional information: As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances."@en ; + skos:prefLabel "Offering party"@en . + +:LotSpecificTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Term ; + skos:definition "Gathering class for conditions and stipulations related to a Lot."@en ; + skos:prefLabel "Lot specific term"@en . + +:Document a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019"@en ; + skos:prefLabel "Document"@en . + +:AcquiringParty a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AgentInRole ; + skos:definition "The Role of an Agent that acts on the buying side of a Procurement Process."@en ; + skos:prefLabel "Acquiring party"@en . + +:core a owl:Ontology ; + dcterms:created "2021-06-01"^^xsd:date ; + dcterms:description "The eProcurement Ontology core describes the concepts and properties representing the European Public Procurement domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact."@en ; + dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; + dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; + dcterms:title "eProcurement Ontology - core"@en ; + vann:preferredNamespacePrefix "epo" ; + vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; + rdfs:comment "This version is automatically generated from demo_ontology_CM.xml on 2023-11-01" ; + rdfs:seeAlso , + , + , + ; + owl:imports cccev:, + , + at-voc:, + dcterms:, + , + , + , + , + , + org:, + , + foaf:, + ; + owl:incompatibleWith "3.1.0" ; + owl:priorVersion "http://data.europa.eu/a4g/ontology#core-3.1.0" ; + owl:versionIRI :core-4.0.0 ; + owl:versionInfo "4.0.0" . + diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf new file mode 100644 index 0000000..8289f53 --- /dev/null +++ b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf @@ -0,0 +1,8441 @@ + + + + + + + + + + + + + + + + + + + + + + eProcurement Ontology - core restrictions + http://publications.europa.eu/resource/authority/corporate-body/PUBL + The eProcurement Ontology core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology core. + This version is automatically generated from demo_ontology_CM.xml on + 2023-11-01 + + + + + 2023-11-01 + 2021-06-01 + 4.0.0 + 3.1.0 + + http://data.europa.eu/a4g/ontology#core-restriction-3.1.0 + http://data.europa.eu/a4g/ontology# + epo + © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl new file mode 100644 index 0000000..3206c0a --- /dev/null +++ b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl @@ -0,0 +1,3609 @@ +@prefix : . +@prefix adms: . +@prefix at-voc: . +@prefix cccev: . +@prefix dcterms: . +@prefix foaf: . +@prefix locn: . +@prefix org: . +@prefix owl: . +@prefix person: . +@prefix rdf: . +@prefix rdfs: . +@prefix skos: . +@prefix time: . +@prefix vann: . +@prefix xsd: . + +:agreedByBuyer rdfs:domain :ShipmentAgreement ; + rdfs:range :Buyer . + +:announcesAwardDecision rdfs:domain [ a owl:Class ; + owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; + rdfs:range :AwardDecision . + +:announcesCompletionOfContract rdfs:domain :CompletionNotice ; + rdfs:range :Contract . + +:announcesContract rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] ; + rdfs:range :Contract . + +:announcesExclusionGround rdfs:domain :ESPDRequest ; + rdfs:range :ExclusionGround . + +:announcesLot rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; + rdfs:range :Lot . + +:announcesLotGroup rdfs:domain [ a owl:Class ; + owl:unionOf ( :CompetitionNotice :DirectAwardPrenotificationNotice ) ] ; + rdfs:range :LotGroup . + +:announcesLotGroupAwardInformation rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] ; + rdfs:range :LotGroupAwardInformation . + +:announcesNonPublishedElement rdfs:domain [ a owl:Class ; + owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; + rdfs:range :PublicationProvision . + +:announcesNoticeAwardInformation rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] ; + rdfs:range :NoticeAwardInformation . + +:announcesPlannedProcurementPart rdfs:domain :PlanningNotice ; + rdfs:range :PlannedProcurementPart . + +:announcesProcedure rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; + rdfs:range :Procedure . + +:announcesReviewObject rdfs:domain :CompletionNotice ; + rdfs:range :ReviewObject . + +:announcesRole rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :ContractModificationNotice :PlanningNotice :CompetitionNotice :CompletionNotice ) ], + :ResultNotice ; + rdfs:range :AgentInRole . + +:announcesSelectionCriteria rdfs:domain :ESPDRequest ; + rdfs:range :SelectionCriterion . + +:answersAwardCriteria rdfs:domain [ a owl:Class ; + owl:unionOf ( :FinancialOffer :TechnicalOffer ) ] ; + rdfs:range :AwardCriterion . + +:answersExclusionGround rdfs:domain :ESPDResponse ; + rdfs:range :ExclusionGround . + +:answersSelectionCriteria rdfs:domain :ESPDResponse ; + rdfs:range :SelectionCriterion . + +:associatedWith a owl:AsymmetricProperty ; + rdfs:domain :Document ; + rdfs:range :Document . + +:bindsBuyer rdfs:domain :Contract ; + rdfs:range :Buyer . + +:bindsContractor rdfs:domain :Contract ; + rdfs:range :Contractor . + +:comprisesLotAwardDecision rdfs:domain :AwardDecision ; + rdfs:range :LotAwardDecision . + +:comprisesMiniCompetitionAwardDecision rdfs:domain :AwardDecision ; + rdfs:range :MiniCompetitionAwardDecision . + +:comprisesTenderAwardOutcome rdfs:domain :AwardDecision ; + rdfs:range :TenderAwardOutcome . + +:concernsContract rdfs:domain :ContractInformation ; + rdfs:range :Contract . + +:concernsOriginatorRequest rdfs:domain :OriginatorInformation ; + rdfs:range :OriginatorRequest . + +:conformsToLegalBasis rdfs:domain :Notice ; + rdfs:range skos:Concept . + +:conformsToSpecificLegalBasis rdfs:domain :Notice ; + rdfs:range skos:Concept . + +:containsCandidate rdfs:domain :SelectedCandidateList ; + rdfs:range :Candidate . + +:contextualisedBy rdfs:domain :AgentInRole ; + rdfs:range :ProcurementObject . + +:core-restriction a owl:Ontology ; + dcterms:created "2021-06-01"^^xsd:date ; + dcterms:description "The eProcurement Ontology core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology core."@en ; + dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; + dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; + dcterms:title "eProcurement Ontology - core restrictions"@en ; + vann:preferredNamespacePrefix "epo" ; + vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; + rdfs:comment """This version is automatically generated from demo_ontology_CM.xml on + 2023-11-01""" ; + rdfs:seeAlso , + , + , + ; + owl:imports :core, + cccev:, + , + at-voc:, + dcterms:, + , + , + , + , + , + org:, + , + foaf:, + ; + owl:incompatibleWith "3.1.0" ; + owl:priorVersion "http://data.europa.eu/a4g/ontology#core-restriction-3.1.0" ; + owl:versionIRI :core-restriction-4.0.0 ; + owl:versionInfo "4.0.0" . + +:definesCatalogueProvider rdfs:domain :AccessTerm ; + rdfs:range :CatalogueProvider . + +:definesCatalogueReceiver rdfs:domain :AccessTerm ; + rdfs:range :CatalogueReceiver . + +:definesInformationProvider rdfs:domain :ProcedureTerm ; + rdfs:range :AuxiliaryParty . + +:definesLotGroup rdfs:domain :ProcedureTerm ; + rdfs:range :LotGroup . + +:definesPlaceOfPerformance rdfs:domain :ContractTerm ; + rdfs:range dcterms:Location . + +:definesPrize rdfs:domain :DesignContestRegimeTerm ; + rdfs:range :Prize . + +:delegatesAncillaryActivitiesTo rdfs:domain :Buyer ; + rdfs:range :ProcurementServiceProvider . + +:describesContractModification rdfs:domain :ContractModificationNotice ; + rdfs:range :ContractModification . + +:describesResultNotice rdf:domain :NoticeAwardInformation ; + rdfs:range [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :ResultNotice ) ] . + +:distributesOffer rdfs:domain :OfferIssuer ; + rdfs:range :Offer . + +:exposesChannel rdfs:domain :AgentInRole ; + rdfs:range cccev:Channel . + +:exposesInvoiceeChannel rdfs:domain :Buyer ; + rdfs:range cccev:Channel . + +:foreseesContractSpecificTerm rdfs:domain :ProcurementObject ; + rdfs:range :ContractSpecificTerm . + +:foreseesSubcontracting rdfs:domain :Tender ; + rdfs:range :SubcontractingEstimate . + +:foreseesTechnique rdfs:domain :PlannedProcurementPart ; + rdfs:range :Technique . + +:fulfillsRequirement rdfs:domain [ a owl:Class ; + owl:unionOf ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) ] ; + rdfs:range skos:Concept . + +:fulfillsStrategicProcurement rdfs:domain :ProcurementObject ; + rdfs:range :StrategicProcurement . + +:hasAcceleratedProcedureJustification rdfs:domain :Procedure ; + rdfs:range rdf:PlainLiteral . + +:hasAccessURL rdfs:domain :Document ; + rdfs:range xsd:anyURI . + +:hasActivityDescription rdfs:domain :Buyer ; + rdfs:range rdf:PlainLiteral . + +:hasAdditionalClassification rdfs:domain :Purpose ; + rdfs:range skos:Concept . + +:hasAdditionalContractNature rdfs:domain :ContractTerm ; + rdfs:range skos:Concept . + +:hasAlias rdfs:domain foaf:Agent ; + rdfs:range rdf:PlainLiteral . + +:hasAllegedIrregularityType rdfs:domain :ReviewRequest ; + rdfs:range skos:Concept . + +:hasAmount rdfs:domain [ a owl:Class ; + owl:unionOf ( :AllowanceChargeInformation :TaxInformation ) ] ; + rdfs:range :MonetaryValue . + +:hasAmountDueForPayment rdfs:domain :Order ; + rdfs:range :MonetaryValue . + +:hasAssociatedDocument rdfs:domain [ a owl:Class ; + owl:unionOf ( :DespatchAdvice :DespatchLine ) ] ; + rdfs:range :Document . + +:hasAwardCriteriaEvaluationFormula rdfs:domain :AwardEvaluationTerm ; + rdfs:range rdf:PlainLiteral . + +:hasAwardCriterionType rdfs:domain :AwardCriterion ; + rdfs:range skos:Concept . + +:hasAwardStatus rdfs:domain :AwardDecision ; + rdfs:range skos:Concept . + +:hasBaseQuantity rdfs:domain :Price ; + rdfs:range :Quantity . + +:hasBatchID rdfs:domain :Batch ; + rdfs:range adms:Identifier . + +:hasBeneficialOwner rdfs:domain :Business ; + rdfs:range cccev:Person ; + owl:inverseOf :isBeneficialOwnerOf . + +:hasBroadPlaceOfPerformance rdfs:domain :ContractTerm ; + rdfs:range skos:Concept . + +:hasBusinessSize rdfs:domain :Business ; + rdfs:range skos:Concept . + +:hasBuyerCategoryDescription rdfs:domain :FrameworkAgreementTerm ; + rdfs:range rdf:PlainLiteral . + +:hasBuyerItemID rdfs:domain :Item ; + rdfs:range adms:Identifier . + +:hasBuyerLegalType rdfs:domain org:Organization ; + rdfs:range skos:Concept . + +:hasCandidateList rdfs:domain :DynamicPurchasingSystem ; + rdfs:range :SelectedCandidateList . + +:hasCarrierConsignmentID rdfs:domain :Consignment ; + rdfs:range adms:Identifier . + +:hasCatalogueLineValidity rdfs:domain :CatalogueLine ; + rdfs:range :Period . + +:hasCertification rdfs:domain [ a owl:Class ; + owl:unionOf ( foaf:Person org:Organization ) ] ; + rdfs:range :Certificate . + +:hasChangeDescription rdfs:domain :ElementChangeDescription ; + rdfs:range rdf:PlainLiteral . + +:hasChangeJustification rdfs:domain :ElementChangeDescription ; + rdfs:range skos:Concept . + +:hasChangeReasonDescription rdfs:domain :ElementChangeDescription ; + rdfs:range rdf:PlainLiteral . + +:hasChargeableWeight rdfs:domain :Consignment ; + rdfs:range :Quantity . + +:hasConditionVerificationMethod rdfs:domain :QualificationCriteriaSummary ; + rdfs:range rdf:PlainLiteral . + +:hasConfirmedIrregularityType rdfs:domain :ReviewDecision ; + rdfs:range skos:Concept . + +:hasConsigneeConsignmentID rdfs:domain :Consignment ; + rdfs:range adms:Identifier . + +:hasConsignmentDeclaredStatisticsValue rdfs:domain :Consignment ; + rdfs:range :MonetaryValue . + +:hasConsignmentFreeOnBoardValue rdfs:domain :Consignment ; + rdfs:range :MonetaryValue . + +:hasConsignmentInvoiceValue rdfs:domain :Consignment ; + rdfs:range :MonetaryValue . + +:hasConstraint rdfs:domain :ProcurementCriterion ; + rdfs:range cccev:Constraint . + +:hasContactPointInRole rdfs:domain :AgentInRole ; + rdfs:range cccev:ContactPoint . + +:hasContractAmendment rdfs:domain :Contract ; + rdfs:range :AmendedContract . + +:hasContractNatureType rdfs:domain :ContractTerm ; + rdfs:range skos:Concept . + +:hasCountryCode rdfs:domain [ a owl:Class ; + owl:unionOf ( dcterms:Location locn:Address ) ] ; + rdfs:range skos:Concept . + +:hasCountryOfBirth rdfs:domain cccev:Person ; + rdfs:range skos:Concept . + +:hasCountryOfOrigin rdfs:domain :Item ; + rdfs:range skos:Concept . + +:hasCrossBorderLaw rdfs:domain :ProcedureTerm ; + rdfs:range rdf:PlainLiteral . + +:hasCurrency rdfs:domain :MonetaryValue ; + rdfs:range skos:Concept . + +:hasCurrencyCodeListAgencyID rdfs:domain :MonetaryValue ; + rdfs:range rdf:PlainLiteral . + +:hasCurrencyCodeListAgencyName rdfs:domain :MonetaryValue ; + rdfs:range rdf:PlainLiteral . + +:hasCurrencyCodeListID rdfs:domain :MonetaryValue ; + rdfs:range rdf:PlainLiteral . + +:hasDPSScope rdfs:domain :DynamicPurchaseSystemTechnique ; + rdfs:range skos:Concept . + +:hasDeclaredStatisticalValue rdfs:domain :GoodsItem ; + rdfs:range :MonetaryValue . + +:hasDeliveryLocation rdfs:domain :Price ; + rdfs:range dcterms:Location . + +:hasDeliveryPeriod rdfs:domain :DeliveryInformation ; + rdfs:range :Period . + +:hasDespatchedQuantity rdfs:domain :DespatchLine ; + rdfs:range :Quantity . + +:hasDirectAwardJustification rdfs:domain :DirectAwardTerm ; + rdfs:range skos:Concept . + +:hasDocumentRestrictionJustification rdfs:domain :AccessTerm ; + rdfs:range skos:Concept . + +:hasDocumentStatus rdfs:domain :Document ; + rdfs:range skos:Concept . + +:hasDocumentType rdfs:domain :Document ; + rdfs:range skos:Concept . + +:hasECataloguePermission rdfs:domain :SubmissionTerm ; + rdfs:range skos:Concept . + +:hasEInvoicingPermission rdfs:domain :ContractTerm ; + rdfs:range skos:Concept . + +:hasESubmissionPermission rdfs:domain :SubmissionTerm ; + rdfs:range skos:Concept . + +:hasElectronicDigest a owl:AsymmetricProperty ; + rdfs:domain :Document ; + rdfs:range :Document . + +:hasElectronicSignature rdfs:domain :Document ; + rdfs:range :ElectronicSignature . + +:hasElementDescription rdfs:domain :NoticeDescription ; + rdfs:range :ElementDescription . + +:hasEndpointIdentifier rdfs:domain cccev:Channel ; + rdfs:range adms:Identifier . + +:hasEstimatedDeliveryPeriod rdfs:domain :ShipmentInformation ; + rdfs:range :Period . + +:hasEvaluationMember rdfs:domain :EvaluationBoard ; + rdfs:range :JuryMember . + +:hasExpectedDeliveryTime rdfs:domain :Price ; + rdfs:range :Duration . + +:hasExternalSpecification rdfs:domain :Item ; + rdfs:range :Document . + +:hasFax rdfs:domain cccev:ContactPoint ; + rdfs:range rdf:PlainLiteral . + +:hasFixedValueType rdfs:domain :AwardCriterion ; + rdfs:range skos:Concept . + +:hasFollowupContractInformation rdfs:domain :DesignContestRegimeTerm ; + rdfs:range rdf:PlainLiteral . + +:hasFormType rdfs:domain :Notice ; + rdfs:range skos:Concept . + +:hasFrameworkAgreementType rdfs:domain :FrameworkAgreementTerm ; + rdfs:range skos:Concept . + +:hasFreightForwarderConsignmentID rdfs:domain :Consignment ; + rdfs:range adms:Identifier . + +:hasFundProgramme rdfs:domain :Fund ; + rdfs:range skos:Concept . + +:hasGrossVolume rdfs:domain [ a owl:Class ; + owl:unionOf ( :AbstractContainer :Consignment ) ] ; + rdfs:range :Quantity . + +:hasGrossWeight rdfs:domain [ a owl:Class ; + owl:unionOf ( :AbstractContainer :Consignment ) ] ; + rdfs:range :Quantity . + +:hasGroupLotEvaluationMethod rdfs:domain :ProcedureTerm ; + rdfs:range rdf:PlainLiteral . + +:hasGroupType rdfs:domain :OrganisationGroup ; + rdfs:range rdf:PlainLiteral . + +:hasGuaranteeDescription rdfs:domain :SubmissionTerm ; + rdfs:range rdf:PlainLiteral . + +:hasHeight rdfs:domain :AbstractContainer ; + rdfs:range :Quantity . + +:hasInternalIdentifier rdfs:domain :ProcurementElement ; + rdfs:range adms:Identifier . + +:hasIrregularityType rdfs:domain :ReviewIrregularitySummary ; + rdfs:range skos:Concept . + +:hasItemCountryOfOrigin rdfs:domain :Tender ; + rdfs:range skos:Concept . + +:hasItemStandardID rdfs:domain :Item ; + rdfs:range adms:Identifier . + +:hasJustification rdfs:domain :DirectAwardTerm ; + rdfs:range rdf:PlainLiteral . + +:hasLanguage rdfs:domain :SubmissionTerm ; + rdfs:range skos:Concept . + +:hasLateSubmissionInformationDescription rdfs:domain :SubmissionTerm ; + rdfs:range rdf:PlainLiteral . + +:hasLateSubmissionPermission rdfs:domain :SubmissionTerm ; + rdfs:range skos:Concept . + +:hasLegalBasis rdfs:domain :ProcurementObject ; + rdfs:range skos:Concept . + +:hasLegalBasisDescription rdfs:domain :ProcurementObject ; + rdfs:range rdf:PlainLiteral . + +:hasLegalIdentifier rdfs:domain org:Organization ; + rdfs:range adms:Identifier . + +:hasLegalName rdfs:domain org:Organization ; + rdfs:range rdf:PlainLiteral . + +:hasLegalRegime rdfs:domain :ProcurementObject ; + rdfs:range skos:Concept . + +:hasLength rdfs:domain :AbstractContainer ; + rdfs:range :Quantity . + +:hasLoadingLength rdfs:domain :Consignment ; + rdfs:range :Quantity . + +:hasMainActivity rdfs:domain org:Organization ; + rdfs:range skos:Concept . + +:hasMainClassification rdfs:domain :Purpose ; + rdfs:range skos:Concept . + +:hasMainFeature rdfs:domain :Procedure ; + rdfs:range rdf:PlainLiteral . + +:hasManufacturerID rdfs:domain :Manufacturer ; + rdfs:range adms:Identifier . + +:hasManufacturerItemID rdfs:domain :Item ; + rdfs:range adms:Identifier . + +:hasMaximumOrderQuantity rdfs:domain :CatalogueLine ; + rdfs:range :Quantity . + +:hasMaximumTemperature rdfs:domain :TemperatureSpecification ; + rdfs:range :Quantity . + +:hasMinimumQuantityGuaranteedForDelivery rdfs:domain :CatalogueLine ; + rdfs:range :Quantity . + +:hasMinimumTemperature rdfs:domain :TemperatureSpecification ; + rdfs:range :Quantity . + +:hasModificationDescription rdfs:domain :ElementModificationDescription ; + rdfs:range rdf:PlainLiteral . + +:hasModificationJustification rdfs:domain [ a owl:Class ; + owl:unionOf ( :ElementModificationDescription :AmendedContract ) ] ; + rdfs:range skos:Concept . + +:hasModificationReasonDescription rdfs:domain :ElementModificationDescription ; + rdfs:range rdf:PlainLiteral . + +:hasNationalProcedureRules rdfs:domain :ProcedureTerm ; + rdfs:range xsd:anyURI . + +:hasNationality rdfs:domain cccev:Person ; + rdfs:range skos:Concept . + +:hasNetMonetaryValue rdfs:domain :Price ; + rdfs:range :MonetaryValue . + +:hasNetQuantity rdfs:domain :Item ; + rdfs:range :Quantity . + +:hasNetVolume rdfs:domain :AbstractContainer ; + rdfs:range :Quantity . + +:hasNetWeight rdfs:domain [ a owl:Class ; + owl:unionOf ( :AbstractContainer :Consignment ) ] ; + rdfs:range :Quantity . + +:hasNonAccessibilityCriterionJustification rdfs:domain :StrategicProcurement ; + rdfs:range rdf:PlainLiteral . + +:hasNonAwardJustification rdfs:domain :AwardDecision ; + rdfs:range skos:Concept . + +:hasNonElectronicSubmissionDescription rdfs:domain :SubmissionTerm ; + rdfs:range rdf:PlainLiteral . + +:hasNonElectronicSubmissionJustification rdfs:domain :SubmissionTerm ; + rdfs:range skos:Concept . + +:hasNonPublicationJustification rdfs:domain :ElementConfidentialityDescription ; + rdfs:range skos:Concept . + +:hasNoticeType rdfs:domain :Notice ; + rdfs:range skos:Concept . + +:hasNotificationContentType rdfs:domain :Notice ; + rdfs:range skos:Concept . + +:hasNutsCode rdfs:domain [ a owl:Class ; + owl:unionOf ( dcterms:Location locn:Address ) ] ; + rdfs:range skos:Concept . + +:hasOfficialLanguage rdfs:domain :Document ; + rdfs:range skos:Concept . + +:hasOpeningDescription rdfs:domain :OpeningTerm ; + rdfs:range rdf:PlainLiteral . + +:hasOperatorLicenceID rdfs:domain :TransportMeansOperator ; + rdfs:range adms:Identifier . + +:hasOptionsDescription rdfs:domain :ContractTerm ; + rdfs:range rdf:PlainLiteral . + +:hasOrderabableUnitFactorRate rdfs:domain :Price ; + rdfs:range :Quantity . + +:hasOutstandingQuantity rdfs:domain :DespatchLine ; + rdfs:range :Quantity . + +:hasPaymentArrangement rdfs:domain :ContractTerm ; + rdfs:range rdf:PlainLiteral . + +:hasPerformanceConditions rdfs:domain :ContractTerm ; + rdfs:range rdf:PlainLiteral . + +:hasPerformingStaffQualificationInformation rdfs:domain :ProcurementCriterion ; + rdfs:range skos:Concept . + +:hasPlaceOfPerformanceAdditionalInformation rdfs:domain :ContractTerm ; + rdfs:range rdf:PlainLiteral . + +:hasPrepaidAmount rdfs:domain :Order ; + rdfs:range :MonetaryValue . + +:hasPriceValidity rdfs:domain :Price ; + rdfs:range :Period . + +:hasPrimaryContactPoint rdfs:domain org:Organization ; + rdfs:range cccev:ContactPoint . + +:hasProcedureType rdfs:domain :Procedure ; + rdfs:range skos:Concept . + +:hasProcurementClassification rdfs:domain :Contract ; + rdfs:range skos:Concept . + +:hasQualificationCondition rdfs:domain :QualificationCriteriaSummary ; + rdfs:range rdf:PlainLiteral . + +:hasQualifiedValue rdfs:domain :ItemProperty ; + rdfs:range :Quantity . + +:hasQuantity rdfs:domain [ a owl:Class ; + owl:unionOf ( :OrderLine :Deliverable ) ] ; + rdfs:range :Quantity . + +:hasQuantityThreshold rdfs:domain :Price ; + rdfs:range :Quantity . + +:hasReceivedSubmissionType rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range skos:Concept . + +:hasRegistrationCountry rdfs:domain org:Organization ; + rdfs:range skos:Concept . + +:hasRenewalDescription rdfs:domain :ContractTerm ; + rdfs:range rdf:PlainLiteral . + +:hasReservedProcurement rdfs:domain [ a owl:Class ; + owl:unionOf ( :ParticipationCondition :ParticipationConditionsSummary ) ] ; + rdfs:range skos:Concept . + +:hasReviewBodyType rdfs:domain :Reviewer ; + rdfs:range skos:Concept . + +:hasReviewDecisionType rdfs:domain :ReviewDecision ; + rdfs:range skos:Concept . + +:hasReviewIrregularitySummary rdfs:domain :ReviewRequestSummary ; + rdfs:range :ReviewIrregularitySummary . + +:hasRoundingAmount rdfs:domain :Order ; + rdfs:range :MonetaryValue . + +:hasScheme rdfs:domain adms:Identifier ; + rdfs:range rdf:PlainLiteral . + +:hasSchemeVersion rdfs:domain adms:Identifier ; + rdfs:range rdf:PlainLiteral . + +:hasSelectionCriteriaUsage rdfs:domain :SelectionCriterion ; + rdfs:range skos:Concept . + +:hasSelectionCriterionType rdfs:domain :SelectionCriterion ; + rdfs:range skos:Concept . + +:hasSellerItemID rdfs:domain :Item ; + rdfs:range adms:Identifier . + +:hasSerialID rdfs:domain :Item ; + rdfs:range adms:Identifier . + +:hasStrategicProcurementDescription rdfs:domain :StrategicProcurement ; + rdfs:range rdf:PlainLiteral . + +:hasSubcontractingObligation rdfs:domain :SubcontractTerm ; + rdfs:range skos:Concept . + +:hasSubjectMatter rdfs:domain :SubcontractingEstimate ; + rdfs:range rdf:PlainLiteral . + +:hasSubmissionURL rdfs:domain :SubmissionTerm ; + rdfs:range xsd:anyURI . + +:hasTaxIdentifier rdfs:domain org:Organization ; + rdfs:range adms:Identifier . + +:hasTaxInformation rdfs:domain [ a owl:Class ; + owl:unionOf ( :Tender :Contract ) ] ; + rdfs:range :TaxInformation . + +:hasTenderSubcontractingInformation rdfs:domain :SubmissionTerm ; + rdfs:range skos:Concept . + +:hasThresholdType rdfs:domain cccev:Constraint ; + rdfs:range skos:Concept . + +:hasTimePeriod rdfs:domain :Period ; + rdfs:range skos:Concept . + +:hasTotalAllowanceAmount rdfs:domain :Order ; + rdfs:range :MonetaryValue . + +:hasTotalChargeAmount rdfs:domain :Order ; + rdfs:range :MonetaryValue . + +:hasTotalGoodsItemQuantity rdfs:domain [ a owl:Class ; + owl:unionOf ( :AbstractContainer :Consignment ) ] ; + rdfs:range :Quantity . + +:hasTotalLineAmount rdfs:domain :Order ; + rdfs:range :MonetaryValue . + +:hasTotalTaxExclusiveAmount rdfs:domain :Order ; + rdfs:range :MonetaryValue . + +:hasTotalTaxInclusiveAmount rdfs:domain :Order ; + rdfs:range :MonetaryValue . + +:hasTraceID rdfs:domain :GoodsItem ; + rdfs:range adms:Identifier . + +:hasTrackingID rdfs:domain :DeliveryInformation ; + rdfs:range adms:Identifier . + +:hasTransportHandlingUnitQuantity rdfs:domain :Consignment ; + rdfs:range :Quantity . + +:hasUnitCode rdfs:domain :Quantity ; + rdfs:range skos:Concept . + +:hasUnitDescription rdfs:domain :Quantity ; + rdfs:range rdf:PlainLiteral . + +:hasUnofficialLanguage rdfs:domain :Document ; + rdfs:range skos:Concept . + +:hasUsage rdfs:domain :Technique ; + rdfs:range skos:Concept . + +:hasVariantPermission rdfs:domain :SubmissionTerm ; + rdfs:range skos:Concept . + +:hasVehicleID rdfs:domain :TransportMeans ; + rdfs:range adms:Identifier . + +:hasVehicleSegmentID rdfs:domain :TransportMeans ; + rdfs:range adms:Identifier . + +:hasWeightValueType rdfs:domain :ProcurementCriterion ; + rdfs:range skos:Concept . + +:hasWidth rdfs:domain :AbstractContainer ; + rdfs:range :Quantity . + +:implementsContract rdfs:domain :OrderResponse ; + rdfs:range :Contract . + +:includesAccessibilityCriterion rdfs:domain :StrategicProcurement ; + rdfs:range skos:Concept . + +:includesTender rdfs:domain :Contract ; + rdfs:range :Tender . + +:indicatesInvoiceeContactPoint rdfs:domain :Buyer ; + rdfs:range cccev:ContactPoint . + +:involvesBuyer rdfs:domain :Procedure ; + rdfs:range :Buyer . + +:isAppointedBy rdfs:domain :EvaluationBoard ; + rdfs:range :Buyer . + +:isAssignedForEvaluationOf rdfs:domain :EvaluationBoard ; + rdfs:range :Lot . + +:isBasedOnImplementingRegulation rdfs:domain :Notice ; + rdfs:range skos:Concept . + +:isCalculatedOn rdfs:domain [ a owl:Class ; + owl:unionOf ( :AllowanceChargeInformation :TaxInformation ) ] ; + rdfs:range :MonetaryValue . + +:isFundedBy rdfs:domain :ProcurementObject ; + rdfs:range :Fund . + +:isResponsibilityOfBuyer rdfs:domain :Procedure ; + rdfs:range :Buyer . + +:isSubjectToContractSpecificTerm rdfs:domain :Contract ; + rdfs:range :ContractSpecificTerm . + +:isSubjectToLotSpecificTerm rdfs:domain :Lot ; + rdfs:range :LotSpecificTerm . + +:isSubjectToTerm rdfs:domain :ProcurementObject ; + rdfs:range :Term . + +:isSubordinatedToContract rdfs:domain :Catalogue ; + rdfs:range :Contract . + +:isSupportedBy rdf:domain :Tender ; + rdfs:range [ a owl:Class ; + owl:unionOf ( :TechnicalOffer :ESPDResponse :FinancialOffer ) ] . + +:providesRulingOnRemedy rdfs:domain :ReviewDecision ; + rdfs:range skos:Concept . + +:refersToAwardDecision rdfs:domain [ a owl:Class ; + owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; + rdfs:range :AwardDecision . + +:refersToContractToBeModified rdfs:domain :ContractModificationNotice ; + rdfs:range :Contract . + +:refersToLotGroup rdfs:domain [ a owl:Class ; + owl:unionOf ( :ContractModificationNotice :ResultNotice :CompletionNotice ) ] ; + rdfs:range :LotGroup . + +:refersToLotGroupAwardInformation rdfs:domain [ a owl:Class ; + owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; + rdfs:range :LotGroupAwardInformation . + +:refersToNonPublishedElement rdfs:domain :CompletionNotice ; + rdfs:range :PublicationProvision . + +:refersToNoticeAwardInformation rdfs:domain :CompletionNotice ; + rdfs:range :NoticeAwardInformation . + +:refersToPlannedPart rdfs:domain :AccessTerm ; + rdfs:range :PlannedProcurementPart . + +:refersToPrevious a owl:AsymmetricProperty ; + rdfs:domain :Document ; + rdfs:range :Document . + +:refersToPreviousProcedureLot rdfs:domain :DirectAwardTerm ; + rdfs:range :Lot . + +:refersToProject rdfs:domain :Order ; + rdfs:range :Project . + +:refersToRole rdfs:domain :CompletionNotice, + :ResultNotice ; + rdfs:range :AgentInRole . + +:requestsRemedyType rdfs:domain :ReviewRequest ; + rdfs:range skos:Concept . + +:resultsFromLotAwardDecision rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectContract :FrameworkAgreement ) ] ; + rdfs:range :LotAwardDecision . + +:signedByBuyer rdfs:domain :Contract ; + rdfs:range :Buyer . + +:signedByContractor rdfs:domain :Contract ; + rdfs:range :Contractor . + +:signsAwardDecision rdfs:domain :Buyer ; + rdfs:range :AwardDecision . + +:specifiesAwardCriterion rdfs:domain :MiniCompetition ; + rdfs:range :AwardCriterion . + +:specifiesBuyer rdfs:domain [ a owl:Class ; + owl:unionOf ( :Catalogue :Order ) ], + :OrderResponse ; + rdfs:range :Buyer . + +:specifiesCatalogueProvider rdfs:domain :Catalogue ; + rdfs:range :CatalogueProvider . + +:specifiesCatalogueReceiver rdfs:domain :Catalogue ; + rdfs:range :CatalogueReceiver . + +:specifiesDeliverable rdfs:domain :Contract ; + rdfs:range :Deliverable . + +:specifiesDeliveryAgreementLocation rdfs:domain :DeliveryAgreement ; + rdfs:range dcterms:Location . + +:specifiesPlaceOfDelivery rdfs:domain :DeliveryInformation ; + rdfs:range dcterms:Location . + +:specifiesPlaceOfDespatch rdfs:domain :ShipmentInformation ; + rdfs:range dcterms:Location . + +:specifiesProcurementCriteriaSummary rdfs:domain :Procedure ; + rdfs:range :ProcurementCriteriaSummary . + +:specifiesProcurementCriterion rdfs:domain [ a owl:Class ; + owl:unionOf ( :Lot :LotGroup ) ] ; + rdfs:range :ProcurementCriterion . + +:specifiesSubcontractors rdfs:domain :Tender ; + rdfs:range :Subcontractor . + +:usesChannel rdfs:domain :ProcurementElement ; + rdfs:range cccev:Channel . + +:usesTechnique rdfs:domain :ProcurementObject ; + rdfs:range :Technique . + +cccev:confidentialityLevelType rdfs:domain cccev:Evidence ; + rdfs:range skos:Concept . + +cccev:constrains rdfs:domain cccev:Constraint ; + rdfs:range cccev:InformationConcept . + +cccev:coordinates rdfs:domain locn:Geometry ; + rdfs:range rdf:PlainLiteral . + +cccev:hasRequirement a owl:AsymmetricProperty ; + rdfs:domain cccev:Requirement ; + rdfs:range cccev:Requirement . + +cccev:latitude rdfs:domain locn:Geometry ; + rdfs:range rdf:PlainLiteral . + +cccev:longitude rdfs:domain locn:Geometry ; + rdfs:range rdf:PlainLiteral . + +cccev:supportsConcept rdfs:domain cccev:Evidence ; + rdfs:range cccev:InformationConcept . + +cccev:supportsRequirement rdfs:domain cccev:Evidence ; + rdfs:range cccev:Requirement . + +cccev:telephone rdfs:domain cccev:ContactPoint ; + rdfs:range rdf:PlainLiteral . + +dcterms:alternative rdfs:domain cccev:Person ; + rdfs:range rdf:langString . + +dcterms:type rdfs:domain cccev:Criterion ; + rdfs:range skos:Concept . + +time:unitType rdfs:domain :SpecificDuration ; + rdfs:range skos:Concept . + +adms:schemaAgency rdfs:domain adms:Identifier ; + rdfs:range rdf:PlainLiteral . + +locn:postCode rdfs:domain locn:Address ; + rdfs:range rdf:PlainLiteral . + +locn:postName rdfs:domain locn:Address ; + rdfs:range rdf:langString . + +locn:thoroughfare rdfs:domain locn:Address ; + rdfs:range rdf:langString . + +person:birthName rdfs:domain cccev:Person ; + rdfs:range rdf:langString . + +person:patronymicName rdfs:domain cccev:Person ; + rdfs:range rdf:langString . + +foaf:familyName rdfs:domain cccev:Person ; + rdfs:range rdf:langString . + +foaf:givenName rdfs:domain cccev:Person ; + rdfs:range rdf:langString . + +foaf:name rdfs:domain cccev:Person ; + rdfs:range rdf:langString . + +:actsOnBehalfOf rdfs:domain :ProcurementServiceProvider ; + rdfs:range :Buyer . + +:comprisesTender rdfs:domain :TenderGroup ; + rdfs:range :Tender . + +:concernsMiniCompetition rdfs:domain :MiniCompetitionAwardDecision ; + rdfs:range :MiniCompetition . + +:concernsProcedure rdfs:domain :ProcurementProcessInformation ; + rdfs:range :Procedure . + +:concernsReviewSummaryForLot a owl:FunctionalProperty ; + rdfs:domain :ReviewRequestSummary ; + rdfs:range :Lot . + +:concernsTender a owl:FunctionalProperty ; + rdfs:domain :TenderAwardOutcome ; + rdfs:range :Tender . + +:containsModificationsOf a owl:AsymmetricProperty ; + rdfs:domain owl:Thing ; + rdfs:range owl:Thing . + +:definesBudgetProvider rdfs:domain :ProcedureTerm ; + rdfs:range :BudgetProvider . + +:definesContractDuration rdfs:domain :ContractTerm ; + rdfs:range :Duration . + +:definesContractPeriod rdfs:domain :ContractTerm ; + rdfs:range :Period . + +:definesMediator rdfs:domain :ProcedureTerm ; + rdfs:range :Mediator . + +:definesOfflineAccessProvider rdfs:domain :AccessTerm ; + rdfs:range :OfflineAccessProvider . + +:definesOpeningPlace rdfs:domain :OpeningTerm ; + rdfs:range locn:Address . + +:definesParticipationRequestProcessor rdfs:domain :ParticipationRequestTerm ; + rdfs:range :ParticipationRequestProcessor . + +:definesParticipationRequestReceiver rdfs:domain :ParticipationRequestTerm ; + rdfs:range :ParticipationRequestReceiver . + +:definesPaymentExecutor rdfs:domain :ContractTerm ; + rdfs:range :PaymentExecutor . + +:definesProcurementProcedureInformationProvider rdfs:domain :AccessTerm ; + rdfs:range :ProcurementProcedureInformationProvider . + +:definesSubcontractingTerm rdfs:domain :ContractTerm ; + rdfs:range :SubcontractTerm . + +:definesTenderProcessor rdfs:domain :SubmissionTerm ; + rdfs:range :TenderProcessor . + +:definesTenderReceiver rdfs:domain :SubmissionTerm ; + rdfs:range :TenderReceiver . + +:describesLotCompletion a owl:FunctionalProperty ; + rdfs:domain :ContractLotCompletionInformation ; + rdfs:range :Lot . + +:describesLotGroup a owl:FunctionalProperty ; + rdfs:domain :LotGroupAwardInformation ; + rdfs:range :LotGroup . + +:describesMinimumLevelOfStandards rdfs:domain :SelectionCriteriaSummary ; + rdfs:range rdf:PlainLiteral . + +:describesNotice a owl:FunctionalProperty ; + rdfs:domain :NoticeDescription ; + rdfs:range :Notice . + +:describesObjectiveParticipationRules rdfs:domain :ParticipationConditionsSummary ; + rdfs:range rdf:PlainLiteral . + +:describesProfession rdfs:domain :ProfessionalSuitabilitySummary ; + rdfs:range rdf:PlainLiteral . + +:describesProfessionRelevantLaw rdfs:domain :ProfessionalSuitabilitySummary ; + rdfs:range rdf:PlainLiteral . + +:describesVerificationMethod rdfs:domain :ParticipationConditionsSummary ; + rdfs:range rdf:PlainLiteral . + +:followsRulesSetBy rdfs:domain :MiniCompetition ; + rdfs:range :FrameworkAgreement . + +:foreseesProcurementObject rdfs:domain :PlannedProcurementPart ; + rdfs:range :ProcurementObject . + +:hasAbnormallyLowTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasAccessibilityDate rdfs:domain :ElementConfidentialityDescription ; + rdfs:range xsd:date . + +:hasAdditionalInformationDeadline rdfs:domain :AccessTerm ; + rdfs:range xsd:dateTime . + +:hasAdditionalNonAwardJustification rdfs:domain :AwardDecision ; + rdfs:range rdf:PlainLiteral . + +:hasAddressURL rdfs:domain cccev:Channel ; + rdfs:range xsd:anyURI . + +:hasAmountValue a owl:FunctionalProperty ; + rdfs:domain :MonetaryValue ; + rdfs:range xsd:decimal . + +:hasAwardCriteriaOrderJustification rdfs:domain :AwardEvaluationTerm ; + rdfs:range rdf:PlainLiteral . + +:hasAwardCriteriaStatedInProcurementDocuments a owl:FunctionalProperty ; + rdfs:domain :AwardCriterion ; + rdfs:range xsd:boolean . + +:hasAwardDateScheduled rdfs:domain :ProcessPlanningTerm ; + rdfs:range xsd:date . + +:hasAwardDecisionDate rdfs:domain :AwardDecision ; + rdfs:range xsd:dateTime . + +:hasAwardRank rdfs:domain :TenderAwardOutcome ; + rdfs:range xsd:integer . + +:hasAwardedEstimatedValue rdfs:domain :LotAwardDecision ; + rdfs:range :MonetaryValue . + +:hasAwardedValue rdfs:domain :AwardDecision ; + rdfs:range :MonetaryValue . + +:hasBargainPrice rdfs:domain :AwardDecision ; + rdfs:range :MonetaryValue . + +:hasBeginning rdfs:domain :Period ; + rdfs:range xsd:dateTime . + +:hasBuyerLegalTypeDescription rdfs:domain org:Organization ; + rdfs:range rdf:PlainLiteral . + +:hasBuyerProfile rdfs:domain :Buyer ; + rdfs:range xsd:anyURI . + +:hasCalculationMethod rdfs:domain :ConcessionEstimate ; + rdfs:range rdf:PlainLiteral . + +:hasCleanVehicles rdfs:domain :GreenProcurement ; + rdfs:range xsd:integer . + +:hasConcessionEstimatedValue rdfs:domain :ConcessionEstimate ; + rdfs:range :MonetaryValue . + +:hasConfidentialityJustification rdfs:domain :ElementConfidentialityDescription ; + rdfs:range rdf:PlainLiteral . + +:hasContactName rdfs:domain cccev:ContactPoint ; + rdfs:range rdf:PlainLiteral . + +:hasContractConclusionDate rdfs:domain :Contract ; + rdfs:range xsd:date . + +:hasContractValue rdfs:domain :Contract ; + rdfs:range :MonetaryValue . + +:hasDeadline rdfs:domain :SecurityClearanceTerm ; + rdfs:range xsd:dateTime . + +:hasDecisionDate rdfs:domain :ReviewDecision ; + rdfs:range xsd:date . + +:hasDispatchDate rdfs:domain :Document ; + rdfs:range xsd:date . + +:hasDurationExtensionJustification rdfs:domain :FrameworkAgreementTerm ; + rdfs:range rdf:PlainLiteral . + +:hasEAuctionURL rdfs:domain :SubmissionTerm ; + rdfs:range xsd:anyURI . + +:hasEEAReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasEFormsSubtype rdfs:domain :Notice ; + rdfs:range xsd:integer . + +:hasEInvoicing rdfs:domain :ContractTerm ; + rdfs:range xsd:boolean . + +:hasEOrdering rdfs:domain :ContractTerm ; + rdfs:range xsd:boolean . + +:hasEPayment rdfs:domain :ContractTerm ; + rdfs:range xsd:boolean . + +:hasESenderDispatchDate rdfs:domain :Notice ; + rdfs:range xsd:dateTime . + +:hasEUReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasElectronicSubmission rdfs:domain :Tender ; + rdfs:range xsd:boolean . + +:hasElectronicTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasElementChange rdfs:domain :NoticeChange ; + rdfs:range :ElementChangeDescription . + +:hasElementConfidentiality rdfs:domain :PublicationProvision ; + rdfs:range :ElementConfidentialityDescription . + +:hasElementModification rdfs:domain :ContractModification ; + rdfs:range :ElementModificationDescription . + +:hasEnd rdfs:domain :Period ; + rdfs:range xsd:dateTime . + +:hasEntryIntoForceDate rdfs:domain :Contract ; + rdfs:range xsd:date . + +:hasEstimatedBuyerConcessionRevenue rdfs:domain :ConcessionEstimate ; + rdfs:range :MonetaryValue . + +:hasEstimatedContractNoticePublicationDate rdfs:domain :ProcessPlanningTerm ; + rdfs:range xsd:date . + +:hasEstimatedDuration rdfs:domain :Contract ; + rdfs:range :Duration . + +:hasEstimatedInvitationToExpressInterestDate rdfs:domain :MultipleStageProcedureTerm ; + rdfs:range xsd:date . + +:hasEstimatedInvitationToTenderDate rdfs:domain :MultipleStageProcedureTerm ; + rdfs:range xsd:date . + +:hasEstimatedPercentage rdfs:domain :SubcontractingEstimate ; + rdfs:range xsd:decimal . + +:hasEstimatedTenderInvitationDate rdfs:domain :ProcessPlanningTerm ; + rdfs:range xsd:date . + +:hasEstimatedTotalSubcontracts rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasEstimatedUserConcessionRevenue rdfs:domain :ConcessionEstimate ; + rdfs:range :MonetaryValue . + +:hasEstimatedValue rdfs:domain :ProcurementElement ; + rdfs:range :MonetaryValue . + +:hasFinancialOfferValue rdfs:domain :Tender ; + rdfs:range :MonetaryValue . + +:hasFixedValue rdfs:domain :AwardCriterion ; + rdfs:range xsd:decimal . + +:hasFollowupContract rdfs:domain :DesignContestRegimeTerm ; + rdfs:range xsd:boolean . + +:hasFormNumber rdfs:domain :Notice ; + rdfs:range xsd:integer . + +:hasFormula rdfs:domain :ProcurementCriterion ; + rdfs:range rdf:PlainLiteral . + +:hasFrameworkAgreementEstimatedValue rdfs:domain :LotAwardDecision ; + rdfs:range :MonetaryValue . + +:hasFrameworkAgreementMaximumValue rdfs:domain :LotAwardDecision ; + rdfs:range :MonetaryValue . + +:hasGroupFrameworkAgreementMaximumValue rdfs:domain :LotGroupAwardInformation ; + rdfs:range :MonetaryValue . + +:hasHighestReceivedTenderValue rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range :MonetaryValue . + +:hasInadmissibleTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasInstanceReference a owl:FunctionalProperty ; + rdfs:domain :ElementConfidentialityDescription ; + rdfs:range xsd:anyURI . + +:hasInternetAddress rdfs:domain [ a owl:Class ; + owl:unionOf ( org:Organization cccev:ContactPoint ) ] ; + rdfs:range xsd:anyURI . + +:hasLaunchFrameworkAgreementMaximumValue rdfs:domain :FrameworkAgreementTerm ; + rdfs:range :MonetaryValue . + +:hasLaunchGroupFrameworkAgreementMaximumValue rdfs:domain :FrameworkAgreementTerm ; + rdfs:range :MonetaryValue . + +:hasLegalFormRequirement rdfs:domain :ContractTerm ; + rdfs:range rdf:PlainLiteral . + +:hasLegalFormType rdfs:domain org:Organization ; + rdfs:range rdf:PlainLiteral . + +:hasLongTitle rdfs:domain :Notice ; + rdfs:range rdf:PlainLiteral . + +:hasLotAwardCombination rdfs:domain :ProcedureTerm ; + rdfs:range rdf:PlainLiteral . + +:hasLotReference rdfs:domain :Contract ; + rdfs:range :Lot . + +:hasLowestReceivedTenderValue rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range :MonetaryValue . + +:hasMainActivityDescription rdfs:domain org:Organization ; + rdfs:range rdf:PlainLiteral . + +:hasMaximumFrameworkAgreementAwardedValue rdfs:domain :NoticeAwardInformation ; + rdfs:range :MonetaryValue . + +:hasMaximumLotSubmissionAllowed rdfs:domain :ProcedureTerm ; + rdfs:range xsd:integer . + +:hasMaximumNumberOfCandidates rdfs:domain :MultipleStageProcedureTerm ; + rdfs:range xsd:integer . + +:hasMaximumNumberOfLotsToBeAwarded rdfs:domain :ProcedureTerm ; + rdfs:range xsd:integer . + +:hasMaximumNumberOfRenewals rdfs:domain :ContractTerm ; + rdfs:range xsd:integer . + +:hasMaximumParticipantsNumber rdfs:domain :FrameworkAgreementTerm ; + rdfs:range xsd:integer . + +:hasMaximumShare rdfs:domain :SubcontractTerm ; + rdfs:range xsd:decimal . + +:hasMediumTenderPerLots rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasMember rdfs:domain :OrganisationGroup ; + rdfs:range org:Organization . + +:hasMinimumNumberOfCandidates rdfs:domain :MultipleStageProcedureTerm ; + rdfs:range xsd:integer . + +:hasMinimumShare rdfs:domain :SubcontractTerm ; + rdfs:range xsd:decimal . + +:hasMinimumSubcontractorsProposedObligation rdfs:domain :SubcontractTerm ; + rdfs:range xsd:decimal . + +:hasNoNegotiationNecessary rdfs:domain :MultipleStageProcedureTerm ; + rdfs:range xsd:boolean . + +:hasNonAwardedContractNumber rdfs:domain :LotAwardDecision ; + rdfs:range rdf:PlainLiteral . + +:hasNonAwardedContractTitle rdfs:domain :LotAwardDecision ; + rdfs:range rdf:PlainLiteral . + +:hasNonEEAReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasNonEUReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasNoticePublicationNumber rdfs:domain :Notice ; + rdfs:range rdf:PlainLiteral . + +:hasNumberOfReviewRequests a owl:FunctionalProperty ; + rdfs:domain :ReviewRequest ; + rdfs:range xsd:integer . + +:hasNumberOfTenderersInvited rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasOJSIssueNumber rdfs:domain :Notice ; + rdfs:range xsd:integer . + +:hasOJSType rdfs:domain :Notice ; + rdfs:range rdf:PlainLiteral . + +:hasOpeningDateTime a owl:FunctionalProperty ; + rdfs:domain :OpeningTerm ; + rdfs:range xsd:dateTime . + +:hasOpeningURL rdfs:domain :OpeningTerm ; + rdfs:range xsd:anyURI . + +:hasOptions rdfs:domain :ContractTerm ; + rdfs:range xsd:boolean . + +:hasOrganisationUnitName rdfs:domain org:Organization ; + rdfs:range rdf:PlainLiteral . + +:hasOtherCountriesReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasOverallCostAwardCriteriaPonderation rdfs:domain :AwardEvaluationTerm ; + rdfs:range xsd:decimal . + +:hasOverallPriceAwardCriteriaPonderation rdfs:domain :AwardEvaluationTerm ; + rdfs:range xsd:decimal . + +:hasOverallQualityAwardCriteriaPonderation rdfs:domain :AwardEvaluationTerm ; + rdfs:range xsd:decimal . + +:hasParticipationPayment rdfs:domain :DesignContestRegimeTerm ; + rdfs:range rdf:PlainLiteral . + +:hasPaymentValueDiscrepancyJustification rdfs:domain :ContractLotCompletionInformation ; + rdfs:range rdf:PlainLiteral . + +:hasPlannedDuration rdfs:domain :PlannedProcurementPart ; + rdfs:range :Duration . + +:hasPlannedPeriod rdfs:domain :PlannedProcurementPart ; + rdfs:range :Period . + +:hasPreferredPublicationDate rdfs:domain :PublicationProvision ; + rdfs:range xsd:date . + +:hasPreviousVersionOfElementReference rdfs:domain :ElementChangeDescription ; + rdfs:range xsd:anyURI . + +:hasPrizeRank rdfs:domain :Prize ; + rdfs:range xsd:integer . + +:hasPrizeValue rdfs:domain :Prize ; + rdfs:range :MonetaryValue . + +:hasProcurementDocumentChangeDate rdfs:domain :ElementChangeDescription ; + rdfs:range xsd:date . + +:hasProcurementHighestReceivedTenderValue rdfs:domain :NoticeAwardInformation ; + rdfs:range :MonetaryValue . + +:hasProcurementLowestReceivedTenderValue rdfs:domain :NoticeAwardInformation ; + rdfs:range :MonetaryValue . + +:hasProcurementScopeDividedIntoLot rdfs:domain :Procedure ; + rdfs:range :Lot . + +:hasPropertyReference a owl:FunctionalProperty ; + rdfs:domain :ElementConfidentialityDescription ; + rdfs:range xsd:anyURI . + +:hasPublicAccessURL rdfs:domain :AccessTerm ; + rdfs:range xsd:anyURI . + +:hasPublicationDate rdfs:domain :Document ; + rdfs:range xsd:date . + +:hasPurpose rdfs:domain :ProcurementObject ; + rdfs:range :Purpose . + +:hasQualificationSystemDuration rdfs:domain :MultipleStageProcedureTerm ; + rdfs:range :Duration . + +:hasQualificationSystemRenewalDescription rdfs:domain :MultipleStageProcedureTerm ; + rdfs:range rdf:PlainLiteral . + +:hasQuantityValue a owl:FunctionalProperty ; + rdfs:domain :Quantity ; + rdfs:range xsd:decimal . + +:hasReceiptDeadline rdfs:domain :SubmissionTerm ; + rdfs:range xsd:dateTime . + +:hasReceiptExpressionDeadline rdfs:domain :SubmissionTerm ; + rdfs:range xsd:dateTime . + +:hasReceiptParticipationRequestDeadline rdfs:domain :SubmissionTerm ; + rdfs:range xsd:dateTime . + +:hasReceiptPreliminaryMarketConsultationDeadline rdfs:domain :SubmissionTerm ; + rdfs:range xsd:dateTime . + +:hasReceiptTenderDeadline rdfs:domain :SubmissionTerm ; + rdfs:range xsd:dateTime . + +:hasReceivedMicroTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasReceivedParticipationRequests rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasReceivedSmallTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasReceptionDate rdfs:domain :Document ; + rdfs:range xsd:date . + +:hasRecurrenceDescription rdfs:domain :ProcurementObject ; + rdfs:range rdf:PlainLiteral . + +:hasRemedyValue rdfs:domain :ReviewDecision ; + rdfs:range :MonetaryValue . + +:hasRequestDate rdfs:domain :ReviewRequest ; + rdfs:range xsd:date . + +:hasReservedExecution rdfs:domain :ContractTerm ; + rdfs:range xsd:boolean, + skos:Concept . + +:hasRestrictedAccessURL rdfs:domain :AccessTerm ; + rdfs:range xsd:anyURI . + +:hasReviewIrregularityCount a owl:FunctionalProperty ; + rdfs:domain :ReviewIrregularitySummary ; + rdfs:range xsd:integer . + +:hasReviewRequestFee rdfs:domain :ReviewRequest ; + rdfs:range :MonetaryValue . + +:hasReviewURL rdfs:domain :ReviewObject ; + rdfs:range xsd:anyURI . + +:hasSMEReceivedTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasSelectionCriteriaStatedInProcurementDocuments rdfs:domain :SelectionCriteriaSummary ; + rdfs:range xsd:boolean . + +:hasServiceReservedToParticularProfession rdfs:domain :ProfessionalSuitabilitySummary ; + rdfs:range xsd:boolean . + +:hasStartDate rdfs:domain :SelectedCandidateList ; + rdfs:range :Period . + +:hasSubcontractingEstimatedValue rdfs:domain :SubcontractingEstimate ; + rdfs:range :MonetaryValue . + +:hasSubcontractingInvolved rdfs:domain :SubcontractTerm ; + rdfs:range xsd:boolean . + +:hasSubcontractorsProposedAboveObligation rdfs:domain :SubcontractTerm ; + rdfs:range xsd:decimal . + +:hasSuccessiveReduction rdfs:domain :MultipleStageProcedureTerm ; + rdfs:range xsd:boolean . + +:hasTenderValidityPeriod rdfs:domain :SubmissionTerm ; + rdfs:range :Period . + +:hasThresholdValue a owl:FunctionalProperty ; + rdfs:domain cccev:Constraint ; + rdfs:range xsd:decimal . + +:hasTotalAwardedValue rdfs:domain :NoticeAwardInformation ; + rdfs:range :MonetaryValue . + +:hasTotalNumberOfComplainants rdfs:domain :ReviewRequestSummary ; + rdfs:range xsd:integer . + +:hasTotalQuantity rdfs:domain :Purpose ; + rdfs:range :Quantity . + +:hasTotalValue a owl:FunctionalProperty ; + rdfs:domain [ a owl:Class ; + owl:unionOf ( :TenderGroup :Deliverable ) ] ; + rdfs:range :MonetaryValue . + +:hasTotalVehicles rdfs:domain :GreenProcurement ; + rdfs:range xsd:integer . + +:hasURL rdfs:domain :Fund ; + rdfs:range xsd:anyURI . + +:hasUUID rdfs:domain :Document ; + rdfs:range adms:Identifier . + +:hasUnverifiedTenders rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range xsd:integer . + +:hasValidityPeriod rdfs:domain [ a owl:Class ; + owl:unionOf ( :Technique :Certificate ) ] ; + rdfs:range :Period . + +:hasVersion rdfs:domain :Document ; + rdfs:range rdf:PlainLiteral . + +:hasWithdrawalDate rdfs:domain :ReviewRequest ; + rdfs:range xsd:date . + +:hasWithdrawalReason rdfs:domain :ReviewRequest ; + rdfs:range rdf:PlainLiteral . + +:hasZeroEmissionVehicles rdfs:domain :GreenProcurement ; + rdfs:range xsd:integer . + +:indicatesAwardToWinner rdfs:domain :TenderAwardOutcome ; + rdfs:range :Winner . + +:indicatesPerformingStaffInformationRequirement rdfs:domain :ProcurementCriteriaSummary ; + rdfs:range xsd:boolean . + +:involvesProcurementDocument a owl:FunctionalProperty ; + rdfs:domain :AccessTerm ; + rdfs:range :ProcurementDocument . + +:isAccelerated rdfs:domain :Procedure ; + rdfs:range xsd:boolean . + +:isAdvancedElectronicSignatureRequired rdfs:domain :SubmissionTerm ; + rdfs:range xsd:boolean . + +:isAwardedByCPB rdfs:domain :ProcedureTerm ; + rdfs:range xsd:boolean . + +:isBeneficialOwnerOf rdfs:domain cccev:Person ; + rdfs:range :Business . + +:isCompetitionTerminated rdfs:domain :ProcurementProcessInformation ; + rdfs:range xsd:boolean . + +:isContractingEntity rdfs:domain :Buyer ; + rdfs:range xsd:boolean . + +:isCoveredByGPA rdfs:domain :ProcurementObject ; + rdfs:range xsd:boolean . + +:isDPSTerminated rdfs:domain :ProcurementProcessInformation ; + rdfs:range xsd:boolean . + +:isDesignContest rdfs:domain :Procedure ; + rdfs:range xsd:boolean . + +:isEUInstitution rdfs:domain :Notice ; + rdfs:range xsd:boolean . + +:isExecutedByProcurementServiceProvider rdfs:domain :Procedure ; + rdfs:range :ProcurementServiceProvider . + +:isGuaranteeRequired rdfs:domain :SubmissionTerm ; + rdfs:range xsd:boolean . + +:isJointProcurement rdfs:domain :Procedure ; + rdfs:range xsd:boolean . + +:isJuryDecisionBinding rdfs:domain :DesignContestRegimeTerm ; + rdfs:range xsd:boolean . + +:isListedCompany rdfs:domain :Business ; + rdfs:range xsd:boolean . + +:isMultipleTenderSubmissionAllowed rdfs:domain :SubmissionTerm ; + rdfs:range xsd:boolean . + +:isNonDisclosureAgreementRequired rdfs:domain :NonDisclosureAgreementTerm ; + rdfs:range xsd:boolean . + +:isOneLotOnlyAllowed rdfs:domain :ProcedureTerm ; + rdfs:range xsd:boolean . + +:isOwnedByAgent rdfs:domain :System ; + rdfs:range foaf:Agent ; + owl:inverseOf :ownsSystem . + +:isProcurementDocumentChanged rdfs:domain :ElementChangeDescription ; + rdfs:range xsd:boolean . + +:isProcurementDocumentRestricted rdfs:domain :AccessTerm ; + rdfs:range xsd:boolean . + +:isRecurrent rdfs:domain :ProcurementObject ; + rdfs:range xsd:boolean . + +:isRenewalIndicator rdfs:domain :ContractTerm ; + rdfs:range xsd:boolean . + +:isSMESuitable rdfs:domain :ProcurementObject ; + rdfs:range xsd:boolean . + +:isSecurityClearanceRequired rdfs:domain :SecurityClearanceTerm ; + rdfs:range xsd:boolean . + +:isSubjectToGrouping rdfs:domain :Tender ; + rdfs:range :LotGroup . + +:isSubjectToProcedureSpecificTerm rdfs:domain :Procedure ; + rdfs:range :ProcedureSpecificTerm . + +:isSubmissionForAllLotsAllowed rdfs:domain :ProcedureTerm ; + rdfs:range xsd:boolean . + +:isSubmitedBy rdfs:domain :Tender ; + rdfs:range :Tenderer . + +:isSubmittedForLot a owl:FunctionalProperty ; + rdfs:domain :Tender ; + rdfs:range :Lot . + +:isSubmittedForLotGroup a owl:FunctionalProperty ; + rdfs:domain :TenderGroup ; + rdfs:range :LotGroup . + +:isToBeRelaunched rdfs:domain :ProcurementProcessInformation ; + rdfs:range xsd:boolean . + +:isUsedForCandidateRestriction rdfs:domain :SelectionCriterion ; + rdfs:range xsd:boolean . + +:isUsingEUFunds rdfs:domain :ProcurementObject ; + rdfs:range xsd:boolean . + +:isVariant rdfs:domain :Tender ; + rdfs:range xsd:boolean . + +:isWithdrawn rdfs:domain :ReviewRequest ; + rdfs:range xsd:boolean . + +:leadBy rdfs:domain :OrganisationGroup ; + rdfs:range org:Organization . + +:legal-regime a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue :legal-regime ; + owl:onProperty skos:inScheme ] . + +:needsToBeATenderer rdfs:domain :Winner ; + rdfs:range :Tenderer . + +:needsToBeAWinner rdfs:domain :Contractor ; + rdfs:range :Winner . + +:notification-phases-content-types a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue :notification-phases-content-types ; + owl:onProperty skos:inScheme ] . + +:ownsSystem rdfs:domain foaf:Agent ; + rdfs:range :System . + +:providesContractTotalPaymentValue rdfs:domain :ContractLotCompletionInformation ; + rdfs:range :MonetaryValue . + +:providesContractTotalPenaltyValue rdfs:domain :ContractLotCompletionInformation ; + rdfs:range :MonetaryValue . + +:refersToContract a owl:FunctionalProperty ; + rdfs:domain :ContractLotCompletionInformation ; + rdfs:range :Contract . + +:refersToLot rdfs:domain [ a owl:Class ; + owl:unionOf ( :Notice :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; + rdfs:range :Lot . + +:refersToNotice a owl:AsymmetricProperty ; + rdfs:domain :Notice ; + rdfs:range :Notice . + +:refersToOriginalNotice rdfs:domain :ContractModification ; + rdfs:range :Notice . + +:refersToPreviousNotice rdfs:domain :NoticeChange ; + rdfs:range :Notice . + +:refersToPreviousProcedure rdfs:domain :DirectAwardTerm ; + rdfs:range :Procedure . + +:refersToPreviousReview a owl:AsymmetricProperty ; + rdfs:domain :ReviewObject ; + rdfs:range :ReviewObject . + +:refersToProcedure a owl:FunctionalProperty ; + rdfs:domain [ a owl:Class ; + owl:unionOf ( :ResultNotice :ContractModificationNotice :CompletionNotice :Notice ) ] ; + rdfs:range :Procedure . + +:resolvesReviewRequest a owl:FunctionalProperty ; + rdfs:domain :ReviewDecision ; + rdfs:range :ReviewRequest . + +:resultsFromMiniCompetitionAwardDecision rdfs:domain :PurchaseContract ; + rdfs:range :MiniCompetitionAwardDecision . + +:resultsInDynamicPurchasingSystem a owl:FunctionalProperty ; + rdfs:domain :DynamicPurchaseSystemTechnique ; + rdfs:range :DynamicPurchasingSystem . + +:setsGroupingContextForLot rdfs:domain :LotGroup ; + rdfs:range :Lot . + +:substantiatesExclusionGround rdfs:domain :Tenderer ; + rdfs:range :ExclusionGround . + +:summarisesInformationForAwardDecision a owl:FunctionalProperty ; + rdfs:domain :SubmissionStatisticalInformation ; + rdfs:range :AwardDecision . + +:usesCandidateList rdfs:domain :MiniCompetition ; + rdfs:range :SelectedCandidateList . + +cccev:address rdfs:domain [ a owl:Class ; + owl:unionOf ( org:Organization cccev:ContactPoint ) ] ; + rdfs:range locn:Address . + +cccev:bias rdfs:domain cccev:Criterion ; + rdfs:range xsd:decimal . + +cccev:birthDate rdfs:domain cccev:Person ; + rdfs:range xsd:date . + +cccev:email rdfs:domain cccev:ContactPoint ; + rdfs:range rdf:PlainLiteral . + +cccev:weight rdfs:domain cccev:Criterion ; + rdfs:range xsd:decimal . + +cccev:weightingConsiderationDescription rdfs:domain cccev:Criterion ; + rdfs:range rdf:PlainLiteral . + +at-voc:EU-programme a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:EU-programme ; + owl:onProperty skos:inScheme ] . + +at-voc:accessibility a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:accessibility ; + owl:onProperty skos:inScheme ] . + +at-voc:applicability a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:applicability ; + owl:onProperty skos:inScheme ] . + +at-voc:award-criterion-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:award-criterion-type ; + owl:onProperty skos:inScheme ] . + +at-voc:buyer-legal-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:buyer-legal-type ; + owl:onProperty skos:inScheme ] . + +at-voc:change-corrig-justification a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:change-corrig-justification ; + owl:onProperty skos:inScheme ] . + +at-voc:communication-justification a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:communication-justification ; + owl:onProperty skos:inScheme ] . + +at-voc:confidentiality-level a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:confidentiality-level ; + owl:onProperty skos:inScheme ] . + +at-voc:contract-nature a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:contract-nature ; + owl:onProperty skos:inScheme ] . + +at-voc:country a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:country ; + owl:onProperty skos:inScheme ] . + +at-voc:cpv a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:cpv ; + owl:onProperty skos:inScheme ] . + +at-voc:criterion a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:criterion ; + owl:onProperty skos:inScheme ] . + +at-voc:currency a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:currency ; + owl:onProperty skos:inScheme ] . + +at-voc:direct-award-justification a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:direct-award-justification ; + owl:onProperty skos:inScheme ] . + +at-voc:dps-usage a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:dps-usage ; + owl:onProperty skos:inScheme ] . + +at-voc:economic-operator-size a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:economic-operator-size ; + owl:onProperty skos:inScheme ] . + +at-voc:environmental-impact a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:environmental-impact ; + owl:onProperty skos:inScheme ] . + +at-voc:form-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:form-type ; + owl:onProperty skos:inScheme ] . + +at-voc:framework-agreement a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:framework-agreement ; + owl:onProperty skos:inScheme ] . + +at-voc:innovative-acquisition a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:innovative-acquisition ; + owl:onProperty skos:inScheme ] . + +at-voc:irregularity-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:irregularity-type ; + owl:onProperty skos:inScheme ] . + +at-voc:language a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:language ; + owl:onProperty skos:inScheme ] . + +at-voc:legal-basis a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:legal-basis ; + owl:onProperty skos:inScheme ] . + +at-voc:main-activity a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:main-activity ; + owl:onProperty skos:inScheme ] . + +at-voc:measurement-unit a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:measurement-unit ; + owl:onProperty skos:inScheme ] . + +at-voc:missing-info-submission a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:missing-info-submission ; + owl:onProperty skos:inScheme ] . + +at-voc:modification-justification a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:modification-justification ; + owl:onProperty skos:inScheme ] . + +at-voc:non-award-justification a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:non-award-justification ; + owl:onProperty skos:inScheme ] . + +at-voc:non-publication-justification a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:non-publication-justification ; + owl:onProperty skos:inScheme ] . + +at-voc:notice-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:notice-type ; + owl:onProperty skos:inScheme ] . + +at-voc:number-fixed a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:number-fixed ; + owl:onProperty skos:inScheme ] . + +at-voc:number-threshold a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:number-threshold ; + owl:onProperty skos:inScheme ] . + +at-voc:number-weight a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:number-weight ; + owl:onProperty skos:inScheme ] . + +at-voc:nuts a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:nuts ; + owl:onProperty skos:inScheme ] . + +at-voc:other-place-service a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:other-place-service ; + owl:onProperty skos:inScheme ] . + +at-voc:permission a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:permission ; + owl:onProperty skos:inScheme ] . + +at-voc:procurement-procedure-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:procurement-procedure-type ; + owl:onProperty skos:inScheme ] . + +at-voc:received-submission-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:received-submission-type ; + owl:onProperty skos:inScheme ] . + +at-voc:remedy-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:remedy-type ; + owl:onProperty skos:inScheme ] . + +at-voc:requirement-stage a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:requirement-stage ; + owl:onProperty skos:inScheme ] . + +at-voc:reserved-procurement a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:reserved-procurement ; + owl:onProperty skos:inScheme ] . + +at-voc:review-body-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:review-body-type ; + owl:onProperty skos:inScheme ] . + +at-voc:review-decision-type a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:review-decision-type ; + owl:onProperty skos:inScheme ] . + +at-voc:selection-criterion a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:selection-criterion ; + owl:onProperty skos:inScheme ] . + +at-voc:social-objective a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:social-objective ; + owl:onProperty skos:inScheme ] . + +at-voc:subcontracting-indication a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:subcontracting-indication ; + owl:onProperty skos:inScheme ] . + +at-voc:subcontracting-obligation a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:subcontracting-obligation ; + owl:onProperty skos:inScheme ] . + +at-voc:timeperiod a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:timeperiod ; + owl:onProperty skos:inScheme ] . + +at-voc:usage a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:usage ; + owl:onProperty skos:inScheme ] . + +at-voc:winner-selection-status a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue at-voc:winner-selection-status ; + owl:onProperty skos:inScheme ] . + +dcterms:issued rdfs:domain :Document ; + rdfs:range xsd:dateTime . + +dcterms:title rdfs:domain [ a owl:Class ; + owl:unionOf ( :ProcurementElement foaf:Agent :AgentInRole :Document :Fund ) ] ; + rdfs:range rdf:PlainLiteral . + +skos:notation a owl:FunctionalProperty ; + rdfs:domain adms:Identifier ; + rdfs:range rdf:PlainLiteral . + +skos:prefLabel rdfs:domain [ a owl:Class ; + owl:unionOf ( cccev:InformationConcept cccev:Requirement ) ] ; + rdfs:range rdf:PlainLiteral . + +time:TemporalUnit a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue time:TemporalUnit ; + owl:onProperty skos:inScheme ] . + +time:numericDuration a owl:FunctionalProperty ; + rdfs:domain :SpecificDuration ; + rdfs:range xsd:decimal . + +locn:address rdfs:domain dcterms:Location ; + rdfs:range locn:Address . + +locn:addressArea rdfs:domain locn:Address ; + rdfs:range rdf:langString . + +locn:addressID rdfs:domain locn:Address ; + rdfs:range adms:Identifier . + +locn:adminUnitL1 rdfs:domain locn:Address ; + rdfs:range rdf:langString . + +locn:adminUnitL2 rdfs:domain locn:Address ; + rdfs:range rdf:langString . + +locn:fullAddress rdfs:domain locn:Address ; + rdfs:range rdf:langString . + +locn:geographicIdentifier rdfs:domain dcterms:Location ; + rdfs:range adms:Identifier . + +locn:geographicName rdfs:domain dcterms:Location ; + rdfs:range rdf:langString . + +locn:geometry rdfs:domain dcterms:Location ; + rdfs:range locn:Geometry . + +locn:locatorDesignator rdfs:domain locn:Address ; + rdfs:range rdf:PlainLiteral . + +locn:locatorName rdfs:domain locn:Address ; + rdfs:range rdf:langString . + +person:placeOfBirth rdfs:domain cccev:Person ; + rdfs:range dcterms:Location . + +person:placeOfDeath rdfs:domain cccev:Person ; + rdfs:range dcterms:Location . + +:ElectronicSignature a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty dcterms:description ] . + +:NoticeDescription rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :describesNotice ] . + +:Project rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty adms:identifier ] . + +:concernsLot a owl:FunctionalProperty ; + rdfs:domain [ a owl:Class ; + owl:unionOf ( :ProcurementProcessInformation :LotAwardDecision ) ] ; + rdfs:range :Lot . + +:foreseesConcession rdfs:domain [ a owl:Class ; + owl:unionOf ( :ProcurementObject :Tender ) ] ; + rdfs:range :ConcessionEstimate . + +:hasAdditionalInformation rdfs:domain [ a owl:Class ; + owl:unionOf ( :ProcurementObject :Notice :ElementChangeDescription ) ] ; + rdfs:range rdf:PlainLiteral . + +:hasApproximateFrameworkAgreementValue rdfs:domain [ a owl:Class ; + owl:unionOf ( :LotAwardDecision :NoticeAwardInformation ) ] ; + rdfs:range :MonetaryValue . + +:hasElementReference rdfs:domain [ a owl:Class ; + owl:unionOf ( :ReviewObject :ElementChangeDescription :ElementModificationDescription ) ] ; + rdfs:range xsd:anyURI . + +:playedBy a owl:FunctionalProperty ; + rdfs:domain [ a owl:Class ; + owl:unionOf ( :AgentInRole :TransportMeansOperator :JuryMember ) ] ; + rdfs:range [ a owl:Class ; + owl:unionOf ( foaf:Agent foaf:Person ) ] . + +cccev:registeredAddress rdfs:domain [ a owl:Class ; + owl:unionOf ( cccev:Person org:Organization ) ] ; + rdfs:range locn:Address . + +owl:Thing rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :containsModificationsOf ] . + +:Prize rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPrizeRank ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPrizeValue ] . + +:TenderGroup rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasTotalValue ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :isSubmittedForLotGroup ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :comprisesTender ] . + +:MiniCompetition rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :followsRulesSetBy ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :usesCandidateList ] . + +:Purpose rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasTotalQuantity ] . + +:SelectedCandidateList rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasStartDate ] . + +:SelectionCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :describesMinimumLevelOfStandards ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasSelectionCriteriaStatedInProcurementDocuments ] . + +:SpecificDuration rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty time:numericDuration ] . + +:DynamicPurchaseSystemTechnique rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :resultsInDynamicPurchasingSystem ] . + +:MiniCompetitionAwardDecision rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :concernsMiniCompetition ] . + +:NoticeChange rdfs:subClassOf [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :hasElementChange ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :refersToPreviousNotice ] . + +:ProcurementCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :indicatesPerformingStaffInformationRequirement ] . + +:ProcurementCriterion rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasFormula ] . + +:PurchaseContract rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :resultsFromMiniCompetitionAwardDecision ] . + +:Technique a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasValidityPeriod ] . + +cccev:InformationConcept a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty adms:identifier ] . + +cccev:Requirement a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty dcterms:description ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty skos:prefLabel ] . + +dcterms:description rdfs:domain [ a owl:Class ; + owl:unionOf ( :ProcurementElement :System :AgentInRole cccev:ContactPoint cccev:Channel :NonDisclosureAgreementTerm :SecurityClearanceTerm :SubcontractTerm cccev:InformationConcept cccev:Requirement :Technique :SubcontractingEstimate :ElectronicSignature :Document :Fund ) ] ; + rdfs:range rdf:PlainLiteral . + +:ContractModification rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :refersToOriginalNotice ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :hasElementModification ] . + +:Fund a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasURL ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty adms:identifier ] . + +:OrganisationGroup rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :leadBy ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :hasMember ] . + +:ParticipationConditionsSummary rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :describesObjectiveParticipationRules ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :describesVerificationMethod ] . + +:ProcurementElement a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedValue ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty adms:identifier ] . + +:ProfessionalSuitabilitySummary rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :describesProfession ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasServiceReservedToParticularProfession ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :describesProfessionRelevantLaw ] . + +:ReviewIrregularitySummary rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasReviewIrregularityCount ] . + +:ReviewRequestSummary rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasTotalNumberOfComplainants ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :concernsReviewSummaryForLot ] . + +:System a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isOwnedByAgent ] . + +cccev:Channel a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty dcterms:description ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAddressURL ] . + +adms:identifier a owl:FunctionalProperty ; + rdfs:domain [ a owl:Class ; + owl:unionOf ( :Project :LotGroup :ProcurementElement foaf:Agent dcterms:Location cccev:InformationConcept :Document :Fund :Consignment :TransportEquipment :ShipmentStage :TransportEquipmentSeal :ShipmentInformation :Line :AbstractContainer ) ] ; + rdfs:range adms:Identifier . + +foaf:Agent a owl:Class . + +:AwardEvaluationTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOverallPriceAwardCriteriaPonderation ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOverallQualityAwardCriteriaPonderation ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOverallCostAwardCriteriaPonderation ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAwardCriteriaOrderJustification ] . + +:Business rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isListedCompany ] . + +:ConcessionEstimate rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasCalculationMethod ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedBuyerConcessionRevenue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedUserConcessionRevenue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasConcessionEstimatedValue ] . + +:GreenProcurement rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasTotalVehicles ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasCleanVehicles ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasZeroEmissionVehicles ] . + +:LotGroupAwardInformation rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :describesLotGroup ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasGroupFrameworkAgreementMaximumValue ] . + +:ProcessPlanningTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedTenderInvitationDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedContractNoticePublicationDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAwardDateScheduled ] . + +:PublicationProvision rdfs:subClassOf [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :hasElementConfidentiality ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPreferredPublicationDate ] . + +:SelectionCriterion rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isUsedForCandidateRestriction ] . + +:SubcontractingEstimate a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedPercentage ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasSubcontractingEstimatedValue ] . + +:TenderAwardOutcome rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :indicatesAwardToWinner ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :concernsTender ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAwardRank ] . + +cccev:Constraint rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasThresholdValue ] . + +cccev:Criterion rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty cccev:weight ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty cccev:bias ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty cccev:weightingConsiderationDescription ] . + +:AgentInRole a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :playedBy ] . + +:ContractLotCompletionInformation rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :providesContractTotalPaymentValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPaymentValueDiscrepancyJustification ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :describesLotCompletion ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :refersToContract ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :providesContractTotalPenaltyValue ] . + +:ElementModificationDescription a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasElementReference ] . + +:PlannedProcurementPart rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPlannedDuration ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :foreseesProcurementObject ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPlannedPeriod ] . + +:ProcurementProcessInformation rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isCompetitionTerminated ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :concernsProcedure ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isToBeRelaunched ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :concernsLot ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isDPSTerminated ] . + +:ReviewDecision rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasDecisionDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasRemedyValue ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :resolvesReviewRequest ] . + +:AwardCriterion rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasFixedValue ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasAwardCriteriaStatedInProcurementDocuments ] . + +:DirectAwardTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :refersToPreviousProcedure ] . + +:ElementConfidentialityDescription rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasConfidentialityJustification ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAccessibilityDate ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasPropertyReference ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasInstanceReference ] . + +:LotGroup rdfs:subClassOf [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :setsGroupingContextForLot ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty adms:identifier ] . + +:SubcontractTerm a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasSubcontractorsProposedAboveObligation ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMinimumShare ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasSubcontractingInvolved ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMaximumShare ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMinimumSubcontractorsProposedObligation ] . + +cccev:ContactPoint a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty cccev:address ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty cccev:email ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasContactName ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasInternetAddress ] . + +:LotAwardDecision rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasFrameworkAgreementEstimatedValue ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :concernsLot ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasFrameworkAgreementMaximumValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasApproximateFrameworkAgreementValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasNonAwardedContractTitle ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAwardedEstimatedValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasNonAwardedContractNumber ] . + +:NoticeAwardInformation rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMaximumFrameworkAgreementAwardedValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasProcurementLowestReceivedTenderValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasProcurementHighestReceivedTenderValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasTotalAwardedValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasApproximateFrameworkAgreementValue ] . + +:ReviewRequest rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasWithdrawalDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isWithdrawn ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasWithdrawalReason ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasNumberOfReviewRequests ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasRequestDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReviewRequestFee ] . + +:Contractor rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :needsToBeAWinner ] . + +:ElementChangeDescription a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasProcurementDocumentChangeDate ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasElementReference ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isProcurementDocumentChanged ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAdditionalInformation ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPreviousVersionOfElementReference ] . + +:NonDisclosureAgreementTerm a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isNonDisclosureAgreementRequired ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty dcterms:description ] . + +:ParticipationRequestTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesParticipationRequestProcessor ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesParticipationRequestReceiver ] . + +:Period rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasBeginning ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEnd ] . + +:Tenderer rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :substantiatesExclusionGround ] . + +:Winner rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :needsToBeATenderer ] . + +:SecurityClearanceTerm a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasDeadline ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isSecurityClearanceRequired ] . + +:OpeningTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOpeningURL ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasOpeningDateTime ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesOpeningPlace ] . + +cccev:Person rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty person:placeOfDeath ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty cccev:birthDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty cccev:registeredAddress ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty person:placeOfBirth ] . + +dcterms:Location rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:geographicName ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:geographicIdentifier ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:address ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:geometry ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty adms:identifier ] . + +:DesignContestRegimeTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasFollowupContract ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasParticipationPayment ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isJuryDecisionBinding ] . + +:ReviewObject a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :refersToPreviousReview ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReviewURL ] . + +locn:Address rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:adminUnitL2 ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:locatorName ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:adminUnitL1 ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:fullAddress ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:addressArea ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:addressID ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty locn:locatorDesignator ] . + +:JuryMember rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :playedBy ] . + +:MultipleStageProcedureTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasQualificationSystemRenewalDescription ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasSuccessiveReduction ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMinimumNumberOfCandidates ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasQualificationSystemDuration ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMaximumNumberOfCandidates ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasNoNegotiationNecessary ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedInvitationToExpressInterestDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedInvitationToTenderDate ] . + +:Procedure rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isAccelerated ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :hasProcurementScopeDividedIntoLot ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :isSubjectToProcedureSpecificTerm ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isDesignContest ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isJointProcurement ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isExecutedByProcurementServiceProvider ] . + +:ProcedureTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isSubmissionForAllLotsAllowed ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMaximumLotSubmissionAllowed ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isAwardedByCPB ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isOneLotOnlyAllowed ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesBudgetProvider ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasLotAwardCombination ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMaximumNumberOfLotsToBeAwarded ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesMediator ] . + +:ProcurementServiceProvider rdfs:subClassOf [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :actsOnBehalfOf ] . + +:ProcurementObject a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :foreseesConcession ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isUsingEUFunds ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isSMESuitable ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPurpose ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasRecurrenceDescription ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isRecurrent ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isCoveredByGPA ] . + +org:Organization a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMainActivityDescription ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOrganisationUnitName ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasLegalFormType ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasBuyerLegalTypeDescription ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty cccev:registeredAddress ] . + +:FrameworkAgreementTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasLaunchGroupFrameworkAgreementMaximumValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMaximumParticipantsNumber ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasDurationExtensionJustification ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasLaunchFrameworkAgreementMaximumValue ] . + +:Document a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasVersion ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPublicationDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasUUID ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasDispatchDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceptionDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty dcterms:description ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty dcterms:title ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty dcterms:issued ] . + +:AwardDecision rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAdditionalNonAwardJustification ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasBargainPrice ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAwardedValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAwardDecisionDate ] . + +:ContractTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isRenewalIndicator ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesContractPeriod ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasLegalFormRequirement ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesContractDuration ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEInvoicing ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMaximumNumberOfRenewals ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesPaymentExecutor ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReservedExecution ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesSubcontractingTerm ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOptions ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEOrdering ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEPayment ] . + +:SubmissionStatisticalInformation rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasMediumTenderPerLots ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceivedParticipationRequests ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceivedTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasNonEUReceivedTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasElectronicTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasHighestReceivedTenderValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEEAReceivedTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEUReceivedTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasUnverifiedTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasNumberOfTenderersInvited ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasSMEReceivedTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasNonEEAReceivedTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasInadmissibleTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceivedMicroTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedTotalSubcontracts ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasLowestReceivedTenderValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAbnormallyLowTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceivedSmallTenders ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOtherCountriesReceivedTenders ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :summarisesInformationForAwardDecision ] . + +:AccessTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasPublicAccessURL ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesOfflineAccessProvider ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :involvesProcurementDocument ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesProcurementProcedureInformationProvider ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isProcurementDocumentRestricted ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAdditionalInformationDeadline ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasRestrictedAccessURL ] . + +:Tender rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :isSubmittedForLot ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isVariant ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :foreseesConcession ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isSubmitedBy ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isSubjectToGrouping ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasElectronicSubmission ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasFinancialOfferValue ] . + +:Quantity rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasQuantityValue ] . + +adms:Identifier rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty skos:notation ] . + +:Buyer rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isContractingEntity ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasBuyerProfile ] . + +:Contract rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEntryIntoForceDate ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :hasLotReference ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasContractValue ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasContractConclusionDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedDuration ] . + +:Notice a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasLongTitle ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :refersToProcedure ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOJSType ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasFormNumber ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isEUInstitution ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasNoticePublicationNumber ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :refersToNotice ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasESenderDispatchDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEFormsSubtype ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOJSIssueNumber ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAdditionalInformation ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :refersToLot ] . + +:SubmissionTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isAdvancedElectronicSignatureRequired ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasTenderValidityPeriod ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceiptPreliminaryMarketConsultationDeadline ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceiptExpressionDeadline ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesTenderProcessor ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceiptTenderDeadline ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isMultipleTenderSubmissionAllowed ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEAuctionURL ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isGuaranteeRequired ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesTenderReceiver ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceiptParticipationRequestDeadline ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasReceiptDeadline ] . + +:MonetaryValue rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasAmountValue ] . + +[] a owl:AllDisjointClasses ; + owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SubcontractTerm :ContractTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SubcontractTerm :ContractTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Procedure :Lot ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :MiniCompetitionAwardDecision :LotAwardDecision ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :IndefiniteDuration :SpecificDuration ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :IndefiniteDuration :SpecificDuration ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ExclusionGroundsSummary :SelectionCriteriaSummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . + +[] a owl:AllDisjointClasses ; + owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ReviewDecision :ReviewRequest ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :MiniCompetitionAwardDecision :LotAwardDecision ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ExclusionGroundsSummary :SelectionCriteriaSummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :System org:Organization foaf:Person ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ExclusionGround :SelectionCriterion ) . + +[] a owl:AllDisjointClasses ; + owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :LeadBuyer :CentralPurchasingBody ) . + +[] a owl:AllDisjointClasses ; + owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AcquiringCentralPurchasingBody :AwardingCentralPurchasingBody ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ProcurementObject :PlannedProcurementPart ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SubcontractingEstimate :ConcessionEstimate ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ExclusionGround :SelectionCriterion ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ReviewDecision :ReviewRequest ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AcquiringCentralPurchasingBody :AwardingCentralPurchasingBody ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SubcontractingEstimate :ConcessionEstimate ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AwardEvaluationTerm :SelectionEvaluationTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :LeadBuyer :CentralPurchasingBody ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Procedure :Lot ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :System org:Organization foaf:Person ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :ProcurementObject :PlannedProcurementPart ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :AwardEvaluationTerm :SelectionEvaluationTerm ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :System org:Organization foaf:Person ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + +[] a owl:AllDisjointClasses ; + owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . + diff --git a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf new file mode 100644 index 0000000..8d5657c --- /dev/null +++ b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf @@ -0,0 +1,12215 @@ + + + + + + + + + + + + + + + + + + + + + + + eProcurement Ontology - core shapes + http://publications.europa.eu/resource/authority/corporate-body/PUBL + The eProcurement Ontology core shapes provides the generic datashape specifications for the eProcurement Ontology core. + This version is automatically generated from demo_ontology_CM.xml on 2023-11-01 + + + + + 2023-11-01 + 2021-06-01 + 4.0.0 + 3.1.0 + + http://data.europa.eu/a4g/data-shape#core-shape-3.1.0 + http://data.europa.eu/a4g/ontology# + epo + © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). + + + + + + Dynamic purchasing system + + + An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. WG approval 23/05/2023 + + + + + + + + + Mini competition + + + A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. Additional Information: It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. WG approval 30/05/2023 + + + + + + + + + Mini competition award decision + + + Result concerning the Mini-Competition attributed by the Awarder. + + + + + + + + + Selected candidate list + + + Record of Candidates admitted to take part in award phases of procurements. WG approval 30/05/2023 + + + + + + + + + Project + + + A collaborative enterprise that is carefully planned to achieve a particular aim. + + + + + + + + + Procurement object + + + The whole or a division of goods, services or works to be procured. Additional Information: Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. In a sense, such an "object" can constitute the "object of a Contract". To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (<i>The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.</i>). Note: Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and "purpose" properties. + + + + + + + + + Lot + + + A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. WG approval 12/09/2018 + + + + + + + + + Planned procurement part + + + A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. WG Approval 20/06/2019 + + + + + + + + + Procedure + + + A legally defined set of administrative activities conducted to conclude one or more Contracts. Additional Information The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). WG Approval 20/08/2019 + + + + + + + + + Lot group + + + Combination of several Lots to conduct comparative assessment of the Tenders. Additional Information: The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. Pending of discussion with eForms Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined. + + + + + + + + + Procurement element + + + Gathering class for critical/central elements in the Procurement Process. TODO: add definition Additional information: Alias: ProcurementComponent + + + + + + + + + Purpose + + + The description of the objectives related to a Procurement. Additional information: The description of the objectives includes the Subject Matter and Quantities. The quantification of the objectives related to a procurement. To be re-reviewed by the WG the soonest. (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) The old definition read as follows: The description of the objectives related to a procurement. (WG approval 05/12/2018) + + + + + + + + + Tender group + + + Specific Offer in response to a Lot Group. Additional Information: This class is generally used to provide the Monetary Value in response to a Lot Group. + + + + + + + + + Public organisation + + + An Organisation that is defined as being part of the public sector by a legal framework at any level. Additional information: A body governed by public law: - (a) established for the specific Purpose of meeting needs in the general interest - (b) having legal personality; - (c) financed, for the most part by the State, or regional or local authorities. Examples of Public Organisations are municipality, international public body, ministry, others. WG Approval 28/04/2020 + + + + + + + + + Person + + + A individual human being who may be dead or alive, but not imaginary. + + + + + + + + + Ad hoc channel + + + Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023 + + + + + + + + + Business + + + A private law company registered in a national registry. WG Approval 28/04/2020 + + + + + + + + + Organisation group + + + Agreed collaboration of several Organisations. Additional Information: This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. WG approval 15/04/2021 + + + + + + + + + System + + + Software application used for performing Procurement activities. WG Approval 28/04/2020 + + + + + + + + + Agent + + + A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. WG Approval 28/04/2020 + + + + + + + + + Person + + + The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF. + + + + + + + + + Organization + + + A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. (WG approval 23/11/2018). + + + + + + + + + Acquiring central purchasing body + + + Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021 + + + + + + + + + Acquiring party + + + The Role of an Agent that acts on the buying side of a Procurement Process. + + + + + + + + + Agent in role + + + Relative concept that ties an Agent to a part they play in a given Situational Context. Additional information: The classification of roles is based is based on the degree of involvement into the Procurement Process: - Primary (Procurement) Pole is directly involved in the Procurement Process; - Secondary (Procurement sub-) Role is secondary to the Procurement Process - Tertiary (Related) Role is not involved in the Procurement Process. + + + + + + + + + Auxiliary party + + + Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it. + + + + + + + + + Awarder + + + A Role of an Agent that signs the Award Decision. + + + + + + + + + Awarding central purchasing body + + + Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. Additional Information: In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021 + + + + + + + + + Budget provider + + + A role of an agent whose Budget is used to pay for the Contract. + + + + + + + + + Buyer + + + A Role of an Agent that awards a Contract and/or purchases items. Additional information: In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. In Post-Award the buyer generally refers to the purchaser of items. + + + + + + + + + Candidate + + + The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. WG approval 30/05/2023 + + + + + + + + + Catalogue provider + + + A Role of an Agent compiling and supplying a Catalogue. Additional Information: The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. WG Approval 28/01/2021 + + + + + + + + + Catalogue receiver + + + A Role of an Agent processing a Catalogue. Additional Information: The Catalogue Receiver may not only receive it but also validate it, process it, etc. The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. WG Approval 28/01/2021 + + + + + + + + + Central purchasing body + + + Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. Additional Information: In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; WG approval 05/08/2021 + + + + + + + + + Contractor + + + The Role of an Agent that has signed a Contract with a Buyer. WG approval 08/11/2022 + + + + + + + + + Employment information provider + + + A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions. + + + + + + + + + Environmental protection information provider + + + A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection. + + + + + + + + + Jury member + + + + + + + + + Lead buyer + + + A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. WG agreement: 2022-11-22 + + + + + + + + + Mediator + + + A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. WG approval 20/04/2021 + + + + + + + + + Offering party + + + The Role of an Agent that acts on the Economic Operator side during a Procurement Process. Additional information: As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances. + + + + + + + + + Offer issuer + + + The Role of an Agent that distributes an Offer. WG approval 09/02/2023 + + + + + + + + + Offline access provider + + + A Role of an Agent responsible for providing offline access to the Procurement Documents. + + + + + + + + + Other entity + + + Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria. + + + + + + + + + Participation request processor + + + A Role of an Agent responsible for processing Requests To Participate. + + + + + + + + + Participation request receiver + + + A Role of an Agent responsible for receiving Requests To Participate. + + + + + + + + + Payment executor + + + A Role of an Agent responsible for executing the Payment. + + + + + + + + + Procurement procedure information provider + + + A Role of an Agent responsible for providing additional information about the Procurement Procedure. + + + + + + + + + Procurement service provider + + + Role of a public or private body which offers ancillary purchasing activities on the market. Additional information "Ancillary Purchasing Activities" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; (b) advice on the conduct or design of public Procurement Procedures; (c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. WG Approval 24/03/2020 + + + + + + + + + Reviewer + + + Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. Additional Information: Any Organisation or Person may request a review of a Procurement Procedure. WG approval: 20/04/2021 + + + + + + + + + Review procedure information provider + + + A Role of an Agent who is providing more information on the time limits for review Procedures. + + + + + + + + + Review requester + + + Role of an Agent who requests the review of a (Procurement) Procedure. WG Approval 23/10/2021 + + + + + + + + + Subcontractor + + + A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. Additional information For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. When modelling ESPD we well analyze whether we need or not a Role named "relied upon". WG approval 05/08/2021 + + + + + + + + + Tax information provider + + + A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes. + + + + + + + + + Tenderer + + + A Role of an Agent that has submitted a Tender. Additional Information: A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. WG approval 05/08/2021 + + + + + + + + + Tender processor + + + A Role of an Agent responsible for processing Tenders. + + + + + + + + + Tender receiver + + + A Role of an Agent responsible for receiving Tenders. + + + + + + + + + Winner + + + A Role of an Agent to whom a Lot is awarded. WG approval 05/08/2021 (revised 26/10/2021) + + + + + + + + + Contact point + + + Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. Additional information: This class represents the contact information for a Public Service, Channel, Public Organisation, etc. The Contact Point could be a role, email address, telephone number, etc. WG approval 5/11/2019 + + + + + + + + + Channel + + + A medium through which Agents interact. Additional Information Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. See also Directive recitals 53 to 56. WG approval 2023-02-14 + + + + + + + + + Location + + + An identifiable geographic place or named place. + + + + + + + + + Address + + + The particulars of the place where a Person or an Organisation is located. WG Approval 28/04/2020 Additional Information: An "Address Representation" as conceptually defined by the INSPIRE Address Representation data type: "Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.". The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - full address (the complete address as a formatted string) - addressID (a unique identifier for the address) The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL. + + + + + + + + + Geometry + + + The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. Additional Information: This class defines the notion of "Geometry" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats. + + + + + + + + + Contract specific term + + + Gathering class for conditions and stipulations related to a contract in the Post-Award Phase. + + + + + + + + + Lot specific term + + + Gathering class for conditions and stipulations related to a Lot. + + + + + + + + + Procedure specific term + + + Gathering class for conditions and stipulations related to a Procedure. + + + + + + + + + Process planning term + + + Conditions and stipulations defining particularities of the unfolding of the Procurement Process. + + + + + + + + + Term + + + A governing condition or stipulation. + + + + + + + + + Participation request term + + + Conditions and stipulations defining particularities of requesting participation in a Procedure. + + + + + + + + + Access term + + + Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021 + + + + + + + + + Non disclosure agreement term + + + Conditions and stipulations + + + + + + + + + Opening term + + + Conditions and stipulations defining particularities of the opening of Tenders. Additional Information: The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. WG Approval 15/04/2021 + + + + + + + + + Security clearance term + + + Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. Additional information: This corresponds in eForms to BT-578, BT-78, BT-732 . WG approval 20/06/2023 + + + + + + + + + Direct award term + + + Conditions and stipulations defining particularities of the award of a Contract without prior publication. Addtional Information: Direct award may refer to a previous Procedure and/or specific Lot(s). It may also refer to other justified situations whereby there is no previous Procedure. See Directive 2014/24/EU Article 32. WG Approval 22/11/2019 + + + + + + + + + Procedure term + + + Conditions and stipulations defining particularities of the Procedure. (WG approval 23/11/2018) + + + + + + + + + Submission term + + + Conditions and stipulations defining particularities of submitting Documents to the Buyer. Additional Information: These Documents can be Tenders, Request To Participate and expressions of interest. WG Approval 14/07/2020 + + + + + + + + + Contract term + + + Conditions and stipulations defining particularities of the Post Award Phase. (WG approval 23/11/2018) + + + + + + + + + Design contest regime term + + + Conditions and stipulations defining particularities of a Design Contest. WG approval: 04-02-2021 + + + + + + + + + Framework agreement term + + + Conditions and stipulations defining particularities in a Framework Agreement. + + + + + + + + + Multiple stage procedure term + + + Conditions and stipulations defining particularities of Procedures carried out in several steps Additional Information: Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. WG Approval 15/04/2021 + + + + + + + + + Prize + + + A reward given in a Contest. WG approval: 15/04/2021 + + + + + + + + + Subcontract term + + + A concept to describe the main information regarding the share of parts of the Contract to third parties. + + + + + + + + + Award evaluation term + + + Conditions and stipulations defining particularities of the evaluation of Award Criteria. + + + + + + + + + Evaluation term + + + Conditions and stipulations defining particularities of the Tender evaluation. (WG approval 23/11/2018) + + + + + + + + + Selection evaluation term + + + Conditions and stipulations defining particularities of the evaluation of Selection Criteria. + + + + + + + + + Constraint + + + Limitation applied to an Information Concept. Additional Information: Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context. + + + + + + + + + Criterion + + + Condition for evaluation or assessment. Additional Information: In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service. + + + + + + + + + Evidence + + + Proof that a Requirement is met. + + + + + + + + + Information concept + + + Piece of information that the Evidence provides or the Requirement needs. + + + + + + + + + Requirement + + + Condition or prerequisite that is to be proven by Evidence. Additional Information: Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification. + + + + + + + + + Award criteria summary + + + + + + + + + Award criterion + + + Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018 + + + + + + + + + Economic standing summary + + + + + + + + + Exclusion ground + + + Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. Additional Information: This corresponds in eForms to BG-701 Exclusion Grounds. WG approval 31/10/2018 + + + + + + + + + Exclusion grounds summary + + + + + + + + + Participation condition + + + Criterion that describes a Requirement to take part in a procurement. WG approval 30/05/2023 + + + + + + + + + Participation conditions summary + + + + + + + + + Procurement criteria summary + + + WG approval 24/01/2023 + + + + + + + + + Procurement criterion + + + A criterion specific to Procurement. Additional Information: This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). WG Approval 23/04/2020 + + + + + + + + + Professional suitability summary + + + + + + + + + Qualification criteria summary + + + + + + + + + Qualification criterion + + + Criterion used in the first stage of procurement. WG approval 30/05/2023 + + + + + + + + + Selection criteria summary + + + + + + + + + Selection criterion + + + Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. Additional Information: Selection criteria may relate to: (a) suitability to pursue the professional activity; (b) economic and financial standing; (c) technical and professional ability WG approval 31/10/2018 + + + + + + + + + Technical ability summary + + + + + + + + + Green procurement + + + Approach whereby Buyers seek to procure with a reduced Environmental Impact. Additional Information: The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf An instance of the class GreenProcurement is represented in eForms with the code "env-imp" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf + + + + + + + + + Innovative procurement + + + An instance of the class InnovativeProcurement is represented in eForms with the code "inn-pur" defined in the codelist Strategic-Procurement. Research (21/01/2020): Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions Additional Information: ‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; See: Directive 2014/24 Articles: 2, 26 (3), 31, 67 (2.a) Question: Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement? + + + + + + + + + Social procurement + + + An instance of the class SocialProcurement is represented in eForms with the code "soc-obj" defined in the codelist Strategic-Procurement. Research (21/01/2020): Socially Responsible Public Procurement (SRPP): ‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en See Article 18 and Annex X Directive 2014/24. + + + + + + + + + Strategic procurement + + + Public Procurement that contributes to achieving pressing policy goals. Additional Information: Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on "background information". WG Approval 10/03/2020 + + + + + + + + + Dynamic purchase system technique + + + A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. WG approval 23/05/2023 + + + + + + + + + E auction technique + + + A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. Additional Information: This corresponds in eForms to BT-767 Electronic Auction . WG approval 20/07/2018 + + + + + + + + + Framework agreement technique + + + Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. WG approval 18/05/2021 + + + + + + + + + Technique + + + Method used for conducting Procurement Procedures. Addtional information: This corresponds in eForms to BG-706 Techniques. Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). WG Approval 19/09/2019 + + + + + + + + + Context specific description + + + A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity. + + + + + + + + + Contextual projection + + + Projection of an Entity and all of its properties that hold in a given Situation Context. Additional Information: The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) We say that ContextualProjection *describes* an Entity. Adaptation of ContextSlices pattern encoding a 4D view. http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices + + + + + + + + + Estimate + + + An approximate calculation or a judgement of the value, number, Quantity or extent of something. + + + + + + + + + Procurement process information + + + Information about the temporal unfolding or succession of Procurement Objects. + + + + + + + + + Statistical information + + + Statistical data on the Procedure and the Lot. Additional Information At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. Therefore this class is temporal and should cease to exist in fully electronic Procurement. The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. WG Approval 12/12/2019 + + + + + + + + + Concession estimate + + + + + + + + + Subcontracting estimate + + + Information on the approximation of the foreseen Subcontracting. + + + + + + + + + Lot award decision + + + Result concerning the Lot attributed by the Awarder. + + + + + + + + + Lot group award information + + + Award information related to a given Group of Lots. + + + + + + + + + Notice award information + + + Information about an Award Notice. + + + + + + + + + Tender award outcome + + + Result concerning the Tender attributed by the Awarder. + + + + + + + + + Review irregularity summary + + + Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). Additional information: This class corresponds in eForms to BG-613 Buyer Review Requests. + + + + + + + + + Review request summary + + + Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. Additional information: This class corresponds in eForms to BG-612 Buyer Review Summary. + + + + + + + + + Submission statistical information + + + Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 + + + + + + + + + Contract lot completion information + + + Information related to a given Lot at the end of the procurement. + + + + + + + + + Electronic signature + + + + + + + + + Originator request + + + Document in which the Originator describes his needs. WG approval 09/02/2023 + + + + + + + + + Tender + + + Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. (WG approval 03/05/2022) + + + + + + + + + Offer + + + Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. Additional information: A quotation is considered to be an Offer in the eProcurement Ontology. WG approval 09/02/2023 + + + + + + + + + Procurement document + + + Document produced or referred to by the Buyer to describe or determine elements of the Procurement. Additional information: Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. WG Approval 23/05/2019 17:08:30 + + + + + + + + + Notice + + + Document published by the Buyer about market opportunities and results. WG Approval 23/05/2019 + + + + + + + + + Document + + + A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019 + + + + + + + + + Award decision + + + Resolution of the Buyer as to the result of the Procurement Procedure. WG approval 14/11/2018 + + + + + + + + + Request for participation + + + Application of an Economic Operator to be included in a Procurement Procedure. WG approval: 20/04/2021 + + + + + + + + + Expression of interest + + + Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. WG approval 13/04/2021 + + + + + + + + + Request for clarification + + + A demand for elucidation of received information. Additional Information: Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. WG approval 20/04/2021 + + + + + + + + + Direct contract + + + + + + + + + Concession contract + + + A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. WG Approval 24/05/2022 + + + + + + + + + Purchase contract + + + A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract. + + + + + + + + + Fund + + + A financial resource used to support the Procurement. Additional Information: In the context of EU, Funds can be divided into programmes, actions and projects. Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. WG Approved 14/05/2019 + + + + + + + + + Framework agreement + + + An agreement between one or more Contracting Authorities and one or more Economic Operators. Additional Information: When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. WG approval 18/05/2021 + + + + + + + + + Contract + + + A voluntary, deliberate, and legally binding agreement between two or more competent parties. Additional information: This includes Concession Contracts. (WG approval 01/06/2018) + + + + + + + + + Review decision + + + Information about Review Decisions. + + + + + + + + + Review object + + + Information about a Review Request or a Review Decision. Additional information: This class corresponds to the BG-714 Review in eForms. + + + + + + + + + Review request + + + Information about requests to review procedures. + + + + + + + + + Contract modification + + + An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer. + + + + + + + + + Element change description + + + Information about a specific field to be changed with regard to a previous Notice. + + + + + + + + + Element confidentiality description + + + Information about a specific field not intended for publication. Additional Information: In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided. + + + + + + + + + Element description + + + Description about a specific resource. + + + + + + + + + Element modification description + + + Information about a specific field to be changed with regard to the Modification Of a Contract. + + + + + + + + + Notice change + + + Information about a corrigendum in a Notice. + + + + + + + + + Notice description + + + Descriptions about the notice publishing, or providing evolutions of resources. + + + + + + + + + Publication provision + + + Information about fields not intended for publication. Additional Information: The non-published information may become available at a later date and may differ from one element to another within a given Document. Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. WG Approval 16/05/2019 + + + + + + + + + Identifier + + + A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information. + + + + + + + + + Duration + + + The length of time in which a concept occurs. + + + + + + + + + Indefinite duration + + + + + + + + + Monetary value + + + A number of monetary units specified using a given unit of currency. Additional information: In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. WG approval 13/04/2021 + + + + + + + + + Period + + + A time interval or a Duration. (WG approval 28/04/2020) + + + + + + + + + Quantity + + + A counted number of non-monetary units possibly including fractions. + + + + + + + + + Specific duration + + + + + + + + + Thing + + + Any individual in the domain of discourse is a Thing. Additional Information: The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing. + + + + + + + + + + + + Is s m e suitable + + + The Lot is suitable for small and medium enterprises (SMEs). Additional Information This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. For example, number of employees and turnover are applicable to the definition of an SME. WG Approval 15/10/2019 + + + + + + + + + 1 + + + + + + + + + Has additional information + + + Supplementary data about the instance of the concept. WG Approval 15/10/2019 + + + + + + + + + + + + + + + Is using e u funds + + + The procurement foresees funding by the Union. Additional Information: The funding may cover the whole procurement or part of the procurement. For example the European Structural and Investment Funds or grants awarded by the European Union. + + + + + + + + + 1 + + + + + + + + + Is covered by g p a + + + Specifies whether the Agreement on Government Procurement (GPA) applies. Additional information: The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. This corresponds in the e Forms to BT-115 GPA Coverage. WG Approval 15/10/2019 + + + + + + + + + 1 + + + + + + + + + Is recurrent + + + The Procurement being notified is likely to be included in another procedure in the foreseeable future. Additional Information: For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. This corresponds in eForms to BT-94 Recurrence. WG Approval 12/05/2020 + + + + + + + + + 1 + + + + + + + + + Has recurrence description + + + Any additional information about the recurrence of the Procurement. Additional Information: For example estimated timing of the Procedure. This corresponds in eForms to BT-95 Recurrence Description. (WG approval 2019-01-16) + + + + + + + + + 1 + + + + + + + + + Has legal basis description + + + + + + + + + + + + + + + Is accelerated + + + Statement about the fact that the procedure will be reduced due to a state of urgency. Additional Information This modifies the time limit for the receipt of requests to participate or the receipt of tenders. WG Approval 20/08/2019 + + + + + + + + + 1 + + + + + + + + + Has accelerated procedure justification + + + The reasons why the procedure is accelerated. Additional Information: A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. WG Approval 09/06/2020 + + + + + + + + + + + + + + + Has main feature + + + Main features of the procedure and information about where the full rules for the procedure can be found. Additional Information: This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds. + + + + + + + + + + + + + + + Is joint procurement + + + Multiple buyers procure together within the same procedure. Addition Information: In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm . + + + + + + + + + 1 + + + + + + + + + Is design contest + + + A competition which enables the buyer to acquire a plan or design via a jury. Additional information: Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering The contest may include or not the award of prizes; WG approval 04-02-2021 + + + + + + + + + 1 + + + + + + + + + Title + + + A name given to the resource. WG approval 30/05/2023 + + + + + + + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Name + + + The complete name of the Person as one string. + + + + + + + + + + + + + + + Family name + + + The hereditary surname of a family. + + + + + + + + + + + + + + + Given name + + + The name(s) that identify the Person within a family with a common surname. + + + + + + + + + + + + + + + Patronymic name + + + Name based on the given name of the Person's father. WG Approval 09/11/2021 + + + + + + + + + + + + + + + Alternative + + + Any name by which an individual is known other than their full name. WG 09/11/2021 + + + + + + + + + + + + + + + Birth name + + + Family name of the Person given upon their birth. WG Approval 09/11/2021 + + + + + + + + + + + + + + + Birth date + + + The point in time on which the Person was born. + + + + + + + + + 1 + + + + + + + + + Is listed company + + + Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange rules or through law or enforceable means), which impose requirements to ensure adequate transparency of beneficial ownership. <u>Additional Information:</u> In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. WG Approval 21/11/2019 + + + + + + + + + 1 + + + + + + + + + Has group type + + + Form of collaboration agreement between organisations. Additional Information: This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. WG Approval 09/11/2021 + + + + + + + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Title + + + A name given to the resource. WG approval 30/05/2023 + + + + + + + + + + + + + + + Has alias + + + Acronym or alternative name of the Agent. WG Approval 25/03/2021 + + + + + + + + + + + + + + + Has legal name + + + The officially registered name of an organisation. WG Approval 10/01/2023 + + + + + + + + + + + + + + + Has organisation unit name + + + The name of a subpart of an organisation. Additional Information: E.g. the relevant department of a large organisation. We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well. + + + + + + + + + 1 + + + + + + + + + Has buyer legal type description + + + Self-explanatory text about the Buyer Legal Type. Additional information: This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 + + + + + + + + + 1 + + + + + + + + + Has legal form type + + + The classification of an Organisation according to legislation. Additional Information: Generally, this is defined for Tenderers who want to submit as an Organisation Group. Note that the codelist provided at national level should be used. + + + + + + + + + 1 + + + + + + + + + Has main activity description + + + Self-explanatory text about the Main Activity . Additional information: This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022 + + + + + + + + + 1 + + + + + + + + + Has internet address + + + The main web page used by the instance of the concept. WG Approval 01/06/2023 + + + + + + + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Title + + + A name given to the resource. WG approval 30/05/2023 + + + + + + + + + + + + + + + Is contracting entity + + + Role of entities, which: (a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. (b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. Additional Information The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. WG Approval 28/04/2020 + + + + + + + + + 1 + + + + + + + + + Has activity description + + + In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. However, in eForms there is the code "other" to cover undefined activities. For mapping to this eForms feature one could also use this property. + + + + + + + + + + + + + + + Has buyer profile + + + Website address where the buyer publishes information on its procurement procedures and general information. Additional information: This corresponds in the eForms to BT-508 Buyer Profile URL. WG approval 04/05/2018 + + + + + + + + + 1 + + + + + + + + + Has fax + + + The fax number used to reach a person or an organisation. + + + + + + + + + + + + + + + Telephone + + + A telephone number through which the Contact Point can be contacted. + + + + + + + + + + + + + + + Email + + + The email of the Organisation. + + + + + + + + + 1 + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Has contact name + + + A short text by which a contact is known or referred to. WG Approval: 27/01/2022 + + + + + + + + + 1 + + + + + + + + + Has internet address + + + The main web page used by the instance of the concept. WG Approval 01/06/2023 + + + + + + + + + 1 + + + + + + + + + Has address u r l + + + + + + + + + 1 + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + 1 + + + + + + + + + Geographic name + + + A textual description for a Location. Additional Information: The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - "Aθnνa"@gr-Grek (the Greek endonym written in the Greek script) - "Ath&#237;na"@gr-Latn (the standard Romanisation of the endonym) - "Athens"@en (the English language exonym) INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - use 'EL' in preference to the ISO 3166 code GR for Greece. Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code. + + + + + + + + + 1 + + + + + + + + + Post name + + + The key postal division of the address, usually the city. (INSPIRE's definition is "One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, "Paris". + + + + + + + + + + + + + + + Address area + + + The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. Additional Information: This would typically be part of a city, a neighbourhood or village, e.g. Montmartre. + + + + + + + + + 1 + + + + + + + + + Locator name + + + Proper noun(s) applied to the real world entity identified by the locator. Additional Information: The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, "Shumann, Berlaymont" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator. + + + + + + + + + 1 + + + + + + + + + Admin unit l2 + + + The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. Additional Information: Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as "http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01" in the ATU controlled vocabulary. + + + + + + + + + 1 + + + + + + + + + Full address + + + The complete address written as a formatted string. Additional Information: Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is "Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France". + + + + + + + + + 1 + + + + + + + + + Locator designator + + + A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. Additional Information: In simpler terms, this is the building number, apartment number, etc. For an address such as "Flat 3, 17 Bridge Street", the locator is "flat 3, 17". + + + + + + + + + 1 + + + + + + + + + Admin unit l1 + + + The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. Additional Information: Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this. + + + + + + + + + 1 + + + + + + + + + Post code + + + The post/zip code of an address. (INSPIRE's definition is "A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.") Additional Information: Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example "75000". + + + + + + + + + + + + + + + Thoroughfare + + + An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. Additional Information: For example, "Avenue des Champs-&#201;lys&#233;es". + + + + + + + + + + + + + + + Coordinates + + + The coordinate list. + + + + + + + + + + + + + + + Longitude + + + The longitude. + + + + + + + + + + + + + + + Latitude + + + The latitude. + + + + + + + + + + + + + + + Has estimated contract notice publication date + + + Foreseen date for publication of Contract Notice. Additional information: This corresponds in eForms BT-127 Future Notice. + + + + + + + + + 1 + + + + + + + + + Has estimated tender invitation date + + + The planned date for the dispatch of the invitations to submit tenders. WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Has award date scheduled + + + Planned date for the award decision. WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Is procurement document restricted + + + The access to certain procurement documents is restricted. Additional Information: This corresponds in eForms to BT-14 Documents Restricted. WG Approval 10/10/2019 + + + + + + + + + 1 + + + + + + + + + Has restricted access u r l + + + The internet address with information on accessing the restricted (part of the) procurement document. Additional Information: This corresponds in eForms to BT-615 Documents Restricted URL. + + + + + + + + + 1 + + + + + + + + + Has additional information deadline + + + The time limit for requesting further information. Additional information: This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. This corresponds in eForms to BT-13 Additional Information Deadline. WG Approval 09/06/2020 + + + + + + + + + 1 + + + + + + + + + Has public access u r l + + + Web page where the procurement documents can be downloaded. Additional Information: This corresponds in the eForms to BT-15 Documents URL. WG Approval 09/03/2021 + + + + + + + + + 1 + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + 1 + + + + + + + + + Is non disclosure agreement required + + + + + + + + + 1 + + + + + + + + + Has opening date time + + + Date and time for the opening of tenders. WG Approval 12/03/2019 + + + + + + + + + 1 + 1 + + + + + + + + + Has opening description + + + Further information about the opening of tenders. Additional Information For example, who may participate in the opening and whether any authorization is needed. WG Approval 12/03/2019 + + + + + + + + + + + + + + + Has opening u r l + + + The identifier of the address of the Opening of Tenders. WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Has deadline + + + The deadline by which the security clearance must be submitted to the buyer. WG Approval 12/09/2019 + + + + + + + + + 1 + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Is security clearance required + + + + + + + + + 1 + + + + + + + + + Has justification + + + An explanation about the reasons for using the concept. WG Approval 5/11/2019 + + + + + + + + + + + + + + + Is submission for all lots allowed + + + Indicates whether tenders may be submitted for all Lots. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) WG approval 23/08/2022 + + + + + + + + + 1 + + + + + + + + + Has cross border law + + + The applicable law when buyers from different countries procure together within one procurement procedure. Additional Information: This corresponds in eForms to BT-09 Cross Border Law. + + + + + + + + + + + + + + + Is one lot only allowed + + + Indicates whether tenders may be submitted for only one Lot. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 + + + + + + + + + 1 + + + + + + + + + Has group lot evaluation method + + + Description of how lots and groups of lots are evaluated against one another in the procedure. + + + + + + + + + + + + + + + Is awarded by c p b + + + Procedure is awarded by a Central Purchasing Body. + + + + + + + + + 1 + + + + + + + + + Has maximum lot submission allowed + + + The total number of lots for which one Tenderer can submit Tenders. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 12/12/2018 + + + + + + + + + 1 + + + + + + + + + Has lot award combination + + + The contracting authority reserves the right to award contracts combining lots or groups of lots. Additional Information: This property contains information about the Lots concerned. This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022 + + + + + + + + + 1 + + + + + + + + + Has maximum number of lots to be awarded + + + The maximum number of lots for which contract(s) can be awarded to one tenderer. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG Approval 22/08/2019 + + + + + + + + + 1 + + + + + + + + + Has national procedure rules + + + + + + + + + + + + + + + Has e auction u r l + + + The internet address of the electronic auction. Additional Information: This corresponds in eForms to BT-123 Electronic Auction URL. + + + + + + + + + 1 + + + + + + + + + Has receipt deadline + + + The time limit for receiving submissions. Additional Information This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. This attribute should be used for standard forms mappings. WG Approval 21/07/2020 + + + + + + + + + 1 + + + + + + + + + Has receipt expression deadline + + + Time limit for receipt of expressions of interest. Pending of review by the WG + + + + + + + + + 1 + + + + + + + + + Is guarantee required + + + The submitted information must include a financial commitment to be used in case of default. Additional Information: See the additional information provided in the definition of the 'Guarantee Description' element. WG Approval 21/07/20 + + + + + + + + + 1 + + + + + + + + + Has guarantee description + + + Information on the financial commitment required from the economic operator. Additional Information: 1. This information may include the amount and the way of delivering of the guarantee 2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. 3. Usual modalities are bonds, cheques, loans, other. WG Approval 21/07/20 + + + + + + + + + + + + + + + Has submission u r l + + + Additional Information: This corresponds to the eForms BT-18 Submission URL. This corresponds in eForms to BT-509 Organisation eDelivery Gateway. + + + + + + + + + + + + + + + Has non electronic submission description + + + Textual explanation of how non-electronic information is to be presented. WG Approval 21/07/2020 + + + + + + + + + + + + + + + Has receipt preliminary market consultation deadline + + + + + + + + + 1 + + + + + + + + + Is advanced electronic signature required + + + Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. The submitted information is required to be signed electronically. Additional Information: Signature can be defined as "data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. WG Approval 21/07/2020 + + + + + + + + + 1 + + + + + + + + + Has receipt participation request deadline + + + + + + + + + 1 + + + + + + + + + Is multiple tender submission allowed + + + Tenderers may submit more than one competing tenders. WG Approval 10/10/2019 + + + + + + + + + 1 + + + + + + + + + Has receipt tender deadline + + + + + + + + + 1 + + + + + + + + + Has late submission information description + + + A narrative text explaining the content of the economic operator information that can be submitted late. Additional Information This does not apply to requests for clarifications. + + + + + + + + + + + + + + + Has e ordering + + + Electronic means will be used for requesting and purchasing in the post-award process. WG Approval 12/09/2019 + + + + + + + + + 1 + + + + + + + + + Has e payment + + + Electronic means must be used for paying. WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Has options + + + The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid). + + + + + + + + + 1 + + + + + + + + + Has e invoicing + + + Electronic means will be used for invoicing in the post-award process. Additional Information: This attribute is used for standard form mappings. WG Approval 12/09/2019 + + + + + + + + + 1 + + + + + + + + + Is renewal indicator + + + Indicates whether the contract is subject to a renewal clause. WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Has maximum number of renewals + + + The maximum number of times the contract can be renewed. Additional Information By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms. + + + + + + + + + 1 + + + + + + + + + Has options description + + + The motivation and details about additional purchases that the buyer may undertake while the contract is valid. WG Approval 09/04/2019 + + + + + + + + + + + + + + + Has renewal description + + + Any other information about the renewal(s). WG approval 16/04/2019 + + + + + + + + + + + + + + + Has payment arrangement + + + Information about financial clauses that will govern some economic aspects of the execution of the contract. Additional Information: These clauses usually refer to financial and payment provisions. This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. WG Pending of discussion with eForms + + + + + + + + + + + + + + + Has legal form requirement + + + The legal form to be taken by a Contractor. Additional Information: Generally, this is defined to cover the case where an Organisation Group is involved. Note that the codelist provided at national level should be used. + + + + + + + + + 1 + + + + + + + + + Has place of performance additional information + + + Further details on the location of the execution of the contract. WG Approval 30/07/2019 + + + + + + + + + + + + + + + Has performance conditions + + + The particular conditions and additional information related to the execution of the contract. Additional Information: For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. WG approval 15-01-2019 + + + + + + + + + + + + + + + Is jury decision binding + + + Indicates whether the procuring entity is bound to apply the decision of the jury. + + + + + + + + + 1 + + + + + + + + + Has participation payment + + + Details on payments to participants WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Has followup contract + + + Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. WG Approval 29/08/2019 + + + + + + + + + 1 + + + + + + + + + Has followup contract information + + + Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). WG Approval 03/09/2019 + + + + + + + + + + + + + + + Has maximum participants number + + + The maximum number of participants in the framework agreement. Additional Information: Maximum number of tenderers who may be awarded a contract within the framework agreement. The number is a positive integer. This corresponds in eForms to BT-113 Framework Maximum Participants Number. WG Approval 2019-02-05 + + + + + + + + + 1 + + + + + + + + + Has buyer category description + + + A classification of buyers participating in a framework agreement. Additional Information: Buyers that can use the Framework Agreement not mentioned by name. For example, the classification "all hospitals in the Tuscany region" is used instead of naming each individual buyer. This corresponds in eForms to BT-111 Framework Buyer Categories. WG Approval 2019-05-06 + + + + + + + + + + + + + + + Has duration extension justification + + + The explanation of the reason why the framework agreement has an extended duration. Additional Information: This corresponds in eForms to BT-109 Framework Duration Justification. The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. WG Approval 26/09/2019 + + + + + + + + + 1 + + + + + + + + + Has maximum number of candidates + + + Maximum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 + + + + + + + + + 1 + + + + + + + + + Has successive reduction + + + The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. Additional information: This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. WG Approval 22/08/2019 + + + + + + + + + 1 + + + + + + + + + Has minimum number of candidates + + + Minimum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019 + + + + + + + + + 1 + + + + + + + + + Has estimated invitation to tender date + + + The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. Additional Information: This corresponds in eForms to BT-130 Dispatch Invitation Tender. WG Approval 01/10/2019 + + + + + + + + + 1 + + + + + + + + + Has no negotiation necessary + + + The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. Additional information: See Article 29(4) of Directive 2014/24/EU. + + + + + + + + + 1 + + + + + + + + + Has estimated invitation to express interest date + + + The estimated date of dispatch of the invitations to confirm interest. Additional Information: This corresponds in eForms to BT-631 Dispatch Invitation Interest. + + + + + + + + + 1 + + + + + + + + + Has qualification system renewal description + + + + + + + + + 1 + + + + + + + + + Has prize rank + + + The position of the prize (e.g. first place, second place) in a design contest list of prizes. WG Approval 29/08/2019 + + + + + + + + + 1 + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Has maximum share + + + The maximum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 + + + + + + + + + 1 + + + + + + + + + Has minimum share + + + The minimum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019 + + + + + + + + + 1 + + + + + + + + + Has subcontracting involved + + + List of Subcontractors and the subject matter they cover are required. Additional Information: The tenderer will ned to supply this information in the tender. WG Approval 28/02/2019 + + + + + + + + + 1 + + + + + + + + + Has minimum subcontractors proposed obligation + + + The minimum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Has subcontractors proposed above obligation + + + The maximum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Has award criteria evaluation formula + + + The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543 Award Criteria Complicated. + + + + + + + + + + + + + + + Has overall quality award criteria ponderation + + + The weighting given to quality. Additional Information: This weighting covers usually all quality criteria against price or cost criteria. + + + + + + + + + 1 + + + + + + + + + Has overall price award criteria ponderation + + + The weighting given to price. Additional Information: This weighting covers usually all price criteria against cost or quality criteria. + + + + + + + + + 1 + + + + + + + + + Has award criteria order justification + + + The justification for only indicating the award criteria's order of importance, not their weighing. Additional Information: This corresponds in eForms to BT-733 Award Criteria Order Justification. + + + + + + + + + 1 + + + + + + + + + Has overall cost award criteria ponderation + + + The weighting given to cost. Additional Information: This weighting covers usually all cost criteria against price or quality criteria. + + + + + + + + + 1 + + + + + + + + + Has threshold value + + + The cut-off level for a given concept. Additional Information: This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold). + + + + + + + + + 1 + 1 + + + + + + + + + Bias + + + Parameter used to adjust the evaluation of the Criterion. Additional Information: The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the "presence of local preferences distorting international specialisation and resource allocation". When quantified, this systematic error can be removed. + + + + + + + + + 1 + + + + + + + + + Weight + + + Relative importance of the Criterion. Additional Information: The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1. + + + + + + + + + 1 + + + + + + + + + Weighting consideration description + + + Explanation of how the weighting of a Criterion is to be used. Additional Information: This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process. + + + + + + + + + 1 + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Pref label + + + The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 + + + + + + + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + 1 + + + + + + + + + Pref label + + + The preferred lexical label for a resource, in a given language. WG approval 30/05/2023 + + + + + + + + + 1 + + + + + + + + + Has award criteria stated in procurement documents + + + + + + + + + 1 + 1 + + + + + + + + + Has fixed value + + + This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed. + + + + + + + + + 1 + + + + + + + + + Describes objective participation rules + + + + + + + + + 1 + + + + + + + + + Describes verification method + + + + + + + + + 1 + + + + + + + + + Indicates performing staff information requirement + + + + + + + + + 1 + + + + + + + + + Has formula + + + The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543. + + + + + + + + + 1 + + + + + + + + + Describes profession relevant law + + + + + + + + + 1 + + + + + + + + + Has service reserved to particular profession + + + + + + + + + 1 + + + + + + + + + Describes profession + + + + + + + + + 1 + + + + + + + + + Has qualification condition + + + + + + + + + + + + + + + Has condition verification method + + + + + + + + + + + + + + + Has selection criteria stated in procurement documents + + + + + + + + + 1 + + + + + + + + + Describes minimum level of standards + + + + + + + + + 1 + + + + + + + + + Is used for candidate restriction + + + The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. Additional Information: This property is only used if a maximum number of candidates was foreseen in the procedure. This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite + + + + + + + + + 1 + + + + + + + + + Has total vehicles + + + The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 + + + + + + + + + 1 + + + + + + + + + Has zero emission vehicles + + + The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 + + + + + + + + + 1 + + + + + + + + + Has clean vehicles + + + The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020 + + + + + + + + + 1 + + + + + + + + + Has non accessibility criterion justification + + + Reason for not applying accessibility criteria. Additional information: This corresponds in eForma to BT-755 Accessibility Justification. WG Approval 05/03/2019 + + + + + + + + + + + + + + + Has strategic procurement description + + + Self-explanatory text about a concept. + + + + + + + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Is to be relaunched + + + Indicator of whether the procurement object is to be relaunched. Additional information: This can be instantiated in the post award phase. This corresponds in eForms to BT-634 Procurement Relaunch. WG Approval: 18/01/2022 + + + + + + + + + 1 + + + + + + + + + Is competition terminated + + + No further contracts will be awarded in this procedure. Additional Information: This can be instantiated in the post award phase. PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. This corresponds in eForms to BT-756 PIN Competition Termination. + + + + + + + + + 1 + + + + + + + + + Is d p s terminated + + + End of the Dynamic Purchase System (DPS). Additional Information: This property can be used in the contract award notice even if no contracts are awarded. WG Approval 22/11/2019 + + + + + + + + + 1 + + + + + + + + + Has calculation method + + + Formula for obtaining values. Additional Information: The possible values are monetary values, ranking scores, criterion weighting. WG Approval 25/05/2018 + + + + + + + + + 1 + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Has estimated percentage + + + The estimated proportion foreseen to be subcontracted. WG Approval 07/01/2020 + + + + + + + + + 1 + + + + + + + + + Has subject matter + + + Description of the share of the contract that is to be subcontracted. Additional infromation: This can be an aggregate of several subcontracts. WG Approval 09/11/2021 + + + + + + + + + + + + + + + Has non awarded contract title + + + The title the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 + + + + + + + + + 1 + + + + + + + + + Has non awarded contract number + + + The number the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022 + + + + + + + + + 1 + + + + + + + + + Has award rank + + + The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. Additional Information: This corresponds in eForms to BT-171 Tender Rank. + + + + + + + + + 1 + + + + + + + + + Has review irregularity count + + + The number of requests for a given irregularity. Additional information: This attribute corresponds in eForms to BT-635 Buyer Review Requests Count. + + + + + + + + + 1 + 1 + + + + + + + + + Has total number of complainants + + + The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. Additional information: This attribute corresponds in eForms to BT-712 Buyer Review Complainants WG Approval 11/04/2019 + + + + + + + + + 1 + + + + + + + + + Has e e a received tenders + + + The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. WG Approval 12/12/2019 + + + + + + + + + 1 + + + + + + + + + Has received participation requests + + + The amount of applications to participate from economic operators. WG Approval 12/12/2019 + + + + + + + + + 1 + + + + + + + + + Has non e e a received tenders + + + The amount of tenders received from economic operators in non-EEA countries. WG Approval 12/12/2019 15:20:36 + + + + + + + + + 1 + + + + + + + + + Has s m e received tenders + + + The amount of tenders received from micro, small and medium-sized enterprises. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. WG Approval 05/03/2020 + + + + + + + + + 1 + + + + + + + + + Has received micro tenders + + + The amount of tenders received from a micro enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. + + + + + + + + + 1 + + + + + + + + + Has received small tenders + + + Tenders from small enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. + + + + + + + + + 1 + + + + + + + + + Has medium tender per lots + + + Tenders from medium-sized enterprise. <u>Additional Information:</u> See Commission Recommendation 2003/361/EC. + + + + + + + + + 1 + + + + + + + + + Has received tenders + + + The total amount of tenders received. WG Approval 12/12/2019 + + + + + + + + + 1 + + + + + + + + + Has inadmissible tenders + + + Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. <u>Additional Information: </u> Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. WG Approval 12/12/2019 + + + + + + + + + 1 + + + + + + + + + Has abnormally low tenders + + + Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. Additional Information The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. WG Approval 28/07/2020 + + + + + + + + + 1 + + + + + + + + + Has non e u received tenders + + + The amount of tenders received from economic operators in non-EU countries. + + + + + + + + + 1 + + + + + + + + + Has unverified tenders + + + Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). WG Approval 28/07/2020 + + + + + + + + + 1 + + + + + + + + + Has electronic tenders + + + Electronic Tender Lots received. WG Approval 28/07/2020 + + + + + + + + + 1 + + + + + + + + + Has e u received tenders + + + The amount of tenders received from economic operators in other EU countries other than the country of the buyer. + + + + + + + + + 1 + + + + + + + + + Has other countries received tenders + + + + + + + + + 1 + + + + + + + + + Has estimated total subcontracts + + + The estimated amount of work to be subcontracted in the contract resulting from the lot. WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Has number of tenderers invited + + + Number of economic operators invited to tender. Additional Information This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. WG Approval 01/12/2020 + + + + + + + + + 1 + + + + + + + + + Has payment value discrepancy justification + + + + + + + + + 1 + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + 1 + 1 + + + + + + + + + Has electronic submission + + + Transmission of tenders is possible by electronic means of communication. + + + + + + + + + 1 + + + + + + + + + Is variant + + + Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. Additional Information: The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. WG Approval 29/05/2019 + + + + + + + + + 1 + + + + + + + + + Has o j s issue number + + + + + + + + + 1 + + + + + + + + + Has o j s type + + + + + + + + + 1 + + + + + + + + + Has long title + + + + + + + + + 1 + + + + + + + + + Has notice publication number + + + + + + + + + 1 + + + + + + + + + Has form number + + + + + + + + + 1 + + + + + + + + + Has e forms subtype + + + + + + + + + 1 + + + + + + + + + Is e u institution + + + + + + + + + 1 + + + + + + + + + Has additional information + + + Supplementary data about the instance of the concept. WG Approval 15/10/2019 + + + + + + + + + 1 + + + + + + + + + Has e sender dispatch date + + + The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. Additional Information: Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. WG approval 20/06/2023 + + + + + + + + + 1 + + + + + + + + + Title + + + A name given to the resource. WG approval 30/05/2023 + + + + + + + + + 1 + + + + + + + + + Has publication date + + + Date of formal public issuance of the document. WG approval 20/06/2023 + + + + + + + + + 1 + + + + + + + + + Has reception date + + + Notes: Date when a record is acknowledged by an organisation. WG Approval 12/05/2020 + + + + + + + + + 1 + + + + + + + + + Has dispatch date + + + Date of transmission of a record to an organisation. WG Approval 12/05/2020 + + + + + + + + + 1 + + + + + + + + + Issued + + + Date of formal issuance of the resource. Additional information: This is generally used for modules other than eNotice. The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. WG approval 26/01/2023 + + + + + + + + + 1 + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + 1 + + + + + + + + + Has access u r l + + + Location where the resource can be accessed. WG approval 07/04/2022 + + + + + + + + + + + + + + + Has version + + + A number that identifies a specific state of a document. WG approval: 18/11/2021 + + + + + + + + + 1 + + + + + + + + + Has award decision date + + + The official date of the award decision. Additional Information: This corresponds in eForms to BT-1451 Winner Decision Date. WG Approval 09/01/2020 + + + + + + + + + 1 + + + + + + + + + Has additional non award justification + + + Further justification for the non award . Additional information: This is generally used when the non award reason code is set to "Other". WG: 18/01/2022 + + + + + + + + + 1 + + + + + + + + + Title + + + A name given to the resource. WG approval 30/05/2023 + + + + + + + + + + + + + + + Description + + + An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023 + + + + + + + + + + + + + + + Has u r l + + + The identifier of a resource. Additional Information For example: 1. The URL of the system from where to access the procurement documents; 2. The URL of the system for the submission of tender documents; 3. The URL of the system from where to download a tool to communicate with the Buyer; 4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) 5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; WG Approval 30/09/2019 + + + + + + + + + 1 + + + + + + + + + Has contract conclusion date + + + The date the contract was signed by the last signatory party. <u>Additional Information:</u> In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. This concept is not to be confused with the date of completion/end of the contract. This corresponds in eForms to BT-145 Contract Conclusion Date. WG Approval 09/01/2020 + + + + + + + + + 1 + + + + + + + + + Has entry into force date + + + The date on which the contract enters into force. Additional information: This is generally the date on which the fulfillment of the contract begins. This corresponds in eForms to WG approval 05/11/2019 + + + + + + + + + 1 + + + + + + + + + Has decision date + + + The date of the review decision. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. + + + + + + + + + 1 + + + + + + + + + Has element reference + + + Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. + + + + + + + + + + + + + + + Has review u r l + + + The internet address of the documents concerning the review instance. Additional information: This attribute corresponds in eForms to BT-794 Review URL. + + + + + + + + + 1 + + + + + + + + + Has number of review requests + + + The number of requests the buyer received to review any of its decisions. + + + + + + + + + 1 + 1 + + + + + + + + + Is withdrawn + + + The review request was withdrawn. Additional information: This attribute corresponds in eForms to BT-796 Review Request Withdrawn. + + + + + + + + + 1 + + + + + + + + + Has withdrawal date + + + The date and time when the request for review was withdrawn. Additional information: This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date. + + + + + + + + + 1 + + + + + + + + + Has withdrawal reason + + + The explanation for withdrawing the request for review. Additional information: This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons + + + + + + + + + 1 + + + + + + + + + Has request date + + + The date when the review request was submitted. Additional information: This attribute corresponds to the BT-787 Review Date in eForms. + + + + + + + + + 1 + + + + + + + + + Has element reference + + + Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. + + + + + + + + + 1 + 1 + + + + + + + + + Has previous version of element reference + + + Reference to the class instance in the previous version of the notice, which was changed. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier. + + + + + + + + + 1 + + + + + + + + + Has change description + + + Explanatory text about the instance of the concept. WG Approval 30/09/2019 + + + + + + + + + + + + + + + Has change reason description + + + Explanatory text about why the element is altered. Additional information: This corresponds in eForms to BT-762 Change Reason Description. + + + + + + + + + + + + + + + Is procurement document changed + + + One or more procurement documents have been changed. Additional information: This corresponds in eForms to BT-718 Change Procurement Documents WG Approval 05/11/2019 + + + + + + + + + 1 + + + + + + + + + Has procurement document change date + + + The date and time of the change. Additional information: This corresponds in eForms to BT-719 Change Procurement Documents Date WG Approval 5/11/2019 + + + + + + + + + 1 + + + + + + + + + Has additional information + + + Supplementary data about the instance of the concept. WG Approval 15/10/2019 + + + + + + + + + 1 + + + + + + + + + Has instance reference + + + The URI of a given class that is being referred to. + + + + + + + + + 1 + 1 + + + + + + + + + Has property reference + + + The URI of a given attribute (property) that is being referred to. + + + + + + + + + 1 + 1 + + + + + + + + + Has accessibility date + + + The date at which unpublished data shall be published. WG Approval 11/06/2020 + + + + + + + + + 1 + + + + + + + + + Has confidentiality justification + + + A narrative explanation of why data is not published. Additional Information: This element is generally used when the non-publication-justification code chosen is "other". WG Approval 09/11/2021 + + + + + + + + + 1 + + + + + + + + + Has element reference + + + Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier. + + + + + + + + + 1 + + + + + + + + + Has modification description + + + An explanatory text about this context. Additional Information This corresponds in Standard forms to Field VII.2.1 in F20 This corresponds in eForms to BT-202 . WG Approval 5/11/2019 + + + + + + + + + + + + + + + Has modification reason description + + + An explanation about the reasons for using the concept. Additional Information This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. This corresponds in eForms to BT-201 . WG Approval 5/11/2019 + + + + + + + + + + + + + + + Has preferred publication date + + + The date the buyer would like to have the record made publicly available. Additional Information: This corresponds in eForms to BT-738 Notice Publication Date Preferred. WG Approval 12/05/2020 + + + + + + + + + 1 + + + + + + + + + Notation + + + The literal identifying an entity, like a person or an object. + + + + + + + + + 1 + 1 + + + + + + + + + Schema agency + + + The name of the agency that issued the identifier. + + + + + + + + + + + + + + + Has scheme + + + The name of the identification scheme. + + + + + + + + + + + + + + + Has scheme version + + + The version of the identification scheme. + + + + + + + + + + + + + + + Has amount value + + + The numeric value of the amount, including decimals. + + + + + + + + + 1 + 1 + + + + + + + + + Has currency code list agency i d + + + Identifier of the agency that maintains the currency code list used. WG approval 13/04/2021 + + + + + + + + + + + + + + + Has currency code list agency name + + + Name of the agency that maintains the currency code list used. WG approval 13/04/2021 + + + + + + + + + + + + + + + Has currency code list i d + + + Concept scheme URI used for the currency code list. WG approval 13/04/2021 + + + + + + + + + + + + + + + Has beginning + + + The date and time on which this period begins. + + + + + + + + + 1 + + + + + + + + + Has end + + + The date and time at which this period ends. + + + + + + + + + 1 + + + + + + + + + Has quantity value + + + The numeric value of the quantity, including decimals. + + + + + + + + + 1 + 1 + + + + + + + + + Has unit description + + + A narrative explanation defining the units of items being counted Additional information: This could be for example individual items or pack or two. WG Approval 09/11/2021 + + + + + + + + + + + + + + + Numeric duration + + + Value of a temporal extent expressed as a number. + + + + + + + + + 1 + 1 + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasCandidateList> ?that . ?that <http://data.europa.eu/a4g/ontology#hasCandidateList> ?this .} + + + + + + + + + + Has candidate list + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsInDynamicPurchasingSystem> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsInDynamicPurchasingSystem> ?this .} + + + + + + + + + + Results in dynamic purchasing system + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#usesCandidateList> ?that . ?that <http://data.europa.eu/a4g/ontology#usesCandidateList> ?this .} + + + + + + + + + + Uses candidate list + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesAwardCriterion> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesAwardCriterion> ?this .} + + + + + + + + + + Specifies award criterion + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#followsRulesSetBy> ?that . ?that <http://data.europa.eu/a4g/ontology#followsRulesSetBy> ?this .} + + + + + + + + + + Follows rules set by + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsMiniCompetition> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsMiniCompetition> ?this .} + + + + + + + + + + Concerns mini competition + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesMiniCompetitionAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesMiniCompetitionAwardDecision> ?this .} + + + + + + + + + + Comprises mini competition award decision + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsFromMiniCompetitionAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsFromMiniCompetitionAwardDecision> ?this .} + + + + + + + + + + Results from mini competition award decision + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#containsCandidate> ?that . ?that <http://data.europa.eu/a4g/ontology#containsCandidate> ?this .} + + + + + + + + + + Contains candidate + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasStartDate> ?that . ?that <http://data.europa.eu/a4g/ontology#hasStartDate> ?this .} + + + + + + + + + + Has start date + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} + + + + + + + + + + Identifier + + + A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPurpose> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPurpose> ?this .} + + + + + + + + + + Has purpose + + + Relation indicating a procurement part has a puropse. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isFundedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#isFundedBy> ?this .} + + + + + + + + + + Is funded by + + + Funding is provided either completely or partially by a Fund. Additional information: This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToTerm> ?this .} + + + + + + + + + + Is subject to term + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#fulfillsStrategicProcurement> ?that . ?that <http://data.europa.eu/a4g/ontology#fulfillsStrategicProcurement> ?this .} + + + + + + + + + + Fulfills strategic procurement + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesConcession> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesConcession> ?this .} + + + + + + + + + + Foresees concession + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#usesTechnique> ?that . ?that <http://data.europa.eu/a4g/ontology#usesTechnique> ?this .} + + + + + + + + + + Uses technique + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesContractSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesContractSpecificTerm> ?this .} + + + + + + + + + + Foresees contract specific term + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#contextualisedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#contextualisedBy> ?this .} + + + + + + + + + + Contextualised by + + + The place of the AgentInRole in the procurement is expressed by a ProcurementObject. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesProcurementObject> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesProcurementObject> ?this .} + + + + + + + + + + Foresees procurement object + + + Relation indicating the instance of a Procurement Object that is planned. Additional Information: The properties of the Procurement Object that is foreseen should be read as foreseen properties. For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?this .} + + + + + + + + + + Specifies procurement criterion + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToLotSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToLotSpecificTerm> ?this .} + + + + + + + + + + Is subject to lot specific term + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLotReference> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLotReference> ?this .} + + + + + + + + + + Has lot reference + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#setsGroupingContextForLot> ?that . ?that <http://data.europa.eu/a4g/ontology#setsGroupingContextForLot> ?this .} + + + + + + + + + + Sets grouping context for lot + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToLot> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToLot> ?this .} + + + + + + + + + + Refers to lot + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousProcedureLot> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousProcedureLot> ?this .} + + + + + + + + + + Refers to previous procedure lot + + + Reference to one or more Lots in a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier WG Approval 22/11/2019 14:33:55 + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubmittedForLot> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubmittedForLot> ?this .} + + + + + + + + + + Is submitted for lot + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsReviewSummaryForLot> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsReviewSummaryForLot> ?this .} + + + + + + + + + + Concerns review summary for lot + + + Relates to Lot review summary. Additional information: This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier. + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#describesLotCompletion> ?that . ?that <http://data.europa.eu/a4g/ontology#describesLotCompletion> ?this .} + + + + + + + + + + Describes lot completion + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsLot> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsLot> ?this .} + + + + + + + + + + Concerns lot + + + Relates to Lot. + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsLot> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsLot> ?this .} + + + + + + + + + + Concerns lot + + + Relates to Lot. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasProcurementScopeDividedIntoLot> ?that . ?that <http://data.europa.eu/a4g/ontology#hasProcurementScopeDividedIntoLot> ?this .} + + + + + + + + + + Has procurement scope divided into lot + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesTechnique> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesTechnique> ?this .} + + + + + + + + + + Foresees technique + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPlannedPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPlannedPeriod> ?this .} + + + + + + + + + + Has planned period + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPlannedDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPlannedDuration> ?this .} + + + + + + + + + + Has planned duration + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPlannedPart> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPlannedPart> ?this .} + + + + + + + + + + Refers to planned part + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToProcedureSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToProcedureSpecificTerm> ?this .} + + + + + + + + + + Is subject to procedure specific term + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isExecutedByProcurementServiceProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#isExecutedByProcurementServiceProvider> ?this .} + + + + + + + + + + Is executed by procurement service provider + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#involvesBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#involvesBuyer> ?this .} + + + + + + + + + + Involves buyer + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isResponsibilityOfBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#isResponsibilityOfBuyer> ?this .} + + + + + + + + + + Is responsibility of buyer + + + + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesProcurementCriteriaSummary> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesProcurementCriteriaSummary> ?this .} + + + + + + + + + + Specifies procurement criteria summary + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousProcedure> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousProcedure> ?this .} + + + + + + + + + + Refers to previous procedure + + + Reference to a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsProcedure> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsProcedure> ?this .} + + + + + + + + + + Concerns procedure + + + Relates to Procedure. + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToProcedure> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToProcedure> ?this .} + + + + + + + + + + Refers to procedure + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} + + + + + + + + + + Identifier + + + A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesProcurementCriterion> ?this .} + + + + + + + + + + Specifies procurement criterion + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesLotGroup> ?that . ?that <http://data.europa.eu/a4g/ontology#definesLotGroup> ?this .} + + + + + + + + + + Defines lot group + + + Relation indicating a ProcedureTerm has a LotGroup. + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#describesLotGroup> ?that . ?that <http://data.europa.eu/a4g/ontology#describesLotGroup> ?this .} + + + + + + + + + + Describes lot group + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToGrouping> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToGrouping> ?this .} + + + + + + + + + + Is subject to grouping + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubmittedForLotGroup> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubmittedForLotGroup> ?this .} + + + + + + + + + + Is submitted for lot group + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#usesChannel> ?that . ?that <http://data.europa.eu/a4g/ontology#usesChannel> ?this .} + + + + + + + + + + Uses channel + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasInternalIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasInternalIdentifier> ?this .} + + + + + + + + + + Has internal identifier + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedValue> ?this .} + + + + + + + + + + Has estimated value + + + A forecast of the value of the procurement before competition. Additional Information: Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). <b> </b><b>WG Approval 05/12/2019</b> + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} + + + + + + + + + + Identifier + + + A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTotalQuantity> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTotalQuantity> ?this .} + + + + + + + + + + Has total quantity + + + The number of units required. Additional Information: The quantity needs to go along with the unit. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesTender> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesTender> ?this .} + + + + + + + + + + Comprises tender + + + Incorporates Tender. + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTotalValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTotalValue> ?this .} + + + + + + + + + + Has total value + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/registeredAddress> ?that . ?that <http://data.europa.eu/m8g/registeredAddress> ?this .} + + + + + + + + + + Registered address + + + The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/person#placeOfBirth> ?that . ?that <http://www.w3.org/ns/person#placeOfBirth> ?this .} + + + + + + + + + + Place of birth + + + The Location where the Person was born. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/person#placeOfDeath> ?that . ?that <http://www.w3.org/ns/person#placeOfDeath> ?this .} + + + + + + + + + + Place of death + + + The Location where the Person died. + + + + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasBeneficialOwner> ?that . ?that <http://data.europa.eu/a4g/ontology#hasBeneficialOwner> ?this .} + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isBeneficialOwnerOf> ?that . ?that <http://data.europa.eu/a4g/ontology#isBeneficialOwnerOf> ?this .} + + + + + + + + + + Has beneficial owner + + + A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 + + + + + + + + + Is beneficial owner of + + + A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasMember> ?that . ?that <http://data.europa.eu/a4g/ontology#hasMember> ?this .} + + + + + + + + + + Has member + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#leadBy> ?that . ?that <http://data.europa.eu/a4g/ontology#leadBy> ?this .} + + + + + + + + + + Lead by + + + + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isOwnedByAgent> ?that . ?that <http://data.europa.eu/a4g/ontology#isOwnedByAgent> ?this .} + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#ownsSystem> ?that . ?that <http://data.europa.eu/a4g/ontology#ownsSystem> ?this .} + + + + + + + + + + Is owned by agent + + + + + + + + + Owns system + + + + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} + + + + + + + + + + Identifier + + + Links a resource to an adms:Identifier class. + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#playedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#playedBy> ?this .} + + + + + + + + + + Played by + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#playedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#playedBy> ?this .} + + + + + + + + + + Played by + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLegalIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLegalIdentifier> ?this .} + + + + + + + + + + Has legal identifier + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/registeredAddress> ?that . ?that <http://data.europa.eu/m8g/registeredAddress> ?this .} + + + + + + + + + + Registered address + + + The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/address> ?that . ?that <http://data.europa.eu/m8g/address> ?this .} + + + + + + + + + + Address + + + Associates any Resource with the corresponding Address. Additional Information: Asserting the address relationship implies that the Resource has an Address. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPrimaryContactPoint> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPrimaryContactPoint> ?this .} + + + + + + + + + + Has primary contact point + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTaxIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTaxIdentifier> ?this .} + + + + + + + + + + Has tax identifier + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#exposesChannel> ?that . ?that <http://data.europa.eu/a4g/ontology#exposesChannel> ?this .} + + + + + + + + + + Exposes channel + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasContactPointInRole> ?that . ?that <http://data.europa.eu/a4g/ontology#hasContactPointInRole> ?this .} + + + + + + + + + + Has contact point in role + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesInformationProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesInformationProvider> ?this .} + + + + + + + + + + Defines information provider + + + Relation indicating a ProcedureTerm has an information provider. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesBudgetProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesBudgetProvider> ?this .} + + + + + + + + + + Defines budget provider + + + Relation indicating a ProcedureTerm has a BudgetProvider. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#signsAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#signsAwardDecision> ?this .} + + + + + + + + + + Signs award decision + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#indicatesInvoiceeContactPoint> ?that . ?that <http://data.europa.eu/a4g/ontology#indicatesInvoiceeContactPoint> ?this .} + + + + + + + + + + Indicates invoicee contact point + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#exposesInvoiceeChannel> ?that . ?that <http://data.europa.eu/a4g/ontology#exposesInvoiceeChannel> ?this .} + + + + + + + + + + Exposes invoicee channel + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#delegatesAncillaryActivitiesTo> ?that . ?that <http://data.europa.eu/a4g/ontology#delegatesAncillaryActivitiesTo> ?this .} + + + + + + + + + + Delegates ancillary activities to + + + Entrusts ancillary purchasing activities to ProcurementServiceProvider. Additional Information: Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; (b) advice on the conduct or design of public procurement procedures; (c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned; + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#bindsBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#bindsBuyer> ?this .} + + + + + + + + + + Binds buyer + + + Provides legal constraint on the Buyer. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#actsOnBehalfOf> ?that . ?that <http://data.europa.eu/a4g/ontology#actsOnBehalfOf> ?this .} + + + + + + + + + + Acts on behalf of + + + Represents. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#signedByBuyer> ?that . ?that <http://data.europa.eu/a4g/ontology#signedByBuyer> ?this .} + + + + + + + + + + Signed by buyer + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesCatalogueProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesCatalogueProvider> ?this .} + + + + + + + + + + Defines catalogue provider + + + Relation indicating an AccessTerm has a CatalogueProvider. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesCatalogueReceiver> ?that . ?that <http://data.europa.eu/a4g/ontology#definesCatalogueReceiver> ?this .} + + + + + + + + + + Defines catalogue receiver + + + Relation indicating an AccessTerm has a CatalogueReceiver. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#needsToBeAWinner> ?that . ?that <http://data.europa.eu/a4g/ontology#needsToBeAWinner> ?this .} + + + + + + + + + + Needs to be a winner + + + The Contractor must be a Winner. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#signedByContractor> ?that . ?that <http://data.europa.eu/a4g/ontology#signedByContractor> ?this .} + + + + + + + + + + Signed by contractor + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#bindsContractor> ?that . ?that <http://data.europa.eu/a4g/ontology#bindsContractor> ?this .} + + + + + + + + + + Binds contractor + + + Provides legal constraint on the Contractor. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesMediator> ?that . ?that <http://data.europa.eu/a4g/ontology#definesMediator> ?this .} + + + + + + + + + + Defines mediator + + + Relation indicating a ProcedureTerm has a Mediator. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#distributesOffer> ?that . ?that <http://data.europa.eu/a4g/ontology#distributesOffer> ?this .} + + + + + + + + + + Distributes offer + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesOfflineAccessProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesOfflineAccessProvider> ?this .} + + + + + + + + + + Defines offline access provider + + + Relation indicating an AccessTerm has an OfflineAccessProvider. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesParticipationRequestProcessor> ?that . ?that <http://data.europa.eu/a4g/ontology#definesParticipationRequestProcessor> ?this .} + + + + + + + + + + Defines participation request processor + + + Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesParticipationRequestReceiver> ?that . ?that <http://data.europa.eu/a4g/ontology#definesParticipationRequestReceiver> ?this .} + + + + + + + + + + Defines participation request receiver + + + Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesPaymentExecutor> ?that . ?that <http://data.europa.eu/a4g/ontology#definesPaymentExecutor> ?this .} + + + + + + + + + + Defines payment executor + + + Relation indicating a ContractTerm has a PaymentExecutor. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesProcurementProcedureInformationProvider> ?that . ?that <http://data.europa.eu/a4g/ontology#definesProcurementProcedureInformationProvider> ?this .} + + + + + + + + + + Defines procurement procedure information provider + + + Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#specifiesSubcontractors> ?that . ?that <http://data.europa.eu/a4g/ontology#specifiesSubcontractors> ?this .} + + + + + + + + + + Specifies subcontractors + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#substantiatesExclusionGround> ?that . ?that <http://data.europa.eu/a4g/ontology#substantiatesExclusionGround> ?this .} + + + + + + + + + + Substantiates exclusion ground + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#needsToBeATenderer> ?that . ?that <http://data.europa.eu/a4g/ontology#needsToBeATenderer> ?this .} + + + + + + + + + + Needs to be a tenderer + + + The Winner must be a Tenderer. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubmitedBy> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubmitedBy> ?this .} + + + + + + + + + + Is submited by + + + Relation indicating the submission of a tender by an economic operator. WG approval 18/05/2021 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesTenderProcessor> ?that . ?that <http://data.europa.eu/a4g/ontology#definesTenderProcessor> ?this .} + + + + + + + + + + Defines tender processor + + + Relation indicating a SubmissionTerm has a TenderProcessor. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesTenderReceiver> ?that . ?that <http://data.europa.eu/a4g/ontology#definesTenderReceiver> ?this .} + + + + + + + + + + Defines tender receiver + + + Relation indicating a SubmissionTerm has a TenderReceiver. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#indicatesAwardToWinner> ?that . ?that <http://data.europa.eu/a4g/ontology#indicatesAwardToWinner> ?this .} + + + + + + + + + + Indicates award to winner + + + Reveals the winner to whom the tender award outcome is attributed. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/address> ?that . ?that <http://data.europa.eu/m8g/address> ?this .} + + + + + + + + + + Address + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEndpointIdentifier> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEndpointIdentifier> ?this .} + + + + + + + + + + Has endpoint identifier + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} + + + + + + + + + + Identifier + + + Links a resource to an adms:Identifier class. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#geographicIdentifier> ?that . ?that <http://www.w3.org/ns/locn#geographicIdentifier> ?this .} + + + + + + + + + + Geographic identifier + + + A URI that identifies the Location. Additional Information: GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - http://dbpedia.org/resource/ISO_3166-1:GR - http://dbpedia.org/resource/ISO_3166-1:GB even when the geographic name is given as EL or UK. The use of a URIs has added advantages: - it can be used by automated systems to look up additional data (linked data); - a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#geometry> ?that . ?that <http://www.w3.org/ns/locn#geometry> ?this .} + + + + + + + + + + Geometry + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#address> ?that . ?that <http://www.w3.org/ns/locn#address> ?this .} + + + + + + + + + + Address + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesPlaceOfPerformance> ?that . ?that <http://data.europa.eu/a4g/ontology#definesPlaceOfPerformance> ?this .} + + + + + + + + + + Defines place of performance + + + Relation indicating the place of performance of a Contract. WG approval 21/03/2023 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/locn#addressID> ?that . ?that <http://www.w3.org/ns/locn#addressID> ?this .} + + + + + + + + + + Address i d + + + A globally unique identifier for each instance of an Address. Additional Information: The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesOpeningPlace> ?that . ?that <http://data.europa.eu/a4g/ontology#definesOpeningPlace> ?this .} + + + + + + + + + + Defines opening place + + + The place where the tenders will be publicly opened. WG Approval 10-10-2019 + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#isSubjectToContractSpecificTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#isSubjectToContractSpecificTerm> ?this .} + + + + + + + + + + Is subject to contract specific term + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#involvesProcurementDocument> ?that . ?that <http://data.europa.eu/a4g/ontology#involvesProcurementDocument> ?this .} + + + + + + + + + + Involves procurement document + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTenderValidityPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTenderValidityPeriod> ?this .} + + + + + + + + + + Has tender validity period + + + The relation indicating until when a tender instance is applicable. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesContractDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#definesContractDuration> ?this .} + + + + + + + + + + Defines contract duration + + + Relation indicating a ContractTerm has a Duration. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesSubcontractingTerm> ?that . ?that <http://data.europa.eu/a4g/ontology#definesSubcontractingTerm> ?this .} + + + + + + + + + + Defines subcontracting term + + + Relation indicating a term has a subterm. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesContractPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#definesContractPeriod> ?this .} + + + + + + + + + + Defines contract period + + + Relation indicating a ContractTerm has a Period. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#definesPrize> ?that . ?that <http://data.europa.eu/a4g/ontology#definesPrize> ?this .} + + + + + + + + + + Defines prize + + + Relation indicating a DesignContestRegimeTerm has a Prize. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLaunchFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLaunchFrameworkAgreementMaximumValue> ?this .} + + + + + + + + + + Has launch framework agreement maximum value + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLaunchGroupFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLaunchGroupFrameworkAgreementMaximumValue> ?this .} + + + + + + + + + + Has launch group framework agreement maximum value + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasQualificationSystemDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#hasQualificationSystemDuration> ?this .} + + + + + + + + + + Has qualification system duration + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasPrizeValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasPrizeValue> ?this .} + + + + + + + + + + Has prize value + + + The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. Additional Information: This corresponds to BT-644 in eForms. WG Approval 29/08/2019 + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/constrains> ?that . ?that <http://data.europa.eu/m8g/constrains> ?this .} + + + + + + + + + + Constrains + + + Information Concept about which a Constraint expresses a limitation. Additional Information: Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasConstraint> ?that . ?that <http://data.europa.eu/a4g/ontology#hasConstraint> ?this .} + + + + + + + + + + Has constraint + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/supportsRequirement> ?that . ?that <http://data.europa.eu/m8g/supportsRequirement> ?this .} + + + + + + + + + + Supports requirement + + + Requirement for which the Evidence provides proof. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/supportsConcept> ?that . ?that <http://data.europa.eu/m8g/supportsConcept> ?this .} + + + + + + + + + + Supports concept + + + Information Concept providing facts found/inferred from the Evidence. Additional Information: Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as "I am older that 18 years" or "this is a FairTrade product". + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} + + + + + + + + + + Identifier + + + Links a resource to an adms:Identifier class. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/m8g/hasRequirement> ?that . ?that <http://data.europa.eu/m8g/hasRequirement> ?this .} + + + + + + + + + + Has requirement + + + A more specific Requirement that is part of the Requirement. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasValidityPeriod> ?that . ?that <http://data.europa.eu/a4g/ontology#hasValidityPeriod> ?this .} + + + + + + + + + + Has validity period + + + The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasConcessionEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasConcessionEstimatedValue> ?this .} + + + + + + + + + + Has concession estimated value + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedUserConcessionRevenue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedUserConcessionRevenue> ?this .} + + + + + + + + + + Has estimated user concession revenue + + + The estimated revenue coming from the use of the concession. Additional Information: Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. This corresponds to BT-162 in eForms. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedBuyerConcessionRevenue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedBuyerConcessionRevenue> ?this .} + + + + + + + + + + Has estimated buyer concession revenue + + + The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. <u>Additional Information:</u> For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. This corresponds to BT-160 in eForms. WG Approval 07/01/2020 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesConcession> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesConcession> ?this .} + + + + + + + + + + Foresees concession + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasSubcontractingEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasSubcontractingEstimatedValue> ?this .} + + + + + + + + + + Has subcontracting estimated value + + + The estimated value of a single subcontract. This relates to BT-553 in eForms. WG Approval 01/09/2020 + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#foreseesSubcontracting> ?that . ?that <http://data.europa.eu/a4g/ontology#foreseesSubcontracting> ?this .} + + + + + + + + + + Foresees subcontracting + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasAwardedEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasAwardedEstimatedValue> ?this .} + + + + + + + + + + Has awarded estimated value + + + The estimated value that can be spent as provided by the Award Decision. <u>Additional Information</u>: This property is used for framework agreements and dynamic purchasing systems. Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. WG Approval 12/12/2019 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementMaximumValue> ?this .} + + + + + + + + + + Has framework agreement maximum value + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementEstimatedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasFrameworkAgreementEstimatedValue> ?this .} + + + + + + + + + + Has framework agreement estimated value + + + This refers to BT-660 in eForms. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?this .} + + + + + + + + + + Has approximate framework agreement value + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?this .} + + + + + + + + + + Results from lot award decision + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#resultsFromLotAwardDecision> ?this .} + + + + + + + + + + Results from lot award decision + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesLotAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesLotAwardDecision> ?this .} + + + + + + + + + + Comprises lot award decision + + + Incorporates LotAwardOutcome. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasGroupFrameworkAgreementMaximumValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasGroupFrameworkAgreementMaximumValue> ?this .} + + + + + + + + + + Has group framework agreement maximum value + + + This corresponds to BT-156 in the eForms. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasMaximumFrameworkAgreementAwardedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasMaximumFrameworkAgreementAwardedValue> ?this .} + + + + + + + + + + Has maximum framework agreement awarded value + + + The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. Additional information: The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. The Framework Agreements in a CAN are to be traced back and added to provide this value. This corresponds to the BT-118 in eForms. WG Approval 03/12/2019 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasProcurementHighestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasProcurementHighestReceivedTenderValue> ?this .} + + + + + + + + + + Has procurement highest received tender value + + + The highest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasApproximateFrameworkAgreementValue> ?this .} + + + + + + + + + + Has approximate framework agreement value + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasProcurementLowestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasProcurementLowestReceivedTenderValue> ?this .} + + + + + + + + + + Has procurement lowest received tender value + + + The lowest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasTotalAwardedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasTotalAwardedValue> ?this .} + + + + + + + + + + Has total awarded value + + + The awarded value of all lots announced in this notice, including options and renewals. Additional information: The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. The values of the individual lots announced in a CAN are to be traced back and added to provide this value. This corresponds to the BT-161 in eForms. WG Approval 03/12/2019 + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#concernsTender> ?that . ?that <http://data.europa.eu/a4g/ontology#concernsTender> ?this .} + + + + + + + + + + Concerns tender + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#comprisesTenderAwardOutcome> ?that . ?that <http://data.europa.eu/a4g/ontology#comprisesTenderAwardOutcome> ?this .} + + + + + + + + + + Comprises tender award outcome + + + Incorporates TenderAwardOutcome. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasReviewIrregularitySummary> ?that . ?that <http://data.europa.eu/a4g/ontology#hasReviewIrregularitySummary> ?this .} + + + + + + + + + + Has review irregularity summary + + + Additional information: This relation corresponds in eForms to BG-613 Buyer Review Requests + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasHighestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasHighestReceivedTenderValue> ?this .} + + + + + + + + + + Has highest received tender value + + + Amount of the Tender with the highest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasLowestReceivedTenderValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasLowestReceivedTenderValue> ?this .} + + + + + + + + + + Has lowest received tender value + + + Amount of the Tender with the lowest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019 + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#summarisesInformationForAwardDecision> ?that . ?that <http://data.europa.eu/a4g/ontology#summarisesInformationForAwardDecision> ?this .} + + + + + + + + + + Summarises information for award decision + + + Relates to submission for the given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023 + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToContract> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToContract> ?this .} + + + + + + + + + + Refers to contract + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#providesContractTotalPenaltyValue> ?that . ?that <http://data.europa.eu/a4g/ontology#providesContractTotalPenaltyValue> ?this .} + + + + + + + + + + Provides contract total penalty value + + + Additional Information: This corresponds to BT-782 in eForms. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#providesContractTotalPaymentValue> ?that . ?that <http://data.europa.eu/a4g/ontology#providesContractTotalPaymentValue> ?this .} + + + + + + + + + + Provides contract total payment value + + + Additional Information: This corresponds to BT-779 in eForms. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElectronicSignature> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElectronicSignature> ?this .} + + + + + + + + + + Has electronic signature + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasFinancialOfferValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasFinancialOfferValue> ?this .} + + + + + + + + + + Has financial offer value + + + The value offered by the Tenderer for a Lot. Additional Information: This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. This corresponds to BT-720 in eForms. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#includesTender> ?that . ?that <http://data.europa.eu/a4g/ontology#includesTender> ?this .} + + + + + + + + + + Includes tender + + + Additional information: This corresponds in eForms to BT-3202 Contract Tender Identifier. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToNotice> ?this .} + + + + + + + + + + Refers to notice + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#describesNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#describesNotice> ?this .} + + + + + + + + + + Describes notice + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousNotice> ?this .} + + + + + + + + + + Refers to previous notice + + + Additional information: This corresponds in eForms to BT-758 Change Notice Version Identifier. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToOriginalNotice> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToOriginalNotice> ?this .} + + + + + + + + + + Refers to original notice + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasUUID> ?that . ?that <http://data.europa.eu/a4g/ontology#hasUUID> ?this .} + + + + + + + + + + Has u u i d + + + A universally unique identifier for an instance of this document. WG Approval 12/05/2020 + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#associatedWith> ?that . ?that <http://data.europa.eu/a4g/ontology#associatedWith> ?this .} + + + + + + + + + + Associated with + + + The document to which a document is associated. WGM 01/03/2022 + + + + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} + + + + + + + + + + Identifier + + + Links a resource to an adms:Identifier class. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElectronicDigest> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElectronicDigest> ?this .} + + + + + + + + + + Has electronic digest + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPrevious> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPrevious> ?this .} + + + + + + + + + + Refers to previous + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasAwardedValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasAwardedValue> ?this .} + + + + + + + + + + Has awarded value + + + The value of the procurement provided by the Award Decision. Additional Information: Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. WG Approval 10/12/2019 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasBargainPrice> ?that . ?that <http://data.europa.eu/a4g/ontology#hasBargainPrice> ?this .} + + + + + + + + + + Has bargain price + + + The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. WG approval 23/05/2023 + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://www.w3.org/ns/adms#identifier> ?that . ?that <http://www.w3.org/ns/adms#identifier> ?this .} + + + + + + + + + + Identifier + + + Links a resource to an adms:Identifier class. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasContractValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasContractValue> ?this .} + + + + + + + + + + Has contract value + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasEstimatedDuration> ?that . ?that <http://data.europa.eu/a4g/ontology#hasEstimatedDuration> ?this .} + + + + + + + + + + Has estimated duration + + + Relation indicating a Contract has an estimated Duration. Additional Information When the Lot uses a Technique the contract estimated duration applies to the Technique. + + + + + + 1 + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#resolvesReviewRequest> ?that . ?that <http://data.europa.eu/a4g/ontology#resolvesReviewRequest> ?this .} + + + + + + + + + + Resolves review request + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasRemedyValue> ?that . ?that <http://data.europa.eu/a4g/ontology#hasRemedyValue> ?this .} + + + + + + + + + + Has remedy value + + + Additional information: This relation corresponds in eForms to BT-793 Review Remedy Value. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#refersToPreviousReview> ?that . ?that <http://data.europa.eu/a4g/ontology#refersToPreviousReview> ?this .} + + + + + + + + + + Refers to previous review + + + Additional information: This relation corresponds in eForms to BT-785 "Review Previous Identifier". + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasReviewRequestFee> ?that . ?that <http://data.europa.eu/a4g/ontology#hasReviewRequestFee> ?this .} + + + + + + + + + + Has review request fee + + + Additional information: This relation corresponds in eForms to BT-795 Review Request Fee. + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementModification> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementModification> ?this .} + + + + + + + + + + Has element modification + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementChange> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementChange> ?this .} + + + + + + + + + + Has element change + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementConfidentiality> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementConfidentiality> ?this .} + + + + + + + + + + Has element confidentiality + + + Relation indication that the publication provision applies to a given field of a document. + + + + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#hasElementDescription> ?that . ?that <http://data.europa.eu/a4g/ontology#hasElementDescription> ?this .} + + + + + + + + + + Has element description + + + + + + 1 + + + + SELECT ?this ?that WHERE { ?this <http://data.europa.eu/a4g/ontology#containsModificationsOf> ?that . ?that <http://data.europa.eu/a4g/ontology#containsModificationsOf> ?this .} + + + + + + + + + + Contains modifications of + + + Additional information This relation shall be used between Instances of the SAME type/class. The "modifying-instance" can be minimally instantiated, carrying the fields/information that override the fields in the "modified-instance". This means that the "modifying-instance" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance. + + + + + + + + + + + + Has legal basis + + + The legal basis under which the procurement procedure takes place. Additional Information: For example European Directives or Regulations, national law WG 09/11/2021 The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis + + + + + + + + + + + + Has legal regime + + + + + + 1 + 1 + + + + + + + + + Has procedure type + + + Identification of the Procedure used. WG Approval 09/06/2020 + + + + + + 1 + + + + + + + + + Has main classification + + + + + + + + + + + + Has additional classification + + + + + + + + + + + + Has nationality + + + + + + + + + 1 + + + + + + + + + Has country of birth + + + The country in which the Person was born. + + + + + + 1 + + + + + + + + + Has business size + + + The category of the business depending on number of employees and turnover. Additional information: See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. WG Approval 28/05/2020 + + + + + + 1 + + + + + + + + + Has main activity + + + The principal sectoral area in which an organisation operates. Additional information: The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). WG Approval 05/05/2020 + + + + + + 1 + + + + + + + + + Has registration country + + + + + + 1 + + + + + + + + + Has buyer legal type + + + A category that indicates the right of an Organisation to play the role of a buyer. Additional Information: The category also effects the rules that the buyer has to abide to within the public procurement procedure. WG 07/09/2021 + + + + + + + + + + + + Has review body type + + + + + + 1 + + + + + + + + + Has country code + + + + + + 1 + + + + + + + + + Has nuts code + + + + + + 1 + + + + + + + + + Has nuts code + + + + + + 1 + + + + + + + + + Has country code + + + + + + + + + 1 + + + + + + + + + Has document restriction justification + + + An explanation about the reasons why some procurement documents are restricted. Additional Information: This corresponds in eForms to BT-707 Documents Restricted Justification. WG Approval 09/03/2021 + + + + + + 1 + + + + + + + + + Has direct award justification + + + List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. WG Approval 28/05/2020 + + + + + + 1 + + + + + + + + + Has late submission permission + + + Whether economic operator-related information can be supplemented even after the submission deadline. Additional Information This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. WG Approval 21/07/2020 + + + + + + + + + + + + Has non electronic submission justification + + + Reason for not accepting electronic information. WG Approval 21/07/2020 + + + + + + 1 + + + + + + + + + Has variant permission + + + The obligation or possibility for tenderers to submit variants or not. Additional Information: Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. Additional Information: Further conditions for submitting variant tenders are in the procurement documents. + + + + + + 1 + + + + + + + + + Has e submission permission + + + The requirements as to what extent electronic submission is allowed. WG Approval 03/10/2019 + + + + + + + + + + + + Has tender subcontracting information + + + The information about subcontracting that must be indicated in the tender. WG Approval 10/10/2019 + + + + + + 1 + + + + + + + + + Has e catalogue permission + + + The extent to which electronic catalogues may be used in tenders. WG Approval 03/10/2019 + + + + + + + + + + + + Has language + + + Language in which the submitted information is to be expressed. WG Approval 21/07/2020 + + + + + + 1 + + + + + + + + + Has broad place of performance + + + Geopolitical zone where the contract can be executed. Additional Information Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other). + + + + + + 1 + + + + + + + + + Has e invoicing permission + + + + + + 1 + + + + + + + + + Has reserved execution + + + + + + 1 + + + + + + + + + Has contract nature type + + + Subject of the acquisition. WG Approval 11/06/2020 + + + + + + + + + + + + Has additional contract nature + + + Additional type of acquisition taken into consideration in the contract. WG Approval 11/06/2020 + + + + + + 1 + 1 + + + + + + + + + Has framework agreement type + + + The form of framework agreement used in a procurement procedure. Addition information: A concept to distinguish the different types of framework agreement, which are: 1. Framework agreement without reopening of competition, 2. Framework agreement with reopening of competition, or 3. Framework agreement partly without reopening of competition. WG Approval 19/09/2019 + + + + + + + + + + + + Has subcontracting obligation + + + The requirement the tender must meet with regard to subcontracting parts of the contract. WG Approval 09/11/2021 + + + + + + + + + + + + Has threshold type + + + The method to interpret the threshold value as minimum or a maximum. WG Approval 17/09/2019 + + + + + + 1 + + + + + + + + + Type + + + Category to which the Requirement belongs. + + + + + + 1 + + + + + + + + + Confidentiality level type + + + Security classification assigned to an Evidence e.g. classified, sensitive, public. Additional Information: Classifications should be defined by an organisation/country as an outcome of a security assessment. + + + + + + 1 + + + + + + + + + Has award criterion type + + + Category of award criterion. + + + + + + 1 + + + + + + + + + Has fixed value type + + + The method to interpret the fixed value as pertaining to a total or unit. WG Approval 17/09/2019 + + + + + + + + + + + + Has reserved procurement + + + Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 + + + + + + + + + + + + Has reserved procurement + + + Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021 + + + + + + 1 + + + + + + + + + Has weight value type + + + No definition. Waiting on CCCEV alignment. + + + + + + + + + + + + Has performing staff qualification information + + + Explanation as to if and/or when information of the persons to carry out the contract is to be provided. WG Approval 09/11/2021 The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage + + + + + + 1 + + + + + + + + + Has selection criteria usage + + + Additional Information: This corresponds in eForms to BT-748 Selection Criteria Used. + + + + + + 1 + + + + + + + + + Has selection criterion type + + + The classification of the selection criteria. Additional Information: This corresponds in eForms to BT-747 Selection Criteria Type. WG Approval 09/11/2021 + + + + + + 1 + + + + + + + + + Fulfills requirement + + + The requirement to which the concept meets. WG Approval 09/11/2021 + + + + + + 1 + + + + + + + + + Fulfills requirement + + + The requirement to which the concept meets. WG Approval 09/11/2021 + + + + + + 1 + + + + + + + + + Fulfills requirement + + + The requirement to which the concept meets. WG Approval 09/11/2021 + + + + + + + + + + + + Includes accessibility criterion + + + Explanation as to whether accessibility Criterion are used or not. WG Approval 09/11/2021 + + + + + + 1 + + + + + + + + + Has d p s scope + + + Explanation as to whether a dps is used and by whom. WG Approval 09/11/2021 The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usage + + + + + + 1 + + + + + + + + + Has usage + + + The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage + + + + + + 1 + 1 + + + + + + + + + Has irregularity type + + + Additional information: This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type + + + + + + 1 + + + + + + + + + Has received submission type + + + + + + + + + + + + Has item country of origin + + + The source country of the product or service. Additional Information: The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. WG Approval 07/01/2020 The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country + + + + + + 1 + + + + + + + + + Is based on implementing regulation + + + Indicates under which regulation a notice is created. WG Acceptance 06/09/2022 + + + + + + 1 + + + + + + + + + Conforms to legal basis + + + The Notice was designed in accordance with the given legal basis. Additional Information: This Notice can be used for Procedures which do not have the same legal basis. This holds for standard forms. + + + + + + 1 + 1 + + + + + + + + + Has notice type + + + + + + 1 + + + + + + + + + Has notification content type + + + A categorisation of templates for sets of Procurement information to be conveyed in Notices. WG Approval 12/05/2020 + + + + + + 1 + + + + + + + + + Conforms to specific legal basis + + + + + + 1 + + + + + + + + + Has form type + + + A categorisation of the steps in which the Notice is used. WG Approval 12/05/2020 + + + + + + 1 + + + + + + + + + Has official language + + + The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. WG Approval 03/10/2019 + + + + + + + + + + + + Has unofficial language + + + The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. WG Approval 03/10/2019 + + + + + + 1 + + + + + + + + + Has award status + + + Indicates whether the lot is awarded, not awarded or still open. WG Approval 03/12/2019 + + + + + + 1 + + + + + + + + + Has non award justification + + + On hold; Enumeration. + + + + + + 1 + + + + + + + + + Has fund programme + + + + + + 1 + + + + + + + + + Has procurement classification + + + + + + + + + + + + Provides ruling on remedy + + + States the measures to be taken after a review procedure. + + + + + + + + + + + + Has confirmed irregularity type + + + Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type + + + + + + + + + + + + Has review decision type + + + Additional information: This relation corresponds in eForms to BT-790 Review Decision Type. + + + + + + 1 + + + + + + + + + Has alleged irregularity type + + + Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type + + + + + + + + + + + + Requests remedy type + + + Additional information: This relation corresponds in eForms to BT-792 Review Remedy Type + + + + + + 1 + 1 + + + + + + + + + Has change justification + + + The motives for the change. WG 5/11/2019 The codelist to be used is at-voc:change-corrig-justification which is available at http://publications.europa.eu/resource/dataset/change-corrig-justification + + + + + + 1 + 1 + + + + + + + + + Has non publication justification + + + The reason why data is not published. WG Approval 11/06/2020 + + + + + + 1 + 1 + + + + + + + + + Has modification justification + + + Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200. + + + + + + 1 + + + + + + + + + Has currency + + + The identifier of the currency as in the standard code list used. + + + + + + 1 + + + + + + + + + Has time period + + + + + + + + + 1 + 1 + + + + + + + + + Has unit code + + + + + + 1 + 1 + + + + + + + + + Unit type + + + In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) + + + When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions. + + + This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping + + + In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria. + + + In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) + + + Check definitions for all concepts and relations. + + + Check definitions for all concepts and relations. + + + Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract. + + + Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. + + + Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. + + + Proposal to omit this link until we bring tax into ePO core because this does not appear in the data + + + <b>Procedure/ PlannedProcurementPart / Lot</b> are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the "process" description and "whole procurement subject matter". TODO: revise this definition. TODO: specify that all procedures have al least one lot. + + + should this be moved to document? + + + if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject. + + + there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..* + + + In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. + + + In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. + + + A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023 + + + based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure + + + BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision. + + + Context: Consumption or end use of the procurement (goods and service). + + + Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms). + + + Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. + + + Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. + + + To be decided if this should stay in the core or in the Offer module + + + What are the entities that can be reviewed? + + + This does not work in practice. + + + Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms. + + diff --git a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl new file mode 100644 index 0000000..e27ea5c --- /dev/null +++ b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl @@ -0,0 +1,5364 @@ +@prefix : . +@prefix adms: . +@prefix at-voc: . +@prefix cccev: . +@prefix core-shape: . +@prefix dcterms: . +@prefix foaf: . +@prefix locn: . +@prefix org: . +@prefix owl: . +@prefix person: . +@prefix rdf: . +@prefix rdfs: . +@prefix sh: . +@prefix skos: . +@prefix time: . +@prefix vann: . +@prefix xsd: . + +core-shape:adms-Identifier a sh:NodeShape ; + rdfs:label "Identifier" ; + rdfs:comment "A character string to identify and distinguish uniquely, one instance of an object in an identification scheme from all other objects in the same scheme together with relevant supplementary information." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:adms-Identifier-adms-schemaAgency, + core-shape:adms-Identifier-epo-hasScheme, + core-shape:adms-Identifier-epo-hasSchemeVersion, + core-shape:adms-Identifier-skos-notation ; + sh:targetClass adms:Identifier . + +core-shape:at-voc-winner-selection-status rdfs:comment "This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping" . + +core-shape:cccev-Constraint a sh:NodeShape ; + rdfs:label "Constraint" ; + rdfs:comment "Limitation applied to an Information Concept. Additional Information: Constraints are Requirements in themselves, since they impose prerequisites which influence the definition, use and/or Fulfilment of the Requirement. They represent hard conditions such as minimum or maximum expressions which can be used to evaluate pieces of information, the required age, income, involvement in activities, etc. An example from the eProcurement domain is a threshold as the minimum turnover required by the buying Organisation to select the Candidates. Note that CCCEV does not provide any specific guidance on when which kind of Requirement should be used. Users of this vocabulary should make decisions on this topic in their specific context." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:cccev-Constraint-cccev-constrains, + core-shape:cccev-Constraint-epo-hasThresholdType, + core-shape:cccev-Constraint-epo-hasThresholdValue ; + sh:targetClass cccev:Constraint . + +core-shape:cccev-Criterion a sh:NodeShape ; + rdfs:label "Criterion" ; + rdfs:comment "Condition for evaluation or assessment. Additional Information: In general, Criteria are used for comparison, filtering or Selection purposes. Criteria usually set minimum conditions (e.g. limits, intervals, thresholds, etc.) that need to be met in order to pass the Requirements or to fulfil them to a certain degree or quality. The concept of Criteria is broader than the concept of Constraint since it covers more usages. The evaluation of the fulfilment is usually supported by the provision of Evidence. For example in the eProcurement domain, the eProcurement Ontology defines different subclasses of Criterion such as Exclusion Grounds, Selection Criteria or Award Criteria. A concrete example of a Criterion is 'participation in a criminal organisation' which could also be considered as an Exclusion Ground Criterion in the procurement domain or for requiring a public service." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:cccev-Criterion-cccev-bias, + core-shape:cccev-Criterion-cccev-weight, + core-shape:cccev-Criterion-cccev-weightingConsiderationDescription, + core-shape:cccev-Criterion-dct-type ; + sh:targetClass cccev:Criterion . + +core-shape:cccev-Evidence a sh:NodeShape ; + rdfs:label "Evidence" ; + rdfs:comment "Proof that a Requirement is met." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:cccev-Evidence-cccev-confidentialityLevelType, + core-shape:cccev-Evidence-cccev-supportsConcept, + core-shape:cccev-Evidence-cccev-supportsRequirement ; + sh:targetClass cccev:Evidence . + +core-shape:cccev-InformationConcept a sh:NodeShape ; + rdfs:label "Information concept" ; + rdfs:comment "Piece of information that the Evidence provides or the Requirement needs." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:cccev-InformationConcept-adms-identifier, + core-shape:cccev-InformationConcept-dct-description, + core-shape:cccev-InformationConcept-skos-prefLabel ; + sh:targetClass cccev:InformationConcept . + +core-shape:cccev-Requirement a sh:NodeShape ; + rdfs:label "Requirement" ; + rdfs:comment "Condition or prerequisite that is to be proven by Evidence. Additional Information: Requirement is a generic class representing any type of prerequisite that may be desired, needed or imposed as an obligation. CCCEV recommends to not use the Requirement class directly, but rather a more semantically-enriched subclass such as Criterion, Information Requirement or Constraint. Also note that the Requirement class is specified at a more abstract level and is not to be used as the instantiation of a Requirement for a specific Agent. To illustrate the notion: the European Directive on services in the internal market defines requirement as any obligation, prohibition, condition or limit provided for in the laws, regulations or administrative provisions of the Member States or in consequence of case-law, administrative practice, the rules of professional bodies, or the collective rules of professional associations or other professional Organisations, adopted in the exercise of their legal autonomy. To stay consistent to how identification is realised in the eProcurement ontology, we switch to using `adms:identifier` instead of `dct:identifier` as per CCCEV specification." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:cccev-Requirement-cccev-hasRequirement, + core-shape:cccev-Requirement-dct-description, + core-shape:cccev-Requirement-skos-prefLabel ; + sh:targetClass cccev:Requirement . + +core-shape:cpov-ContactPoint a sh:NodeShape ; + rdfs:label "Contact point" ; + rdfs:comment "Information (e.g. e-mail address, telephone number) of a Person or department through which the user can get in touch with. Additional information: This class represents the contact information for a Public Service, Channel, Public Organisation, etc. The Contact Point could be a role, email address, telephone number, etc. WG approval 5/11/2019", + "there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..*" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:cpov-ContactPoint-cpov-email, + core-shape:cpov-ContactPoint-cpov-telephone, + core-shape:cpov-ContactPoint-cv-address, + core-shape:cpov-ContactPoint-dct-description, + core-shape:cpov-ContactPoint-epo-hasContactName, + core-shape:cpov-ContactPoint-epo-hasFax, + core-shape:cpov-ContactPoint-epo-hasInternetAddress ; + sh:targetClass cccev:ContactPoint . + +core-shape:cpov-PublicOrganisation a sh:NodeShape ; + rdfs:label "Public organisation" ; + rdfs:comment "An Organisation that is defined as being part of the public sector by a legal framework at any level. Additional information: A body governed by public law: - (a) established for the specific Purpose of meeting needs in the general interest - (b) having legal personality; - (c) financed, for the most part by the State, or regional or local authorities. Examples of Public Organisations are municipality, international public body, ministry, others. WG Approval 28/04/2020" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass cccev:PublicOrganisation . + +core-shape:cpv-Person a sh:NodeShape ; + rdfs:label "Person" ; + rdfs:comment "A individual human being who may be dead or alive, but not imaginary." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:cpv-Person-cv-birthDate, + core-shape:cpv-Person-cv-registeredAddress, + core-shape:cpv-Person-dct-alternative, + core-shape:cpv-Person-epo-hasCountryOfBirth, + core-shape:cpv-Person-epo-hasNationality, + core-shape:cpv-Person-epo-isBeneficialOwnerOf, + core-shape:cpv-Person-foaf-familyName, + core-shape:cpv-Person-foaf-givenName, + core-shape:cpv-Person-foaf-name, + core-shape:cpv-Person-person-birthName, + core-shape:cpv-Person-person-patronymicName, + core-shape:cpv-Person-person-placeOfBirth, + core-shape:cpv-Person-person-placeOfDeath ; + sh:targetClass cccev:Person . + +core-shape:cv-Channel a sh:NodeShape ; + rdfs:label "Channel" ; + rdfs:comment "A medium through which Agents interact. Additional Information Typical examples include online services, email, endpoint on eDelivery infrastructure, phone, etc. Software solutions and electronic devices for communication and exchange of information between Buyers and economic Operators. Lots may use ad-hoc electronic means of communication that are not generally available such as specific solutions for secure and dedicated communication or non-standard eCatalogues. See also Directive recitals 53 to 56. WG approval 2023-02-14", + "based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:cv-Channel-dct-description, + core-shape:cv-Channel-epo-hasAddressURL, + core-shape:cv-Channel-epo-hasEndpointIdentifier ; + sh:targetClass cccev:Channel . + +core-shape:dct-Location a sh:NodeShape ; + rdfs:label "Location" ; + rdfs:comment "An identifiable geographic place or named place." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:dct-Location-adms-identifier, + core-shape:dct-Location-epo-hasCountryCode, + core-shape:dct-Location-epo-hasNutsCode, + core-shape:dct-Location-locn-address, + core-shape:dct-Location-locn-geographicIdentifier, + core-shape:dct-Location-locn-geographicName, + core-shape:dct-Location-locn-geometry ; + sh:targetClass dcterms:Location . + +core-shape:epo-AccessTerm a sh:NodeShape ; + rdfs:label "Access term" ; + rdfs:comment "Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-AccessTerm-epo-definesCatalogueProvider, + core-shape:epo-AccessTerm-epo-definesCatalogueReceiver, + core-shape:epo-AccessTerm-epo-definesOfflineAccessProvider, + core-shape:epo-AccessTerm-epo-definesProcurementProcedureInformationProvider, + core-shape:epo-AccessTerm-epo-hasAdditionalInformationDeadline, + core-shape:epo-AccessTerm-epo-hasDocumentRestrictionJustification, + core-shape:epo-AccessTerm-epo-hasPublicAccessURL, + core-shape:epo-AccessTerm-epo-hasRestrictedAccessURL, + core-shape:epo-AccessTerm-epo-involvesProcurementDocument, + core-shape:epo-AccessTerm-epo-isProcurementDocumentRestricted, + core-shape:epo-AccessTerm-epo-refersToPlannedPart ; + sh:targetClass :AccessTerm . + +core-shape:epo-AcquiringCentralPurchasingBody a sh:NodeShape ; + rdfs:label "Acquiring central purchasing body" ; + rdfs:comment "Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :AcquiringCentralPurchasingBody . + +core-shape:epo-AcquiringParty a sh:NodeShape ; + rdfs:label "Acquiring party" ; + rdfs:comment "The Role of an Agent that acts on the buying side of a Procurement Process." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :AcquiringParty . + +core-shape:epo-AdHocChannel a sh:NodeShape ; + rdfs:label "Ad hoc channel" ; + rdfs:comment "Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :AdHocChannel . + +core-shape:epo-AgentInRole a sh:NodeShape ; + rdfs:label "Agent in role" ; + rdfs:comment "Relative concept that ties an Agent to a part they play in a given Situational Context. Additional information: The classification of roles is based is based on the degree of involvement into the Procurement Process: - Primary (Procurement) Pole is directly involved in the Procurement Process; - Secondary (Procurement sub-) Role is secondary to the Procurement Process - Tertiary (Related) Role is not involved in the Procurement Process." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-AgentInRole-dct-description, + core-shape:epo-AgentInRole-dct-title, + core-shape:epo-AgentInRole-epo-contextualisedBy, + core-shape:epo-AgentInRole-epo-exposesChannel, + core-shape:epo-AgentInRole-epo-hasContactPointInRole, + core-shape:epo-AgentInRole-epo-playedBy ; + sh:targetClass :AgentInRole . + +core-shape:epo-AuxiliaryParty a sh:NodeShape ; + rdfs:label "Auxiliary party" ; + rdfs:comment "Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :AuxiliaryParty . + +core-shape:epo-AwardCriteriaSummary a sh:NodeShape ; + rdfs:label "Award criteria summary" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :AwardCriteriaSummary . + +core-shape:epo-AwardCriterion a sh:NodeShape ; + rdfs:label "Award criterion" ; + rdfs:comment "Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-AwardCriterion-epo-hasAwardCriteriaStatedInProcurementDocuments, + core-shape:epo-AwardCriterion-epo-hasAwardCriterionType, + core-shape:epo-AwardCriterion-epo-hasFixedValue, + core-shape:epo-AwardCriterion-epo-hasFixedValueType ; + sh:targetClass :AwardCriterion . + +core-shape:epo-AwardDecision a sh:NodeShape ; + rdfs:label "Award decision" ; + rdfs:comment "Resolution of the Buyer as to the result of the Procurement Procedure. WG approval 14/11/2018" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-AwardDecision-epo-comprisesLotAwardDecision, + core-shape:epo-AwardDecision-epo-comprisesMiniCompetitionAwardDecision, + core-shape:epo-AwardDecision-epo-comprisesTenderAwardOutcome, + core-shape:epo-AwardDecision-epo-hasAdditionalNonAwardJustification, + core-shape:epo-AwardDecision-epo-hasAwardDecisionDate, + core-shape:epo-AwardDecision-epo-hasAwardStatus, + core-shape:epo-AwardDecision-epo-hasAwardedValue, + core-shape:epo-AwardDecision-epo-hasBargainPrice, + core-shape:epo-AwardDecision-epo-hasNonAwardJustification ; + sh:targetClass :AwardDecision . + +core-shape:epo-AwardEvaluationTerm a sh:NodeShape ; + rdfs:label "Award evaluation term" ; + rdfs:comment "Conditions and stipulations defining particularities of the evaluation of Award Criteria." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaEvaluationFormula, + core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaOrderJustification, + core-shape:epo-AwardEvaluationTerm-epo-hasOverallCostAwardCriteriaPonderation, + core-shape:epo-AwardEvaluationTerm-epo-hasOverallPriceAwardCriteriaPonderation, + core-shape:epo-AwardEvaluationTerm-epo-hasOverallQualityAwardCriteriaPonderation ; + sh:targetClass :AwardEvaluationTerm . + +core-shape:epo-Awarder a sh:NodeShape ; + rdfs:label "Awarder" ; + rdfs:comment "A Role of an Agent that signs the Award Decision.", + "BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :Awarder . + +core-shape:epo-AwardingCentralPurchasingBody a sh:NodeShape ; + rdfs:label "Awarding central purchasing body" ; + rdfs:comment "Role of an Agent procuring activities conducted on a permanent basis in the form of the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for other Buyers. Additional Information: In Public Procurement the Role of Awarding Central purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :AwardingCentralPurchasingBody . + +core-shape:epo-BudgetProvider a sh:NodeShape ; + rdfs:label "Budget provider" ; + rdfs:comment "A role of an agent whose Budget is used to pay for the Contract." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :BudgetProvider . + +core-shape:epo-Business a sh:NodeShape ; + rdfs:label "Business" ; + rdfs:comment "A private law company registered in a national registry. WG Approval 28/04/2020", + "In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Business-epo-hasBeneficialOwner, + core-shape:epo-Business-epo-hasBusinessSize, + core-shape:epo-Business-epo-isListedCompany ; + sh:targetClass :Business . + +core-shape:epo-Buyer a sh:NodeShape ; + rdfs:label "Buyer" ; + rdfs:comment "A Role of an Agent that awards a Contract and/or purchases items. Additional information: In Public Procurement the Role of Buyer is carried out by the following types of Organisation: Contracting Authority, Contracting Entity, a defense Contractor, an international Organisation, or an organisation awarding a Contract subsidized by a Contracting Authority. In Pre-Award, the Buyer generally awards the Contract, however future purchasers may be foreseen. In Post-Award the buyer generally refers to the purchaser of items." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Buyer-epo-delegatesAncillaryActivitiesTo, + core-shape:epo-Buyer-epo-exposesInvoiceeChannel, + core-shape:epo-Buyer-epo-hasActivityDescription, + core-shape:epo-Buyer-epo-hasBuyerProfile, + core-shape:epo-Buyer-epo-indicatesInvoiceeContactPoint, + core-shape:epo-Buyer-epo-isContractingEntity, + core-shape:epo-Buyer-epo-signsAwardDecision ; + sh:targetClass :Buyer . + +core-shape:epo-Candidate a sh:NodeShape ; + rdfs:label "Candidate" ; + rdfs:comment "The Role of an Agent that has sought an invitation or has been invited to take part in a restricted Procedure, in a competitive Procedure with negotiation, in a negotiated Procedure without prior publication, in a competitive dialogue or in an innovation partnership. WG approval 30/05/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :Candidate . + +core-shape:epo-CatalogueProvider a sh:NodeShape ; + rdfs:label "Catalogue provider" ; + rdfs:comment "A Role of an Agent compiling and supplying a Catalogue. Additional Information: The Catalogue Provider Role is usually played by the Agent that acts as a Seller, or by another Agent that acts on behalf of the Seller. WG Approval 28/01/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :CatalogueProvider . + +core-shape:epo-CatalogueReceiver a sh:NodeShape ; + rdfs:label "Catalogue receiver" ; + rdfs:comment "A Role of an Agent processing a Catalogue. Additional Information: The Catalogue Receiver may not only receive it but also validate it, process it, etc. The Catalogue Receiver role is usually played by the agent that acts as a Buyer, or by another Agent that acts on behalf of the Buyer. WG Approval 28/01/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :CatalogueReceiver . + +core-shape:epo-CentralPurchasingBody a sh:NodeShape ; + rdfs:label "Central purchasing body" ; + rdfs:comment "Role of an Agent that provides centralised purchasing activities and, possibly, ancillary purchasing activities for other Buyers. Additional Information: In Public Procurement the Role of Central Purchasing Body is carried out by a Contracting Authority for other Contracting Authorities. Contracting Authority procuring activities conducted on a permanent basis, in one of the following forms:[...](b) the award of Public Contracts or the conclusion of Framework Agreements for works, supplies or services intended for Contracting Authorities; WG approval 05/08/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :CentralPurchasingBody . + +core-shape:epo-ConcessionContract a sh:NodeShape ; + rdfs:label "Concession contract" ; + rdfs:comment "A Contract between one or more Buyers and one or more Economic Operators giving the right to the Economic Operators to exploit the rights foreseen in the Contract which may include the receipt of Payments. WG Approval 24/05/2022" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ConcessionContract . + +core-shape:epo-ConcessionEstimate a sh:NodeShape ; + rdfs:label "Concession estimate" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ConcessionEstimate-epo-hasCalculationMethod, + core-shape:epo-ConcessionEstimate-epo-hasConcessionEstimatedValue, + core-shape:epo-ConcessionEstimate-epo-hasEstimatedBuyerConcessionRevenue, + core-shape:epo-ConcessionEstimate-epo-hasEstimatedUserConcessionRevenue ; + sh:targetClass :ConcessionEstimate . + +core-shape:epo-ContextSpecificDescription a sh:NodeShape ; + rdfs:label "Context specific description" ; + rdfs:comment "A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ContextSpecificDescription . + +core-shape:epo-ContextualProjection a sh:NodeShape ; + rdfs:label "Contextual projection" ; + rdfs:comment "Projection of an Entity and all of its properties that hold in a given Situation Context. Additional Information: The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) We say that ContextualProjection *describes* an Entity. Adaptation of ContextSlices pattern encoding a 4D view. http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ContextualProjection . + +core-shape:epo-Contract a sh:NodeShape ; + rdfs:label "Contract" ; + 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)", + "Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Contract-epo-bindsBuyer, + core-shape:epo-Contract-epo-bindsContractor, + core-shape:epo-Contract-epo-hasContractConclusionDate, + core-shape:epo-Contract-epo-hasContractValue, + core-shape:epo-Contract-epo-hasEntryIntoForceDate, + core-shape:epo-Contract-epo-hasEstimatedDuration, + core-shape:epo-Contract-epo-hasLotReference, + core-shape:epo-Contract-epo-hasProcurementClassification, + core-shape:epo-Contract-epo-includesTender, + core-shape:epo-Contract-epo-isSubjectToContractSpecificTerm, + core-shape:epo-Contract-epo-signedByBuyer, + core-shape:epo-Contract-epo-signedByContractor ; + sh:targetClass :Contract . + +core-shape:epo-ContractLotCompletionInformation a sh:NodeShape ; + rdfs:label "Contract lot completion information" ; + rdfs:comment "Information related to a given Lot at the end of the procurement." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ContractLotCompletionInformation-epo-describesLotCompletion, + core-shape:epo-ContractLotCompletionInformation-epo-hasPaymentValueDiscrepancyJustification, + core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPaymentValue, + core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPenaltyValue, + core-shape:epo-ContractLotCompletionInformation-epo-refersToContract ; + sh:targetClass :ContractLotCompletionInformation . + +core-shape:epo-ContractModification a sh:NodeShape ; + rdfs:label "Contract modification" ; + rdfs:comment "An Announcement of the Modification Of a Contract/Concession during its Term by a Buyer." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ContractModification-epo-hasElementModification, + core-shape:epo-ContractModification-epo-refersToOriginalNotice ; + sh:targetClass :ContractModification . + +core-shape:epo-ContractSpecificTerm a sh:NodeShape ; + rdfs:label "Contract specific term" ; + rdfs:comment "Gathering class for conditions and stipulations related to a contract in the Post-Award Phase." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ContractSpecificTerm . + +core-shape:epo-ContractTerm a sh:NodeShape ; + rdfs:label "Contract term" ; + rdfs:comment "Conditions and stipulations defining particularities of the Post Award Phase. (WG approval 23/11/2018)" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ContractTerm-epo-definesContractDuration, + core-shape:epo-ContractTerm-epo-definesContractPeriod, + core-shape:epo-ContractTerm-epo-definesPaymentExecutor, + core-shape:epo-ContractTerm-epo-definesPlaceOfPerformance, + core-shape:epo-ContractTerm-epo-definesSubcontractingTerm, + core-shape:epo-ContractTerm-epo-hasAdditionalContractNature, + core-shape:epo-ContractTerm-epo-hasBroadPlaceOfPerformance, + core-shape:epo-ContractTerm-epo-hasContractNatureType, + core-shape:epo-ContractTerm-epo-hasEInvoicing, + core-shape:epo-ContractTerm-epo-hasEInvoicingPermission, + core-shape:epo-ContractTerm-epo-hasEOrdering, + core-shape:epo-ContractTerm-epo-hasEPayment, + core-shape:epo-ContractTerm-epo-hasLegalFormRequirement, + core-shape:epo-ContractTerm-epo-hasMaximumNumberOfRenewals, + core-shape:epo-ContractTerm-epo-hasOptions, + core-shape:epo-ContractTerm-epo-hasOptionsDescription, + core-shape:epo-ContractTerm-epo-hasPaymentArrangement, + core-shape:epo-ContractTerm-epo-hasPerformanceConditions, + core-shape:epo-ContractTerm-epo-hasPlaceOfPerformanceAdditionalInformation, + core-shape:epo-ContractTerm-epo-hasRenewalDescription, + core-shape:epo-ContractTerm-epo-hasReservedExecution, + core-shape:epo-ContractTerm-epo-isRenewalIndicator ; + sh:targetClass :ContractTerm . + +core-shape:epo-Contractor a sh:NodeShape ; + rdfs:label "Contractor" ; + rdfs:comment "The Role of an Agent that has signed a Contract with a Buyer. WG approval 08/11/2022" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Contractor-epo-needsToBeAWinner ; + sh:targetClass :Contractor . + +core-shape:epo-DesignContestRegimeTerm a sh:NodeShape ; + rdfs:label "Design contest regime term" ; + rdfs:comment "Conditions and stipulations defining particularities of a Design Contest. WG approval: 04-02-2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-DesignContestRegimeTerm-epo-definesPrize, + core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContract, + core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContractInformation, + core-shape:epo-DesignContestRegimeTerm-epo-hasParticipationPayment, + core-shape:epo-DesignContestRegimeTerm-epo-isJuryDecisionBinding ; + sh:targetClass :DesignContestRegimeTerm . + +core-shape:epo-DirectAwardTerm a sh:NodeShape ; + rdfs:label "Direct award term" ; + rdfs:comment "Conditions and stipulations defining particularities of the award of a Contract without prior publication. Addtional Information: Direct award may refer to a previous Procedure and/or specific Lot(s). It may also refer to other justified situations whereby there is no previous Procedure. See Directive 2014/24/EU Article 32. WG Approval 22/11/2019" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-DirectAwardTerm-epo-hasDirectAwardJustification, + core-shape:epo-DirectAwardTerm-epo-hasJustification, + core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedure, + core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedureLot ; + sh:targetClass :DirectAwardTerm . + +core-shape:epo-DirectContract a sh:NodeShape ; + rdfs:label "Direct contract" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-DirectContract-epo-resultsFromLotAwardDecision ; + sh:targetClass :DirectContract . + +core-shape:epo-Document a sh:NodeShape ; + rdfs:label "Document" ; + rdfs:comment "A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Document-adms-identifier, + core-shape:epo-Document-dct-description, + core-shape:epo-Document-dct-issued, + core-shape:epo-Document-dct-title, + core-shape:epo-Document-epo-associatedWith, + core-shape:epo-Document-epo-hasAccessURL, + core-shape:epo-Document-epo-hasDispatchDate, + core-shape:epo-Document-epo-hasElectronicDigest, + core-shape:epo-Document-epo-hasElectronicSignature, + core-shape:epo-Document-epo-hasOfficialLanguage, + core-shape:epo-Document-epo-hasPublicationDate, + core-shape:epo-Document-epo-hasReceptionDate, + core-shape:epo-Document-epo-hasUUID, + core-shape:epo-Document-epo-hasUnofficialLanguage, + core-shape:epo-Document-epo-hasVersion, + core-shape:epo-Document-epo-refersToPrevious ; + sh:targetClass :Document . + +core-shape:epo-Duration a sh:NodeShape ; + rdfs:label "Duration" ; + rdfs:comment "The length of time in which a concept occurs." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :Duration . + +core-shape:epo-DynamicPurchaseSystemTechnique a sh:NodeShape ; + rdfs:label "Dynamic purchase system technique" ; + rdfs:comment "A Technique that allows the selection of Candidates throughout the Procedure via the Qualification Criteria, followed by individual Mini-Competitions for the Award of Purchase Contracts. WG approval 23/05/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-DynamicPurchaseSystemTechnique-epo-hasDPSScope, + core-shape:epo-DynamicPurchaseSystemTechnique-epo-resultsInDynamicPurchasingSystem ; + sh:targetClass :DynamicPurchaseSystemTechnique . + +core-shape:epo-DynamicPurchasingSystem a sh:NodeShape ; + rdfs:label "Dynamic purchasing system" ; + rdfs:comment "An electronic System that is set up by a Buyer which lists the Economic Operators that satisfy the Qualification Criteria, which may later be put into competition via a Mini-Competition in view of awarding a Purchase Contract. WG approval 23/05/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-DynamicPurchasingSystem-epo-hasCandidateList ; + sh:targetClass :DynamicPurchasingSystem . + +core-shape:epo-EAuctionTechnique a sh:NodeShape ; + rdfs:label "E auction technique" ; + rdfs:comment "A repetitive Technique in which new Prices, revised downwards, and/or new values concerning certain elements of Tenders are bid on-line. Additional Information: This corresponds in eForms to BT-767 Electronic Auction . WG approval 20/07/2018" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :EAuctionTechnique . + +core-shape:epo-EconomicStandingSummary a sh:NodeShape ; + rdfs:label "Economic standing summary" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :EconomicStandingSummary . + +core-shape:epo-ElectronicSignature a sh:NodeShape ; + rdfs:label "Electronic signature" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ElectronicSignature-dct-description ; + sh:targetClass :ElectronicSignature . + +core-shape:epo-ElementChangeDescription a sh:NodeShape ; + rdfs:label "Element change description" ; + rdfs:comment "Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms.", + "Information about a specific field to be changed with regard to a previous Notice." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ElementChangeDescription-epo-hasAdditionalInformation, + core-shape:epo-ElementChangeDescription-epo-hasChangeDescription, + core-shape:epo-ElementChangeDescription-epo-hasChangeJustification, + core-shape:epo-ElementChangeDescription-epo-hasChangeReasonDescription, + core-shape:epo-ElementChangeDescription-epo-hasElementReference, + core-shape:epo-ElementChangeDescription-epo-hasPreviousVersionOfElementReference, + core-shape:epo-ElementChangeDescription-epo-hasProcurementDocumentChangeDate, + core-shape:epo-ElementChangeDescription-epo-isProcurementDocumentChanged ; + sh:targetClass :ElementChangeDescription . + +core-shape:epo-ElementConfidentialityDescription a sh:NodeShape ; + rdfs:label "Element confidentiality description" ; + rdfs:comment "Information about a specific field not intended for publication. Additional Information: In the model, a field is identified by a combination of a class and a property on that class. Therefore, these two references should be both provided.", + "This does not work in practice." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ElementConfidentialityDescription-epo-hasAccessibilityDate, + core-shape:epo-ElementConfidentialityDescription-epo-hasConfidentialityJustification, + core-shape:epo-ElementConfidentialityDescription-epo-hasInstanceReference, + core-shape:epo-ElementConfidentialityDescription-epo-hasNonPublicationJustification, + core-shape:epo-ElementConfidentialityDescription-epo-hasPropertyReference ; + sh:targetClass :ElementConfidentialityDescription . + +core-shape:epo-ElementDescription a sh:NodeShape ; + rdfs:label "Element description" ; + rdfs:comment "Description about a specific resource." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ElementDescription . + +core-shape:epo-ElementModificationDescription a sh:NodeShape ; + rdfs:label "Element modification description" ; + rdfs:comment "Information about a specific field to be changed with regard to the Modification Of a Contract." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ElementModificationDescription-epo-hasElementReference, + core-shape:epo-ElementModificationDescription-epo-hasModificationDescription, + core-shape:epo-ElementModificationDescription-epo-hasModificationJustification, + core-shape:epo-ElementModificationDescription-epo-hasModificationReasonDescription ; + sh:targetClass :ElementModificationDescription . + +core-shape:epo-EmploymentInformationProvider a sh:NodeShape ; + rdfs:label "Employment information provider" ; + rdfs:comment "A Role of an Agent responsible for providing information concerning the general regulatory framework for employment protection and working conditions." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :EmploymentInformationProvider . + +core-shape:epo-EnvironmentalProtectionInformationProvider a sh:NodeShape ; + rdfs:label "Environmental protection information provider" ; + rdfs:comment "A Role of an Agent responsible for providing information concerning the general regulatory framework for Environmental Protection." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :EnvironmentalProtectionInformationProvider . + +core-shape:epo-Estimate a sh:NodeShape ; + rdfs:label "Estimate" ; + rdfs:comment "An approximate calculation or a judgement of the value, number, Quantity or extent of something." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :Estimate . + +core-shape:epo-EvaluationTerm a sh:NodeShape ; + rdfs:label "Evaluation term" ; + rdfs:comment "Conditions and stipulations defining particularities of the Tender evaluation. (WG approval 23/11/2018)" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :EvaluationTerm . + +core-shape:epo-ExclusionGround a sh:NodeShape ; + rdfs:label "Exclusion ground" ; + rdfs:comment "Criterion that describes a legal Requirement to be met by the Economic Operator to be a Candidate in the Procurement. Additional Information: This corresponds in eForms to BG-701 Exclusion Grounds. WG approval 31/10/2018" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ExclusionGround . + +core-shape:epo-ExclusionGroundsSummary a sh:NodeShape ; + rdfs:label "Exclusion grounds summary" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ExclusionGroundsSummary . + +core-shape:epo-ExpressionOfInterest a sh:NodeShape ; + rdfs:label "Expression of interest" ; + rdfs:comment "Document presenting an Economic Operator's Request to be considered for Procedures covering a specific domain. WG approval 13/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ExpressionOfInterest . + +core-shape:epo-FrameworkAgreement a sh:NodeShape ; + rdfs:label "Framework agreement" ; + rdfs:comment "An agreement between one or more Contracting Authorities and one or more Economic Operators. Additional Information: When a Framework Agreement is concerned, the FA will result from LotAwardOutcome which describes a Lot which specifies the both the Qualification and Award Criteria. WG approval 18/05/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-FrameworkAgreement-epo-resultsFromLotAwardDecision ; + sh:targetClass :FrameworkAgreement . + +core-shape:epo-FrameworkAgreementTechnique a sh:NodeShape ; + rdfs:label "Framework agreement technique" ; + rdfs:comment "Technique that establishes the terms governing Contracts to be awarded during a given Period, in particular with regard to Price and, where appropriate, the Quantity envisaged. WG approval 18/05/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :FrameworkAgreementTechnique . + +core-shape:epo-FrameworkAgreementTerm a sh:NodeShape ; + rdfs:label "Framework agreement term" ; + rdfs:comment "Conditions and stipulations defining particularities in a Framework Agreement." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-FrameworkAgreementTerm-epo-hasBuyerCategoryDescription, + core-shape:epo-FrameworkAgreementTerm-epo-hasDurationExtensionJustification, + core-shape:epo-FrameworkAgreementTerm-epo-hasFrameworkAgreementType, + core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchFrameworkAgreementMaximumValue, + core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchGroupFrameworkAgreementMaximumValue, + core-shape:epo-FrameworkAgreementTerm-epo-hasMaximumParticipantsNumber ; + sh:targetClass :FrameworkAgreementTerm . + +core-shape:epo-Fund a sh:NodeShape ; + rdfs:label "Fund" ; + rdfs:comment "A financial resource used to support the Procurement. Additional Information: In the context of EU, Funds can be divided into programmes, actions and projects. Examples of EU funds are: the European Structural and Investment Funds, European Social Fund (ESF), the Connecting Europe Facility (CEF) programme, or the ISA2 programme and its actions (e.g. Action 2016.05 European Public Procurement Initiative, which supports the eProcurement Ontology under sub-action 3). Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call. WG Approved 14/05/2019" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Fund-adms-identifier, + core-shape:epo-Fund-dct-description, + core-shape:epo-Fund-dct-title, + core-shape:epo-Fund-epo-hasFundProgramme, + core-shape:epo-Fund-epo-hasURL ; + sh:targetClass :Fund . + +core-shape:epo-GreenProcurement a sh:NodeShape ; + rdfs:label "Green procurement" ; + rdfs:comment "Approach whereby Buyers seek to procure with a reduced Environmental Impact. Additional Information: The approach may apply to the complete life cycle. The reduced Environmental Impact is in comparison to goods, services and works with the same primary function that would otherwise be procured. Tightly related are article 68 - Life-cycle costing and article 67 - most economically advantageous Tender (see GPP handbook) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf An instance of the class GreenProcurement is represented in eForms with the code \"env-imp\" defined in the codelist Strategic-Procurement.Paragraphs) https://ec.europa.eu/environment/gpp/pdf/Buying-Green-Handbook-3rd-Edition.pdf" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-GreenProcurement-epo-fulfillsRequirement, + core-shape:epo-GreenProcurement-epo-hasCleanVehicles, + core-shape:epo-GreenProcurement-epo-hasTotalVehicles, + core-shape:epo-GreenProcurement-epo-hasZeroEmissionVehicles ; + sh:targetClass :GreenProcurement . + +core-shape:epo-IndefiniteDuration a sh:NodeShape ; + rdfs:label "Indefinite duration" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :IndefiniteDuration . + +core-shape:epo-InnovativeProcurement a sh:NodeShape ; + rdfs:label "Innovative procurement" ; + rdfs:comment "An instance of the class InnovativeProcurement is represented in eForms with the code \"inn-pur\" defined in the codelist Strategic-Procurement. Research (21/01/2020): Purchasing and early adoption of solutions which are not yet available on large scale commercial basis. Source: Adapted from the Digital Single Market's Policy on Public Procurement of Innovative Solutions. https://ec.europa.eu/digital-single-market/en/public-procurement-innovative-solutions Additional Information: ‘innovation’ means the implementation of a new or significantly improved product, service or process, including but not limited to production, building or construction processes, a new marketing method, or a new organizational method in business practices, workplace Organisation or external relations inter alia with the purpose of helping to solve societal challenges or to support the Europe 2020 strategy for smart, sustainable and inclusive growth; See: Directive 2014/24 Articles: 2, 26 (3), 31, 67 (2.a) Question: Is Pre-Commercial Procurement (PCP) another type of Strategic Procurement?" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-InnovativeProcurement-epo-fulfillsRequirement ; + sh:targetClass :InnovativeProcurement . + +core-shape:epo-JuryMember a sh:NodeShape ; + rdfs:label "Jury member" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-JuryMember-epo-playedBy ; + sh:targetClass :JuryMember . + +core-shape:epo-LeadBuyer a sh:NodeShape ; + rdfs:label "Lead buyer" ; + rdfs:comment "A Role of an Agent who is a Buyer and takes the administrative lead of the Procedure. WG agreement: 2022-11-22" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :LeadBuyer . + +core-shape:epo-Lot a sh:NodeShape ; + rdfs:label "Lot" ; + rdfs:comment "A qualitative, quantitative or strategic subdivision of the goods, services or works to be procured, allowing the award of one or more Contracts. WG approval 12/09/2018" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Lot-epo-isSubjectToLotSpecificTerm, + core-shape:epo-Lot-epo-specifiesProcurementCriterion ; + sh:targetClass :Lot . + +core-shape:epo-LotAwardDecision a sh:NodeShape ; + rdfs:label "Lot award decision" ; + rdfs:comment "Result concerning the Lot attributed by the Awarder." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-LotAwardDecision-epo-concernsLot, + core-shape:epo-LotAwardDecision-epo-hasApproximateFrameworkAgreementValue, + core-shape:epo-LotAwardDecision-epo-hasAwardedEstimatedValue, + core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementEstimatedValue, + core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementMaximumValue, + core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractNumber, + core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractTitle ; + sh:targetClass :LotAwardDecision . + +core-shape:epo-LotGroup a sh:NodeShape ; + rdfs:label "Lot group" ; + rdfs:comment "Combination of several Lots to conduct comparative assessment of the Tenders. Additional Information: The comparative assessment may refer to the Selection Criteria, Award and Value that apply to several Lots. Pending of discussion with eForms Member States may provide that, where more than one lot may be awarded to the same tenderer, contracting authorities may award contracts combining several or all lots where they have specified in the contract notice or in the invitation to confirm interest that they reserve the possibility of doing so and indicate the lots or groups of lots that may be combined." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-LotGroup-adms-identifier, + core-shape:epo-LotGroup-epo-setsGroupingContextForLot, + core-shape:epo-LotGroup-epo-specifiesProcurementCriterion ; + sh:targetClass :LotGroup . + +core-shape:epo-LotGroupAwardInformation a sh:NodeShape ; + rdfs:label "Lot group award information" ; + rdfs:comment "Award information related to a given Group of Lots." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-LotGroupAwardInformation-epo-describesLotGroup, + core-shape:epo-LotGroupAwardInformation-epo-hasGroupFrameworkAgreementMaximumValue ; + sh:targetClass :LotGroupAwardInformation . + +core-shape:epo-LotSpecificTerm a sh:NodeShape ; + rdfs:label "Lot specific term" ; + rdfs:comment "Gathering class for conditions and stipulations related to a Lot." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :LotSpecificTerm . + +core-shape:epo-Mediator a sh:NodeShape ; + rdfs:label "Mediator" ; + rdfs:comment "A Role of an Agent that attempts to resolve a dispute between different Agents and come to an agreement. WG approval 20/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :Mediator . + +core-shape:epo-MiniCompetition a sh:NodeShape ; + rdfs:label "Mini competition" ; + rdfs:comment "A process where multiple winners or candidates of previous stages of a procedure bid for a specific procurement. Additional Information: It is typically used in framework agreements where the suppliers have already been pre-selected, and the mini competition is used to determine which supplier is best suited for a particular project or contract. It is also used in a Dynamic Purchasing System where the suppliers come from a list of Candidates. WG approval 30/05/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-MiniCompetition-epo-followsRulesSetBy, + core-shape:epo-MiniCompetition-epo-specifiesAwardCriterion, + core-shape:epo-MiniCompetition-epo-usesCandidateList ; + sh:targetClass :MiniCompetition . + +core-shape:epo-MiniCompetitionAwardDecision a sh:NodeShape ; + rdfs:label "Mini competition award decision" ; + rdfs:comment "Result concerning the Mini-Competition attributed by the Awarder." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-MiniCompetitionAwardDecision-epo-concernsMiniCompetition ; + sh:targetClass :MiniCompetitionAwardDecision . + +core-shape:epo-MonetaryValue a sh:NodeShape ; + rdfs:label "Monetary value" ; + rdfs:comment "A number of monetary units specified using a given unit of currency. Additional information: In the pre-award phase of the procurement, all monetary values are considered to exclude VAT based on the Directive 2014/24/EU. WG approval 13/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-MonetaryValue-epo-hasAmountValue, + core-shape:epo-MonetaryValue-epo-hasCurrency, + core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyID, + core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyName, + core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListID ; + sh:targetClass :MonetaryValue . + +core-shape:epo-MultipleStageProcedureTerm a sh:NodeShape ; + rdfs:label "Multiple stage procedure term" ; + rdfs:comment "Conditions and stipulations defining particularities of Procedures carried out in several steps Additional Information: Generally this refers to Procedures where selection is carried out to qualify Tenderers who are then requested to submit the rest of their Tender for evaluation is Restricted Procedure. WG Approval 15/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToExpressInterestDate, + core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToTenderDate, + core-shape:epo-MultipleStageProcedureTerm-epo-hasMaximumNumberOfCandidates, + core-shape:epo-MultipleStageProcedureTerm-epo-hasMinimumNumberOfCandidates, + core-shape:epo-MultipleStageProcedureTerm-epo-hasNoNegotiationNecessary, + core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemDuration, + core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemRenewalDescription, + core-shape:epo-MultipleStageProcedureTerm-epo-hasSuccessiveReduction ; + sh:targetClass :MultipleStageProcedureTerm . + +core-shape:epo-NonDisclosureAgreementTerm a sh:NodeShape ; + rdfs:label "Non disclosure agreement term" ; + rdfs:comment "Conditions and stipulations" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-NonDisclosureAgreementTerm-dct-description, + core-shape:epo-NonDisclosureAgreementTerm-epo-isNonDisclosureAgreementRequired ; + sh:targetClass :NonDisclosureAgreementTerm . + +core-shape:epo-Notice a sh:NodeShape ; + rdfs:label "Notice" ; + rdfs:comment "Document published by the Buyer about market opportunities and results. WG Approval 23/05/2019" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Notice-epo-conformsToLegalBasis, + core-shape:epo-Notice-epo-conformsToSpecificLegalBasis, + core-shape:epo-Notice-epo-hasAdditionalInformation, + core-shape:epo-Notice-epo-hasEFormsSubtype, + core-shape:epo-Notice-epo-hasESenderDispatchDate, + core-shape:epo-Notice-epo-hasFormNumber, + core-shape:epo-Notice-epo-hasFormType, + core-shape:epo-Notice-epo-hasLongTitle, + core-shape:epo-Notice-epo-hasNoticePublicationNumber, + core-shape:epo-Notice-epo-hasNoticeType, + core-shape:epo-Notice-epo-hasNotificationContentType, + core-shape:epo-Notice-epo-hasOJSIssueNumber, + core-shape:epo-Notice-epo-hasOJSType, + core-shape:epo-Notice-epo-isBasedOnImplementingRegulation, + core-shape:epo-Notice-epo-isEUInstitution, + core-shape:epo-Notice-epo-refersToLot, + core-shape:epo-Notice-epo-refersToNotice, + core-shape:epo-Notice-epo-refersToProcedure ; + sh:targetClass :Notice . + +core-shape:epo-NoticeAwardInformation a sh:NodeShape ; + rdfs:label "Notice award information" ; + rdfs:comment "Information about an Award Notice." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-NoticeAwardInformation-epo-hasApproximateFrameworkAgreementValue, + core-shape:epo-NoticeAwardInformation-epo-hasMaximumFrameworkAgreementAwardedValue, + core-shape:epo-NoticeAwardInformation-epo-hasProcurementHighestReceivedTenderValue, + core-shape:epo-NoticeAwardInformation-epo-hasProcurementLowestReceivedTenderValue, + core-shape:epo-NoticeAwardInformation-epo-hasTotalAwardedValue ; + sh:targetClass :NoticeAwardInformation . + +core-shape:epo-NoticeChange a sh:NodeShape ; + rdfs:label "Notice change" ; + rdfs:comment "Information about a corrigendum in a Notice." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-NoticeChange-epo-hasElementChange, + core-shape:epo-NoticeChange-epo-refersToPreviousNotice ; + sh:targetClass :NoticeChange . + +core-shape:epo-NoticeDescription a sh:NodeShape ; + rdfs:label "Notice description" ; + rdfs:comment "Descriptions about the notice publishing, or providing evolutions of resources." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-NoticeDescription-epo-describesNotice, + core-shape:epo-NoticeDescription-epo-hasElementDescription ; + sh:targetClass :NoticeDescription . + +core-shape:epo-Offer a sh:NodeShape ; + rdfs:label "Offer" ; + rdfs:comment "Document providing the Monetary Value and the details to fulfill the Requirements set out in the Procurement Documents or Request for Offer. Additional information: A quotation is considered to be an Offer in the eProcurement Ontology. WG approval 09/02/2023", + "To be decided if this should stay in the core or in the Offer module" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :Offer . + +core-shape:epo-OfferIssuer a sh:NodeShape ; + rdfs:label "Offer issuer" ; + rdfs:comment "The Role of an Agent that distributes an Offer. WG approval 09/02/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-OfferIssuer-epo-distributesOffer ; + sh:targetClass :OfferIssuer . + +core-shape:epo-OfferingParty a sh:NodeShape ; + rdfs:label "Offering party" ; + rdfs:comment "The Role of an Agent that acts on the Economic Operator side during a Procurement Process. Additional information: As per the European Procurement Directives the notion of ‘Economic Operators’ should be interpreted in a broad manner so as to include any Persons and/or Entities which offer the execution of works, the supply of products or the provision of services on the market, irrespective of the legal form under which they have chosen to operate. Thus, firms, branches, subsidiaries, partnerships, cooperative societies, limited companies, universities, public or private, and other forms of entities than natural Persons should all fall within the notion of Economic Operator, whether or not they are ‘Legal Persons’ in all circumstances." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :OfferingParty . + +core-shape:epo-OfflineAccessProvider a sh:NodeShape ; + rdfs:label "Offline access provider" ; + rdfs:comment "A Role of an Agent responsible for providing offline access to the Procurement Documents." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :OfflineAccessProvider . + +core-shape:epo-OpeningTerm a sh:NodeShape ; + rdfs:label "Opening term" ; + rdfs:comment "Conditions and stipulations defining particularities of the opening of Tenders. Additional Information: The opening of Tenders is the event when Tenders are made accessible for evaluation, it is generally the same date and time for all Tenders. WG Approval 15/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-OpeningTerm-epo-definesOpeningPlace, + core-shape:epo-OpeningTerm-epo-hasOpeningDateTime, + core-shape:epo-OpeningTerm-epo-hasOpeningDescription, + core-shape:epo-OpeningTerm-epo-hasOpeningURL ; + sh:targetClass :OpeningTerm . + +core-shape:epo-OrganisationGroup a sh:NodeShape ; + rdfs:label "Organisation group" ; + rdfs:comment "Agreed collaboration of several Organisations. Additional Information: This concept has been created to fulfill the need to represent a grouping of Organisations that is not necessarily registered i.e, consortia. WG approval 15/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-OrganisationGroup-epo-hasGroupType, + core-shape:epo-OrganisationGroup-epo-hasMember, + core-shape:epo-OrganisationGroup-epo-leadBy ; + sh:targetClass :OrganisationGroup . + +core-shape:epo-OriginatorRequest a sh:NodeShape ; + rdfs:label "Originator request" ; + rdfs:comment "Document in which the Originator describes his needs. WG approval 09/02/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :OriginatorRequest . + +core-shape:epo-OtherEntity a sh:NodeShape ; + rdfs:label "Other entity" ; + rdfs:comment "Economic Operator (who is not a Subcontractor) on which the Tenderer relies upon, to meet Selection Criteria." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :OtherEntity . + +core-shape:epo-ParticipationCondition a sh:NodeShape ; + rdfs:label "Participation condition" ; + rdfs:comment "Criterion that describes a Requirement to take part in a procurement. WG approval 30/05/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ParticipationCondition-epo-hasReservedProcurement ; + sh:targetClass :ParticipationCondition . + +core-shape:epo-ParticipationConditionsSummary a sh:NodeShape ; + rdfs:label "Participation conditions summary" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ParticipationConditionsSummary-epo-describesObjectiveParticipationRules, + core-shape:epo-ParticipationConditionsSummary-epo-describesVerificationMethod, + core-shape:epo-ParticipationConditionsSummary-epo-hasReservedProcurement ; + sh:targetClass :ParticipationConditionsSummary . + +core-shape:epo-ParticipationRequestProcessor a sh:NodeShape ; + rdfs:label "Participation request processor" ; + rdfs:comment "A Role of an Agent responsible for processing Requests To Participate." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ParticipationRequestProcessor . + +core-shape:epo-ParticipationRequestReceiver a sh:NodeShape ; + rdfs:label "Participation request receiver" ; + rdfs:comment "A Role of an Agent responsible for receiving Requests To Participate." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ParticipationRequestReceiver . + +core-shape:epo-ParticipationRequestTerm a sh:NodeShape ; + rdfs:label "Participation request term" ; + rdfs:comment "Conditions and stipulations defining particularities of requesting participation in a Procedure." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestProcessor, + core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestReceiver ; + sh:targetClass :ParticipationRequestTerm . + +core-shape:epo-PaymentExecutor a sh:NodeShape ; + rdfs:label "Payment executor" ; + rdfs:comment "A Role of an Agent responsible for executing the Payment." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :PaymentExecutor . + +core-shape:epo-Period a sh:NodeShape ; + rdfs:label "Period" ; + rdfs:comment "A time interval or a Duration. (WG approval 28/04/2020)" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Period-epo-hasBeginning, + core-shape:epo-Period-epo-hasEnd, + core-shape:epo-Period-epo-hasTimePeriod ; + sh:targetClass :Period . + +core-shape:epo-PlannedProcurementPart a sh:NodeShape ; + rdfs:label "Planned procurement part" ; + rdfs:comment "A subdivision of a Planned Procurement that may later become one or more Lots or a self-standing Procedure. A Lot or a Procedure can also cover one or more parts of the Planned Procurement. WG Approval 20/06/2019", + "if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-PlannedProcurementPart-epo-foreseesProcurementObject, + core-shape:epo-PlannedProcurementPart-epo-foreseesTechnique, + core-shape:epo-PlannedProcurementPart-epo-hasPlannedDuration, + core-shape:epo-PlannedProcurementPart-epo-hasPlannedPeriod ; + sh:targetClass :PlannedProcurementPart . + +core-shape:epo-Prize a sh:NodeShape ; + rdfs:label "Prize" ; + rdfs:comment "A reward given in a Contest. WG approval: 15/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Prize-epo-hasPrizeRank, + core-shape:epo-Prize-epo-hasPrizeValue ; + sh:targetClass :Prize . + +core-shape:epo-Procedure a sh:NodeShape ; + rdfs:label "Procedure" ; + rdfs:comment "A legally defined set of administrative activities conducted to conclude one or more Contracts. Additional Information The Procedure is categorised in the law according to different rules determining whether the Procedure is Open, Restricted, Negotiated with or without publicity, etc. (see Procedure Type). WG Approval 20/08/2019" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Procedure-epo-hasAcceleratedProcedureJustification, + core-shape:epo-Procedure-epo-hasMainFeature, + core-shape:epo-Procedure-epo-hasProcedureType, + core-shape:epo-Procedure-epo-hasProcurementScopeDividedIntoLot, + core-shape:epo-Procedure-epo-involvesBuyer, + core-shape:epo-Procedure-epo-isAccelerated, + core-shape:epo-Procedure-epo-isDesignContest, + core-shape:epo-Procedure-epo-isExecutedByProcurementServiceProvider, + core-shape:epo-Procedure-epo-isJointProcurement, + core-shape:epo-Procedure-epo-isResponsibilityOfBuyer, + core-shape:epo-Procedure-epo-isSubjectToProcedureSpecificTerm, + core-shape:epo-Procedure-epo-specifiesProcurementCriteriaSummary ; + sh:targetClass :Procedure . + +core-shape:epo-ProcedureSpecificTerm a sh:NodeShape ; + rdfs:label "Procedure specific term" ; + rdfs:comment "Gathering class for conditions and stipulations related to a Procedure.", + "Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms)." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ProcedureSpecificTerm . + +core-shape:epo-ProcedureTerm a sh:NodeShape ; + rdfs:label "Procedure term" ; + rdfs:comment "Conditions and stipulations defining particularities of the Procedure. (WG approval 23/11/2018)" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ProcedureTerm-epo-definesBudgetProvider, + core-shape:epo-ProcedureTerm-epo-definesInformationProvider, + core-shape:epo-ProcedureTerm-epo-definesLotGroup, + core-shape:epo-ProcedureTerm-epo-definesMediator, + core-shape:epo-ProcedureTerm-epo-hasCrossBorderLaw, + core-shape:epo-ProcedureTerm-epo-hasGroupLotEvaluationMethod, + core-shape:epo-ProcedureTerm-epo-hasLotAwardCombination, + core-shape:epo-ProcedureTerm-epo-hasMaximumLotSubmissionAllowed, + core-shape:epo-ProcedureTerm-epo-hasMaximumNumberOfLotsToBeAwarded, + core-shape:epo-ProcedureTerm-epo-hasNationalProcedureRules, + core-shape:epo-ProcedureTerm-epo-isAwardedByCPB, + core-shape:epo-ProcedureTerm-epo-isOneLotOnlyAllowed, + core-shape:epo-ProcedureTerm-epo-isSubmissionForAllLotsAllowed ; + sh:targetClass :ProcedureTerm . + +core-shape:epo-ProcessPlanningTerm a sh:NodeShape ; + rdfs:label "Process planning term" ; + rdfs:comment "Conditions and stipulations defining particularities of the unfolding of the Procurement Process." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ProcessPlanningTerm-epo-hasAwardDateScheduled, + core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedContractNoticePublicationDate, + core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedTenderInvitationDate ; + sh:targetClass :ProcessPlanningTerm . + +core-shape:epo-ProcurementCriteriaSummary a sh:NodeShape ; + rdfs:label "Procurement criteria summary" ; + rdfs:comment "WG approval 24/01/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ProcurementCriteriaSummary-epo-indicatesPerformingStaffInformationRequirement ; + sh:targetClass :ProcurementCriteriaSummary . + +core-shape:epo-ProcurementCriterion a sh:NodeShape ; + rdfs:label "Procurement criterion" ; + rdfs:comment "A criterion specific to Procurement. Additional Information: This Procurement Criterion can be only Exclusion Ground, Selection Criterion or Award Criterion. Each of these Criteria can contain subcriteria (Criterion class). WG Approval 23/04/2020" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ProcurementCriterion-epo-hasConstraint, + core-shape:epo-ProcurementCriterion-epo-hasFormula, + core-shape:epo-ProcurementCriterion-epo-hasPerformingStaffQualificationInformation, + core-shape:epo-ProcurementCriterion-epo-hasWeightValueType ; + sh:targetClass :ProcurementCriterion . + +core-shape:epo-ProcurementDocument a sh:NodeShape ; + rdfs:label "Procurement document" ; + rdfs:comment "Document produced or referred to by the Buyer to describe or determine elements of the Procurement. Additional information: Procurement Documents are to be accessible since the date of publication of the Contract Notice or the prior information Notice when used as a call for competition. Examples of Procurement Documents are Technical Specifications, the Descriptive Document, proposed conditions of Contract, formats for the presentation of Documents by Candidates and Tenderers, information on generally applicable obligations. Other Documents related to the Procedure such as Notices are not considered to be Procurement Documents. WG Approval 23/05/2019 17:08:30" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ProcurementDocument . + +core-shape:epo-ProcurementElement a sh:NodeShape ; + rdfs:label "Procurement element" ; + rdfs:comment "Gathering class for critical/central elements in the Procurement Process. TODO: add definition Additional information: Alias: ProcurementComponent" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ProcurementElement-adms-identifier, + core-shape:epo-ProcurementElement-dct-description, + core-shape:epo-ProcurementElement-dct-title, + core-shape:epo-ProcurementElement-epo-hasEstimatedValue, + core-shape:epo-ProcurementElement-epo-hasInternalIdentifier, + core-shape:epo-ProcurementElement-epo-usesChannel ; + sh:targetClass :ProcurementElement . + +core-shape:epo-ProcurementObject a sh:NodeShape ; + rdfs:label "Procurement object" ; + rdfs:comment "Procedure/ PlannedProcurementPart / Lot are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the \"process\" description and \"whole procurement subject matter\". TODO: revise this definition. TODO: specify that all procedures have al least one lot.", + "Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future.", + "The whole or a division of goods, services or works to be procured. Additional Information: Anything that can specify the procurement content (i.e. goods, services, work) is a Procurement Object. In a sense, such an \"object\" can constitute the \"object of a Contract\". To test whether something is a Procedure Object check if it can have a Purpose and/or CPV classification (The CPV establishes a single classification system for public procurement aimed at standardising the references used by Contracting Authorities and entities to describe the subject of Procurement Contracts.). Note: Procedure, seems to be an exception from this rule. Because it is a conflated term: it carries process properties and \"purpose\" properties." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ProcurementObject-epo-foreseesConcession, + core-shape:epo-ProcurementObject-epo-foreseesContractSpecificTerm, + core-shape:epo-ProcurementObject-epo-fulfillsStrategicProcurement, + core-shape:epo-ProcurementObject-epo-hasAdditionalInformation, + core-shape:epo-ProcurementObject-epo-hasLegalBasis, + core-shape:epo-ProcurementObject-epo-hasLegalBasisDescription, + core-shape:epo-ProcurementObject-epo-hasLegalRegime, + core-shape:epo-ProcurementObject-epo-hasPurpose, + core-shape:epo-ProcurementObject-epo-hasRecurrenceDescription, + core-shape:epo-ProcurementObject-epo-isCoveredByGPA, + core-shape:epo-ProcurementObject-epo-isFundedBy, + core-shape:epo-ProcurementObject-epo-isRecurrent, + core-shape:epo-ProcurementObject-epo-isSMESuitable, + core-shape:epo-ProcurementObject-epo-isSubjectToTerm, + core-shape:epo-ProcurementObject-epo-isUsingEUFunds, + core-shape:epo-ProcurementObject-epo-usesTechnique ; + sh:targetClass :ProcurementObject . + +core-shape:epo-ProcurementProcedureInformationProvider a sh:NodeShape ; + rdfs:label "Procurement procedure information provider" ; + rdfs:comment "A Role of an Agent responsible for providing additional information about the Procurement Procedure." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ProcurementProcedureInformationProvider . + +core-shape:epo-ProcurementProcessInformation a sh:NodeShape ; + rdfs:label "Procurement process information" ; + rdfs:comment "Information about the temporal unfolding or succession of Procurement Objects." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ProcurementProcessInformation-epo-concernsLot, + core-shape:epo-ProcurementProcessInformation-epo-concernsProcedure, + core-shape:epo-ProcurementProcessInformation-epo-isCompetitionTerminated, + core-shape:epo-ProcurementProcessInformation-epo-isDPSTerminated, + core-shape:epo-ProcurementProcessInformation-epo-isToBeRelaunched ; + sh:targetClass :ProcurementProcessInformation . + +core-shape:epo-ProcurementServiceProvider a sh:NodeShape ; + rdfs:label "Procurement service provider" ; + rdfs:comment "Role of a public or private body which offers ancillary purchasing activities on the market. Additional information \"Ancillary Purchasing Activities\" means activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling Contracting Authorities to award Public Contracts or to conclude Framework Agreements for works, supplies or services; (b) advice on the conduct or design of public Procurement Procedures; (c) preparation and management of Procurement Procedures on behalf and for the account of the Contracting Authority concerned; Source: Directive 2014/24/EU, Article 2, paragraphs 17 and 15. This would be equivalent to the concept of 'ProcuringEntity' in OCDS: 'The Entity managing the Procurement, which may be different from the Buyer who is paying / using the items being procured'. WG Approval 24/03/2020" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ProcurementServiceProvider-epo-actsOnBehalfOf ; + sh:targetClass :ProcurementServiceProvider . + +core-shape:epo-ProfessionalSuitabilitySummary a sh:NodeShape ; + rdfs:label "Professional suitability summary" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfession, + core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfessionRelevantLaw, + core-shape:epo-ProfessionalSuitabilitySummary-epo-hasServiceReservedToParticularProfession ; + sh:targetClass :ProfessionalSuitabilitySummary . + +core-shape:epo-Project a sh:NodeShape ; + rdfs:label "Project" ; + rdfs:comment "A collaborative enterprise that is carefully planned to achieve a particular aim." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Project-adms-identifier ; + sh:targetClass :Project . + +core-shape:epo-PublicationProvision a sh:NodeShape ; + rdfs:label "Publication provision" ; + rdfs:comment "Information about fields not intended for publication. Additional Information: The non-published information may become available at a later date and may differ from one element to another within a given Document. Examples of fields that may not be immediately published are Winner, Tender and Procedure Lot Result, etc., e.g. for security reasons. WG Approval 16/05/2019" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-PublicationProvision-epo-hasElementConfidentiality, + core-shape:epo-PublicationProvision-epo-hasPreferredPublicationDate ; + sh:targetClass :PublicationProvision . + +core-shape:epo-PurchaseContract a sh:NodeShape ; + rdfs:label "Purchase contract" ; + rdfs:comment "A Contract resulting from a Dynamic Purchasing System or Framework Agreement Contract." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-PurchaseContract-epo-resultsFromMiniCompetitionAwardDecision ; + sh:targetClass :PurchaseContract . + +core-shape:epo-Purpose a sh:NodeShape ; + rdfs:label "Purpose" ; + rdfs:comment "The description of the objectives related to a Procurement. Additional information: The description of the objectives includes the Subject Matter and Quantities. The quantification of the objectives related to a procurement. To be re-reviewed by the WG the soonest. (WG to be discussed, this was pointed out on the 09/04/2019 14:38:25 WG Meeting) The old definition read as follows: The description of the objectives related to a procurement. (WG approval 05/12/2018)" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Purpose-epo-hasAdditionalClassification, + core-shape:epo-Purpose-epo-hasMainClassification, + core-shape:epo-Purpose-epo-hasTotalQuantity ; + sh:targetClass :Purpose . + +core-shape:epo-QualificationCriteriaSummary a sh:NodeShape ; + rdfs:label "Qualification criteria summary" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-QualificationCriteriaSummary-epo-hasConditionVerificationMethod, + core-shape:epo-QualificationCriteriaSummary-epo-hasQualificationCondition ; + sh:targetClass :QualificationCriteriaSummary . + +core-shape:epo-QualificationCriterion a sh:NodeShape ; + rdfs:label "Qualification criterion" ; + rdfs:comment "Criterion used in the first stage of procurement. WG approval 30/05/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :QualificationCriterion . + +core-shape:epo-Quantity a sh:NodeShape ; + rdfs:label "Quantity" ; + rdfs:comment "A counted number of non-monetary units possibly including fractions." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Quantity-epo-hasQuantityValue, + core-shape:epo-Quantity-epo-hasUnitCode, + core-shape:epo-Quantity-epo-hasUnitDescription ; + sh:targetClass :Quantity . + +core-shape:epo-RequestForClarification a sh:NodeShape ; + rdfs:label "Request for clarification" ; + rdfs:comment "A demand for elucidation of received information. Additional Information: Requests for clarification are usually used by Buyers during the process of award or evaluation to understand specific aspects of the Tender without altering the Tender. WG approval 20/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :RequestForClarification . + +core-shape:epo-RequestForParticipation a sh:NodeShape ; + rdfs:label "Request for participation" ; + rdfs:comment "Application of an Economic Operator to be included in a Procurement Procedure. WG approval: 20/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :RequestForParticipation . + +core-shape:epo-ReviewDecision a sh:NodeShape ; + rdfs:label "Review decision" ; + rdfs:comment "Information about Review Decisions." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ReviewDecision-epo-hasConfirmedIrregularityType, + core-shape:epo-ReviewDecision-epo-hasDecisionDate, + core-shape:epo-ReviewDecision-epo-hasRemedyValue, + core-shape:epo-ReviewDecision-epo-hasReviewDecisionType, + core-shape:epo-ReviewDecision-epo-providesRulingOnRemedy, + core-shape:epo-ReviewDecision-epo-resolvesReviewRequest ; + sh:targetClass :ReviewDecision . + +core-shape:epo-ReviewIrregularitySummary a sh:NodeShape ; + rdfs:label "Review irregularity summary" ; + rdfs:comment "Information about the number and type of requests the Buyer received to review any of its decisions (e.g. the Technical Specifications, Award Decision). Additional information: This class corresponds in eForms to BG-613 Buyer Review Requests." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ReviewIrregularitySummary-epo-hasIrregularityType, + core-shape:epo-ReviewIrregularitySummary-epo-hasReviewIrregularityCount ; + sh:targetClass :ReviewIrregularitySummary . + +core-shape:epo-ReviewObject a sh:NodeShape ; + rdfs:label "Review object" ; + rdfs:comment "Information about a Review Request or a Review Decision. Additional information: This class corresponds to the BG-714 Review in eForms.", + "What are the entities that can be reviewed?" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ReviewObject-epo-hasElementReference, + core-shape:epo-ReviewObject-epo-hasReviewURL, + core-shape:epo-ReviewObject-epo-refersToPreviousReview ; + sh:targetClass :ReviewObject . + +core-shape:epo-ReviewProcedureInformationProvider a sh:NodeShape ; + rdfs:label "Review procedure information provider" ; + rdfs:comment "A Role of an Agent who is providing more information on the time limits for review Procedures." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ReviewProcedureInformationProvider . + +core-shape:epo-ReviewRequest a sh:NodeShape ; + rdfs:label "Review request" ; + rdfs:comment "Information about requests to review procedures." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ReviewRequest-epo-hasAllegedIrregularityType, + core-shape:epo-ReviewRequest-epo-hasNumberOfReviewRequests, + core-shape:epo-ReviewRequest-epo-hasRequestDate, + core-shape:epo-ReviewRequest-epo-hasReviewRequestFee, + core-shape:epo-ReviewRequest-epo-hasWithdrawalDate, + core-shape:epo-ReviewRequest-epo-hasWithdrawalReason, + core-shape:epo-ReviewRequest-epo-isWithdrawn, + core-shape:epo-ReviewRequest-epo-requestsRemedyType ; + sh:targetClass :ReviewRequest . + +core-shape:epo-ReviewRequestSummary a sh:NodeShape ; + rdfs:label "Review request summary" ; + rdfs:comment "Summary information about the requests the Buyer received to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC, and about the complainants that submitted the requests. Additional information: This class corresponds in eForms to BG-612 Buyer Review Summary." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-ReviewRequestSummary-epo-concernsReviewSummaryForLot, + core-shape:epo-ReviewRequestSummary-epo-hasReviewIrregularitySummary, + core-shape:epo-ReviewRequestSummary-epo-hasTotalNumberOfComplainants ; + sh:targetClass :ReviewRequestSummary . + +core-shape:epo-ReviewRequester a sh:NodeShape ; + rdfs:label "Review requester" ; + rdfs:comment "Role of an Agent who requests the review of a (Procurement) Procedure. WG Approval 23/10/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :ReviewRequester . + +core-shape:epo-Reviewer a sh:NodeShape ; + rdfs:label "Reviewer" ; + rdfs:comment "Role of an Agent who investigates the overall correctness of a Procurement Procedure, producing a related report. Additional Information: Any Organisation or Person may request a review of a Procurement Procedure. WG approval: 20/04/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Reviewer-epo-hasReviewBodyType ; + sh:targetClass :Reviewer . + +core-shape:epo-SecurityClearanceTerm a sh:NodeShape ; + rdfs:label "Security clearance term" ; + rdfs:comment "Conditions and stipulations about the status requested of individuals allowing them access to classified information (state or organisational secrets) or to restricted areas, after completion of a thorough background check. Additional information: This corresponds in eForms to BT-578, BT-78, BT-732 . WG approval 20/06/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SecurityClearanceTerm-dct-description, + core-shape:epo-SecurityClearanceTerm-epo-hasDeadline, + core-shape:epo-SecurityClearanceTerm-epo-isSecurityClearanceRequired ; + sh:targetClass :SecurityClearanceTerm . + +core-shape:epo-SelectedCandidateList a sh:NodeShape ; + rdfs:label "Selected candidate list" ; + rdfs:comment "Record of Candidates admitted to take part in award phases of procurements. WG approval 30/05/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SelectedCandidateList-epo-containsCandidate, + core-shape:epo-SelectedCandidateList-epo-hasStartDate ; + sh:targetClass :SelectedCandidateList . + +core-shape:epo-SelectionCriteriaSummary a sh:NodeShape ; + rdfs:label "Selection criteria summary" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SelectionCriteriaSummary-epo-describesMinimumLevelOfStandards, + core-shape:epo-SelectionCriteriaSummary-epo-hasSelectionCriteriaStatedInProcurementDocuments ; + sh:targetClass :SelectionCriteriaSummary . + +core-shape:epo-SelectionCriterion a sh:NodeShape ; + rdfs:label "Selection criterion" ; + rdfs:comment "Criterion that describes a capacity Requirement that the Economic Operator needs to fulfill to participate in the procurement. Additional Information: Selection criteria may relate to: (a) suitability to pursue the professional activity; (b) economic and financial standing; (c) technical and professional ability WG approval 31/10/2018" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SelectionCriterion-epo-hasSelectionCriteriaUsage, + core-shape:epo-SelectionCriterion-epo-hasSelectionCriterionType, + core-shape:epo-SelectionCriterion-epo-isUsedForCandidateRestriction ; + sh:targetClass :SelectionCriterion . + +core-shape:epo-SelectionEvaluationTerm a sh:NodeShape ; + rdfs:label "Selection evaluation term" ; + rdfs:comment "Conditions and stipulations defining particularities of the evaluation of Selection Criteria." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :SelectionEvaluationTerm . + +core-shape:epo-SocialProcurement a sh:NodeShape ; + rdfs:label "Social procurement" ; + rdfs:comment "An instance of the class SocialProcurement is represented in eForms with the code \"soc-obj\" defined in the codelist Strategic-Procurement. Research (21/01/2020): Socially Responsible Public Procurement (SRPP): ‘SRPP’ means Procurement Operations that take into account one or more of the following social considerations: employment opportunities, decent work, compliance with social and labour rights, social inclusion (including persons with disabilities), equal opportunities, accessibility design for all, taking account of sustainability criteria, including ethical trade issues and wider voluntary compliance with corporate social responsibility (CSR), while observing the principles enshrined in the Treaty for the European Union (TFEU) and the Procurement Directives. Source: Buying Social - A Guide to Taking Account of Social Considerations in Public Procurement (Publications Office of the European Union, 2011) https://op.europa.eu/en/publication-detail/-/publication/cb70c481-0e29-4040-9be2-c408cddf081f/language-en See Article 18 and Annex X Directive 2014/24." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SocialProcurement-epo-fulfillsRequirement ; + sh:targetClass :SocialProcurement . + +core-shape:epo-SpecificDuration a sh:NodeShape ; + rdfs:label "Specific duration" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SpecificDuration-time-numericDuration, + core-shape:epo-SpecificDuration-time-unitType ; + sh:targetClass :SpecificDuration . + +core-shape:epo-StatisticalInformation a sh:NodeShape ; + rdfs:label "Statistical information" ; + rdfs:comment "Statistical data on the Procedure and the Lot. Additional Information At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. Therefore this class is temporal and should cease to exist in fully electronic Procurement. The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. WG Approval 12/12/2019" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :StatisticalInformation . + +core-shape:epo-StrategicProcurement a sh:NodeShape ; + rdfs:label "Strategic procurement" ; + rdfs:comment "Public Procurement that contributes to achieving pressing policy goals. Additional Information: Specific strategic goals could be, for example, Environmental Protection, innovation, job creation and the development of small and medium enterprises. This corresponds in eForms to BG-713 Strategic Procurement. The subclasses are given by the choices in BT-06 Strategic Procurement. Based on https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0411 (see paragraph on \"background information\". WG Approval 10/03/2020" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-StrategicProcurement-epo-hasNonAccessibilityCriterionJustification, + core-shape:epo-StrategicProcurement-epo-hasStrategicProcurementDescription, + core-shape:epo-StrategicProcurement-epo-includesAccessibilityCriterion ; + sh:targetClass :StrategicProcurement . + +core-shape:epo-SubcontractTerm a sh:NodeShape ; + rdfs:label "Subcontract term" ; + rdfs:comment "A concept to describe the main information regarding the share of parts of the Contract to third parties." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SubcontractTerm-dct-description, + core-shape:epo-SubcontractTerm-epo-hasMaximumShare, + core-shape:epo-SubcontractTerm-epo-hasMinimumShare, + core-shape:epo-SubcontractTerm-epo-hasMinimumSubcontractorsProposedObligation, + core-shape:epo-SubcontractTerm-epo-hasSubcontractingInvolved, + core-shape:epo-SubcontractTerm-epo-hasSubcontractingObligation, + core-shape:epo-SubcontractTerm-epo-hasSubcontractorsProposedAboveObligation ; + sh:targetClass :SubcontractTerm . + +core-shape:epo-SubcontractingEstimate a sh:NodeShape ; + rdfs:label "Subcontracting estimate" ; + rdfs:comment "Information on the approximation of the foreseen Subcontracting." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SubcontractingEstimate-dct-description, + core-shape:epo-SubcontractingEstimate-epo-hasEstimatedPercentage, + core-shape:epo-SubcontractingEstimate-epo-hasSubcontractingEstimatedValue, + core-shape:epo-SubcontractingEstimate-epo-hasSubjectMatter ; + sh:targetClass :SubcontractingEstimate . + +core-shape:epo-Subcontractor a sh:NodeShape ; + rdfs:label "Subcontractor" ; + rdfs:comment "A Role of an Agent that has an agreement to perform part or all of the obligations of another Agents's Contract. Additional information For some Procedures, the Subcontractor signs as well the Contract between the Buyer and the Contractor. At tendering time, entities relied upon by the Economic Operators can be Subcontractors or not. When modelling ESPD we well analyze whether we need or not a Role named \"relied upon\". WG approval 05/08/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :Subcontractor . + +core-shape:epo-SubmissionStatisticalInformation a sh:NodeShape ; + rdfs:label "Submission statistical information" ; + rdfs:comment "Check definitions for all concepts and relations.", + "Statistical information about submissions on a given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SubmissionStatisticalInformation-epo-hasAbnormallyLowTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasEEAReceivedTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasEUReceivedTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasElectronicTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasEstimatedTotalSubcontracts, + core-shape:epo-SubmissionStatisticalInformation-epo-hasHighestReceivedTenderValue, + core-shape:epo-SubmissionStatisticalInformation-epo-hasInadmissibleTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasLowestReceivedTenderValue, + core-shape:epo-SubmissionStatisticalInformation-epo-hasMediumTenderPerLots, + core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEEAReceivedTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEUReceivedTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasNumberOfTenderersInvited, + core-shape:epo-SubmissionStatisticalInformation-epo-hasOtherCountriesReceivedTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedMicroTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedParticipationRequests, + core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSmallTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSubmissionType, + core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasSMEReceivedTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-hasUnverifiedTenders, + core-shape:epo-SubmissionStatisticalInformation-epo-summarisesInformationForAwardDecision ; + sh:targetClass :SubmissionStatisticalInformation . + +core-shape:epo-SubmissionTerm a sh:NodeShape ; + rdfs:label "Submission term" ; + rdfs:comment "Conditions and stipulations defining particularities of submitting Documents to the Buyer. Additional Information: These Documents can be Tenders, Request To Participate and expressions of interest. WG Approval 14/07/2020" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-SubmissionTerm-epo-definesTenderProcessor, + core-shape:epo-SubmissionTerm-epo-definesTenderReceiver, + core-shape:epo-SubmissionTerm-epo-hasEAuctionURL, + core-shape:epo-SubmissionTerm-epo-hasECataloguePermission, + core-shape:epo-SubmissionTerm-epo-hasESubmissionPermission, + core-shape:epo-SubmissionTerm-epo-hasGuaranteeDescription, + core-shape:epo-SubmissionTerm-epo-hasLanguage, + core-shape:epo-SubmissionTerm-epo-hasLateSubmissionInformationDescription, + core-shape:epo-SubmissionTerm-epo-hasLateSubmissionPermission, + core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionDescription, + core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionJustification, + core-shape:epo-SubmissionTerm-epo-hasReceiptDeadline, + core-shape:epo-SubmissionTerm-epo-hasReceiptExpressionDeadline, + core-shape:epo-SubmissionTerm-epo-hasReceiptParticipationRequestDeadline, + core-shape:epo-SubmissionTerm-epo-hasReceiptPreliminaryMarketConsultationDeadline, + core-shape:epo-SubmissionTerm-epo-hasReceiptTenderDeadline, + core-shape:epo-SubmissionTerm-epo-hasSubmissionURL, + core-shape:epo-SubmissionTerm-epo-hasTenderSubcontractingInformation, + core-shape:epo-SubmissionTerm-epo-hasTenderValidityPeriod, + core-shape:epo-SubmissionTerm-epo-hasVariantPermission, + core-shape:epo-SubmissionTerm-epo-isAdvancedElectronicSignatureRequired, + core-shape:epo-SubmissionTerm-epo-isGuaranteeRequired, + core-shape:epo-SubmissionTerm-epo-isMultipleTenderSubmissionAllowed ; + sh:targetClass :SubmissionTerm . + +core-shape:epo-System a sh:NodeShape ; + rdfs:label "System" ; + rdfs:comment "Software application used for performing Procurement activities. WG Approval 28/04/2020" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-System-dct-description, + core-shape:epo-System-epo-isOwnedByAgent ; + sh:targetClass :System . + +core-shape:epo-TaxInformationProvider a sh:NodeShape ; + rdfs:label "Tax information provider" ; + rdfs:comment "A Role of an Agent responsible for providing information concerning the general regulatory framework for taxes." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :TaxInformationProvider . + +core-shape:epo-TechnicalAbilitySummary a sh:NodeShape ; + rdfs:label "Technical ability summary" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :TechnicalAbilitySummary . + +core-shape:epo-Technique a sh:NodeShape ; + rdfs:label "Technique" ; + rdfs:comment "Method used for conducting Procurement Procedures. Addtional information: This corresponds in eForms to BG-706 Techniques. Several Techniques can be combined in one single Procurement Procedure (e.g. eAuction can be carried out in a Framework Agreement or DPS). WG Approval 19/09/2019" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Technique-dct-description, + core-shape:epo-Technique-epo-hasUsage, + core-shape:epo-Technique-epo-hasValidityPeriod ; + sh:targetClass :Technique . + +core-shape:epo-Tender a sh:NodeShape ; + rdfs:label "Tender" ; + rdfs:comment "Information submitted by the Economic Operator to specify its Offer regarding a specific Lot, in response to the call for Tender. (WG approval 03/05/2022)" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Tender-epo-foreseesConcession, + core-shape:epo-Tender-epo-foreseesSubcontracting, + core-shape:epo-Tender-epo-hasElectronicSubmission, + core-shape:epo-Tender-epo-hasFinancialOfferValue, + core-shape:epo-Tender-epo-hasItemCountryOfOrigin, + core-shape:epo-Tender-epo-isSubjectToGrouping, + core-shape:epo-Tender-epo-isSubmitedBy, + core-shape:epo-Tender-epo-isSubmittedForLot, + core-shape:epo-Tender-epo-isVariant, + core-shape:epo-Tender-epo-specifiesSubcontractors ; + sh:targetClass :Tender . + +core-shape:epo-Tender-epo-ord-hasTaxInformation sh:description "Proposal to omit this link until we bring tax into ePO core because this does not appear in the data" . + +core-shape:epo-TenderAwardOutcome a sh:NodeShape ; + rdfs:label "Tender award outcome" ; + rdfs:comment "Result concerning the Tender attributed by the Awarder." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-TenderAwardOutcome-epo-concernsTender, + core-shape:epo-TenderAwardOutcome-epo-hasAwardRank, + core-shape:epo-TenderAwardOutcome-epo-indicatesAwardToWinner ; + sh:targetClass :TenderAwardOutcome . + +core-shape:epo-TenderGroup a sh:NodeShape ; + rdfs:label "Tender group" ; + rdfs:comment "Specific Offer in response to a Lot Group. Additional Information: This class is generally used to provide the Monetary Value in response to a Lot Group.", + "should this be moved to document?" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-TenderGroup-epo-comprisesTender, + core-shape:epo-TenderGroup-epo-hasTotalValue, + core-shape:epo-TenderGroup-epo-isSubmittedForLotGroup ; + sh:targetClass :TenderGroup . + +core-shape:epo-TenderProcessor a sh:NodeShape ; + rdfs:label "Tender processor" ; + rdfs:comment "A Role of an Agent responsible for processing Tenders." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :TenderProcessor . + +core-shape:epo-TenderReceiver a sh:NodeShape ; + rdfs:label "Tender receiver" ; + rdfs:comment "A Role of an Agent responsible for receiving Tenders." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :TenderReceiver . + +core-shape:epo-Tenderer a sh:NodeShape ; + rdfs:label "Tenderer" ; + rdfs:comment "A Role of an Agent that has submitted a Tender. Additional Information: A Tenderer is an Economic Operator or group of Economic Operators that has submitted a Tender. WG approval 05/08/2021" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Tenderer-epo-substantiatesExclusionGround ; + sh:targetClass :Tenderer . + +core-shape:epo-Term a sh:NodeShape ; + rdfs:label "Term" ; + rdfs:comment "A governing condition or stipulation.", + "Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass :Term . + +core-shape:epo-Winner a sh:NodeShape ; + rdfs:label "Winner" ; + rdfs:comment "A Role of an Agent to whom a Lot is awarded. WG approval 05/08/2021 (revised 26/10/2021)" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-Winner-epo-needsToBeATenderer ; + sh:targetClass :Winner . + +core-shape:foaf-Agent a sh:NodeShape ; + rdfs:label "Agent" ; + rdfs:comment "A Person, an Organisation, or a System that acts in Procurement or have the power to act in Procurement. WG Approval 28/04/2020" ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:foaf-Agent-adms-identifier, + core-shape:foaf-Agent-dct-title, + core-shape:foaf-Agent-epo-hasAlias, + core-shape:foaf-Agent-epo-ownsSystem ; + sh:targetClass foaf:Agent . + +core-shape:foaf-Person a sh:NodeShape ; + rdfs:label "Person" ; + rdfs:comment "The Person class represents people. Something is a Person if it is a Person. We don't nitpick about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'Agents' in FOAF." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:targetClass foaf:Person . + +core-shape:locn-Address a sh:NodeShape ; + rdfs:label "Address" ; + rdfs:comment "The particulars of the place where a Person or an Organisation is located. WG Approval 28/04/2020 Additional Information: An \"Address Representation\" as conceptually defined by the INSPIRE Address Representation data type: \"Representation of an address spatial object for use in external application schemas that need to include the basic, address information in a readable way.\". The representation of Addresses varies widely from one country's postal System to another. Even within countries, there are almost always examples of Addresses that do not conform to the stated national standard. At the time of publication, work is progressing on ISO 19160-1 that defines a method through which different Addresses can be converted from one conceptual model to another. This specification was heavily based on the INSPIRE Address Representation data type. It is noteworthy that if an Address is provided using the detailed breakdown suggested by the properties for this class, then it will be INSPIRE-conformant. To this very granular set of properties, we add two further properties: - full address (the complete address as a formatted string) - addressID (a unique identifier for the address) The first of these allows publishers to simply provide the complete Address as one string, with or without formatting. This is analogous to vCard's label property. The addressID is part of the INSPIRE guidelines and provides a hook that can be used to link the Address to an alternative representation, such as vCard or OASIS xAL." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:locn-Address-epo-hasCountryCode, + core-shape:locn-Address-epo-hasNutsCode, + core-shape:locn-Address-locn-addressArea, + core-shape:locn-Address-locn-addressID, + core-shape:locn-Address-locn-adminUnitL1, + core-shape:locn-Address-locn-adminUnitL2, + core-shape:locn-Address-locn-fullAddress, + core-shape:locn-Address-locn-locatorDesignator, + core-shape:locn-Address-locn-locatorName, + core-shape:locn-Address-locn-postCode, + core-shape:locn-Address-locn-postName, + core-shape:locn-Address-locn-thoroughfare ; + sh:targetClass locn:Address . + +core-shape:locn-Geometry a sh:NodeShape ; + rdfs:label "Geometry" ; + rdfs:comment "The Geometry class provides the means to identify a Location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference System. Additional Information: This class defines the notion of \"Geometry\" at the conceptual level, and it shall be encoded by using different formats (see usage note of the locn:geometry property). We also refer to the Examples section of this specification for a number of different Geometry examples expressed in different formats." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:locn-Geometry-cv-coordinates, + core-shape:locn-Geometry-cv-latitude, + core-shape:locn-Geometry-cv-longitude ; + sh:targetClass locn:Geometry . + +core-shape:org-Organization a sh:NodeShape ; + rdfs:label "Organization" ; + rdfs:comment "A collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organisations are often decomposable into hierarchical structures. (WG approval 23/11/2018).", + "A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023", + "In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:org-Organization-cv-address, + core-shape:org-Organization-cv-registeredAddress, + core-shape:org-Organization-epo-hasBuyerLegalType, + core-shape:org-Organization-epo-hasBuyerLegalTypeDescription, + core-shape:org-Organization-epo-hasInternetAddress, + core-shape:org-Organization-epo-hasLegalFormType, + core-shape:org-Organization-epo-hasLegalIdentifier, + core-shape:org-Organization-epo-hasLegalName, + core-shape:org-Organization-epo-hasMainActivity, + core-shape:org-Organization-epo-hasMainActivityDescription, + core-shape:org-Organization-epo-hasOrganisationUnitName, + core-shape:org-Organization-epo-hasPrimaryContactPoint, + core-shape:org-Organization-epo-hasRegistrationCountry, + core-shape:org-Organization-epo-hasTaxIdentifier ; + sh:targetClass org:Organization . + +core-shape:owl-Thing a sh:NodeShape ; + rdfs:label "Thing" ; + rdfs:comment "Any individual in the domain of discourse is a Thing. Additional Information: The most basic concepts in a domain should correspond to classes that are the roots of various taxonomic trees. Every individual in the OWL world is a member of the class owl:Thing." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:owl-Thing-epo-containsModificationsOf ; + sh:targetClass owl:Thing . + +core-shape:role rdfs:comment "Context: Consumption or end use of the procurement (goods and service)." . + +core-shape:adms-Identifier-adms-schemaAgency a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The name of the agency that issued the identifier." ; + sh:name "Schema agency" ; + sh:path adms:schemaAgency . + +core-shape:adms-Identifier-epo-hasScheme a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The name of the identification scheme." ; + sh:name "Has scheme" ; + sh:path :hasScheme . + +core-shape:adms-Identifier-epo-hasSchemeVersion a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The version of the identification scheme." ; + sh:name "Has scheme version" ; + sh:path :hasSchemeVersion . + +core-shape:adms-Identifier-skos-notation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The literal identifying an entity, like a person or an object." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Notation" ; + sh:path skos:notation . + +core-shape:cccev-Constraint-cccev-constrains a sh:PropertyShape ; + sh:class cccev:InformationConcept ; + sh:description "Information Concept about which a Constraint expresses a limitation. Additional Information: Information Concepts are tools to make Requirements more machine processable: they allow to provide more detail about a Requirement. This way, Constraints can be made very precise, namely the limit that must be achieved, is a limit on the value for the associated Information Concept. For example, the Information Concept would be the age of a person and the Constraint would be the required age in the context of a specific evaluation." ; + sh:name "Constrains" ; + sh:path cccev:constrains ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cccev-Constraint-epo-hasThresholdType a sh:PropertyShape ; + sh:class at-voc:number-threshold ; + sh:description "The method to interpret the threshold value as minimum or a maximum. WG Approval 17/09/2019" ; + sh:name "Has threshold type" ; + sh:path :hasThresholdType . + +core-shape:cccev-Constraint-epo-hasThresholdValue a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The cut-off level for a given concept. Additional Information: This value is given as e.g. a minimum score, a maximum number of tenders with the highest score passing (see codelist at-voc:number-threshold)." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has threshold value" ; + sh:path :hasThresholdValue . + +core-shape:cccev-Criterion-cccev-bias a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "Parameter used to adjust the evaluation of the Criterion. Additional Information: The bias parameter tries to correct a systematic error. For example in procurement, a home bias corresponds to the \"presence of local preferences distorting international specialisation and resource allocation\". When quantified, this systematic error can be removed." ; + sh:maxCount 1 ; + sh:name "Bias" ; + sh:path cccev:bias . + +core-shape:cccev-Criterion-cccev-weight a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "Relative importance of the Criterion. Additional Information: The weight must be between 0 and 1. Usually, all Criteria can be integrated within a weighted sum equal to 1." ; + sh:maxCount 1 ; + sh:name "Weight" ; + sh:path cccev:weight . + +core-shape:cccev-Criterion-cccev-weightingConsiderationDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Explanation of how the weighting of a Criterion is to be used. Additional Information: This description gives the view of the creator of the Criterion weights on how to interpret and use them during the evaluation process." ; + sh:maxCount 1 ; + sh:name "Weighting consideration description" ; + sh:path cccev:weightingConsiderationDescription . + +core-shape:cccev-Criterion-dct-type a sh:PropertyShape ; + sh:class at-voc:criterion ; + sh:description "Category to which the Requirement belongs." ; + sh:maxCount 1 ; + sh:name "Type" ; + sh:path dcterms:type . + +core-shape:cccev-Evidence-cccev-confidentialityLevelType a sh:PropertyShape ; + sh:class at-voc:confidentiality-level ; + sh:description "Security classification assigned to an Evidence e.g. classified, sensitive, public. Additional Information: Classifications should be defined by an organisation/country as an outcome of a security assessment." ; + sh:maxCount 1 ; + sh:name "Confidentiality level type" ; + sh:path cccev:confidentialityLevelType . + +core-shape:cccev-Evidence-cccev-supportsConcept a sh:PropertyShape ; + sh:class cccev:InformationConcept ; + sh:description "Information Concept providing facts found/inferred from the Evidence. Additional Information: Examples of Information Concepts are values found explictly in the evidence such as a birth date or information derived from the Evidence such as \"I am older that 18 years\" or \"this is a FairTrade product\"." ; + sh:name "Supports concept" ; + sh:path cccev:supportsConcept ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cccev-Evidence-cccev-supportsRequirement a sh:PropertyShape ; + sh:class cccev:Requirement ; + sh:description "Requirement for which the Evidence provides proof." ; + sh:name "Supports requirement" ; + sh:path cccev:supportsRequirement ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cccev-InformationConcept-adms-identifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "Links a resource to an adms:Identifier class." ; + sh:maxCount 1 ; + sh:name "Identifier" ; + sh:path adms:identifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cccev-InformationConcept-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:cccev-InformationConcept-skos-prefLabel a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The preferred lexical label for a resource, in a given language. WG approval 30/05/2023" ; + sh:name "Pref label" ; + sh:path skos:prefLabel . + +core-shape:cccev-Requirement-cccev-hasRequirement a sh:PropertyShape ; + sh:class cccev:Requirement ; + sh:description "A more specific Requirement that is part of the Requirement." ; + sh:name "Has requirement" ; + sh:path cccev:hasRequirement ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cccev-Requirement-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:maxCount 1 ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:cccev-Requirement-skos-prefLabel a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The preferred lexical label for a resource, in a given language. WG approval 30/05/2023" ; + sh:maxCount 1 ; + sh:name "Pref label" ; + sh:path skos:prefLabel . + +core-shape:cpov-ContactPoint-cpov-email a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The email of the Organisation." ; + sh:maxCount 1 ; + sh:name "Email" ; + sh:path cccev:email . + +core-shape:cpov-ContactPoint-cpov-telephone a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A telephone number through which the Contact Point can be contacted." ; + sh:name "Telephone" ; + sh:path cccev:telephone . + +core-shape:cpov-ContactPoint-cv-address a sh:PropertyShape ; + sh:class locn:Address ; + sh:maxCount 1 ; + sh:name "Address" ; + sh:path cccev:address ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cpov-ContactPoint-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:cpov-ContactPoint-epo-hasContactName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A short text by which a contact is known or referred to. WG Approval: 27/01/2022" ; + sh:maxCount 1 ; + sh:name "Has contact name" ; + sh:path :hasContactName . + +core-shape:cpov-ContactPoint-epo-hasFax a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The fax number used to reach a person or an organisation." ; + sh:name "Has fax" ; + sh:path :hasFax . + +core-shape:cpov-ContactPoint-epo-hasInternetAddress a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "The main web page used by the instance of the concept. WG Approval 01/06/2023" ; + sh:maxCount 1 ; + sh:name "Has internet address" ; + sh:path :hasInternetAddress . + +core-shape:cpv-Person-cv-birthDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The point in time on which the Person was born." ; + sh:maxCount 1 ; + sh:name "Birth date" ; + sh:path cccev:birthDate . + +core-shape:cpv-Person-cv-registeredAddress a sh:PropertyShape ; + sh:class locn:Address ; + sh:description "The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address." ; + sh:maxCount 1 ; + sh:name "Registered address" ; + sh:path cccev:registeredAddress ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cpv-Person-dct-alternative a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "Any name by which an individual is known other than their full name. WG 09/11/2021" ; + sh:name "Alternative" ; + sh:path dcterms:alternative . + +core-shape:cpv-Person-epo-hasCountryOfBirth a sh:PropertyShape ; + sh:class at-voc:country ; + sh:description "The country in which the Person was born." ; + sh:maxCount 1 ; + sh:name "Has country of birth" ; + sh:path :hasCountryOfBirth . + +core-shape:cpv-Person-epo-hasNationality a sh:PropertyShape ; + sh:class at-voc:country ; + sh:description "" ; + sh:name "Has nationality" ; + sh:path :hasNationality . + +core-shape:cpv-Person-epo-isBeneficialOwnerOf a sh:PropertyShape ; + sh:class :Business ; + sh:description "A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021" ; + sh:name "Is beneficial owner of" ; + sh:path :isBeneficialOwnerOf ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cpv-Person-foaf-familyName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "The hereditary surname of a family." ; + sh:name "Family name" ; + sh:path foaf:familyName . + +core-shape:cpv-Person-foaf-givenName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "The name(s) that identify the Person within a family with a common surname." ; + sh:name "Given name" ; + sh:path foaf:givenName . + +core-shape:cpv-Person-foaf-name a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "The complete name of the Person as one string." ; + sh:name "Name" ; + sh:path foaf:name . + +core-shape:cpv-Person-person-birthName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "Family name of the Person given upon their birth. WG Approval 09/11/2021" ; + sh:name "Birth name" ; + sh:path person:birthName . + +core-shape:cpv-Person-person-patronymicName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "Name based on the given name of the Person's father. WG Approval 09/11/2021" ; + sh:name "Patronymic name" ; + sh:path person:patronymicName . + +core-shape:cpv-Person-person-placeOfBirth a sh:PropertyShape ; + sh:class dcterms:Location ; + sh:description "The Location where the Person was born." ; + sh:maxCount 1 ; + sh:name "Place of birth" ; + sh:path person:placeOfBirth ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cpv-Person-person-placeOfDeath a sh:PropertyShape ; + sh:class dcterms:Location ; + sh:description "The Location where the Person died." ; + sh:maxCount 1 ; + sh:name "Place of death" ; + sh:path person:placeOfDeath ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:cv-Channel-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:maxCount 1 ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:cv-Channel-epo-hasAddressURL a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:maxCount 1 ; + sh:name "Has address u r l" ; + sh:path :hasAddressURL . + +core-shape:cv-Channel-epo-hasEndpointIdentifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:name "Has endpoint identifier" ; + sh:path :hasEndpointIdentifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:dct-Location-adms-identifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "Links a resource to an adms:Identifier class." ; + sh:maxCount 1 ; + sh:name "Identifier" ; + sh:path adms:identifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:dct-Location-epo-hasCountryCode a sh:PropertyShape ; + sh:class at-voc:country ; + sh:maxCount 1 ; + sh:name "Has country code" ; + sh:path :hasCountryCode . + +core-shape:dct-Location-epo-hasNutsCode a sh:PropertyShape ; + sh:class at-voc:nuts ; + sh:maxCount 1 ; + sh:name "Has nuts code" ; + sh:path :hasNutsCode . + +core-shape:dct-Location-locn-address a sh:PropertyShape ; + sh:class locn:Address ; + sh:maxCount 1 ; + sh:name "Address" ; + sh:path locn:address ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:dct-Location-locn-geographicIdentifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "A URI that identifies the Location. Additional Information: GeoNames.org provides stable, widely recognised identifiers for more than 10 million geographical names that can be used as links to further information. For example, http://sws.geonames.org/593116/ identifies the Lithuanian capital Vilnius. Unfortunately these URIs cannot easily be automatically deduced since the URI scheme uses simple numeric codes. Finding a GeoNames identifier for a Location is almost always a manual process. Where such identifiers are known or can be found, however, it is recommended that they be used. Where the Location Class is used to identify a country, if the geonames URI is not known, the recommendation is to use DBpedia URIs of the form http://dbpedia.org/resource/ISO_3166-1:XX where XX is the ISO 3166 two character code for the country. The EU's Publication Office diverges from ISO 3166-1 and uses EL and UK for Greece and the United Kingdom respectively. DBpedia sticks to the ISO codes and so the correct URIs for these countries are: - http://dbpedia.org/resource/ISO_3166-1:GR - http://dbpedia.org/resource/ISO_3166-1:GB even when the geographic name is given as EL or UK. The use of a URIs has added advantages: - it can be used by automated systems to look up additional data (linked data); - a triple store may store only one copy of the URI, whereas if a string is used, a copy of that string is always stored for each and every person in the database. Thus, in large data sets, the saving on memory capacity and the improvement in transmission efficiency can be substantial." ; + sh:maxCount 1 ; + sh:name "Geographic identifier" ; + sh:path locn:geographicIdentifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:dct-Location-locn-geographicName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "A textual description for a Location. Additional Information: The INSPIRE Data Specification on Geographical Names provides a detailed model for describing a 'named place', including methods for providing multiple names in multiple scripts. This is beyond what is necessary for the Core Location Vocabulary but, importantly, the concept of a geographic name used here is consistent. A geographic name is a proper noun applied to a spatial object. Taking the example used in the INSPIRE document (page 15), the following are all valid geographic names for the Greek capital: - \"Aθnνa\"@gr-Grek (the Greek endonym written in the Greek script) - \"Athína\"@gr-Latn (the standard Romanisation of the endonym) - \"Athens\"@en (the English language exonym) INSPIRE has a detailed (XML-based) method of providing metadata about a geographic name and in XML-data sets that may be the most appropriate method to follow. When using the Core Location Vocabulary in data sets that are not focussed on environmental/geographical data (the use case for INSPIRE), the Code datatype or a simple language identifier may be used to provide such metadata. The country codes defined in ISO 3166 may be used as geographic names and these are generally preferred over either the long form or short form of a country's name (as they are less error prone). The Publications Office of the European Union recommends the use of ISO 3166-1 codes for countries in all cases except two: - use 'UK' in preference to the ISO 3166 code GB for the United Kingdom; - use 'EL' in preference to the ISO 3166 code GR for Greece. Where a country has changed its name or no longer exists (such as Czechoslovakia, Yugoslavia etc.) use the ISO 3166-3 code." ; + sh:maxCount 1 ; + sh:name "Geographic name" ; + sh:path locn:geographicName . + +core-shape:dct-Location-locn-geometry a sh:PropertyShape ; + sh:class locn:Geometry ; + sh:maxCount 1 ; + sh:name "Geometry" ; + sh:path locn:geometry ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AccessTerm-epo-definesCatalogueProvider a sh:PropertyShape ; + sh:class :CatalogueProvider ; + sh:description "Relation indicating an AccessTerm has a CatalogueProvider." ; + sh:name "Defines catalogue provider" ; + sh:path :definesCatalogueProvider ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AccessTerm-epo-definesCatalogueReceiver a sh:PropertyShape ; + sh:class :CatalogueReceiver ; + sh:description "Relation indicating an AccessTerm has a CatalogueReceiver." ; + sh:name "Defines catalogue receiver" ; + sh:path :definesCatalogueReceiver ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AccessTerm-epo-definesOfflineAccessProvider a sh:PropertyShape ; + sh:class :OfflineAccessProvider ; + sh:description "Relation indicating an AccessTerm has an OfflineAccessProvider." ; + sh:maxCount 1 ; + sh:name "Defines offline access provider" ; + sh:path :definesOfflineAccessProvider ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AccessTerm-epo-definesProcurementProcedureInformationProvider a sh:PropertyShape ; + sh:class :ProcurementProcedureInformationProvider ; + sh:description "Relation indicating an AccessTerm has a ProcurementProcedureInformationProvider." ; + sh:maxCount 1 ; + sh:name "Defines procurement procedure information provider" ; + sh:path :definesProcurementProcedureInformationProvider ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AccessTerm-epo-hasAdditionalInformationDeadline a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "The time limit for requesting further information. Additional information: This is generally used to indicate the deadline for Economic Operators to request further information of the procedure before the submission deadline. This corresponds in eForms to BT-13 Additional Information Deadline. WG Approval 09/06/2020" ; + sh:maxCount 1 ; + sh:name "Has additional information deadline" ; + sh:path :hasAdditionalInformationDeadline . + +core-shape:epo-AccessTerm-epo-hasDocumentRestrictionJustification a sh:PropertyShape ; + sh:class at-voc:communication-justification ; + sh:description "An explanation about the reasons why some procurement documents are restricted. Additional Information: This corresponds in eForms to BT-707 Documents Restricted Justification. WG Approval 09/03/2021" ; + sh:maxCount 1 ; + sh:name "Has document restriction justification" ; + sh:path :hasDocumentRestrictionJustification . + +core-shape:epo-AccessTerm-epo-hasPublicAccessURL a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "Web page where the procurement documents can be downloaded. Additional Information: This corresponds in the eForms to BT-15 Documents URL. WG Approval 09/03/2021" ; + sh:maxCount 1 ; + sh:name "Has public access u r l" ; + sh:path :hasPublicAccessURL . + +core-shape:epo-AccessTerm-epo-hasRestrictedAccessURL a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "The internet address with information on accessing the restricted (part of the) procurement document. Additional Information: This corresponds in eForms to BT-615 Documents Restricted URL." ; + sh:maxCount 1 ; + sh:name "Has restricted access u r l" ; + sh:path :hasRestrictedAccessURL . + +core-shape:epo-AccessTerm-epo-involvesProcurementDocument a sh:PropertyShape ; + sh:class :ProcurementDocument ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Involves procurement document" ; + sh:path :involvesProcurementDocument ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AccessTerm-epo-isProcurementDocumentRestricted a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The access to certain procurement documents is restricted. Additional Information: This corresponds in eForms to BT-14 Documents Restricted. WG Approval 10/10/2019" ; + sh:maxCount 1 ; + sh:name "Is procurement document restricted" ; + sh:path :isProcurementDocumentRestricted . + +core-shape:epo-AccessTerm-epo-refersToPlannedPart a sh:PropertyShape ; + sh:class :PlannedProcurementPart ; + sh:name "Refers to planned part" ; + sh:path :refersToPlannedPart ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AgentInRole-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-AgentInRole-dct-title a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A name given to the resource. WG approval 30/05/2023" ; + sh:name "Title" ; + sh:path dcterms:title . + +core-shape:epo-AgentInRole-epo-contextualisedBy a sh:PropertyShape ; + sh:class :ProcurementObject ; + sh:description "The place of the AgentInRole in the procurement is expressed by a ProcurementObject." ; + sh:name "Contextualised by" ; + sh:path :contextualisedBy ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AgentInRole-epo-exposesChannel a sh:PropertyShape ; + sh:class cccev:Channel ; + sh:name "Exposes channel" ; + sh:path :exposesChannel ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AgentInRole-epo-hasContactPointInRole a sh:PropertyShape ; + sh:class cccev:ContactPoint ; + sh:name "Has contact point in role" ; + sh:path :hasContactPointInRole ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AgentInRole-epo-playedBy a sh:PropertyShape ; + sh:class foaf:Agent ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Played by" ; + sh:path :playedBy ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AwardCriterion-epo-hasAwardCriteriaStatedInProcurementDocuments a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has award criteria stated in procurement documents" ; + sh:path :hasAwardCriteriaStatedInProcurementDocuments . + +core-shape:epo-AwardCriterion-epo-hasAwardCriterionType a sh:PropertyShape ; + sh:class at-voc:award-criterion-type ; + sh:description "Category of award criterion." ; + sh:maxCount 1 ; + sh:name "Has award criterion type" ; + sh:path :hasAwardCriterionType . + +core-shape:epo-AwardCriterion-epo-hasFixedValue a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "This corresponds in the eForms to BT-541 Award Criterion Number in association with BT-5422 Award Criterion Number Fixed." ; + sh:maxCount 1 ; + sh:name "Has fixed value" ; + sh:path :hasFixedValue . + +core-shape:epo-AwardCriterion-epo-hasFixedValueType a sh:PropertyShape ; + sh:class at-voc:number-fixed ; + sh:description "The method to interpret the fixed value as pertaining to a total or unit. WG Approval 17/09/2019" ; + sh:maxCount 1 ; + sh:name "Has fixed value type" ; + sh:path :hasFixedValueType . + +core-shape:epo-AwardDecision-epo-comprisesLotAwardDecision a sh:PropertyShape ; + sh:class :LotAwardDecision ; + sh:description "Incorporates LotAwardOutcome." ; + sh:name "Comprises lot award decision" ; + sh:path :comprisesLotAwardDecision ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AwardDecision-epo-comprisesMiniCompetitionAwardDecision a sh:PropertyShape ; + sh:class :MiniCompetitionAwardDecision ; + sh:name "Comprises mini competition award decision" ; + sh:path :comprisesMiniCompetitionAwardDecision ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AwardDecision-epo-comprisesTenderAwardOutcome a sh:PropertyShape ; + sh:class :TenderAwardOutcome ; + sh:description "Incorporates TenderAwardOutcome." ; + sh:name "Comprises tender award outcome" ; + sh:path :comprisesTenderAwardOutcome ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AwardDecision-epo-hasAdditionalNonAwardJustification a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Further justification for the non award . Additional information: This is generally used when the non award reason code is set to \"Other\". WG: 18/01/2022" ; + sh:maxCount 1 ; + sh:name "Has additional non award justification" ; + sh:path :hasAdditionalNonAwardJustification . + +core-shape:epo-AwardDecision-epo-hasAwardDecisionDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "The official date of the award decision. Additional Information: This corresponds in eForms to BT-1451 Winner Decision Date. WG Approval 09/01/2020" ; + sh:maxCount 1 ; + sh:name "Has award decision date" ; + sh:path :hasAwardDecisionDate . + +core-shape:epo-AwardDecision-epo-hasAwardStatus a sh:PropertyShape ; + sh:class at-voc:winner-selection-status ; + sh:description "Indicates whether the lot is awarded, not awarded or still open. WG Approval 03/12/2019" ; + sh:maxCount 1 ; + sh:name "Has award status" ; + sh:path :hasAwardStatus . + +core-shape:epo-AwardDecision-epo-hasAwardedValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The value of the procurement provided by the Award Decision. Additional Information: Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. In the case of framework agreements and dynamic purchasing systems this refers to the maximum awarded value. WG Approval 10/12/2019", + "Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract." ; + sh:maxCount 1 ; + sh:name "Has awarded value" ; + sh:path :hasAwardedValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AwardDecision-epo-hasBargainPrice a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The value of procured supplies that have used a particularly advantageous opportunity available for a very short time at a value considerably lower than normal market prices. WG approval 23/05/2023" ; + sh:maxCount 1 ; + sh:name "Has bargain price" ; + sh:path :hasBargainPrice ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-AwardDecision-epo-hasNonAwardJustification a sh:PropertyShape ; + sh:class at-voc:non-award-justification ; + sh:description "On hold; Enumeration." ; + sh:maxCount 1 ; + sh:name "Has non award justification" ; + sh:path :hasNonAwardJustification . + +core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaEvaluationFormula a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543 Award Criteria Complicated." ; + sh:name "Has award criteria evaluation formula" ; + sh:path :hasAwardCriteriaEvaluationFormula . + +core-shape:epo-AwardEvaluationTerm-epo-hasAwardCriteriaOrderJustification a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The justification for only indicating the award criteria's order of importance, not their weighing. Additional Information: This corresponds in eForms to BT-733 Award Criteria Order Justification." ; + sh:maxCount 1 ; + sh:name "Has award criteria order justification" ; + sh:path :hasAwardCriteriaOrderJustification . + +core-shape:epo-AwardEvaluationTerm-epo-hasOverallCostAwardCriteriaPonderation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The weighting given to cost. Additional Information: This weighting covers usually all cost criteria against price or quality criteria." ; + sh:maxCount 1 ; + sh:name "Has overall cost award criteria ponderation" ; + sh:path :hasOverallCostAwardCriteriaPonderation . + +core-shape:epo-AwardEvaluationTerm-epo-hasOverallPriceAwardCriteriaPonderation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The weighting given to price. Additional Information: This weighting covers usually all price criteria against cost or quality criteria." ; + sh:maxCount 1 ; + sh:name "Has overall price award criteria ponderation" ; + sh:path :hasOverallPriceAwardCriteriaPonderation . + +core-shape:epo-AwardEvaluationTerm-epo-hasOverallQualityAwardCriteriaPonderation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The weighting given to quality. Additional Information: This weighting covers usually all quality criteria against price or cost criteria." ; + sh:maxCount 1 ; + sh:name "Has overall quality award criteria ponderation" ; + sh:path :hasOverallQualityAwardCriteriaPonderation . + +core-shape:epo-Business-epo-hasBeneficialOwner a sh:PropertyShape ; + sh:class cccev:Person ; + sh:description "A role of any natural person(s) who ultimately owns or controls the organisation or on whose behalf a transaction or activity is being conducted. Additional Information: This role is defined in the directive EU 2015/849 and it's beyond the scope for public eProcurement domain. WG approval 14/09/2021" ; + sh:name "Has beneficial owner" ; + sh:path :hasBeneficialOwner ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Business-epo-hasBusinessSize a sh:PropertyShape ; + sh:class at-voc:economic-operator-size ; + sh:description "The category of the business depending on number of employees and turnover. Additional information: See Commission Recommendation of 6 May 2003 concerning the definition of micro, small and medium-sized enterprises. WG Approval 28/05/2020" ; + sh:maxCount 1 ; + sh:name "Has business size" ; + sh:path :hasBusinessSize . + +core-shape:epo-Business-epo-isListedCompany a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Public companies listed on a stock exchange and subject to disclosure requirements (either by stock exchange rules or through law or enforceable means), which impose requirements to ensure adequate transparency of beneficial ownership. Additional Information: In eForms this indicator is used when the nationality of beneficial owner is not provided because the Economic Operator is registered in a regulated market that is subject to disclosure requirements consistent with Union law or subject to equivalent international standards which ensure adequate transparency of ownership information. WG Approval 21/11/2019" ; + sh:maxCount 1 ; + sh:name "Is listed company" ; + sh:path :isListedCompany . + +core-shape:epo-Buyer-epo-delegatesAncillaryActivitiesTo a sh:PropertyShape ; + sh:class :ProcurementServiceProvider ; + sh:description "Entrusts ancillary purchasing activities to ProcurementServiceProvider. Additional Information: Directive 2014/24/EU describes ancillary purchasing activities as activities consisting in the provision of support to purchasing activities, in particular in the following forms: (a) technical infrastructure enabling contracting authorities to award public contracts or to conclude framework agreements for works, supplies or services; (b) advice on the conduct or design of public procurement procedures; (c) preparation and management of procurement procedures on behalf and for the account of the contracting authority concerned;" ; + sh:name "Delegates ancillary activities to" ; + sh:path :delegatesAncillaryActivitiesTo ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Buyer-epo-exposesInvoiceeChannel a sh:PropertyShape ; + sh:class cccev:Channel ; + sh:name "Exposes invoicee channel" ; + sh:path :exposesInvoiceeChannel ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Buyer-epo-hasActivityDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "In the ePO ontology a taxonomy with all activities, based on different classifications (COFOG, UTILITIES, NACE), will be provided. In ePO this field is to be used exclusively to complement the definition attached to the MainActivityCode. However, in eForms there is the code \"other\" to cover undefined activities. For mapping to this eForms feature one could also use this property." ; + sh:name "Has activity description" ; + sh:path :hasActivityDescription . + +core-shape:epo-Buyer-epo-hasBuyerProfile a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "Website address where the buyer publishes information on its procurement procedures and general information. Additional information: This corresponds in the eForms to BT-508 Buyer Profile URL. WG approval 04/05/2018" ; + sh:maxCount 1 ; + sh:name "Has buyer profile" ; + sh:path :hasBuyerProfile . + +core-shape:epo-Buyer-epo-indicatesInvoiceeContactPoint a sh:PropertyShape ; + sh:class cccev:ContactPoint ; + sh:name "Indicates invoicee contact point" ; + sh:path :indicatesInvoiceeContactPoint ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Buyer-epo-isContractingEntity a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Role of entities, which: (a) are contracting authorities or public undertakings and which pursue one of the activities referred to in Articles 8 to 14 of the Directive 2014/25/EU. (b) when they are not contracting authorities or public undertakings, have as one of their activities any of the activities referred to in Articles 8 to 14, or any combination thereof and operate on the basis of special or exclusive rights granted by a competent authority of a Member State. Additional Information The indicator is needed in order to discriminate between those contracts where the Contracting Entity acts as a Contracting Authority undergoing the limits and the rules of Directive 24 and those where it acts as a Contracting Entity, with certain relaxed constraints. For example, the Contracting Entities have different thresholds for the application of Directive 24 if compared with Contracting Authorities. WG Approval 28/04/2020" ; + sh:maxCount 1 ; + sh:name "Is contracting entity" ; + sh:path :isContractingEntity . + +core-shape:epo-Buyer-epo-signsAwardDecision a sh:PropertyShape ; + sh:class :AwardDecision ; + sh:name "Signs award decision" ; + sh:path :signsAwardDecision ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ConcessionEstimate-epo-hasCalculationMethod a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Formula for obtaining values. Additional Information: The possible values are monetary values, ranking scores, criterion weighting. WG Approval 25/05/2018" ; + sh:maxCount 1 ; + sh:name "Has calculation method" ; + sh:path :hasCalculationMethod . + +core-shape:epo-ConcessionEstimate-epo-hasConcessionEstimatedValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:maxCount 1 ; + sh:name "Has concession estimated value" ; + sh:path :hasConcessionEstimatedValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ConcessionEstimate-epo-hasEstimatedBuyerConcessionRevenue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The expected payments made by the buyer to the economic operator awarded the concession that are not directly related to the use of the concession. Additional Information: For example the public buyer pays a yearly fee to provide a ticketing solution to the public. The fee the public pays for every ticket sold through the solution is not included in this estimation but in the estimation of the user concession revenue. This corresponds to BT-160 in eForms. WG Approval 07/01/2020" ; + sh:maxCount 1 ; + sh:name "Has estimated buyer concession revenue" ; + sh:path :hasEstimatedBuyerConcessionRevenue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ConcessionEstimate-epo-hasEstimatedUserConcessionRevenue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The estimated revenue coming from the use of the concession. Additional Information: Revenues are for example fees and fines. For example, the fees and fines coming from the cars using a motorway. This corresponds to BT-162 in eForms." ; + sh:maxCount 1 ; + sh:name "Has estimated user concession revenue" ; + sh:path :hasEstimatedUserConcessionRevenue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Contract-epo-bindsBuyer a sh:PropertyShape ; + sh:class :Buyer ; + sh:description "Provides legal constraint on the Buyer." ; + sh:name "Binds buyer" ; + sh:path :bindsBuyer ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Contract-epo-bindsContractor a sh:PropertyShape ; + sh:class :Contractor ; + sh:description "Provides legal constraint on the Contractor." ; + sh:name "Binds contractor" ; + sh:path :bindsContractor ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Contract-epo-hasContractConclusionDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The date the contract was signed by the last signatory party. Additional Information: In exceptional cases contracts may be concluded without signature and therefore another date may be used. The date of contract conclusion is always later than the end of any standstill period. This concept is not to be confused with the date of completion/end of the contract. This corresponds in eForms to BT-145 Contract Conclusion Date. WG Approval 09/01/2020" ; + sh:maxCount 1 ; + sh:name "Has contract conclusion date" ; + sh:path :hasContractConclusionDate . + +core-shape:epo-Contract-epo-hasContractValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:maxCount 1 ; + sh:name "Has contract value" ; + sh:path :hasContractValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Contract-epo-hasEntryIntoForceDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The date on which the contract enters into force. Additional information: This is generally the date on which the fulfillment of the contract begins. This corresponds in eForms to WG approval 05/11/2019" ; + sh:maxCount 1 ; + sh:name "Has entry into force date" ; + sh:path :hasEntryIntoForceDate . + +core-shape:epo-Contract-epo-hasEstimatedDuration a sh:PropertyShape ; + sh:class :Duration ; + sh:description "Relation indicating a Contract has an estimated Duration. Additional Information When the Lot uses a Technique the contract estimated duration applies to the Technique." ; + sh:maxCount 1 ; + sh:name "Has estimated duration" ; + sh:path :hasEstimatedDuration ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Contract-epo-hasLotReference a sh:PropertyShape ; + sh:class :Lot ; + sh:minCount 1 ; + sh:name "Has lot reference" ; + sh:path :hasLotReference ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Contract-epo-hasProcurementClassification a sh:PropertyShape ; + sh:class at-voc:cpv ; + sh:maxCount 1 ; + sh:name "Has procurement classification" ; + sh:path :hasProcurementClassification . + +core-shape:epo-Contract-epo-includesTender a sh:PropertyShape ; + sh:class :Tender ; + sh:description "Additional information: This corresponds in eForms to BT-3202 Contract Tender Identifier." ; + sh:name "Includes tender" ; + sh:path :includesTender ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Contract-epo-isSubjectToContractSpecificTerm a sh:PropertyShape ; + sh:class :ContractSpecificTerm ; + sh:name "Is subject to contract specific term" ; + sh:path :isSubjectToContractSpecificTerm ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Contract-epo-signedByBuyer a sh:PropertyShape ; + sh:class :Buyer ; + sh:name "Signed by buyer" ; + sh:path :signedByBuyer ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Contract-epo-signedByContractor a sh:PropertyShape ; + sh:class :Contractor ; + sh:name "Signed by contractor" ; + sh:path :signedByContractor ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractLotCompletionInformation-epo-describesLotCompletion a sh:PropertyShape ; + sh:class :Lot ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Describes lot completion" ; + sh:path :describesLotCompletion ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractLotCompletionInformation-epo-hasPaymentValueDiscrepancyJustification a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Has payment value discrepancy justification" ; + sh:path :hasPaymentValueDiscrepancyJustification . + +core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPaymentValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "Additional Information: This corresponds to BT-779 in eForms." ; + sh:maxCount 1 ; + sh:name "Provides contract total payment value" ; + sh:path :providesContractTotalPaymentValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractLotCompletionInformation-epo-providesContractTotalPenaltyValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "Additional Information: This corresponds to BT-782 in eForms." ; + sh:maxCount 1 ; + sh:name "Provides contract total penalty value" ; + sh:path :providesContractTotalPenaltyValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractLotCompletionInformation-epo-refersToContract a sh:PropertyShape ; + sh:class :Contract ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Refers to contract" ; + sh:path :refersToContract ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractModification-epo-hasElementModification a sh:PropertyShape ; + sh:class :ElementModificationDescription ; + sh:minCount 1 ; + sh:name "Has element modification" ; + sh:path :hasElementModification ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractModification-epo-refersToOriginalNotice a sh:PropertyShape ; + sh:class :Notice ; + sh:maxCount 1 ; + sh:name "Refers to original notice" ; + sh:path :refersToOriginalNotice ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractTerm-epo-definesContractDuration a sh:PropertyShape ; + sh:class :Duration ; + sh:description "Relation indicating a ContractTerm has a Duration." ; + sh:maxCount 1 ; + sh:name "Defines contract duration" ; + sh:path :definesContractDuration ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractTerm-epo-definesContractPeriod a sh:PropertyShape ; + sh:class :Period ; + sh:description "Relation indicating a ContractTerm has a Period." ; + sh:maxCount 1 ; + sh:name "Defines contract period" ; + sh:path :definesContractPeriod ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractTerm-epo-definesPaymentExecutor a sh:PropertyShape ; + sh:class :PaymentExecutor ; + sh:description "Relation indicating a ContractTerm has a PaymentExecutor." ; + sh:maxCount 1 ; + sh:name "Defines payment executor" ; + sh:path :definesPaymentExecutor ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractTerm-epo-definesPlaceOfPerformance a sh:PropertyShape ; + sh:class dcterms:Location ; + sh:description "Relation indicating the place of performance of a Contract. WG approval 21/03/2023" ; + sh:name "Defines place of performance" ; + sh:path :definesPlaceOfPerformance ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractTerm-epo-definesSubcontractingTerm a sh:PropertyShape ; + sh:class :SubcontractTerm ; + sh:description "Relation indicating a term has a subterm." ; + sh:maxCount 1 ; + sh:name "Defines subcontracting term" ; + sh:path :definesSubcontractingTerm ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ContractTerm-epo-hasAdditionalContractNature a sh:PropertyShape ; + sh:class at-voc:contract-nature ; + sh:description "Additional type of acquisition taken into consideration in the contract. WG Approval 11/06/2020" ; + sh:name "Has additional contract nature" ; + sh:path :hasAdditionalContractNature . + +core-shape:epo-ContractTerm-epo-hasBroadPlaceOfPerformance a sh:PropertyShape ; + sh:class at-voc:other-place-service ; + sh:description "Geopolitical zone where the contract can be executed. Additional Information Used for setting restrictions that cannot be established with one country code or a geographical zone identifier (like NUTS), because they have a broader scope (geographical, economic, political, other)." ; + sh:maxCount 1 ; + sh:name "Has broad place of performance" ; + sh:path :hasBroadPlaceOfPerformance . + +core-shape:epo-ContractTerm-epo-hasContractNatureType a sh:PropertyShape ; + sh:class at-voc:contract-nature ; + sh:description "Subject of the acquisition. WG Approval 11/06/2020" ; + sh:maxCount 1 ; + sh:name "Has contract nature type" ; + sh:path :hasContractNatureType . + +core-shape:epo-ContractTerm-epo-hasEInvoicing a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Electronic means will be used for invoicing in the post-award process. Additional Information: This attribute is used for standard form mappings. WG Approval 12/09/2019" ; + sh:maxCount 1 ; + sh:name "Has e invoicing" ; + sh:path :hasEInvoicing . + +core-shape:epo-ContractTerm-epo-hasEInvoicingPermission a sh:PropertyShape ; + sh:class at-voc:permission ; + sh:maxCount 1 ; + sh:name "Has e invoicing permission" ; + sh:path :hasEInvoicingPermission . + +core-shape:epo-ContractTerm-epo-hasEOrdering a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Electronic means will be used for requesting and purchasing in the post-award process. WG Approval 12/09/2019" ; + sh:maxCount 1 ; + sh:name "Has e ordering" ; + sh:path :hasEOrdering . + +core-shape:epo-ContractTerm-epo-hasEPayment a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Electronic means must be used for paying. WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has e payment" ; + sh:path :hasEPayment . + +core-shape:epo-ContractTerm-epo-hasLegalFormRequirement a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The legal form to be taken by a Contractor. Additional Information: Generally, this is defined to cover the case where an Organisation Group is involved. Note that the codelist provided at national level should be used." ; + sh:maxCount 1 ; + sh:name "Has legal form requirement" ; + sh:path :hasLegalFormRequirement . + +core-shape:epo-ContractTerm-epo-hasMaximumNumberOfRenewals a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The maximum number of times the contract can be renewed. Additional Information By renewing, the buyer reserves the right (i.e. not an obligation) to renew the contract (i.e. extend its duration) without a new procurement procedure. For example, a contract may be valid for one year and the buyer may keep a possibility to renew it (e.g. once, twice) for another three months, if he is content with the services he received. PLEASE REVIEW THIS DEFINITION AGAIN WITH THE WORKING GROUP. It was originally taken from eForms." ; + sh:maxCount 1 ; + sh:name "Has maximum number of renewals" ; + sh:path :hasMaximumNumberOfRenewals . + +core-shape:epo-ContractTerm-epo-hasOptions a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The buyer reserves the right (not an obligation) for additional purchases from the contractor (while the contract is valid)." ; + sh:maxCount 1 ; + sh:name "Has options" ; + sh:path :hasOptions . + +core-shape:epo-ContractTerm-epo-hasOptionsDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The motivation and details about additional purchases that the buyer may undertake while the contract is valid. WG Approval 09/04/2019" ; + sh:name "Has options description" ; + sh:path :hasOptionsDescription . + +core-shape:epo-ContractTerm-epo-hasPaymentArrangement a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Information about financial clauses that will govern some economic aspects of the execution of the contract. Additional Information: These clauses usually refer to financial and payment provisions. This type of information should be structured instead of a free text in order to reuse it an ideal world. Unfortunately this is an information that in the real life no one is willing to provide pro-actively. WG Pending of discussion with eForms" ; + sh:name "Has payment arrangement" ; + sh:path :hasPaymentArrangement . + +core-shape:epo-ContractTerm-epo-hasPerformanceConditions a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The particular conditions and additional information related to the execution of the contract. Additional Information: For example, specific information about the place of performance, intermediary deliverables, compensation for damages, intellectual property rights. WG approval 15-01-2019" ; + sh:name "Has performance conditions" ; + sh:path :hasPerformanceConditions . + +core-shape:epo-ContractTerm-epo-hasPlaceOfPerformanceAdditionalInformation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Further details on the location of the execution of the contract. WG Approval 30/07/2019" ; + sh:name "Has place of performance additional information" ; + sh:path :hasPlaceOfPerformanceAdditionalInformation . + +core-shape:epo-ContractTerm-epo-hasRenewalDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Any other information about the renewal(s). WG approval 16/04/2019" ; + sh:name "Has renewal description" ; + sh:path :hasRenewalDescription . + +core-shape:epo-ContractTerm-epo-hasReservedExecution a sh:PropertyShape ; + sh:class at-voc:applicability ; + sh:maxCount 1 ; + sh:name "Has reserved execution" ; + sh:path :hasReservedExecution . + +core-shape:epo-ContractTerm-epo-isRenewalIndicator a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Indicates whether the contract is subject to a renewal clause. WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Is renewal indicator" ; + sh:path :isRenewalIndicator . + +core-shape:epo-Contractor-epo-needsToBeAWinner a sh:PropertyShape ; + sh:class :Winner ; + sh:description "The Contractor must be a Winner." ; + sh:maxCount 1 ; + sh:name "Needs to be a winner" ; + sh:path :needsToBeAWinner ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-DesignContestRegimeTerm-epo-definesPrize a sh:PropertyShape ; + sh:class :Prize ; + sh:description "Relation indicating a DesignContestRegimeTerm has a Prize." ; + sh:name "Defines prize" ; + sh:path :definesPrize ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContract a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Any subsequent service contract will be awarded to the winner or, in the case of a design contest, winners. WG Approval 29/08/2019" ; + sh:maxCount 1 ; + sh:name "Has followup contract" ; + sh:path :hasFollowupContract . + +core-shape:epo-DesignContestRegimeTerm-epo-hasFollowupContractInformation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Further information about follow-up contracts, prizes and payments (for example non-monetary prizes, payments given for participation). WG Approval 03/09/2019" ; + sh:name "Has followup contract information" ; + sh:path :hasFollowupContractInformation . + +core-shape:epo-DesignContestRegimeTerm-epo-hasParticipationPayment a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Details on payments to participants WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has participation payment" ; + sh:path :hasParticipationPayment . + +core-shape:epo-DesignContestRegimeTerm-epo-isJuryDecisionBinding a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Indicates whether the procuring entity is bound to apply the decision of the jury." ; + sh:maxCount 1 ; + sh:name "Is jury decision binding" ; + sh:path :isJuryDecisionBinding . + +core-shape:epo-DirectAwardTerm-epo-hasDirectAwardJustification a sh:PropertyShape ; + sh:class at-voc:direct-award-justification ; + sh:description "List of reasons for using a procedure which allows awarding contracts directly without publishing a notice. WG Approval 28/05/2020" ; + sh:maxCount 1 ; + sh:name "Has direct award justification" ; + sh:path :hasDirectAwardJustification . + +core-shape:epo-DirectAwardTerm-epo-hasJustification a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An explanation about the reasons for using the concept. WG Approval 5/11/2019" ; + sh:name "Has justification" ; + sh:path :hasJustification . + +core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedure a sh:PropertyShape ; + sh:class :Procedure ; + sh:description "Reference to a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier" ; + sh:maxCount 1 ; + sh:name "Refers to previous procedure" ; + sh:path :refersToPreviousProcedure ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-DirectAwardTerm-epo-refersToPreviousProcedureLot a sh:PropertyShape ; + sh:class :Lot ; + sh:description "Reference to one or more Lots in a previous procedure. Additional Information: In the case of Direct Award Terms, this property points to a previous Procedure justifying the use of Direct Award without a prior publication. This corresponds in the eForms to BT-1252 Direct Award Justification Previous Procedure Identifier WG Approval 22/11/2019 14:33:55" ; + sh:name "Refers to previous procedure lot" ; + sh:path :refersToPreviousProcedureLot ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-DirectContract-epo-resultsFromLotAwardDecision a sh:PropertyShape ; + sh:class :LotAwardDecision ; + sh:name "Results from lot award decision" ; + sh:path :resultsFromLotAwardDecision ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Document-adms-identifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "Links a resource to an adms:Identifier class." ; + sh:name "Identifier" ; + sh:path adms:identifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Document-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:maxCount 1 ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-Document-dct-issued a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "Date of formal issuance of the resource. Additional information: This is generally used for modules other than eNotice. The xsd:dateTime here means that we can provide either xsd:date, xsd:dateTime, or xsd:timeStamp or any other variant of time expression. This extension needs to be encoded/automated in the ontology and in the application profile. Why is it like this? Because UML cannot handle such expressions of disjunctive property ranges. WG approval 26/01/2023" ; + sh:maxCount 1 ; + sh:name "Issued" ; + sh:path dcterms:issued . + +core-shape:epo-Document-dct-title a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A name given to the resource. WG approval 30/05/2023" ; + sh:maxCount 1 ; + sh:name "Title" ; + sh:path dcterms:title . + +core-shape:epo-Document-epo-associatedWith a sh:PropertyShape ; + sh:class :Document ; + sh:description "The document to which a document is associated. WGM 01/03/2022" ; + sh:name "Associated with" ; + sh:path :associatedWith ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Document-epo-hasAccessURL a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "Location where the resource can be accessed. WG approval 07/04/2022" ; + sh:name "Has access u r l" ; + sh:path :hasAccessURL . + +core-shape:epo-Document-epo-hasDispatchDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "Date of transmission of a record to an organisation. WG Approval 12/05/2020" ; + sh:maxCount 1 ; + sh:name "Has dispatch date" ; + sh:path :hasDispatchDate . + +core-shape:epo-Document-epo-hasElectronicDigest a sh:PropertyShape ; + sh:class :Document ; + sh:name "Has electronic digest" ; + sh:path :hasElectronicDigest ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Document-epo-hasElectronicSignature a sh:PropertyShape ; + sh:class :ElectronicSignature ; + sh:name "Has electronic signature" ; + sh:path :hasElectronicSignature ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Document-epo-hasOfficialLanguage a sh:PropertyShape ; + sh:class at-voc:language ; + sh:description "The language(s) in which the instances of the given concepts are officially available. These linguistic versions are equally legally valid. WG Approval 03/10/2019" ; + sh:minCount 1 ; + sh:name "Has official language" ; + sh:path :hasOfficialLanguage . + +core-shape:epo-Document-epo-hasPublicationDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "Date of formal public issuance of the document. WG approval 20/06/2023" ; + sh:maxCount 1 ; + sh:name "Has publication date" ; + sh:path :hasPublicationDate . + +core-shape:epo-Document-epo-hasReceptionDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "Notes: Date when a record is acknowledged by an organisation. WG Approval 12/05/2020" ; + sh:maxCount 1 ; + sh:name "Has reception date" ; + sh:path :hasReceptionDate . + +core-shape:epo-Document-epo-hasUUID a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "A universally unique identifier for an instance of this document. WG Approval 12/05/2020" ; + sh:maxCount 1 ; + sh:name "Has u u i d" ; + sh:path :hasUUID ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Document-epo-hasUnofficialLanguage a sh:PropertyShape ; + sh:class at-voc:language ; + sh:description "The language translation(s) in which the instances of the given concepts are available. These linguistic versions are not an official translation, they are provided only for information. WG Approval 03/10/2019" ; + sh:name "Has unofficial language" ; + sh:path :hasUnofficialLanguage . + +core-shape:epo-Document-epo-hasVersion a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A number that identifies a specific state of a document. WG approval: 18/11/2021" ; + sh:maxCount 1 ; + sh:name "Has version" ; + sh:path :hasVersion . + +core-shape:epo-Document-epo-refersToPrevious a sh:PropertyShape ; + sh:class :Document ; + sh:name "Refers to previous" ; + sh:path :refersToPrevious ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-DynamicPurchaseSystemTechnique-epo-hasDPSScope a sh:PropertyShape ; + sh:class at-voc:dps-usage ; + sh:description "Explanation as to whether a dps is used and by whom. WG Approval 09/11/2021 The codelist to be used is at-voc:dps-usage which is available at http://publications.europa.eu/resource/dataset/dps-usage" ; + sh:maxCount 1 ; + sh:name "Has d p s scope" ; + sh:path :hasDPSScope . + +core-shape:epo-DynamicPurchaseSystemTechnique-epo-resultsInDynamicPurchasingSystem a sh:PropertyShape ; + sh:class :DynamicPurchasingSystem ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Results in dynamic purchasing system" ; + sh:path :resultsInDynamicPurchasingSystem ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-DynamicPurchasingSystem-epo-hasCandidateList a sh:PropertyShape ; + sh:class :SelectedCandidateList ; + sh:name "Has candidate list" ; + sh:path :hasCandidateList ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ElectronicSignature-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-ElementChangeDescription-epo-hasAdditionalInformation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Supplementary data about the instance of the concept. WG Approval 15/10/2019" ; + sh:maxCount 1 ; + sh:name "Has additional information" ; + sh:path :hasAdditionalInformation . + +core-shape:epo-ElementChangeDescription-epo-hasChangeDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Explanatory text about the instance of the concept. WG Approval 30/09/2019" ; + sh:name "Has change description" ; + sh:path :hasChangeDescription . + +core-shape:epo-ElementChangeDescription-epo-hasChangeJustification a sh:PropertyShape ; + sh:class at-voc:change-corrig-justification ; + sh:description "The motives for the change. WG 5/11/2019 The codelist to be used is at-voc:change-corrig-justification which is available at http://publications.europa.eu/resource/dataset/change-corrig-justification" ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has change justification" ; + sh:path :hasChangeJustification . + +core-shape:epo-ElementChangeDescription-epo-hasChangeReasonDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Explanatory text about why the element is altered. Additional information: This corresponds in eForms to BT-762 Change Reason Description." ; + sh:name "Has change reason description" ; + sh:path :hasChangeReasonDescription . + +core-shape:epo-ElementChangeDescription-epo-hasElementReference a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has element reference" ; + sh:path :hasElementReference . + +core-shape:epo-ElementChangeDescription-epo-hasPreviousVersionOfElementReference a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "Reference to the class instance in the previous version of the notice, which was changed. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier." ; + sh:maxCount 1 ; + sh:name "Has previous version of element reference" ; + sh:path :hasPreviousVersionOfElementReference . + +core-shape:epo-ElementChangeDescription-epo-hasProcurementDocumentChangeDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The date and time of the change. Additional information: This corresponds in eForms to BT-719 Change Procurement Documents Date WG Approval 5/11/2019" ; + sh:maxCount 1 ; + sh:name "Has procurement document change date" ; + sh:path :hasProcurementDocumentChangeDate . + +core-shape:epo-ElementChangeDescription-epo-isProcurementDocumentChanged a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "One or more procurement documents have been changed. Additional information: This corresponds in eForms to BT-718 Change Procurement Documents WG Approval 05/11/2019" ; + sh:maxCount 1 ; + sh:name "Is procurement document changed" ; + sh:path :isProcurementDocumentChanged . + +core-shape:epo-ElementConfidentialityDescription-epo-hasAccessibilityDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The date at which unpublished data shall be published. WG Approval 11/06/2020" ; + sh:maxCount 1 ; + sh:name "Has accessibility date" ; + sh:path :hasAccessibilityDate . + +core-shape:epo-ElementConfidentialityDescription-epo-hasConfidentialityJustification a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A narrative explanation of why data is not published. Additional Information: This element is generally used when the non-publication-justification code chosen is \"other\". WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has confidentiality justification" ; + sh:path :hasConfidentialityJustification . + +core-shape:epo-ElementConfidentialityDescription-epo-hasInstanceReference a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "The URI of a given class that is being referred to." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has instance reference" ; + sh:path :hasInstanceReference . + +core-shape:epo-ElementConfidentialityDescription-epo-hasNonPublicationJustification a sh:PropertyShape ; + sh:class at-voc:non-publication-justification ; + sh:description "The reason why data is not published. WG Approval 11/06/2020" ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has non publication justification" ; + sh:path :hasNonPublicationJustification . + +core-shape:epo-ElementConfidentialityDescription-epo-hasPropertyReference a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "The URI of a given attribute (property) that is being referred to." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has property reference" ; + sh:path :hasPropertyReference . + +core-shape:epo-ElementModificationDescription-epo-hasElementReference a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier." ; + sh:maxCount 1 ; + sh:name "Has element reference" ; + sh:path :hasElementReference . + +core-shape:epo-ElementModificationDescription-epo-hasModificationDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An explanatory text about this context. Additional Information This corresponds in Standard forms to Field VII.2.1 in F20 This corresponds in eForms to BT-202 . WG Approval 5/11/2019" ; + sh:name "Has modification description" ; + sh:path :hasModificationDescription . + +core-shape:epo-ElementModificationDescription-epo-hasModificationJustification a sh:PropertyShape ; + sh:class at-voc:modification-justification ; + sh:description "Explanation of why a contract was modified. WG Approval 09/11/2021 The codelist to be used is at-voc:modification-justification which is available at http://publications.europa.eu/resource/dataset/modification-justification Additional Information This corresponds in Standard forms to Field VII.2.2.1 and VII.2.2.3 in F20 . This corresponds in eForms to BT-200." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has modification justification" ; + sh:path :hasModificationJustification . + +core-shape:epo-ElementModificationDescription-epo-hasModificationReasonDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An explanation about the reasons for using the concept. Additional Information This corresponds in Standard forms to Field VII.2.2.2 and VII.2.2.4 in F20. This corresponds in eForms to BT-201 . WG Approval 5/11/2019" ; + sh:name "Has modification reason description" ; + sh:path :hasModificationReasonDescription . + +core-shape:epo-FrameworkAgreement-epo-resultsFromLotAwardDecision a sh:PropertyShape ; + sh:class :LotAwardDecision ; + sh:name "Results from lot award decision" ; + sh:path :resultsFromLotAwardDecision ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-FrameworkAgreementTerm-epo-hasBuyerCategoryDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A classification of buyers participating in a framework agreement. Additional Information: Buyers that can use the Framework Agreement not mentioned by name. For example, the classification \"all hospitals in the Tuscany region\" is used instead of naming each individual buyer. This corresponds in eForms to BT-111 Framework Buyer Categories. WG Approval 2019-05-06" ; + sh:name "Has buyer category description" ; + sh:path :hasBuyerCategoryDescription . + +core-shape:epo-FrameworkAgreementTerm-epo-hasDurationExtensionJustification a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The explanation of the reason why the framework agreement has an extended duration. Additional Information: This corresponds in eForms to BT-109 Framework Duration Justification. The justification for exceptional cases when the duration of the framework agreement exceeds the legal limits. Four years in the case of the general procurement Directive, seven years in the case of the defence Directive, and eight years in the case of the sectoral Directive. WG Approval 26/09/2019" ; + sh:maxCount 1 ; + sh:name "Has duration extension justification" ; + sh:path :hasDurationExtensionJustification . + +core-shape:epo-FrameworkAgreementTerm-epo-hasFrameworkAgreementType a sh:PropertyShape ; + sh:class at-voc:framework-agreement ; + sh:description "The form of framework agreement used in a procurement procedure. Addition information: A concept to distinguish the different types of framework agreement, which are: 1. Framework agreement without reopening of competition, 2. Framework agreement with reopening of competition, or 3. Framework agreement partly without reopening of competition. WG Approval 19/09/2019" ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has framework agreement type" ; + sh:path :hasFrameworkAgreementType . + +core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchFrameworkAgreementMaximumValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:maxCount 1 ; + sh:name "Has launch framework agreement maximum value" ; + sh:path :hasLaunchFrameworkAgreementMaximumValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-FrameworkAgreementTerm-epo-hasLaunchGroupFrameworkAgreementMaximumValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:maxCount 1 ; + sh:name "Has launch group framework agreement maximum value" ; + sh:path :hasLaunchGroupFrameworkAgreementMaximumValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-FrameworkAgreementTerm-epo-hasMaximumParticipantsNumber a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The maximum number of participants in the framework agreement. Additional Information: Maximum number of tenderers who may be awarded a contract within the framework agreement. The number is a positive integer. This corresponds in eForms to BT-113 Framework Maximum Participants Number. WG Approval 2019-02-05" ; + sh:maxCount 1 ; + sh:name "Has maximum participants number" ; + sh:path :hasMaximumParticipantsNumber . + +core-shape:epo-Fund-adms-identifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "Links a resource to an adms:Identifier class." ; + sh:maxCount 1 ; + sh:name "Identifier" ; + sh:path adms:identifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Fund-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-Fund-dct-title a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A name given to the resource. WG approval 30/05/2023" ; + sh:name "Title" ; + sh:path dcterms:title . + +core-shape:epo-Fund-epo-hasFundProgramme a sh:PropertyShape ; + sh:class at-voc:EU-programme ; + sh:maxCount 1 ; + sh:name "Has fund programme" ; + sh:path :hasFundProgramme . + +core-shape:epo-Fund-epo-hasURL a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "The identifier of a resource. Additional Information For example: 1. The URL of the system from where to access the procurement documents; 2. The URL of the system for the submission of tender documents; 3. The URL of the system from where to download a tool to communicate with the Buyer; 4. The URL of the system used by a Technique to allow Economic Operators to exchange information with the Buyer (e.g. eAuction and DPS Systems) 5. The URL of the system used to exchange information between Buyer and EO for questions and clarifications; WG Approval 30/09/2019" ; + sh:maxCount 1 ; + sh:name "Has u r l" ; + sh:path :hasURL . + +core-shape:epo-GreenProcurement-epo-fulfillsRequirement a sh:PropertyShape ; + sh:class at-voc:environmental-impact ; + sh:description "The requirement to which the concept meets. WG Approval 09/11/2021" ; + sh:minCount 1 ; + sh:name "Fulfills requirement" ; + sh:path :fulfillsRequirement . + +core-shape:epo-GreenProcurement-epo-hasCleanVehicles a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The number of all clean vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020" ; + sh:maxCount 1 ; + sh:name "Has clean vehicles" ; + sh:path :hasCleanVehicles . + +core-shape:epo-GreenProcurement-epo-hasTotalVehicles a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The number of all vehicles (regardless of whether clean or not) that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020" ; + sh:maxCount 1 ; + sh:name "Has total vehicles" ; + sh:path :hasTotalVehicles . + +core-shape:epo-GreenProcurement-epo-hasZeroEmissionVehicles a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The number of all zero-emission heavy-duty vehicles that have either been purchased, leased, rented, hired-purchased or their use has been contractually committed to for the provision of a purchased service. Additional Information In the European Union, the legal requirements and scope for the provision of these vehicles or services are covered by Directive 2009/33/EC. WG Approval 28/07/2020" ; + sh:maxCount 1 ; + sh:name "Has zero emission vehicles" ; + sh:path :hasZeroEmissionVehicles . + +core-shape:epo-InnovativeProcurement-epo-fulfillsRequirement a sh:PropertyShape ; + sh:class at-voc:innovative-acquisition ; + sh:description "The requirement to which the concept meets. WG Approval 09/11/2021" ; + sh:minCount 1 ; + sh:name "Fulfills requirement" ; + sh:path :fulfillsRequirement . + +core-shape:epo-JuryMember-epo-playedBy a sh:PropertyShape ; + sh:class foaf:Person ; + sh:maxCount 1 ; + sh:name "Played by" ; + sh:path :playedBy ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Lot-epo-isSubjectToLotSpecificTerm a sh:PropertyShape ; + sh:class :LotSpecificTerm ; + sh:name "Is subject to lot specific term" ; + sh:path :isSubjectToLotSpecificTerm ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Lot-epo-specifiesProcurementCriterion a sh:PropertyShape ; + sh:class :ProcurementCriterion ; + sh:description "In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria.", + "When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions." ; + sh:name "Specifies procurement criterion" ; + sh:path :specifiesProcurementCriterion ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotAwardDecision-epo-concernsLot a sh:PropertyShape ; + sh:class :Lot ; + sh:description "Relates to Lot." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Concerns lot" ; + sh:path :concernsLot ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotAwardDecision-epo-hasApproximateFrameworkAgreementValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:maxCount 1 ; + sh:name "Has approximate framework agreement value" ; + sh:path :hasApproximateFrameworkAgreementValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotAwardDecision-epo-hasAwardedEstimatedValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The estimated value that can be spent as provided by the Award Decision. Additional Information: This property is used for framework agreements and dynamic purchasing systems. Different cases of awarded values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. WG Approval 12/12/2019", + "Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract." ; + sh:maxCount 1 ; + sh:name "Has awarded estimated value" ; + sh:path :hasAwardedEstimatedValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementEstimatedValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "This refers to BT-660 in eForms." ; + sh:maxCount 1 ; + sh:name "Has framework agreement estimated value" ; + sh:path :hasFrameworkAgreementEstimatedValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotAwardDecision-epo-hasFrameworkAgreementMaximumValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:maxCount 1 ; + sh:name "Has framework agreement maximum value" ; + sh:path :hasFrameworkAgreementMaximumValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractNumber a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The number the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022" ; + sh:maxCount 1 ; + sh:name "Has non awarded contract number" ; + sh:path :hasNonAwardedContractNumber . + +core-shape:epo-LotAwardDecision-epo-hasNonAwardedContractTitle a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The title the contract would have had if it had been awarded. Additional information: This field is provided to support the data provided in the TED Standard Forms, and it should be discontinued in the future. WG agreement: 06/09/2022" ; + sh:maxCount 1 ; + sh:name "Has non awarded contract title" ; + sh:path :hasNonAwardedContractTitle . + +core-shape:epo-LotGroup-adms-identifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019" ; + sh:maxCount 1 ; + sh:name "Identifier" ; + sh:path adms:identifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotGroup-epo-setsGroupingContextForLot a sh:PropertyShape ; + sh:class :Lot ; + sh:minCount 1 ; + sh:name "Sets grouping context for lot" ; + sh:path :setsGroupingContextForLot ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotGroup-epo-specifiesProcurementCriterion a sh:PropertyShape ; + sh:class :ProcurementCriterion ; + sh:name "Specifies procurement criterion" ; + sh:path :specifiesProcurementCriterion ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotGroupAwardInformation-epo-describesLotGroup a sh:PropertyShape ; + sh:class :LotGroup ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Describes lot group" ; + sh:path :describesLotGroup ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-LotGroupAwardInformation-epo-hasGroupFrameworkAgreementMaximumValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "This corresponds to BT-156 in the eForms." ; + sh:maxCount 1 ; + sh:name "Has group framework agreement maximum value" ; + sh:path :hasGroupFrameworkAgreementMaximumValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-MiniCompetition-epo-followsRulesSetBy a sh:PropertyShape ; + sh:class :FrameworkAgreement ; + sh:maxCount 1 ; + sh:name "Follows rules set by" ; + sh:path :followsRulesSetBy ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-MiniCompetition-epo-specifiesAwardCriterion a sh:PropertyShape ; + sh:class :AwardCriterion ; + sh:name "Specifies award criterion" ; + sh:path :specifiesAwardCriterion ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-MiniCompetition-epo-usesCandidateList a sh:PropertyShape ; + sh:class :SelectedCandidateList ; + sh:maxCount 1 ; + sh:name "Uses candidate list" ; + sh:path :usesCandidateList ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-MiniCompetitionAwardDecision-epo-concernsMiniCompetition a sh:PropertyShape ; + sh:class :MiniCompetition ; + sh:maxCount 1 ; + sh:name "Concerns mini competition" ; + sh:path :concernsMiniCompetition ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-MonetaryValue-epo-hasAmountValue a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The numeric value of the amount, including decimals." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has amount value" ; + sh:path :hasAmountValue . + +core-shape:epo-MonetaryValue-epo-hasCurrency a sh:PropertyShape ; + sh:class at-voc:currency ; + sh:description "The identifier of the currency as in the standard code list used." ; + sh:maxCount 1 ; + sh:name "Has currency" ; + sh:path :hasCurrency . + +core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyID a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Identifier of the agency that maintains the currency code list used. WG approval 13/04/2021" ; + sh:name "Has currency code list agency i d" ; + sh:path :hasCurrencyCodeListAgencyID . + +core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListAgencyName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Name of the agency that maintains the currency code list used. WG approval 13/04/2021" ; + sh:name "Has currency code list agency name" ; + sh:path :hasCurrencyCodeListAgencyName . + +core-shape:epo-MonetaryValue-epo-hasCurrencyCodeListID a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Concept scheme URI used for the currency code list. WG approval 13/04/2021" ; + sh:name "Has currency code list i d" ; + sh:path :hasCurrencyCodeListID . + +core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToExpressInterestDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The estimated date of dispatch of the invitations to confirm interest. Additional Information: This corresponds in eForms to BT-631 Dispatch Invitation Interest." ; + sh:maxCount 1 ; + sh:name "Has estimated invitation to express interest date" ; + sh:path :hasEstimatedInvitationToExpressInterestDate . + +core-shape:epo-MultipleStageProcedureTerm-epo-hasEstimatedInvitationToTenderDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The estimated date of dispatch of the invitations to submit tenders in two (or more) stage procedures. Additional Information: This corresponds in eForms to BT-130 Dispatch Invitation Tender. WG Approval 01/10/2019" ; + sh:maxCount 1 ; + sh:name "Has estimated invitation to tender date" ; + sh:path :hasEstimatedInvitationToTenderDate . + +core-shape:epo-MultipleStageProcedureTerm-epo-hasMaximumNumberOfCandidates a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "Maximum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019" ; + sh:maxCount 1 ; + sh:name "Has maximum number of candidates" ; + sh:path :hasMaximumNumberOfCandidates . + +core-shape:epo-MultipleStageProcedureTerm-epo-hasMinimumNumberOfCandidates a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "Minimum number of candidates to be invited for the second stage of the procedure. WG Approval 22/08/2019" ; + sh:maxCount 1 ; + sh:name "Has minimum number of candidates" ; + sh:path :hasMinimumNumberOfCandidates . + +core-shape:epo-MultipleStageProcedureTerm-epo-hasNoNegotiationNecessary a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The buyer reserves the right to award the contract on the basis of the initial tenders without any further negotiations. Additional information: See Article 29(4) of Directive 2014/24/EU." ; + sh:maxCount 1 ; + sh:name "Has no negotiation necessary" ; + sh:path :hasNoNegotiationNecessary . + +core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemDuration a sh:PropertyShape ; + sh:class :Duration ; + sh:maxCount 1 ; + sh:name "Has qualification system duration" ; + sh:path :hasQualificationSystemDuration ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-MultipleStageProcedureTerm-epo-hasQualificationSystemRenewalDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Has qualification system renewal description" ; + sh:path :hasQualificationSystemRenewalDescription . + +core-shape:epo-MultipleStageProcedureTerm-epo-hasSuccessiveReduction a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The number of solutions or tenders will be reduced in iterative evaluations for multiple staged procedures. Additional information: This refers to multiple-stage procedures (included two-stage procedures, at least). Open Procedures can be seen as one-stage procedures. WG Approval 22/08/2019" ; + sh:maxCount 1 ; + sh:name "Has successive reduction" ; + sh:path :hasSuccessiveReduction . + +core-shape:epo-NonDisclosureAgreementTerm-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:maxCount 1 ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-NonDisclosureAgreementTerm-epo-isNonDisclosureAgreementRequired a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:name "Is non disclosure agreement required" ; + sh:path :isNonDisclosureAgreementRequired . + +core-shape:epo-Notice-epo-conformsToLegalBasis a sh:PropertyShape ; + sh:class at-voc:legal-basis ; + sh:description "The Notice was designed in accordance with the given legal basis. Additional Information: This Notice can be used for Procedures which do not have the same legal basis. This holds for standard forms." ; + sh:maxCount 1 ; + sh:name "Conforms to legal basis" ; + sh:path :conformsToLegalBasis . + +core-shape:epo-Notice-epo-conformsToSpecificLegalBasis a sh:PropertyShape ; + sh:class at-voc:legal-basis ; + sh:maxCount 1 ; + sh:name "Conforms to specific legal basis" ; + sh:path :conformsToSpecificLegalBasis . + +core-shape:epo-Notice-epo-hasAdditionalInformation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Supplementary data about the instance of the concept. WG Approval 15/10/2019" ; + sh:maxCount 1 ; + sh:name "Has additional information" ; + sh:path :hasAdditionalInformation . + +core-shape:epo-Notice-epo-hasEFormsSubtype a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:name "Has e forms subtype" ; + sh:path :hasEFormsSubtype . + +core-shape:epo-Notice-epo-hasESenderDispatchDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "The date and time the notice was transmitted electronically by the eSender to the Publications Office of the European Union. Additional Information: Typically, eSenders include national Official Journals, Buyers sending a large number of electronic Notices, public or private bodies acting on behalf of Buyers and eProcurement software developers. WG approval 20/06/2023" ; + sh:maxCount 1 ; + sh:name "Has e sender dispatch date" ; + sh:path :hasESenderDispatchDate . + +core-shape:epo-Notice-epo-hasFormNumber a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:name "Has form number" ; + sh:path :hasFormNumber . + +core-shape:epo-Notice-epo-hasFormType a sh:PropertyShape ; + sh:class at-voc:form-type ; + sh:description "A categorisation of the steps in which the Notice is used. WG Approval 12/05/2020" ; + sh:maxCount 1 ; + sh:name "Has form type" ; + sh:path :hasFormType . + +core-shape:epo-Notice-epo-hasLongTitle a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Has long title" ; + sh:path :hasLongTitle . + +core-shape:epo-Notice-epo-hasNoticePublicationNumber a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Has notice publication number" ; + sh:path :hasNoticePublicationNumber . + +core-shape:epo-Notice-epo-hasNoticeType a sh:PropertyShape ; + sh:class at-voc:notice-type ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has notice type" ; + sh:path :hasNoticeType . + +core-shape:epo-Notice-epo-hasNotificationContentType a sh:PropertyShape ; + sh:class :notification-phases-content-types ; + sh:description "A categorisation of templates for sets of Procurement information to be conveyed in Notices. WG Approval 12/05/2020" ; + sh:maxCount 1 ; + sh:name "Has notification content type" ; + sh:path :hasNotificationContentType . + +core-shape:epo-Notice-epo-hasOJSIssueNumber a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:name "Has o j s issue number" ; + sh:path :hasOJSIssueNumber . + +core-shape:epo-Notice-epo-hasOJSType a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Has o j s type" ; + sh:path :hasOJSType . + +core-shape:epo-Notice-epo-isBasedOnImplementingRegulation a sh:PropertyShape ; + sh:class at-voc:legal-basis ; + sh:description "Indicates under which regulation a notice is created. WG Acceptance 06/09/2022" ; + sh:maxCount 1 ; + sh:name "Is based on implementing regulation" ; + sh:path :isBasedOnImplementingRegulation . + +core-shape:epo-Notice-epo-isEUInstitution a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:name "Is e u institution" ; + sh:path :isEUInstitution . + +core-shape:epo-Notice-epo-refersToLot a sh:PropertyShape ; + sh:class :Lot ; + sh:minCount 1 ; + sh:name "Refers to lot" ; + sh:path :refersToLot ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Notice-epo-refersToNotice a sh:PropertyShape ; + sh:class :Notice ; + sh:maxCount 1 ; + sh:name "Refers to notice" ; + sh:path :refersToNotice ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Notice-epo-refersToProcedure a sh:PropertyShape ; + sh:class :Procedure ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Refers to procedure" ; + sh:path :refersToProcedure ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-NoticeAwardInformation-epo-hasApproximateFrameworkAgreementValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:maxCount 1 ; + sh:name "Has approximate framework agreement value" ; + sh:path :hasApproximateFrameworkAgreementValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-NoticeAwardInformation-epo-hasMaximumFrameworkAgreementAwardedValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The maximum value which can be spent through all the framework agreements announced in this notice, including options and renewals of contracts. Additional information: The value provided is a threshold value that implicity means that it cannot be exceeded however it may not be reached during the execution of a contract. The Framework Agreements in a CAN are to be traced back and added to provide this value. This corresponds to the BT-118 in eForms. WG Approval 03/12/2019" ; + sh:maxCount 1 ; + sh:name "Has maximum framework agreement awarded value" ; + sh:path :hasMaximumFrameworkAgreementAwardedValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-NoticeAwardInformation-epo-hasProcurementHighestReceivedTenderValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The highest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.3. according to Regulation (EU) 2015/1986." ; + sh:maxCount 1 ; + sh:name "Has procurement highest received tender value" ; + sh:path :hasProcurementHighestReceivedTenderValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-NoticeAwardInformation-epo-hasProcurementLowestReceivedTenderValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The lowest received tender value for the procurement. Additional Information: This corresponds to section II.1.7.2. according to Regulation (EU) 2015/1986." ; + sh:maxCount 1 ; + sh:name "Has procurement lowest received tender value" ; + sh:path :hasProcurementLowestReceivedTenderValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-NoticeAwardInformation-epo-hasTotalAwardedValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The awarded value of all lots announced in this notice, including options and renewals. Additional information: The values of the individual Lots awarded under a framework agreement and mentioned in this notice are included. The values of the individual lots announced in a CAN are to be traced back and added to provide this value. This corresponds to the BT-161 in eForms. WG Approval 03/12/2019" ; + sh:maxCount 1 ; + sh:name "Has total awarded value" ; + sh:path :hasTotalAwardedValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-NoticeChange-epo-hasElementChange a sh:PropertyShape ; + sh:class :ElementChangeDescription ; + sh:minCount 1 ; + sh:name "Has element change" ; + sh:path :hasElementChange ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-NoticeChange-epo-refersToPreviousNotice a sh:PropertyShape ; + sh:class :Notice ; + sh:description "Additional information: This corresponds in eForms to BT-758 Change Notice Version Identifier." ; + sh:maxCount 1 ; + sh:name "Refers to previous notice" ; + sh:path :refersToPreviousNotice ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-NoticeDescription-epo-describesNotice a sh:PropertyShape ; + sh:class :Notice ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Describes notice" ; + sh:path :describesNotice ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-NoticeDescription-epo-hasElementDescription a sh:PropertyShape ; + sh:class :ElementDescription ; + sh:name "Has element description" ; + sh:path :hasElementDescription ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-OfferIssuer-epo-distributesOffer a sh:PropertyShape ; + sh:class :Offer ; + sh:name "Distributes offer" ; + sh:path :distributesOffer ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-OpeningTerm-epo-definesOpeningPlace a sh:PropertyShape ; + sh:class locn:Address ; + sh:description "The place where the tenders will be publicly opened. WG Approval 10-10-2019" ; + sh:maxCount 1 ; + sh:name "Defines opening place" ; + sh:path :definesOpeningPlace ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-OpeningTerm-epo-hasOpeningDateTime a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "Date and time for the opening of tenders. WG Approval 12/03/2019" ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has opening date time" ; + sh:path :hasOpeningDateTime . + +core-shape:epo-OpeningTerm-epo-hasOpeningDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Further information about the opening of tenders. Additional Information For example, who may participate in the opening and whether any authorization is needed. WG Approval 12/03/2019" ; + sh:name "Has opening description" ; + sh:path :hasOpeningDescription . + +core-shape:epo-OpeningTerm-epo-hasOpeningURL a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "The identifier of the address of the Opening of Tenders. WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has opening u r l" ; + sh:path :hasOpeningURL . + +core-shape:epo-OrganisationGroup-epo-hasGroupType a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Form of collaboration agreement between organisations. Additional Information: This is not a legal type; not to be mistaken with epo:hasLegalFormType which may also be used for Organisation Groups. WG Approval 09/11/2021" ; + sh:name "Has group type" ; + sh:path :hasGroupType . + +core-shape:epo-OrganisationGroup-epo-hasMember a sh:PropertyShape ; + sh:class org:Organization ; + sh:minCount 1 ; + sh:name "Has member" ; + sh:path :hasMember ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-OrganisationGroup-epo-leadBy a sh:PropertyShape ; + sh:class org:Organization ; + sh:maxCount 1 ; + sh:name "Lead by" ; + sh:path :leadBy ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ParticipationCondition-epo-hasReservedProcurement a sh:PropertyShape ; + sh:class at-voc:reserved-procurement ; + sh:description "Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021" ; + sh:name "Has reserved procurement" ; + sh:path :hasReservedProcurement . + +core-shape:epo-ParticipationConditionsSummary-epo-describesObjectiveParticipationRules a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Describes objective participation rules" ; + sh:path :describesObjectiveParticipationRules . + +core-shape:epo-ParticipationConditionsSummary-epo-describesVerificationMethod a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Describes verification method" ; + sh:path :describesVerificationMethod . + +core-shape:epo-ParticipationConditionsSummary-epo-hasReservedProcurement a sh:PropertyShape ; + sh:class at-voc:reserved-procurement ; + sh:description "Explanation as to whether a procurement may be reserved for the participation of certain types of organisation. Additional information: This property corresponds in eForms to the BT-71 WG Approval 09/11/2021" ; + sh:name "Has reserved procurement" ; + sh:path :hasReservedProcurement . + +core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestProcessor a sh:PropertyShape ; + sh:class :ParticipationRequestProcessor ; + sh:description "Relation indicating a ParticipationRequestTerm has a ParticipationRequestProcessor." ; + sh:maxCount 1 ; + sh:name "Defines participation request processor" ; + sh:path :definesParticipationRequestProcessor ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ParticipationRequestTerm-epo-definesParticipationRequestReceiver a sh:PropertyShape ; + sh:class :ParticipationRequestReceiver ; + sh:description "Relation indicating a ParticipationRequestTerm has a ParticipationRequestReceiver." ; + sh:maxCount 1 ; + sh:name "Defines participation request receiver" ; + sh:path :definesParticipationRequestReceiver ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Period-epo-hasBeginning a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "The date and time on which this period begins." ; + sh:maxCount 1 ; + sh:name "Has beginning" ; + sh:path :hasBeginning . + +core-shape:epo-Period-epo-hasEnd a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "The date and time at which this period ends." ; + sh:maxCount 1 ; + sh:name "Has end" ; + sh:path :hasEnd . + +core-shape:epo-Period-epo-hasTimePeriod a sh:PropertyShape ; + sh:class at-voc:timeperiod ; + sh:description "" ; + sh:minCount 1 ; + sh:name "Has time period" ; + sh:path :hasTimePeriod . + +core-shape:epo-PlannedProcurementPart-epo-foreseesProcurementObject a sh:PropertyShape ; + sh:class :ProcurementObject ; + sh:description "Relation indicating the instance of a Procurement Object that is planned. Additional Information: The properties of the Procurement Object that is foreseen should be read as foreseen properties. For example, Procedure isSMESuitable should be read as Procedure foreseesToBeSMESuitable. For example, Procedure isFundedBy should be read as Procedure foreseesToBeFundedBy." ; + sh:maxCount 1 ; + sh:name "Foresees procurement object" ; + sh:path :foreseesProcurementObject ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-PlannedProcurementPart-epo-foreseesTechnique a sh:PropertyShape ; + sh:class :Technique ; + sh:name "Foresees technique" ; + sh:path :foreseesTechnique ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-PlannedProcurementPart-epo-hasPlannedDuration a sh:PropertyShape ; + sh:class :Duration ; + sh:maxCount 1 ; + sh:name "Has planned duration" ; + sh:path :hasPlannedDuration ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-PlannedProcurementPart-epo-hasPlannedPeriod a sh:PropertyShape ; + sh:class :Period ; + sh:maxCount 1 ; + sh:name "Has planned period" ; + sh:path :hasPlannedPeriod ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Prize-epo-hasPrizeRank a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The position of the prize (e.g. first place, second place) in a design contest list of prizes. WG Approval 29/08/2019" ; + sh:maxCount 1 ; + sh:name "Has prize rank" ; + sh:path :hasPrizeRank . + +core-shape:epo-Prize-epo-hasPrizeValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The monetary value of a prize, if any, for the winner (or runners-up) of the design contest. Additional Information: This corresponds to BT-644 in eForms. WG Approval 29/08/2019" ; + sh:maxCount 1 ; + sh:name "Has prize value" ; + sh:path :hasPrizeValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Procedure-epo-hasAcceleratedProcedureJustification a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The reasons why the procedure is accelerated. Additional Information: A procedure is accelerated to cover needs of extraordinary circumstances ie earthquake relief. WG Approval 09/06/2020" ; + sh:name "Has accelerated procedure justification" ; + sh:path :hasAcceleratedProcedureJustification . + +core-shape:epo-Procedure-epo-hasMainFeature a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Main features of the procedure and information about where the full rules for the procedure can be found. Additional Information: This information should be given when the procedure is not one of those mentioned in the procurement directives. This can be the case for example for concessions, for social and other specific services, and in case of voluntary publication of procurement procedures below the EU procurement thresholds." ; + sh:name "Has main feature" ; + sh:path :hasMainFeature . + +core-shape:epo-Procedure-epo-hasProcedureType a sh:PropertyShape ; + sh:class at-voc:procurement-procedure-type ; + sh:description "Identification of the Procedure used. WG Approval 09/06/2020" ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has procedure type" ; + sh:path :hasProcedureType . + +core-shape:epo-Procedure-epo-hasProcurementScopeDividedIntoLot a sh:PropertyShape ; + sh:class :Lot ; + sh:minCount 1 ; + sh:name "Has procurement scope divided into lot" ; + sh:path :hasProcurementScopeDividedIntoLot ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Procedure-epo-involvesBuyer a sh:PropertyShape ; + sh:class :Buyer ; + sh:name "Involves buyer" ; + sh:path :involvesBuyer ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Procedure-epo-isAccelerated a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Statement about the fact that the procedure will be reduced due to a state of urgency. Additional Information This modifies the time limit for the receipt of requests to participate or the receipt of tenders. WG Approval 20/08/2019" ; + sh:maxCount 1 ; + sh:name "Is accelerated" ; + sh:path :isAccelerated . + +core-shape:epo-Procedure-epo-isDesignContest a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "A competition which enables the buyer to acquire a plan or design via a jury. Additional information: Design contests have traditionally mostly been used in the fields of town and country planning, architecture and engineering or data processing, other purposes, such as to obtain plans for financial engineering The contest may include or not the award of prizes; WG approval 04-02-2021" ; + sh:maxCount 1 ; + sh:name "Is design contest" ; + sh:path :isDesignContest . + +core-shape:epo-Procedure-epo-isExecutedByProcurementServiceProvider a sh:PropertyShape ; + sh:class :ProcurementServiceProvider ; + sh:maxCount 1 ; + sh:name "Is executed by procurement service provider" ; + sh:path :isExecutedByProcurementServiceProvider ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Procedure-epo-isJointProcurement a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Multiple buyers procure together within the same procedure. Addition Information: In case the joint procurement involves buyers from different countries, the national law is specified by the epo:hasCrossBorderLaw in the ProcedureTerm ." ; + sh:maxCount 1 ; + sh:name "Is joint procurement" ; + sh:path :isJointProcurement . + +core-shape:epo-Procedure-epo-isResponsibilityOfBuyer a sh:PropertyShape ; + sh:class :Buyer ; + sh:description "" ; + sh:name "Is responsibility of buyer" ; + sh:path :isResponsibilityOfBuyer ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Procedure-epo-isSubjectToProcedureSpecificTerm a sh:PropertyShape ; + sh:class :ProcedureSpecificTerm ; + sh:minCount 1 ; + sh:name "Is subject to procedure specific term" ; + sh:path :isSubjectToProcedureSpecificTerm ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Procedure-epo-specifiesProcurementCriteriaSummary a sh:PropertyShape ; + sh:class :ProcurementCriteriaSummary ; + sh:name "Specifies procurement criteria summary" ; + sh:path :specifiesProcurementCriteriaSummary ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcedureTerm-epo-definesBudgetProvider a sh:PropertyShape ; + sh:class :BudgetProvider ; + sh:description "Relation indicating a ProcedureTerm has a BudgetProvider." ; + sh:maxCount 1 ; + sh:name "Defines budget provider" ; + sh:path :definesBudgetProvider ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcedureTerm-epo-definesInformationProvider a sh:PropertyShape ; + sh:class :AuxiliaryParty ; + sh:description "Relation indicating a ProcedureTerm has an information provider." ; + sh:name "Defines information provider" ; + sh:path :definesInformationProvider ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcedureTerm-epo-definesLotGroup a sh:PropertyShape ; + sh:class :LotGroup ; + sh:description "Relation indicating a ProcedureTerm has a LotGroup." ; + sh:name "Defines lot group" ; + sh:path :definesLotGroup ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcedureTerm-epo-definesMediator a sh:PropertyShape ; + sh:class :Mediator ; + sh:description "Relation indicating a ProcedureTerm has a Mediator." ; + sh:maxCount 1 ; + sh:name "Defines mediator" ; + sh:path :definesMediator ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcedureTerm-epo-hasCrossBorderLaw a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The applicable law when buyers from different countries procure together within one procurement procedure. Additional Information: This corresponds in eForms to BT-09 Cross Border Law." ; + sh:name "Has cross border law" ; + sh:path :hasCrossBorderLaw . + +core-shape:epo-ProcedureTerm-epo-hasGroupLotEvaluationMethod a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Description of how lots and groups of lots are evaluated against one another in the procedure." ; + sh:name "Has group lot evaluation method" ; + sh:path :hasGroupLotEvaluationMethod . + +core-shape:epo-ProcedureTerm-epo-hasLotAwardCombination a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The contracting authority reserves the right to award contracts combining lots or groups of lots. Additional Information: This property contains information about the Lots concerned. This property is required by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022" ; + sh:maxCount 1 ; + sh:name "Has lot award combination" ; + sh:path :hasLotAwardCombination . + +core-shape:epo-ProcedureTerm-epo-hasMaximumLotSubmissionAllowed a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The total number of lots for which one Tenderer can submit Tenders. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 12/12/2018" ; + sh:maxCount 1 ; + sh:name "Has maximum lot submission allowed" ; + sh:path :hasMaximumLotSubmissionAllowed . + +core-shape:epo-ProcedureTerm-epo-hasMaximumNumberOfLotsToBeAwarded a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The maximum number of lots for which contract(s) can be awarded to one tenderer. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG Approval 22/08/2019" ; + sh:maxCount 1 ; + sh:name "Has maximum number of lots to be awarded" ; + sh:path :hasMaximumNumberOfLotsToBeAwarded . + +core-shape:epo-ProcedureTerm-epo-hasNationalProcedureRules a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:name "Has national procedure rules" ; + sh:path :hasNationalProcedureRules . + +core-shape:epo-ProcedureTerm-epo-isAwardedByCPB a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Procedure is awarded by a Central Purchasing Body." ; + sh:maxCount 1 ; + sh:name "Is awarded by c p b" ; + sh:path :isAwardedByCPB . + +core-shape:epo-ProcedureTerm-epo-isOneLotOnlyAllowed a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Indicates whether tenders may be submitted for only one Lot. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms). WG approval 23/08/2022" ; + sh:maxCount 1 ; + sh:name "Is one lot only allowed" ; + sh:path :isOneLotOnlyAllowed . + +core-shape:epo-ProcedureTerm-epo-isSubmissionForAllLotsAllowed a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Indicates whether tenders may be submitted for all Lots. Additional information: This field is used to complement the SubmissionTerms (which are at the Lot level) for the Procedure level which is covered by the regulation (EU)-2015-1986 (modeled in the TED Standard Forms) WG approval 23/08/2022" ; + sh:maxCount 1 ; + sh:name "Is submission for all lots allowed" ; + sh:path :isSubmissionForAllLotsAllowed . + +core-shape:epo-ProcessPlanningTerm-epo-hasAwardDateScheduled a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "Planned date for the award decision. WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has award date scheduled" ; + sh:path :hasAwardDateScheduled . + +core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedContractNoticePublicationDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "Foreseen date for publication of Contract Notice. Additional information: This corresponds in eForms BT-127 Future Notice." ; + sh:maxCount 1 ; + sh:name "Has estimated contract notice publication date" ; + sh:path :hasEstimatedContractNoticePublicationDate . + +core-shape:epo-ProcessPlanningTerm-epo-hasEstimatedTenderInvitationDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The planned date for the dispatch of the invitations to submit tenders. WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has estimated tender invitation date" ; + sh:path :hasEstimatedTenderInvitationDate . + +core-shape:epo-ProcurementCriteriaSummary-epo-indicatesPerformingStaffInformationRequirement a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:name "Indicates performing staff information requirement" ; + sh:path :indicatesPerformingStaffInformationRequirement . + +core-shape:epo-ProcurementCriterion-epo-hasConstraint a sh:PropertyShape ; + sh:class cccev:Constraint ; + sh:name "Has constraint" ; + sh:path :hasConstraint ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementCriterion-epo-hasFormula a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The mathematical equation or any other description used for complicated weighing of criteria (e.g. non-linear weighing, the analytic hierarchy process) when a weighing cannot be expressed per criterion. Additional Information: This corresponds in eForms to BT-543." ; + sh:maxCount 1 ; + sh:name "Has formula" ; + sh:path :hasFormula . + +core-shape:epo-ProcurementCriterion-epo-hasPerformingStaffQualificationInformation a sh:PropertyShape ; + sh:class at-voc:requirement-stage ; + sh:description "Explanation as to if and/or when information of the persons to carry out the contract is to be provided. WG Approval 09/11/2021 The codelist to be used is at-voc:requirement-stage which is available at http://publications.europa.eu/resource/dataset/requirement-stage" ; + sh:name "Has performing staff qualification information" ; + sh:path :hasPerformingStaffQualificationInformation . + +core-shape:epo-ProcurementCriterion-epo-hasWeightValueType a sh:PropertyShape ; + sh:class at-voc:number-weight ; + sh:description "No definition. Waiting on CCCEV alignment." ; + sh:maxCount 1 ; + sh:name "Has weight value type" ; + sh:path :hasWeightValueType . + +core-shape:epo-ProcurementElement-adms-identifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019" ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Identifier" ; + sh:path adms:identifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementElement-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-ProcurementElement-dct-title a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A name given to the resource. WG approval 30/05/2023" ; + sh:name "Title" ; + sh:path dcterms:title . + +core-shape:epo-ProcurementElement-epo-hasEstimatedValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "A forecast of the value of the procurement before competition. Additional Information: Different cases of estimated values may refer to a lot, the global value of the procedure, or of a combinatorial value of a group of lots. The forecast is calculated by the buyer and covers all revenues whether coming from the buyer or third parties. See for example recital (19), Article 5 of Directive 2014/24/EU and other articles from the rest of Directives about procurement. In the case of framework agreements and dynamic purchasing systems this refers to the maximum estimated value. This property corresponds to BT-27 in eForms (for Lot and Procedure) and can be used for BT-157 (for LotGroup). WG Approval 05/12/2019" ; + sh:maxCount 1 ; + sh:name "Has estimated value" ; + sh:path :hasEstimatedValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementElement-epo-hasInternalIdentifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:name "Has internal identifier" ; + sh:path :hasInternalIdentifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementElement-epo-usesChannel a sh:PropertyShape ; + sh:class cccev:Channel ; + sh:name "Uses channel" ; + sh:path :usesChannel ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementObject-epo-foreseesConcession a sh:PropertyShape ; + sh:class :ConcessionEstimate ; + sh:maxCount 1 ; + sh:name "Foresees concession" ; + sh:path :foreseesConcession ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementObject-epo-foreseesContractSpecificTerm a sh:PropertyShape ; + sh:class :ContractSpecificTerm ; + sh:name "Foresees contract specific term" ; + sh:path :foreseesContractSpecificTerm ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementObject-epo-fulfillsStrategicProcurement a sh:PropertyShape ; + sh:class :StrategicProcurement ; + sh:name "Fulfills strategic procurement" ; + sh:path :fulfillsStrategicProcurement ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementObject-epo-hasAdditionalInformation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Supplementary data about the instance of the concept. WG Approval 15/10/2019" ; + sh:name "Has additional information" ; + sh:path :hasAdditionalInformation . + +core-shape:epo-ProcurementObject-epo-hasLegalBasis a sh:PropertyShape ; + sh:class at-voc:legal-basis ; + sh:description "The legal basis under which the procurement procedure takes place. Additional Information: For example European Directives or Regulations, national law WG 09/11/2021 The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis" ; + sh:name "Has legal basis" ; + sh:path :hasLegalBasis . + +core-shape:epo-ProcurementObject-epo-hasLegalBasisDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:name "Has legal basis description" ; + sh:path :hasLegalBasisDescription . + +core-shape:epo-ProcurementObject-epo-hasLegalRegime a sh:PropertyShape ; + sh:class :legal-regime ; + sh:name "Has legal regime" ; + sh:path :hasLegalRegime . + +core-shape:epo-ProcurementObject-epo-hasPurpose a sh:PropertyShape ; + sh:class :Purpose ; + sh:description "Relation indicating a procurement part has a puropse." ; + sh:maxCount 1 ; + sh:name "Has purpose" ; + sh:path :hasPurpose ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementObject-epo-hasRecurrenceDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Any additional information about the recurrence of the Procurement. Additional Information: For example estimated timing of the Procedure. This corresponds in eForms to BT-95 Recurrence Description. (WG approval 2019-01-16)" ; + sh:maxCount 1 ; + sh:name "Has recurrence description" ; + sh:path :hasRecurrenceDescription . + +core-shape:epo-ProcurementObject-epo-isCoveredByGPA a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Specifies whether the Agreement on Government Procurement (GPA) applies. Additional information: The GPA aims to establish a multilateral framework of balanced rights and obligations relating to public contracts with a view to achieving the liberalization and expansion of world trade. This corresponds in the e Forms to BT-115 GPA Coverage. WG Approval 15/10/2019" ; + sh:maxCount 1 ; + sh:name "Is covered by g p a" ; + sh:path :isCoveredByGPA . + +core-shape:epo-ProcurementObject-epo-isFundedBy a sh:PropertyShape ; + sh:class :Fund ; + sh:description "Funding is provided either completely or partially by a Fund. Additional information: This corresponds in eForms to BG - 61 EU Funds (specified per Lot) and to BG - 611 Contract EU Funds (applied per Contract lot) Funds may change between the lot and the contract, for example in the case of an emergency crisis, a contract may be financed by a budget that was not foreseen in the call." ; + sh:name "Is funded by" ; + sh:path :isFundedBy ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementObject-epo-isRecurrent a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The Procurement being notified is likely to be included in another procedure in the foreseeable future. Additional Information: For example, a regularly re-tendered municipal service. This does not include awarding multiple contracts within a single qualification system, framework agreement, or a dynamic purchasing system. This corresponds in eForms to BT-94 Recurrence. WG Approval 12/05/2020" ; + sh:maxCount 1 ; + sh:name "Is recurrent" ; + sh:path :isRecurrent . + +core-shape:epo-ProcurementObject-epo-isSMESuitable a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The Lot is suitable for small and medium enterprises (SMEs). Additional Information This allows the buyer to make emphasis on the fact that the procedure has been designed having SMEs in mind. This indicator is also to be reflected in the selection criteria. For example, number of employees and turnover are applicable to the definition of an SME. WG Approval 15/10/2019" ; + sh:maxCount 1 ; + sh:name "Is s m e suitable" ; + sh:path :isSMESuitable . + +core-shape:epo-ProcurementObject-epo-isSubjectToTerm a sh:PropertyShape ; + sh:class :Term ; + sh:name "Is subject to term" ; + sh:path :isSubjectToTerm ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementObject-epo-isUsingEUFunds a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The procurement foresees funding by the Union. Additional Information: The funding may cover the whole procurement or part of the procurement. For example the European Structural and Investment Funds or grants awarded by the European Union." ; + sh:maxCount 1 ; + sh:name "Is using e u funds" ; + sh:path :isUsingEUFunds . + +core-shape:epo-ProcurementObject-epo-usesTechnique a sh:PropertyShape ; + sh:class :Technique ; + sh:description "In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3)" ; + sh:name "Uses technique" ; + sh:path :usesTechnique ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementProcessInformation-epo-concernsLot a sh:PropertyShape ; + sh:class :Lot ; + sh:description "Relates to Lot." ; + sh:maxCount 1 ; + sh:name "Concerns lot" ; + sh:path :concernsLot ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementProcessInformation-epo-concernsProcedure a sh:PropertyShape ; + sh:class :Procedure ; + sh:description "Relates to Procedure." ; + sh:maxCount 1 ; + sh:name "Concerns procedure" ; + sh:path :concernsProcedure ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProcurementProcessInformation-epo-isCompetitionTerminated a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "No further contracts will be awarded in this procedure. Additional Information: This can be instantiated in the post award phase. PIN for Competition needs to be signaled. This field can be used even if no contracts are awarded in the contract award notice. This corresponds in eForms to BT-756 PIN Competition Termination." ; + sh:maxCount 1 ; + sh:name "Is competition terminated" ; + sh:path :isCompetitionTerminated . + +core-shape:epo-ProcurementProcessInformation-epo-isDPSTerminated a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "End of the Dynamic Purchase System (DPS). Additional Information: This property can be used in the contract award notice even if no contracts are awarded. WG Approval 22/11/2019" ; + sh:maxCount 1 ; + sh:name "Is d p s terminated" ; + sh:path :isDPSTerminated . + +core-shape:epo-ProcurementProcessInformation-epo-isToBeRelaunched a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Indicator of whether the procurement object is to be relaunched. Additional information: This can be instantiated in the post award phase. This corresponds in eForms to BT-634 Procurement Relaunch. WG Approval: 18/01/2022" ; + sh:maxCount 1 ; + sh:name "Is to be relaunched" ; + sh:path :isToBeRelaunched . + +core-shape:epo-ProcurementServiceProvider-epo-actsOnBehalfOf a sh:PropertyShape ; + sh:class :Buyer ; + sh:description "Represents." ; + sh:minCount 1 ; + sh:name "Acts on behalf of" ; + sh:path :actsOnBehalfOf ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfession a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Describes profession" ; + sh:path :describesProfession . + +core-shape:epo-ProfessionalSuitabilitySummary-epo-describesProfessionRelevantLaw a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Describes profession relevant law" ; + sh:path :describesProfessionRelevantLaw . + +core-shape:epo-ProfessionalSuitabilitySummary-epo-hasServiceReservedToParticularProfession a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:name "Has service reserved to particular profession" ; + sh:path :hasServiceReservedToParticularProfession . + +core-shape:epo-Project-adms-identifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "A unique identifier of the instance of the concept. Additional Information For example, in the case of the Procurement Identifier, this could be the European Public Procurement Identifier, and/or any other identifier provided by the buyer, the service provider or any other stakeholder. WG Approval 12/11/2019" ; + sh:maxCount 1 ; + sh:name "Identifier" ; + sh:path adms:identifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-PublicationProvision-epo-hasElementConfidentiality a sh:PropertyShape ; + sh:class :ElementConfidentialityDescription ; + sh:description "Relation indication that the publication provision applies to a given field of a document." ; + sh:minCount 1 ; + sh:name "Has element confidentiality" ; + sh:path :hasElementConfidentiality ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-PublicationProvision-epo-hasPreferredPublicationDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The date the buyer would like to have the record made publicly available. Additional Information: This corresponds in eForms to BT-738 Notice Publication Date Preferred. WG Approval 12/05/2020" ; + sh:maxCount 1 ; + sh:name "Has preferred publication date" ; + sh:path :hasPreferredPublicationDate . + +core-shape:epo-PurchaseContract-epo-resultsFromMiniCompetitionAwardDecision a sh:PropertyShape ; + sh:class :MiniCompetitionAwardDecision ; + sh:maxCount 1 ; + sh:name "Results from mini competition award decision" ; + sh:path :resultsFromMiniCompetitionAwardDecision ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Purpose-epo-hasAdditionalClassification a sh:PropertyShape ; + sh:class at-voc:cpv ; + sh:name "Has additional classification" ; + sh:path :hasAdditionalClassification . + +core-shape:epo-Purpose-epo-hasMainClassification a sh:PropertyShape ; + sh:class at-voc:cpv ; + sh:minCount 1 ; + sh:name "Has main classification" ; + sh:path :hasMainClassification . + +core-shape:epo-Purpose-epo-hasTotalQuantity a sh:PropertyShape ; + sh:class :Quantity ; + sh:description "The number of units required. Additional Information: The quantity needs to go along with the unit." ; + sh:maxCount 1 ; + sh:name "Has total quantity" ; + sh:path :hasTotalQuantity ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-QualificationCriteriaSummary-epo-hasConditionVerificationMethod a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:name "Has condition verification method" ; + sh:path :hasConditionVerificationMethod . + +core-shape:epo-QualificationCriteriaSummary-epo-hasQualificationCondition a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:name "Has qualification condition" ; + sh:path :hasQualificationCondition . + +core-shape:epo-Quantity-epo-hasQuantityValue a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The numeric value of the quantity, including decimals." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has quantity value" ; + sh:path :hasQuantityValue . + +core-shape:epo-Quantity-epo-hasUnitCode a sh:PropertyShape ; + sh:class at-voc:measurement-unit ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has unit code" ; + sh:path :hasUnitCode . + +core-shape:epo-Quantity-epo-hasUnitDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A narrative explanation defining the units of items being counted Additional information: This could be for example individual items or pack or two. WG Approval 09/11/2021" ; + sh:name "Has unit description" ; + sh:path :hasUnitDescription . + +core-shape:epo-ReviewDecision-epo-hasConfirmedIrregularityType a sh:PropertyShape ; + sh:class at-voc:irregularity-type ; + sh:description "Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type" ; + sh:name "Has confirmed irregularity type" ; + sh:path :hasConfirmedIrregularityType . + +core-shape:epo-ReviewDecision-epo-hasDecisionDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The date of the review decision. Additional information: This attribute corresponds to the BT-787 Review Date in eForms." ; + sh:maxCount 1 ; + sh:name "Has decision date" ; + sh:path :hasDecisionDate . + +core-shape:epo-ReviewDecision-epo-hasRemedyValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "Additional information: This relation corresponds in eForms to BT-793 Review Remedy Value." ; + sh:maxCount 1 ; + sh:name "Has remedy value" ; + sh:path :hasRemedyValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ReviewDecision-epo-hasReviewDecisionType a sh:PropertyShape ; + sh:class at-voc:review-decision-type ; + sh:description "Additional information: This relation corresponds in eForms to BT-790 Review Decision Type." ; + sh:name "Has review decision type" ; + sh:path :hasReviewDecisionType . + +core-shape:epo-ReviewDecision-epo-providesRulingOnRemedy a sh:PropertyShape ; + sh:class at-voc:remedy-type ; + sh:description "States the measures to be taken after a review procedure." ; + sh:name "Provides ruling on remedy" ; + sh:path :providesRulingOnRemedy . + +core-shape:epo-ReviewDecision-epo-resolvesReviewRequest a sh:PropertyShape ; + sh:class :ReviewRequest ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Resolves review request" ; + sh:path :resolvesReviewRequest ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ReviewIrregularitySummary-epo-hasIrregularityType a sh:PropertyShape ; + sh:class at-voc:irregularity-type ; + sh:description "Additional information: This relation corresponds in eForms to BT-636 Buyer Review Requests Irregularity Type" ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has irregularity type" ; + sh:path :hasIrregularityType . + +core-shape:epo-ReviewIrregularitySummary-epo-hasReviewIrregularityCount a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The number of requests for a given irregularity. Additional information: This attribute corresponds in eForms to BT-635 Buyer Review Requests Count." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has review irregularity count" ; + sh:path :hasReviewIrregularityCount . + +core-shape:epo-ReviewObject-epo-hasElementReference a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "Reference to the class instance in the current notice. Additional information: This corresponds in eForms to BT-13716 Change Previous Notice Section Identifier, BT-786 Review Notice Section Identifier and BT-1501 Modification Previous Notice Section Identifier." ; + sh:name "Has element reference" ; + sh:path :hasElementReference . + +core-shape:epo-ReviewObject-epo-hasReviewURL a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "The internet address of the documents concerning the review instance. Additional information: This attribute corresponds in eForms to BT-794 Review URL." ; + sh:maxCount 1 ; + sh:name "Has review u r l" ; + sh:path :hasReviewURL . + +core-shape:epo-ReviewObject-epo-refersToPreviousReview a sh:PropertyShape ; + sh:class :ReviewObject ; + sh:description "Additional information: This relation corresponds in eForms to BT-785 \"Review Previous Identifier\"." ; + sh:maxCount 1 ; + sh:name "Refers to previous review" ; + sh:path :refersToPreviousReview ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ReviewRequest-epo-hasAllegedIrregularityType a sh:PropertyShape ; + sh:class at-voc:irregularity-type ; + sh:description "Additional information: This relation corresponds in eForms to BT-791 Review Irregularity Type" ; + sh:minCount 1 ; + sh:name "Has alleged irregularity type" ; + sh:path :hasAllegedIrregularityType . + +core-shape:epo-ReviewRequest-epo-hasNumberOfReviewRequests a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The number of requests the buyer received to review any of its decisions." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has number of review requests" ; + sh:path :hasNumberOfReviewRequests . + +core-shape:epo-ReviewRequest-epo-hasRequestDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The date when the review request was submitted. Additional information: This attribute corresponds to the BT-787 Review Date in eForms." ; + sh:maxCount 1 ; + sh:name "Has request date" ; + sh:path :hasRequestDate . + +core-shape:epo-ReviewRequest-epo-hasReviewRequestFee a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "Additional information: This relation corresponds in eForms to BT-795 Review Request Fee." ; + sh:maxCount 1 ; + sh:name "Has review request fee" ; + sh:path :hasReviewRequestFee ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ReviewRequest-epo-hasWithdrawalDate a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:date ; + sh:description "The date and time when the request for review was withdrawn. Additional information: This attribute corresponds in eForms to BT-797 Review Request Withdrawn Date." ; + sh:maxCount 1 ; + sh:name "Has withdrawal date" ; + sh:path :hasWithdrawalDate . + +core-shape:epo-ReviewRequest-epo-hasWithdrawalReason a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The explanation for withdrawing the request for review. Additional information: This attribute corresponds in eForms to BT-798 Review Request Withdrawn Reasons" ; + sh:maxCount 1 ; + sh:name "Has withdrawal reason" ; + sh:path :hasWithdrawalReason . + +core-shape:epo-ReviewRequest-epo-isWithdrawn a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The review request was withdrawn. Additional information: This attribute corresponds in eForms to BT-796 Review Request Withdrawn." ; + sh:maxCount 1 ; + sh:name "Is withdrawn" ; + sh:path :isWithdrawn . + +core-shape:epo-ReviewRequest-epo-requestsRemedyType a sh:PropertyShape ; + sh:class at-voc:remedy-type ; + sh:description "Additional information: This relation corresponds in eForms to BT-792 Review Remedy Type" ; + sh:name "Requests remedy type" ; + sh:path :requestsRemedyType . + +core-shape:epo-ReviewRequestSummary-epo-concernsReviewSummaryForLot a sh:PropertyShape ; + sh:class :Lot ; + sh:description "Relates to Lot review summary. Additional information: This relation corresponds in eForms to BT-13722 Buyer Review Lot Identifier." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Concerns review summary for lot" ; + sh:path :concernsReviewSummaryForLot ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ReviewRequestSummary-epo-hasReviewIrregularitySummary a sh:PropertyShape ; + sh:class :ReviewIrregularitySummary ; + sh:description "Additional information: This relation corresponds in eForms to BG-613 Buyer Review Requests" ; + sh:name "Has review irregularity summary" ; + sh:path :hasReviewIrregularitySummary ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-ReviewRequestSummary-epo-hasTotalNumberOfComplainants a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The number of economic operators that requested the buyer to review any of its decisions (e.g. the technical specifications, award decision), as set out in Art. 1(5) of Directive 89/665/EEC and Directive 92/13/EEC. Additional information: This attribute corresponds in eForms to BT-712 Buyer Review Complainants WG Approval 11/04/2019" ; + sh:maxCount 1 ; + sh:name "Has total number of complainants" ; + sh:path :hasTotalNumberOfComplainants . + +core-shape:epo-Reviewer-epo-hasReviewBodyType a sh:PropertyShape ; + sh:class at-voc:review-body-type ; + sh:name "Has review body type" ; + sh:path :hasReviewBodyType . + +core-shape:epo-SecurityClearanceTerm-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-SecurityClearanceTerm-epo-hasDeadline a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "The deadline by which the security clearance must be submitted to the buyer. WG Approval 12/09/2019" ; + sh:maxCount 1 ; + sh:name "Has deadline" ; + sh:path :hasDeadline . + +core-shape:epo-SecurityClearanceTerm-epo-isSecurityClearanceRequired a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:name "Is security clearance required" ; + sh:path :isSecurityClearanceRequired . + +core-shape:epo-SelectedCandidateList-epo-containsCandidate a sh:PropertyShape ; + sh:class :Candidate ; + sh:name "Contains candidate" ; + sh:path :containsCandidate ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-SelectedCandidateList-epo-hasStartDate a sh:PropertyShape ; + sh:class :Period ; + sh:maxCount 1 ; + sh:name "Has start date" ; + sh:path :hasStartDate ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-SelectionCriteriaSummary-epo-describesMinimumLevelOfStandards a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:maxCount 1 ; + sh:name "Describes minimum level of standards" ; + sh:path :describesMinimumLevelOfStandards . + +core-shape:epo-SelectionCriteriaSummary-epo-hasSelectionCriteriaStatedInProcurementDocuments a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:maxCount 1 ; + sh:name "Has selection criteria stated in procurement documents" ; + sh:path :hasSelectionCriteriaStatedInProcurementDocuments . + +core-shape:epo-SelectionCriterion-epo-hasSelectionCriteriaUsage a sh:PropertyShape ; + sh:class at-voc:usage ; + sh:description "Additional Information: This corresponds in eForms to BT-748 Selection Criteria Used." ; + sh:maxCount 1 ; + sh:name "Has selection criteria usage" ; + sh:path :hasSelectionCriteriaUsage . + +core-shape:epo-SelectionCriterion-epo-hasSelectionCriterionType a sh:PropertyShape ; + sh:class at-voc:selection-criterion ; + sh:description "The classification of the selection criteria. Additional Information: This corresponds in eForms to BT-747 Selection Criteria Type. WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has selection criterion type" ; + sh:path :hasSelectionCriterionType . + +core-shape:epo-SelectionCriterion-epo-isUsedForCandidateRestriction a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The criterion will be used to select the candidates to be invited for the second stage of a multistage procedure. Additional Information: This property is only used if a maximum number of candidates was foreseen in the procedure. This corresponds in eForms to BT-40 Selection Criteria Second Stage Invite" ; + sh:maxCount 1 ; + sh:name "Is used for candidate restriction" ; + sh:path :isUsedForCandidateRestriction . + +core-shape:epo-SocialProcurement-epo-fulfillsRequirement a sh:PropertyShape ; + sh:class at-voc:social-objective ; + sh:description "The requirement to which the concept meets. WG Approval 09/11/2021" ; + sh:minCount 1 ; + sh:name "Fulfills requirement" ; + sh:path :fulfillsRequirement . + +core-shape:epo-SpecificDuration-time-numericDuration a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "Value of a temporal extent expressed as a number." ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Numeric duration" ; + sh:path time:numericDuration . + +core-shape:epo-SpecificDuration-time-unitType a sh:PropertyShape ; + sh:class time:TemporalUnit ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Unit type" ; + sh:path time:unitType . + +core-shape:epo-StrategicProcurement-epo-hasNonAccessibilityCriterionJustification a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Reason for not applying accessibility criteria. Additional information: This corresponds in eForma to BT-755 Accessibility Justification. WG Approval 05/03/2019" ; + sh:name "Has non accessibility criterion justification" ; + sh:path :hasNonAccessibilityCriterionJustification . + +core-shape:epo-StrategicProcurement-epo-hasStrategicProcurementDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Self-explanatory text about a concept." ; + sh:name "Has strategic procurement description" ; + sh:path :hasStrategicProcurementDescription . + +core-shape:epo-StrategicProcurement-epo-includesAccessibilityCriterion a sh:PropertyShape ; + sh:class at-voc:accessibility ; + sh:description "Explanation as to whether accessibility Criterion are used or not. WG Approval 09/11/2021" ; + sh:name "Includes accessibility criterion" ; + sh:path :includesAccessibilityCriterion . + +core-shape:epo-SubcontractTerm-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-SubcontractTerm-epo-hasMaximumShare a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The maximum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019" ; + sh:maxCount 1 ; + sh:name "Has maximum share" ; + sh:path :hasMaximumShare . + +core-shape:epo-SubcontractTerm-epo-hasMinimumShare a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The minimum proportion of something to be distributed. Additional Information: In the case of subcontracting the share may refer to the proportion of works, services or supplies being subcontracted. WG Approval 17/09/2019" ; + sh:maxCount 1 ; + sh:name "Has minimum share" ; + sh:path :hasMinimumShare . + +core-shape:epo-SubcontractTerm-epo-hasMinimumSubcontractorsProposedObligation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The minimum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has minimum subcontractors proposed obligation" ; + sh:path :hasMinimumSubcontractorsProposedObligation . + +core-shape:epo-SubcontractTerm-epo-hasSubcontractingInvolved a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "List of Subcontractors and the subject matter they cover are required. Additional Information: The tenderer will ned to supply this information in the tender. WG Approval 28/02/2019" ; + sh:maxCount 1 ; + sh:name "Has subcontracting involved" ; + sh:path :hasSubcontractingInvolved . + +core-shape:epo-SubcontractTerm-epo-hasSubcontractingObligation a sh:PropertyShape ; + sh:class at-voc:subcontracting-obligation ; + sh:description "The requirement the tender must meet with regard to subcontracting parts of the contract. WG Approval 09/11/2021" ; + sh:name "Has subcontracting obligation" ; + sh:path :hasSubcontractingObligation . + +core-shape:epo-SubcontractTerm-epo-hasSubcontractorsProposedAboveObligation a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The maximum percentage of the contract value that the contractor must subcontract. Additional information: This is used for the competitive procedure described in Title III of Directive 2009/81/EC. WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has subcontractors proposed above obligation" ; + sh:path :hasSubcontractorsProposedAboveObligation . + +core-shape:epo-SubcontractingEstimate-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-SubcontractingEstimate-epo-hasEstimatedPercentage a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:decimal ; + sh:description "The estimated proportion foreseen to be subcontracted. WG Approval 07/01/2020" ; + sh:maxCount 1 ; + sh:name "Has estimated percentage" ; + sh:path :hasEstimatedPercentage . + +core-shape:epo-SubcontractingEstimate-epo-hasSubcontractingEstimatedValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The estimated value of a single subcontract. This relates to BT-553 in eForms. WG Approval 01/09/2020" ; + sh:maxCount 1 ; + sh:name "Has subcontracting estimated value" ; + sh:path :hasSubcontractingEstimatedValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-SubcontractingEstimate-epo-hasSubjectMatter a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Description of the share of the contract that is to be subcontracted. Additional infromation: This can be an aggregate of several subcontracts. WG Approval 09/11/2021" ; + sh:name "Has subject matter" ; + sh:path :hasSubjectMatter . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasAbnormallyLowTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "Tenders received that were found irregular and non-acceptable due to an abnormally low price or cost. Additional Information The definition implies that abnormally Low Tender Lots are Inadmissible Tender Lots. WG Approval 28/07/2020" ; + sh:maxCount 1 ; + sh:name "Has abnormally low tenders" ; + sh:path :hasAbnormallyLowTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasEEAReceivedTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The amount of tenders received from economic operators in other EEA countries other than the country of the buyer. WG Approval 12/12/2019" ; + sh:maxCount 1 ; + sh:name "Has e e a received tenders" ; + sh:path :hasEEAReceivedTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasEUReceivedTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The amount of tenders received from economic operators in other EU countries other than the country of the buyer." ; + sh:maxCount 1 ; + sh:name "Has e u received tenders" ; + sh:path :hasEUReceivedTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasElectronicTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "Electronic Tender Lots received. WG Approval 28/07/2020" ; + sh:maxCount 1 ; + sh:name "Has electronic tenders" ; + sh:path :hasElectronicTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasEstimatedTotalSubcontracts a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The estimated amount of work to be subcontracted in the contract resulting from the lot. WG Approval 09/11/2021" ; + sh:maxCount 1 ; + sh:name "Has estimated total subcontracts" ; + sh:path :hasEstimatedTotalSubcontracts . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasHighestReceivedTenderValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "Amount of the Tender with the highest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019" ; + sh:maxCount 1 ; + sh:name "Has highest received tender value" ; + sh:path :hasHighestReceivedTenderValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasInadmissibleTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "Tenders received that cannot be awarded due to non-compliance to procurement document requirements or having an abnormally low price or cost. Additional Information: Non-compliance with a Procurement Document requirements include exclusion grounds, selection criteria and submission deadline, etc. WG Approval 12/12/2019" ; + sh:maxCount 1 ; + sh:name "Has inadmissible tenders" ; + sh:path :hasInadmissibleTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasLowestReceivedTenderValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "Amount of the Tender with the lowest value. Additional Information The value must correspond to an admissible tender. For example, tenders compliant with the procurement document requirements, not having an abnormally low price or cost, etc. WG Approval 12/12/2019" ; + sh:maxCount 1 ; + sh:name "Has lowest received tender value" ; + sh:path :hasLowestReceivedTenderValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasMediumTenderPerLots a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "Tenders from medium-sized enterprise. Additional Information: See Commission Recommendation 2003/361/EC." ; + sh:maxCount 1 ; + sh:name "Has medium tender per lots" ; + sh:path :hasMediumTenderPerLots . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEEAReceivedTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The amount of tenders received from economic operators in non-EEA countries. WG Approval 12/12/2019 15:20:36" ; + sh:maxCount 1 ; + sh:name "Has non e e a received tenders" ; + sh:path :hasNonEEAReceivedTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasNonEUReceivedTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The amount of tenders received from economic operators in non-EU countries." ; + sh:maxCount 1 ; + sh:name "Has non e u received tenders" ; + sh:path :hasNonEUReceivedTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasNumberOfTenderersInvited a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "Number of economic operators invited to tender. Additional Information This may be used for single-stage procedures or to indicate the number of candidates invited to tender in multi-stage procedures. WG Approval 01/12/2020" ; + sh:maxCount 1 ; + sh:name "Has number of tenderers invited" ; + sh:path :hasNumberOfTenderersInvited . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasOtherCountriesReceivedTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:maxCount 1 ; + sh:name "Has other countries received tenders" ; + sh:path :hasOtherCountriesReceivedTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedMicroTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The amount of tenders received from a micro enterprise. Additional Information: See Commission Recommendation 2003/361/EC." ; + sh:maxCount 1 ; + sh:name "Has received micro tenders" ; + sh:path :hasReceivedMicroTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedParticipationRequests a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The amount of applications to participate from economic operators. WG Approval 12/12/2019" ; + sh:maxCount 1 ; + sh:name "Has received participation requests" ; + sh:path :hasReceivedParticipationRequests . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSmallTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "Tenders from small enterprise. Additional Information: See Commission Recommendation 2003/361/EC." ; + sh:maxCount 1 ; + sh:name "Has received small tenders" ; + sh:path :hasReceivedSmallTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedSubmissionType a sh:PropertyShape ; + sh:class at-voc:received-submission-type ; + sh:maxCount 1 ; + sh:name "Has received submission type" ; + sh:path :hasReceivedSubmissionType . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasReceivedTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The total amount of tenders received. WG Approval 12/12/2019" ; + sh:maxCount 1 ; + sh:name "Has received tenders" ; + sh:path :hasReceivedTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasSMEReceivedTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The amount of tenders received from micro, small and medium-sized enterprises. Additional Information: See Commission Recommendation 2003/361/EC. The ReceivedSMETenderLots is used when the size of the company is not exactly knokn. WG Approval 05/03/2020" ; + sh:maxCount 1 ; + sh:name "Has s m e received tenders" ; + sh:path :hasSMEReceivedTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-hasUnverifiedTenders a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "Offers received for which it has not been verified if they are admissible or inadmissible (e.g. because award criteria have been evaluated for all tenders and admissibility is checked only for the winning tender). WG Approval 28/07/2020" ; + sh:maxCount 1 ; + sh:name "Has unverified tenders" ; + sh:path :hasUnverifiedTenders . + +core-shape:epo-SubmissionStatisticalInformation-epo-summarisesInformationForAwardDecision a sh:PropertyShape ; + sh:class :AwardDecision ; + sh:description "Check definitions for all concepts and relations.", + "Relates to submission for the given competition, either at Lot level or Mini-Competition level. WG approval 30/05/2023" ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Summarises information for award decision" ; + sh:path :summarisesInformationForAwardDecision ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-SubmissionTerm-epo-definesTenderProcessor a sh:PropertyShape ; + sh:class :TenderProcessor ; + sh:description "Relation indicating a SubmissionTerm has a TenderProcessor." ; + sh:maxCount 1 ; + sh:name "Defines tender processor" ; + sh:path :definesTenderProcessor ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-SubmissionTerm-epo-definesTenderReceiver a sh:PropertyShape ; + sh:class :TenderReceiver ; + sh:description "Relation indicating a SubmissionTerm has a TenderReceiver." ; + sh:maxCount 1 ; + sh:name "Defines tender receiver" ; + sh:path :definesTenderReceiver ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-SubmissionTerm-epo-hasEAuctionURL a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "The internet address of the electronic auction. Additional Information: This corresponds in eForms to BT-123 Electronic Auction URL." ; + sh:maxCount 1 ; + sh:name "Has e auction u r l" ; + sh:path :hasEAuctionURL . + +core-shape:epo-SubmissionTerm-epo-hasECataloguePermission a sh:PropertyShape ; + sh:class at-voc:permission ; + sh:description "The extent to which electronic catalogues may be used in tenders. WG Approval 03/10/2019" ; + sh:maxCount 1 ; + sh:name "Has e catalogue permission" ; + sh:path :hasECataloguePermission . + +core-shape:epo-SubmissionTerm-epo-hasESubmissionPermission a sh:PropertyShape ; + sh:class at-voc:permission ; + sh:description "The requirements as to what extent electronic submission is allowed. WG Approval 03/10/2019" ; + sh:maxCount 1 ; + sh:name "Has e submission permission" ; + sh:path :hasESubmissionPermission . + +core-shape:epo-SubmissionTerm-epo-hasGuaranteeDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Information on the financial commitment required from the economic operator. Additional Information: 1. This information may include the amount and the way of delivering of the guarantee 2. The financial commitment may be retained by the buyer in the case the tenderer withdraws the submitted information (i.e. tender, expression of interest and request for participation, but not request for clarifications) before the award of the contract or does not sign the contract. 3. Usual modalities are bonds, cheques, loans, other. WG Approval 21/07/20" ; + sh:name "Has guarantee description" ; + sh:path :hasGuaranteeDescription . + +core-shape:epo-SubmissionTerm-epo-hasLanguage a sh:PropertyShape ; + sh:class at-voc:language ; + sh:description "Language in which the submitted information is to be expressed. WG Approval 21/07/2020" ; + sh:name "Has language" ; + sh:path :hasLanguage . + +core-shape:epo-SubmissionTerm-epo-hasLateSubmissionInformationDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A narrative text explaining the content of the economic operator information that can be submitted late. Additional Information This does not apply to requests for clarifications." ; + sh:name "Has late submission information description" ; + sh:path :hasLateSubmissionInformationDescription . + +core-shape:epo-SubmissionTerm-epo-hasLateSubmissionPermission a sh:PropertyShape ; + sh:class at-voc:missing-info-submission ; + sh:description "Whether economic operator-related information can be supplemented even after the submission deadline. Additional Information This is specific to the information on the economic operator and not the actual offer. This does not apply to the requests for clarification. WG Approval 21/07/2020" ; + sh:maxCount 1 ; + sh:name "Has late submission permission" ; + sh:path :hasLateSubmissionPermission . + +core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Textual explanation of how non-electronic information is to be presented. WG Approval 21/07/2020" ; + sh:name "Has non electronic submission description" ; + sh:path :hasNonElectronicSubmissionDescription . + +core-shape:epo-SubmissionTerm-epo-hasNonElectronicSubmissionJustification a sh:PropertyShape ; + sh:class at-voc:communication-justification ; + sh:description "Reason for not accepting electronic information. WG Approval 21/07/2020" ; + sh:name "Has non electronic submission justification" ; + sh:path :hasNonElectronicSubmissionJustification . + +core-shape:epo-SubmissionTerm-epo-hasReceiptDeadline a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "The time limit for receiving submissions. Additional Information This is the deadline by which the buyer must receive submissions (e.g. tenders, requests to participate, clarifications, etc.) and is not the time at which the information is submitted by the economic operator. This attribute should be used for standard forms mappings. WG Approval 21/07/2020" ; + sh:maxCount 1 ; + sh:name "Has receipt deadline" ; + sh:path :hasReceiptDeadline . + +core-shape:epo-SubmissionTerm-epo-hasReceiptExpressionDeadline a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:description "Time limit for receipt of expressions of interest. Pending of review by the WG" ; + sh:maxCount 1 ; + sh:name "Has receipt expression deadline" ; + sh:path :hasReceiptExpressionDeadline . + +core-shape:epo-SubmissionTerm-epo-hasReceiptParticipationRequestDeadline a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:maxCount 1 ; + sh:name "Has receipt participation request deadline" ; + sh:path :hasReceiptParticipationRequestDeadline . + +core-shape:epo-SubmissionTerm-epo-hasReceiptPreliminaryMarketConsultationDeadline a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:maxCount 1 ; + sh:name "Has receipt preliminary market consultation deadline" ; + sh:path :hasReceiptPreliminaryMarketConsultationDeadline . + +core-shape:epo-SubmissionTerm-epo-hasReceiptTenderDeadline a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:dateTime ; + sh:maxCount 1 ; + sh:name "Has receipt tender deadline" ; + sh:path :hasReceiptTenderDeadline . + +core-shape:epo-SubmissionTerm-epo-hasSubmissionURL a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "Additional Information: This corresponds to the eForms BT-18 Submission URL. This corresponds in eForms to BT-509 Organisation eDelivery Gateway." ; + sh:name "Has submission u r l" ; + sh:path :hasSubmissionURL . + +core-shape:epo-SubmissionTerm-epo-hasTenderSubcontractingInformation a sh:PropertyShape ; + sh:class at-voc:subcontracting-indication ; + sh:description "The information about subcontracting that must be indicated in the tender. WG Approval 10/10/2019" ; + sh:name "Has tender subcontracting information" ; + sh:path :hasTenderSubcontractingInformation . + +core-shape:epo-SubmissionTerm-epo-hasTenderValidityPeriod a sh:PropertyShape ; + sh:class :Period ; + sh:description "The relation indicating until when a tender instance is applicable." ; + sh:maxCount 1 ; + sh:name "Has tender validity period" ; + sh:path :hasTenderValidityPeriod ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-SubmissionTerm-epo-hasVariantPermission a sh:PropertyShape ; + sh:class at-voc:permission ; + sh:description "The obligation or possibility for tenderers to submit variants or not. Additional Information: Variants are alternative ways to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. eForms: Whether tenderers are required, allowed or forbidden to submit tenders which fulfil the buyer's needs differently than as proposed in the procurement documents. Additional Information: Further conditions for submitting variant tenders are in the procurement documents." ; + sh:maxCount 1 ; + sh:name "Has variant permission" ; + sh:path :hasVariantPermission . + +core-shape:epo-SubmissionTerm-epo-isAdvancedElectronicSignatureRequired a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Advanced or qualified electronic signature or seal (as defined in Regulation (EU) No 910/2014) is required. The submitted information is required to be signed electronically. Additional Information: Signature can be defined as \"data in electronic form which is attached to or logically associated with other data in electronic form and which is used by the signatory to sign. For more details on the meaning and uses of electronic signature you may consult different authoritative sources, a relevant one being for instance the Regulation (EU) 910/2014 on electronic identification and trust services for electronic transactions in the internal market. WG Approval 21/07/2020" ; + sh:maxCount 1 ; + sh:name "Is advanced electronic signature required" ; + sh:path :isAdvancedElectronicSignatureRequired . + +core-shape:epo-SubmissionTerm-epo-isGuaranteeRequired a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "The submitted information must include a financial commitment to be used in case of default. Additional Information: See the additional information provided in the definition of the 'Guarantee Description' element. WG Approval 21/07/20" ; + sh:maxCount 1 ; + sh:name "Is guarantee required" ; + sh:path :isGuaranteeRequired . + +core-shape:epo-SubmissionTerm-epo-isMultipleTenderSubmissionAllowed a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Tenderers may submit more than one competing tenders. WG Approval 10/10/2019" ; + sh:maxCount 1 ; + sh:name "Is multiple tender submission allowed" ; + sh:path :isMultipleTenderSubmissionAllowed . + +core-shape:epo-System-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-System-epo-isOwnedByAgent a sh:PropertyShape ; + sh:class foaf:Agent ; + sh:maxCount 1 ; + sh:name "Is owned by agent" ; + sh:path :isOwnedByAgent ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Technique-dct-description a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "An account of the resource. Additional Information: Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. WG Approval 30/05/2023" ; + sh:name "Description" ; + sh:path dcterms:description . + +core-shape:epo-Technique-epo-hasUsage a sh:PropertyShape ; + sh:class at-voc:usage ; + sh:description "The codelist to be used is at-voc:usage which is available at http://publications.europa.eu/resource/dataset/usage" ; + sh:maxCount 1 ; + sh:name "Has usage" ; + sh:path :hasUsage . + +core-shape:epo-Technique-epo-hasValidityPeriod a sh:PropertyShape ; + sh:class :Period ; + sh:description "The relation indicating until when a given instance of a concept is applicable. WG approval 30/05/2023" ; + sh:maxCount 1 ; + sh:name "Has validity period" ; + sh:path :hasValidityPeriod ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Tender-epo-foreseesConcession a sh:PropertyShape ; + sh:class :ConcessionEstimate ; + sh:maxCount 1 ; + sh:name "Foresees concession" ; + sh:path :foreseesConcession ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Tender-epo-foreseesSubcontracting a sh:PropertyShape ; + sh:class :SubcontractingEstimate ; + sh:name "Foresees subcontracting" ; + sh:path :foreseesSubcontracting ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Tender-epo-hasElectronicSubmission a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Transmission of tenders is possible by electronic means of communication." ; + sh:maxCount 1 ; + sh:name "Has electronic submission" ; + sh:path :hasElectronicSubmission . + +core-shape:epo-Tender-epo-hasFinancialOfferValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:description "The value offered by the Tenderer for a Lot. Additional Information: This value is normally the one awarded for a winning Tender Lot. In case of negotiated procedures the original financial value may be reviewed and the offer updated. This corresponds to BT-720 in eForms." ; + sh:maxCount 1 ; + sh:name "Has financial offer value" ; + sh:path :hasFinancialOfferValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Tender-epo-hasItemCountryOfOrigin a sh:PropertyShape ; + sh:class at-voc:country ; + sh:description "The source country of the product or service. Additional Information: The country of origin can be provided by the buyer as a requirement or by the tenderer information of the item to be provided. WG Approval 07/01/2020 The codelist to be used is at-voc:country which is available at http://publications.europa.eu/resource/dataset/country" ; + sh:name "Has item country of origin" ; + sh:path :hasItemCountryOfOrigin . + +core-shape:epo-Tender-epo-isSubjectToGrouping a sh:PropertyShape ; + sh:class :LotGroup ; + sh:maxCount 1 ; + sh:name "Is subject to grouping" ; + sh:path :isSubjectToGrouping ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Tender-epo-isSubmitedBy a sh:PropertyShape ; + sh:class :Tenderer ; + sh:description "Relation indicating the submission of a tender by an economic operator. WG approval 18/05/2021" ; + sh:maxCount 1 ; + sh:name "Is submited by" ; + sh:path :isSubmitedBy ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Tender-epo-isSubmittedForLot a sh:PropertyShape ; + sh:class :Lot ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Is submitted for lot" ; + sh:path :isSubmittedForLot ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Tender-epo-isVariant a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:boolean ; + sh:description "Alternative solution to fulfil the buyer's needs as opposed to solutions indicated in the procurement documents. Additional Information: The permission to offer variants is only allowed if specified in a Contract Notice or a Prior Information Notice that used as a means for calling for a competition. The buyer lays out minimum requirements in the procurement documents that must be respected by tenderers submitting variants. WG Approval 29/05/2019" ; + sh:maxCount 1 ; + sh:name "Is variant" ; + sh:path :isVariant . + +core-shape:epo-Tender-epo-specifiesSubcontractors a sh:PropertyShape ; + sh:class :Subcontractor ; + sh:name "Specifies subcontractors" ; + sh:path :specifiesSubcontractors ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-TenderAwardOutcome-epo-concernsTender a sh:PropertyShape ; + sh:class :Tender ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Concerns tender" ; + sh:path :concernsTender ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-TenderAwardOutcome-epo-hasAwardRank a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:integer ; + sh:description "The position of the tender (i.e. whether the tender ended up first, second, third, etc.) in a design contest, some framework agreements with multiple winners (e.g. cascades) or an innovation partnership. Additional Information: This corresponds in eForms to BT-171 Tender Rank." ; + sh:maxCount 1 ; + sh:name "Has award rank" ; + sh:path :hasAwardRank . + +core-shape:epo-TenderAwardOutcome-epo-indicatesAwardToWinner a sh:PropertyShape ; + sh:class :Winner ; + sh:description "Reveals the winner to whom the tender award outcome is attributed." ; + sh:maxCount 1 ; + sh:name "Indicates award to winner" ; + sh:path :indicatesAwardToWinner ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-TenderGroup-epo-comprisesTender a sh:PropertyShape ; + sh:class :Tender ; + sh:description "Incorporates Tender." ; + sh:minCount 1 ; + sh:name "Comprises tender" ; + sh:path :comprisesTender ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-TenderGroup-epo-hasTotalValue a sh:PropertyShape ; + sh:class :MonetaryValue ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Has total value" ; + sh:path :hasTotalValue ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-TenderGroup-epo-isSubmittedForLotGroup a sh:PropertyShape ; + sh:class :LotGroup ; + sh:maxCount 1 ; + sh:minCount 1 ; + sh:name "Is submitted for lot group" ; + sh:path :isSubmittedForLotGroup ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Tenderer-epo-substantiatesExclusionGround a sh:PropertyShape ; + sh:class :ExclusionGround ; + sh:maxCount 1 ; + sh:name "Substantiates exclusion ground" ; + sh:path :substantiatesExclusionGround ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:epo-Winner-epo-needsToBeATenderer a sh:PropertyShape ; + sh:class :Tenderer ; + sh:description "The Winner must be a Tenderer." ; + sh:maxCount 1 ; + sh:name "Needs to be a tenderer" ; + sh:path :needsToBeATenderer ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:foaf-Agent-adms-identifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "Links a resource to an adms:Identifier class." ; + sh:name "Identifier" ; + sh:path adms:identifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:foaf-Agent-dct-title a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A name given to the resource. WG approval 30/05/2023" ; + sh:name "Title" ; + sh:path dcterms:title . + +core-shape:foaf-Agent-epo-hasAlias a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Acronym or alternative name of the Agent. WG Approval 25/03/2021" ; + sh:name "Has alias" ; + sh:path :hasAlias . + +core-shape:foaf-Agent-epo-ownsSystem a sh:PropertyShape ; + sh:class :System ; + sh:name "Owns system" ; + sh:path :ownsSystem ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:locn-Address-epo-hasCountryCode a sh:PropertyShape ; + sh:class at-voc:country ; + sh:description "" ; + sh:maxCount 1 ; + sh:name "Has country code" ; + sh:path :hasCountryCode . + +core-shape:locn-Address-epo-hasNutsCode a sh:PropertyShape ; + sh:class at-voc:nuts ; + sh:maxCount 1 ; + sh:name "Has nuts code" ; + sh:path :hasNutsCode . + +core-shape:locn-Address-locn-addressArea a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "The name or names of a geographic area or locality that groups a number of addressable objects for addressing purposes, without being an administrative unit. Additional Information: This would typically be part of a city, a neighbourhood or village, e.g. Montmartre." ; + sh:maxCount 1 ; + sh:name "Address area" ; + sh:path locn:addressArea . + +core-shape:locn-Address-locn-addressID a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:description "A globally unique identifier for each instance of an Address. Additional Information: The concept of adding a globally unique identifier for each instance of an address is a crucial part of the INSPIRE data spec. A number of EU countries have already implemented an ID (a UUID) in their Address Register/gazetteer, among them Denmark. OASIS xAL also includes an address identifier. It is the address Identifier that allows an address to be represented in a format other than INSPIRE whilst remaining conformant to the Core Vocabulary. The INSPIRE method of representing addresses is very detailed, designed primarily for use in databases of addresses. Whilst data that is published in full conformance with the INSPIRE data structure can be made available using the Location Core Vocabulary the reverse is not true since the Core Vocabulary allows much greater flexibility. Many datasets that include address data as one piece of information about something else are likely to have that data in simpler formats. These might be tailored to the specific need of the dataset, follow a national norm, or make use of a standard like vCard. To provide maximum flexibility in the Core Vocabulary, whilst remaining interoperable with INSPIRE Address Guidelines (which EU Member States are obliged to use), the Location Core Vocabulary provides the extra property of full address and makes use of INSPIRE's addressID." ; + sh:maxCount 1 ; + sh:name "Address i d" ; + sh:path locn:addressID ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:locn-Address-locn-adminUnitL1 a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 1 refers to the uppermost administrative unit for the address, almost always a country. Additional Information: Best practice is to use the ISO 3166-1 code but if this is inappropriate for the context, country names should be provided in a consistent manner to reduce ambiguity. For example, either write 'France' or 'FRA' consistently throughout the dataset and avoid mixing the two. The Country controlled vocabulary from the Publications Office can be reused for this." ; + sh:maxCount 1 ; + sh:name "Admin unit l1" ; + sh:path locn:adminUnitL1 . + +core-shape:locn-Address-locn-adminUnitL2 a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "The name or names of a unit of administration related to the exercise of jurisdictional rights, for local, regional and national governance. Level 2 refers to the region of the address, usually a county, state or other such area that typically encompasses several localities. Additional Information: Some recommended codelists from the EU Publications Office include: Administrative Territorial Units (ATU), NUTS and Local Administrative Units (LAU). The first arrondissement of Paris is for example expressed as \"http://publications.europa.eu/resource/authority/atu/FRA_AR_PAR01\" in the ATU controlled vocabulary." ; + sh:maxCount 1 ; + sh:name "Admin unit l2" ; + sh:path locn:adminUnitL2 . + +core-shape:locn-Address-locn-fullAddress a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "The complete address written as a formatted string. Additional Information: Use of this property is recommended as it will not suffer any misunderstandings that might arise through the breaking up of an address into its component parts. This property is analogous to vCard's label property but with two important differences: (1) formatting is not assumed so that, unlike vCard label, it may not be suitable to print this on an address label, (2) vCard's label property has a domain of vCard Address; the fullAddress property has no such restriction. An example of a full address is \"Champ de Mars, 5 Avenue Anatole France, 75007 Paris, France\"." ; + sh:maxCount 1 ; + sh:name "Full address" ; + sh:path locn:fullAddress . + +core-shape:locn-Address-locn-locatorDesignator a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "A number or a sequence of characters which allows a user or an application to interpret, parse and format the locator within the relevant scope. A locator may include more locator designators. Additional Information: In simpler terms, this is the building number, apartment number, etc. For an address such as \"Flat 3, 17 Bridge Street\", the locator is \"flat 3, 17\"." ; + sh:maxCount 1 ; + sh:name "Locator designator" ; + sh:path locn:locatorDesignator . + +core-shape:locn-Address-locn-locatorName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "Proper noun(s) applied to the real world entity identified by the locator. Additional Information: The locator name could be the name of the property or complex, of the building or part of the building, or it could be the name of a room inside a building. The key difference between a locator and a locator name is that the latter is a proper name and is unlikely to include digits. For example, \"Shumann, Berlaymont\" is a meeting room within the European Commission headquarters for which locator name is more appropriate than locator." ; + sh:maxCount 1 ; + sh:name "Locator name" ; + sh:path locn:locatorName . + +core-shape:locn-Address-locn-postCode a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The post/zip code of an address. (INSPIRE's definition is \"A code created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.\") Additional Information: Post codes are common elements in many countries' postal address systems. One of the many post codes of Paris is for example \"75000\"." ; + sh:name "Post code" ; + sh:path locn:postCode . + +core-shape:locn-Address-locn-postName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "The key postal division of the address, usually the city. (INSPIRE's definition is \"One or more names created and maintained for postal purposes to identify a subdivision of addresses and postal delivery points.) For example, \"Paris\"." ; + sh:name "Post name" ; + sh:path locn:postName . + +core-shape:locn-Address-locn-thoroughfare a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:langString ; + sh:description "An address component that represents the name or names of a passage or way through from one location to another. A thoroughfare is not necessarily a road, it might be a waterway or some other feature. Additional Information: For example, \"Avenue des Champs-Élysées\"." ; + sh:name "Thoroughfare" ; + sh:path locn:thoroughfare . + +core-shape:locn-Geometry-cv-coordinates a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The coordinate list." ; + sh:name "Coordinates" ; + sh:path cccev:coordinates . + +core-shape:locn-Geometry-cv-latitude a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The latitude." ; + sh:name "Latitude" ; + sh:path cccev:latitude . + +core-shape:locn-Geometry-cv-longitude a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The longitude." ; + sh:name "Longitude" ; + sh:path cccev:longitude . + +core-shape:org-Organization-cv-address a sh:PropertyShape ; + sh:class locn:Address ; + sh:description "Associates any Resource with the corresponding Address. Additional Information: Asserting the address relationship implies that the Resource has an Address." ; + sh:name "Address" ; + sh:path cccev:address ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:org-Organization-cv-registeredAddress a sh:PropertyShape ; + sh:class locn:Address ; + sh:description "The registered address relationship links a Resource with the legally registered Address. Additional Information: It is the address to which formal communications can be sent, such as the postal address." ; + sh:maxCount 1 ; + sh:name "Registered address" ; + sh:path cccev:registeredAddress ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:org-Organization-epo-hasBuyerLegalType a sh:PropertyShape ; + sh:class at-voc:buyer-legal-type ; + sh:description "A category that indicates the right of an Organisation to play the role of a buyer. Additional Information: The category also effects the rules that the buyer has to abide to within the public procurement procedure. WG 07/09/2021" ; + sh:maxCount 1 ; + sh:name "Has buyer legal type" ; + sh:path :hasBuyerLegalType . + +core-shape:org-Organization-epo-hasBuyerLegalTypeDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Self-explanatory text about the Buyer Legal Type. Additional information: This field is used when the Buyer Legal Type is not available in the controlled list at-voc:buyer-legal-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022" ; + sh:maxCount 1 ; + sh:name "Has buyer legal type description" ; + sh:path :hasBuyerLegalTypeDescription . + +core-shape:org-Organization-epo-hasInternetAddress a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype xsd:anyURI ; + sh:description "The main web page used by the instance of the concept. WG Approval 01/06/2023" ; + sh:name "Has internet address" ; + sh:path :hasInternetAddress . + +core-shape:org-Organization-epo-hasLegalFormType a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The classification of an Organisation according to legislation. Additional Information: Generally, this is defined for Tenderers who want to submit as an Organisation Group. Note that the codelist provided at national level should be used." ; + sh:maxCount 1 ; + sh:name "Has legal form type" ; + sh:path :hasLegalFormType . + +core-shape:org-Organization-epo-hasLegalIdentifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:name "Has legal identifier" ; + sh:path :hasLegalIdentifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:org-Organization-epo-hasLegalName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The officially registered name of an organisation. WG Approval 10/01/2023" ; + sh:name "Has legal name" ; + sh:path :hasLegalName . + +core-shape:org-Organization-epo-hasMainActivity a sh:PropertyShape ; + sh:class at-voc:main-activity ; + sh:description "The principal sectoral area in which an organisation operates. Additional information: The activities associated with buyers are derived from the top level of the Classification of the functions of the government (COFOG) from the United Nations Statistics Division. The activities associated with buyer are derived from sectors explicitly falling within the sectoral directive (2014/25/EU Art. 8 - Art. 14). WG Approval 05/05/2020" ; + sh:maxCount 1 ; + sh:name "Has main activity" ; + sh:path :hasMainActivity . + +core-shape:org-Organization-epo-hasMainActivityDescription a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "Self-explanatory text about the Main Activity . Additional information: This field is used when the Main Activity is not available in the controlled list at-voc:main-activity-type . This is necessary in to cover data provided in the TED Standard Forms. It shall be deprecated in the future. WG Approval 06/09/2022" ; + sh:maxCount 1 ; + sh:name "Has main activity description" ; + sh:path :hasMainActivityDescription . + +core-shape:org-Organization-epo-hasOrganisationUnitName a sh:PropertyShape ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:datatype rdf:PlainLiteral ; + sh:description "The name of a subpart of an organisation. Additional Information: E.g. the relevant department of a large organisation. We added this attribute in case of eProcurement notices where the Buyer is actually a part of an Organization and the rest of the properties apply to the rest of the Organisation as well." ; + sh:maxCount 1 ; + sh:name "Has organisation unit name" ; + sh:path :hasOrganisationUnitName . + +core-shape:org-Organization-epo-hasPrimaryContactPoint a sh:PropertyShape ; + sh:class cccev:ContactPoint ; + sh:name "Has primary contact point" ; + sh:path :hasPrimaryContactPoint ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:org-Organization-epo-hasRegistrationCountry a sh:PropertyShape ; + sh:class at-voc:country ; + sh:maxCount 1 ; + sh:name "Has registration country" ; + sh:path :hasRegistrationCountry . + +core-shape:org-Organization-epo-hasTaxIdentifier a sh:PropertyShape ; + sh:class adms:Identifier ; + sh:name "Has tax identifier" ; + sh:path :hasTaxIdentifier ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:owl-Thing-epo-containsModificationsOf a sh:PropertyShape ; + sh:class owl:Thing ; + sh:description "Additional information This relation shall be used between Instances of the SAME type/class. The \"modifying-instance\" can be minimally instantiated, carrying the fields/information that override the fields in the \"modified-instance\". This means that the \"modifying-instance\" (is under-specified) and might violate minimal cardinality restrictions in case they are checked. But the purpose of such an instance is not to be used as a full instance." ; + sh:maxCount 1 ; + sh:name "Contains modifications of" ; + sh:path :containsModificationsOf ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . + +core-shape:core-shape a owl:Ontology ; + dcterms:created "2021-06-01"^^xsd:date ; + dcterms:description "The eProcurement Ontology core shapes provides the generic datashape specifications for the eProcurement Ontology core."@en ; + dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; + dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; + dcterms:title "eProcurement Ontology - core shapes"@en ; + vann:preferredNamespacePrefix "epo" ; + vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; + rdfs:comment "This version is automatically generated from demo_ontology_CM.xml on 2023-11-01" ; + rdfs:seeAlso , + , + , + ; + owl:imports :core, + :core-restriction, + cccev:, + , + at-voc:, + dcterms:, + , + , + , + , + , + org:, + , + foaf:, + ; + owl:incompatibleWith "3.1.0" ; + owl:priorVersion "http://data.europa.eu/a4g/data-shape#core-shape-3.1.0" ; + owl:versionIRI core-shape:core-shape-4.0.0 ; + owl:versionInfo "4.0.0" . + diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf new file mode 100644 index 0000000..f74eae5 --- /dev/null +++ b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf @@ -0,0 +1,11107 @@ + + + + + + + + + + + + + + + + + + + + + eProcurement Ontology Notice - core + The eProcurement Ontology Notice core describes the concepts and properties representing the European Public Procurement Notice domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact. + http://publications.europa.eu/resource/authority/corporate-body/PUBL + This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01 + + + + + 2023-11-01 + 2021-06-01 + 4.0.0 + 3.1.0 + + http://data.europa.eu/a4g/ontology#not-3.1.0 + http://data.europa.eu/a4g/ontology# + epo + © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). + + + + Completion notice + + + An announcement of the end of a Procurement by a Buyer. + + + + + + + Contract modification notice + + + An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity. + + + + + + + Result notice + + + An announcement of the award or non-award of a Contract by a Buyer. (WG approval 27/03/2019) + + + + + + + Direct award prenotification notice + + + Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition. + + + + + + + Competition notice + + + An announcement of the launch of a Procurement Procedure by a Procuring Entity. WG approval 18/05/2018 + + + + + + + Planning notice + + + Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process. + + + + + + + P i n only notice + + + PriorInformationNotice + + + + + + + P i n profile notice + + + + + + + P i n time limit notice + + + + + + + P m c notice + + + + + + + C n social notice + + + + + + + C n standard notice + + + + + + + Design contest notice + + + + + + + P i n- c f c social notice + + + + + + + P i n- c f c standard notice + + + + + + + Q s notice + + + + + + + Subcontract notice + + + + + + + Voluntary ex- ante transparency notice + + + A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. Additional Information: For European Notices above the threshold "A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. <b>This definition is still to be worked on.</b> + + + + + + + C a n social notice + + + + + + + C a n standard notice + + + + + + + Design contest result notice + + + + + + + E forms notice + + + + + + + Notice1 + + + + + + + Notice2 + + + + + + + Notice3 + + + + + + + Notice4 + + + + + + + Notice5 + + + + + + + Notice6 + + + + + + + Notice7 + + + + + + + Notice8 + + + + + + + Notice9 + + + + + + + Notice10 + + + + + + + Notice11 + + + + + + + Notice12 + + + + + + + Notice13 + + + + + + + Notice14 + + + + + + + Notice15 + + + + + + + Notice16 + + + + + + + Notice17 + + + + + + + Notice18 + + + + + + + Notice19 + + + + + + + Notice20 + + + + + + + Notice21 + + + + + + + Notice22 + + + + + + + Notice23 + + + + + + + Notice24 + + + + + + + Notice25 + + + + + + + Notice26 + + + + + + + Notice27 + + + + + + + Notice28 + + + + + + + Notice29 + + + + + + + Notice30 + + + + + + + Notice31 + + + + + + + Notice32 + + + + + + + Notice33 + + + + + + + Notice34 + + + + + + + Notice35 + + + + + + + Notice36 + + + + + + + Notice37 + + + + + + + Notice38 + + + + + + + Notice39 + + + + + + + Notice40 + + + + + + + Standard forms notice + + + + + + + Concession award notice- d23 + + + + + + + Concession notice- d23 + + + + + + + Modification- d23 + + + + + + + Social and other specific services- d23 + + + + + + + V e a t- d23 + + + + + + + C a n standard- d24 + + + + + + + C n standard- d24 + + + + + + + Design contest- d24 + + + + + + + Design contest result- d24 + + + + + + + Modification- d24 + + + + + + + P i n- c f c standard- d24 + + + + + + + P i n- r t l- d24 + + + + + + + P i n only- d24 + + + + + + + P i n profile- d24 + + + + + + + Social and other specific services- d24 + + + public contracts + + + + + + + V e a t- d24 + + + + + + + C a n social- d25 + + + + + + + C a n social notice- d25 + + + Additional information: Social and other specific services – utilities + + + + + + + C n social- d25 + + + + + + + C n social notice- d25 + + + Additional information: Social and other specific services – utilities + + + + + + + Design contest- d25 + + + + + + + Design contest result- d25 + + + + + + + Modification- d25 + + + + + + + P i n- c f c social- d25 + + + + + + + P i n- c f c social notice- d25 + + + Additional information: Social and other specific services – utilities + + + + + + + P i n- r t l- d25 + + + + + + + P i n only- d25 + + + + + + + P i n profile- d25 + + + + + + + Q s- d25 + + + + + + + Q s notice- d25 + + + Additional information: Social and other specific services – utilities + + + + + + + V e a t- d25 + + + + + + + C a n defence- d81 + + + + + + + C n defence- d81 + + + + + + + P i n defence- d81 + + + + + + + P i n profile- d81 + + + + + + + Subcontract- d81 + + + + + + + V e a t- d81 + + + + + + + Standard form + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + for ReviewBody + + + What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist. + + + When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level. + + + should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level? + + + Preliminary Market Consultation This should be implemented in the future. + + + this is a buyer profile, not a PIN. + + + This value is NOT yet part of the notice-type controlled vocabulary. + + + where does this belong to? + + + where does this belong to? + + + This can be PIN or Concession award notice + + + This can be PIN (maybe CFC), CN or CAN. + + + What is the notice type here? + + + What is the notice type here? + + + What is the notice type here? + + + + Announces completion of contract + + + + + + + Refers to award decision + + + + + + + Refers to lot + + + + + + + Refers to non published element + + + + + + + Announces review object + + + + + + + Refers to lot group award information + + + + + + + Refers to role + + + + + + + Refers to notice award information + + + + + + + Announces role + + + + + + + Refers to lot group + + + + + + + Refers to procedure + + + + + + + Has notice type + + + + + + + Refers to contract to be modified + + + + + + + Describes contract modification + + + + + + + Announces non published element + + + Relation indicating which parts of a document are not published. Additional Information: For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement)) + + + + + + + Refers to role + + + + + + + Announces contract + + + + + + + Announces award decision + + + + + + + Announces role + + + + + + + Announces notice award information + + + + + + + Announces lot group award information + + + + + + + Describes result notice + + + + + + + Announces lot + + + + + + + Announces procedure + + + + + + + Announces lot group + + + + + + + Announces planned procurement part + + + + + + + Has implementing regulation + + + + + + + Has legal basis + + + + + + + Has legal basis + + + + + + + Has form type + + + + + diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl new file mode 100644 index 0000000..c57791b --- /dev/null +++ b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl @@ -0,0 +1,750 @@ +@prefix : . +@prefix at-voc: . +@prefix cccev: . +@prefix dcterms: . +@prefix foaf: . +@prefix org: . +@prefix owl: . +@prefix rdfs: . +@prefix skos: . +@prefix vann: . +@prefix xsd: . + +:CANDefence-D81 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ResultNotice, + :StandardFormsNotice ; + skos:editorialNote "What is the notice type here?"@en ; + skos:prefLabel "C a n defence- d81"@en . + +:CANSocial-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANSocialNotice, + :StandardFormsNotice ; + skos:prefLabel "C a n social- d25"@en . + +:CANSocialNotice-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANSocialNotice, + :StandardFormsNotice ; + skos:definition "Additional information: Social and other specific services – utilities"@en ; + skos:prefLabel "C a n social notice- d25"@en . + +:CANStandard-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANStandardNotice, + :StandardFormsNotice ; + skos:prefLabel "C a n standard- d24"@en . + +:CNDefence-D81 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice ; + skos:editorialNote "What is the notice type here?"@en ; + skos:prefLabel "C n defence- d81"@en . + +:CNSocial-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CNSocialNotice, + :StandardFormsNotice ; + skos:prefLabel "C n social- d25"@en . + +:CNSocialNotice-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CNSocialNotice, + :StandardFormsNotice ; + skos:definition "Additional information: Social and other specific services – utilities"@en ; + skos:prefLabel "C n social notice- d25"@en . + +:CNStandard-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CNStandardNotice, + :StandardFormsNotice ; + skos:prefLabel "C n standard- d24"@en . + +:CompletionNotice a owl:Class ; + rdfs:isDefinedBy :not ; + skos:definition "An announcement of the end of a Procurement by a Buyer."@en ; + skos:editorialNote "What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist."@en ; + skos:prefLabel "Completion notice"@en . + +:ConcessionAwardNotice-D23 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice ; + skos:editorialNote "where does this belong to?"@en ; + skos:prefLabel "Concession award notice- d23"@en . + +:ConcessionNotice-D23 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice ; + skos:editorialNote "where does this belong to?"@en ; + skos:prefLabel "Concession notice- d23"@en . + +:DesignContest-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :DesignContestNotice, + :StandardFormsNotice ; + skos:prefLabel "Design contest- d24"@en . + +:DesignContest-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :DesignContestNotice, + :StandardFormsNotice ; + skos:prefLabel "Design contest- d25"@en . + +:DesignContestResult-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :DesignContestResultNotice, + :StandardFormsNotice ; + skos:prefLabel "Design contest result- d24"@en . + +:DesignContestResult-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :DesignContestResultNotice, + :StandardFormsNotice ; + skos:prefLabel "Design contest result- d25"@en . + +:Modification-D23 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ContractModificationNotice, + :StandardFormsNotice ; + skos:prefLabel "Modification- d23"@en . + +:Modification-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ContractModificationNotice, + :StandardFormsNotice ; + skos:prefLabel "Modification- d24"@en . + +:Modification-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ContractModificationNotice, + :StandardFormsNotice ; + skos:prefLabel "Modification- d25"@en . + +:Notice1 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINProfileNotice, + :eFormsNotice ; + skos:prefLabel "Notice1"@en . + +:Notice10 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PIN-CFCStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice10"@en . + +:Notice11 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PIN-CFCStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice11"@en . + +:Notice12 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PIN-CFCSocialNotice, + :eFormsNotice ; + skos:prefLabel "Notice12"@en . + +:Notice13 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PIN-CFCSocialNotice, + :eFormsNotice ; + skos:prefLabel "Notice13"@en . + +:Notice14 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PIN-CFCSocialNotice, + :eFormsNotice ; + skos:prefLabel "Notice14"@en . + +:Notice15 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :QSNotice, + :eFormsNotice ; + skos:prefLabel "Notice15"@en . + +:Notice16 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CNStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice16"@en . + +:Notice17 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CNStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice17"@en . + +:Notice18 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CNStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice18"@en . + +:Notice19 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CNStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice19"@en . + +:Notice2 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINProfileNotice, + :eFormsNotice ; + skos:prefLabel "Notice2"@en . + +:Notice20 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CNSocialNotice, + :eFormsNotice ; + skos:prefLabel "Notice20"@en . + +:Notice21 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CNSocialNotice, + :eFormsNotice ; + skos:prefLabel "Notice21"@en . + +:Notice22 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :SubcontractNotice, + :eFormsNotice ; + skos:prefLabel "Notice22"@en . + +:Notice23 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :DesignContestNotice, + :eFormsNotice ; + skos:prefLabel "Notice23"@en . + +:Notice24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :DesignContestNotice, + :eFormsNotice ; + skos:prefLabel "Notice24"@en . + +:Notice25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, + :eFormsNotice ; + skos:prefLabel "Notice25"@en . + +:Notice26 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, + :eFormsNotice ; + skos:prefLabel "Notice26"@en . + +:Notice27 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, + :eFormsNotice ; + skos:prefLabel "Notice27"@en . + +:Notice28 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :VoluntaryEx-AnteTransparencyNotice, + :eFormsNotice ; + skos:prefLabel "Notice28"@en . + +:Notice29 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice29"@en . + +:Notice3 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINProfileNotice, + :eFormsNotice ; + skos:prefLabel "Notice3"@en . + +:Notice30 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice30"@en . + +:Notice31 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice31"@en . + +:Notice32 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANStandardNotice, + :eFormsNotice ; + skos:prefLabel "Notice32"@en . + +:Notice33 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANSocialNotice, + :eFormsNotice ; + skos:prefLabel "Notice33"@en . + +:Notice34 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANSocialNotice, + :eFormsNotice ; + skos:prefLabel "Notice34"@en . + +:Notice35 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CANSocialNotice, + :eFormsNotice ; + skos:prefLabel "Notice35"@en . + +:Notice36 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :DesignContestResultNotice, + :eFormsNotice ; + skos:prefLabel "Notice36"@en . + +:Notice37 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :DesignContestResultNotice, + :eFormsNotice ; + skos:prefLabel "Notice37"@en . + +:Notice38 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ContractModificationNotice, + :eFormsNotice ; + skos:prefLabel "Notice38"@en . + +:Notice39 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ContractModificationNotice, + :eFormsNotice ; + skos:prefLabel "Notice39"@en . + +:Notice4 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINOnlyNotice, + :eFormsNotice ; + skos:prefLabel "Notice4"@en . + +:Notice40 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ContractModificationNotice, + :eFormsNotice ; + skos:prefLabel "Notice40"@en . + +:Notice5 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINOnlyNotice, + :eFormsNotice ; + skos:prefLabel "Notice5"@en . + +:Notice6 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINOnlyNotice, + :eFormsNotice ; + skos:prefLabel "Notice6"@en . + +:Notice7 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINTimeLimitNotice, + :eFormsNotice ; + skos:prefLabel "Notice7"@en . + +:Notice8 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINTimeLimitNotice, + :eFormsNotice ; + skos:prefLabel "Notice8"@en . + +:Notice9 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINTimeLimitNotice, + :eFormsNotice ; + skos:prefLabel "Notice9"@en . + +:PIN-CFCSocial-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PIN-CFCSocialNotice, + :StandardFormsNotice ; + skos:prefLabel "P i n- c f c social- d25"@en . + +:PIN-CFCSocialNotice-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PIN-CFCSocialNotice, + :StandardFormsNotice ; + skos:definition "Additional information: Social and other specific services – utilities"@en ; + skos:prefLabel "P i n- c f c social notice- d25"@en . + +:PIN-CFCStandard-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PIN-CFCStandardNotice, + :StandardFormsNotice ; + skos:prefLabel "P i n- c f c standard- d24"@en . + +:PIN-RTL-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINTimeLimitNotice, + :StandardFormsNotice ; + skos:prefLabel "P i n- r t l- d24"@en . + +:PIN-RTL-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINTimeLimitNotice, + :StandardFormsNotice ; + skos:prefLabel "P i n- r t l- d25"@en . + +:PINDefence-D81 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PlanningNotice ; + skos:editorialNote "What is the notice type here?"@en ; + skos:prefLabel "P i n defence- d81"@en . + +:PINOnly-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINOnlyNotice, + :StandardFormsNotice ; + skos:prefLabel "P i n only- d24"@en . + +:PINOnly-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINOnlyNotice, + :StandardFormsNotice ; + skos:prefLabel "P i n only- d25"@en . + +:PINProfile-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINProfileNotice, + :StandardFormsNotice ; + skos:prefLabel "P i n profile- d24"@en . + +:PINProfile-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINProfileNotice, + :StandardFormsNotice ; + skos:prefLabel "P i n profile- d25"@en . + +:PINProfile-D81 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PINProfileNotice, + :StandardFormsNotice ; + skos:prefLabel "P i n profile- d81"@en . + +:PMCNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PlanningNotice ; + skos:editorialNote "Preliminary Market Consultation This should be implemented in the future."@en ; + skos:prefLabel "P m c notice"@en . + +:QS-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :QSNotice, + :StandardFormsNotice ; + skos:prefLabel "Q s- d25"@en . + +:QSNotice-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :QSNotice, + :StandardFormsNotice ; + skos:definition "Additional information: Social and other specific services – utilities"@en ; + skos:prefLabel "Q s notice- d25"@en . + +:SocialAndOtherSpecificServices-D23 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice ; + skos:editorialNote "This can be PIN or Concession award notice"@en ; + skos:prefLabel "Social and other specific services- d23"@en . + +:SocialAndOtherSpecificServices-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice ; + skos:definition "public contracts"@en ; + skos:editorialNote "This can be PIN (maybe CFC), CN or CAN."@en ; + skos:prefLabel "Social and other specific services- d24"@en . + +:StandardForm a skos:ConceptScheme ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Standard form"@en . + +:Subcontract-D81 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice, + :SubcontractNotice ; + skos:prefLabel "Subcontract- d81"@en . + +:VEAT-D23 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice, + :VoluntaryEx-AnteTransparencyNotice ; + skos:prefLabel "V e a t- d23"@en . + +:VEAT-D24 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice, + :VoluntaryEx-AnteTransparencyNotice ; + skos:prefLabel "V e a t- d24"@en . + +:VEAT-D25 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice, + :VoluntaryEx-AnteTransparencyNotice ; + skos:prefLabel "V e a t- d25"@en . + +:VEAT-D81 a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :StandardFormsNotice, + :VoluntaryEx-AnteTransparencyNotice ; + skos:prefLabel "V e a t- d81"@en . + +:announcesAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Announces award decision"@en . + +:announcesCompletionOfContract a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Announces completion of contract"@en . + +:announcesContract a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Announces contract"@en . + +:announcesLot a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Announces lot"@en . + +:announcesLotGroup a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Announces lot group"@en . + +:announcesLotGroupAwardInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Announces lot group award information"@en . + +:announcesNonPublishedElement a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:definition "Relation indicating which parts of a document are not published. Additional Information: For example, elements in the Contract Award Notice that should be published at a later date. (epo-not:ResultNotice -> epo:PublicationProvision (+epo:announcesNonPublishedElement))"@en ; + skos:prefLabel "Announces non published element"@en . + +:announcesNoticeAwardInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Announces notice award information"@en . + +:announcesPlannedProcurementPart a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Announces planned procurement part"@en . + +:announcesProcedure a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + rdfs:subPropertyOf :refersToProcedure ; + skos:prefLabel "Announces procedure"@en . + +:announcesReviewObject a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Announces review object"@en . + +:announcesRole a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:editorialNote "for ReviewBody"@en ; + skos:prefLabel "Announces role"@en . + +:describesContractModification a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Describes contract modification"@en . + +:describesResultNotice a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Describes result notice"@en . + +:hasFormType a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Has form type"@en . + +:hasImplementingRegulation a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Has implementing regulation"@en . + +:hasLegalBasis a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Has legal basis"@en . + +:hasNoticeType a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Has notice type"@en . + +:pin-buyer skos:editorialNote "this is a buyer profile, not a PIN."@en . + +:pmc skos:editorialNote "This value is NOT yet part of the notice-type controlled vocabulary."@en . + +:refersToAwardDecision a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Refers to award decision"@en . + +:refersToContractToBeModified a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Refers to contract to be modified"@en . + +:refersToLot a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Refers to lot"@en . + +:refersToLotGroup a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Refers to lot group"@en . + +:refersToLotGroupAwardInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Refers to lot group award information"@en . + +:refersToNonPublishedElement a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Refers to non published element"@en . + +:refersToNoticeAwardInformation a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Refers to notice award information"@en . + +:refersToRole a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Refers to role"@en . + +:DirectAwardPrenotificationNotice a owl:Class ; + rdfs:isDefinedBy :not ; + skos:definition "Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition."@en ; + skos:prefLabel "Direct award prenotification notice"@en . + +:refersToProcedure a owl:ObjectProperty ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Refers to procedure"@en . + +:SubcontractNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CompetitionNotice ; + skos:prefLabel "Subcontract notice"@en . + +:PIN-CFCStandardNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CompetitionNotice ; + skos:prefLabel "P i n- c f c standard notice"@en . + +:QSNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CompetitionNotice ; + skos:prefLabel "Q s notice"@en . + +:CNSocialNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CompetitionNotice ; + skos:prefLabel "C n social notice"@en . + +:DesignContestNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CompetitionNotice ; + skos:prefLabel "Design contest notice"@en . + +:DesignContestResultNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ResultNotice ; + skos:prefLabel "Design contest result notice"@en . + +:ResultNotice a owl:Class ; + rdfs:isDefinedBy :not ; + skos:definition "An announcement of the award or non-award of a Contract by a Buyer. (WG approval 27/03/2019)"@en ; + skos:prefLabel "Result notice"@en . + +:CANSocialNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ResultNotice ; + skos:prefLabel "C a n social notice"@en . + +:CANStandardNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :ResultNotice ; + skos:prefLabel "C a n standard notice"@en . + +:CNStandardNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CompetitionNotice ; + skos:prefLabel "C n standard notice"@en . + +:PIN-CFCSocialNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :CompetitionNotice ; + skos:prefLabel "P i n- c f c social notice"@en . + +:PINOnlyNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PlanningNotice ; + skos:definition "PriorInformationNotice"@en ; + skos:prefLabel "P i n only notice"@en . + +:PINTimeLimitNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PlanningNotice ; + skos:prefLabel "P i n time limit notice"@en . + +:PlanningNotice a owl:Class ; + rdfs:isDefinedBy :not ; + skos:definition "Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process."@en ; + skos:editorialNote "When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level."@en ; + skos:prefLabel "Planning notice"@en . + +:ContractModificationNotice a owl:Class ; + rdfs:isDefinedBy :not ; + skos:definition "An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity."@en ; + skos:editorialNote "should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level?"@en ; + skos:prefLabel "Contract modification notice"@en . + +:PINProfileNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :PlanningNotice ; + skos:prefLabel "P i n profile notice"@en . + +:CompetitionNotice a owl:Class ; + rdfs:isDefinedBy :not ; + skos:definition "An announcement of the launch of a Procurement Procedure by a Procuring Entity. WG approval 18/05/2018"@en ; + skos:prefLabel "Competition notice"@en . + +:VoluntaryEx-AnteTransparencyNotice a owl:Class ; + rdfs:isDefinedBy :not ; + rdfs:subClassOf :DirectAwardPrenotificationNotice ; + skos:definition "A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. Additional Information: For European Notices above the threshold \"A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . \"Voluntary Ex-Ante Transparency Notice\" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. This definition is still to be worked on."@en ; + skos:prefLabel "Voluntary ex- ante transparency notice"@en . + +:StandardFormsNotice a owl:Class ; + rdfs:isDefinedBy :not ; + skos:prefLabel "Standard forms notice"@en . + +:eFormsNotice a owl:Class ; + rdfs:isDefinedBy :not ; + skos:prefLabel "E forms notice"@en . + +:not a owl:Ontology ; + dcterms:created "2021-06-01"^^xsd:date ; + dcterms:description "The eProcurement Ontology Notice core describes the concepts and properties representing the European Public Procurement Notice domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact."@en ; + dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; + dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; + dcterms:title "eProcurement Ontology Notice - core"@en ; + vann:preferredNamespacePrefix "epo" ; + vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; + rdfs:comment "This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01" ; + rdfs:seeAlso , + , + , + ; + owl:imports cccev:, + , + at-voc:, + dcterms:, + , + , + , + , + , + org:, + , + foaf:, + ; + owl:incompatibleWith "3.1.0" ; + owl:priorVersion "http://data.europa.eu/a4g/ontology#not-3.1.0" ; + owl:versionIRI :not-4.0.0 ; + owl:versionInfo "4.0.0" . + diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf new file mode 100644 index 0000000..6948dd9 --- /dev/null +++ b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf @@ -0,0 +1,4496 @@ + + + + + + + + + + + + + + + + + + + + + + eProcurement Ontology Notice - core restrictions + http://publications.europa.eu/resource/authority/corporate-body/PUBL + The eProcurement Ontology Notice core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology Notice core. + This version is automatically generated from demo_ontology_module_CM.xml on + 2023-11-01 + + + + + 2023-11-01 + 2021-06-01 + 4.0.0 + 3.1.0 + + http://data.europa.eu/a4g/ontology#not-restriction-3.1.0 + http://data.europa.eu/a4g/ontology# + epo + © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl new file mode 100644 index 0000000..734f820 --- /dev/null +++ b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl @@ -0,0 +1,625 @@ +@prefix : . +@prefix at-voc: . +@prefix cccev: . +@prefix dcterms: . +@prefix foaf: . +@prefix org: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix skos: . +@prefix vann: . +@prefix xsd: . + +:announcesAwardDecision rdfs:domain [ a owl:Class ; + owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; + rdfs:range :AwardDecision . + +:announcesCompletionOfContract rdfs:domain :CompletionNotice ; + rdfs:range :Contract . + +:announcesContract rdfs:domain [ a owl:Class ; + owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; + rdfs:range :Contract . + +:announcesLot rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; + rdfs:range :Lot . + +:announcesLotGroup rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; + rdfs:range :LotGroup . + +:announcesLotGroupAwardInformation rdfs:domain [ a owl:Class ; + owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; + rdfs:range :LotGroupAwardInformation . + +:announcesNonPublishedElement rdfs:domain [ a owl:Class ; + owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; + rdfs:range :PublicationProvision . + +:announcesNoticeAwardInformation rdfs:domain [ a owl:Class ; + owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] ; + rdfs:range :NoticeAwardInformation . + +:announcesPlannedProcurementPart rdfs:domain :PlanningNotice ; + rdfs:range :PlannedProcurementPart . + +:announcesProcedure rdfs:domain [ a owl:Class ; + owl:unionOf ( :DirectAwardPrenotificationNotice :CompetitionNotice ) ] ; + rdfs:range :Procedure . + +:announcesReviewObject rdfs:domain :CompletionNotice ; + rdfs:range :ReviewObject . + +:announcesRole rdfs:domain [ a owl:Class ; + owl:unionOf ( :CompletionNotice :ContractModificationNotice :DirectAwardPrenotificationNotice :CompetitionNotice :PlanningNotice ) ], + :ResultNotice ; + rdfs:range :AgentInRole . + +:describesContractModification rdfs:domain :ContractModificationNotice ; + rdfs:range :ContractModification . + +:describesResultNotice rdf:domain :NoticeAwardInformation ; + rdfs:range [ a owl:Class ; + owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] . + +:not-restriction a owl:Ontology ; + dcterms:created "2021-06-01"^^xsd:date ; + dcterms:description "The eProcurement Ontology Notice core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology Notice core."@en ; + dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; + dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; + dcterms:title "eProcurement Ontology Notice - core restrictions"@en ; + vann:preferredNamespacePrefix "epo" ; + vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; + rdfs:comment """This version is automatically generated from demo_ontology_module_CM.xml on + 2023-11-01""" ; + rdfs:seeAlso , + , + , + ; + owl:imports :not, + cccev:, + , + at-voc:, + dcterms:, + , + , + , + , + , + org:, + , + foaf:, + ; + owl:incompatibleWith "3.1.0" ; + owl:priorVersion "http://data.europa.eu/a4g/ontology#not-restriction-3.1.0" ; + owl:versionIRI :not-restriction-4.0.0 ; + owl:versionInfo "4.0.0" . + +:refersToAwardDecision rdfs:domain [ a owl:Class ; + owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; + rdfs:range :AwardDecision . + +:refersToContractToBeModified rdfs:domain :ContractModificationNotice ; + rdfs:range :Contract . + +:refersToLot rdfs:domain [ a owl:Class ; + owl:unionOf ( :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; + rdfs:range :Lot . + +:refersToLotGroup rdfs:domain [ a owl:Class ; + owl:unionOf ( :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; + rdfs:range :LotGroup . + +:refersToLotGroupAwardInformation rdfs:domain [ a owl:Class ; + owl:unionOf ( :CompletionNotice :ContractModificationNotice ) ] ; + rdfs:range :LotGroupAwardInformation . + +:refersToNonPublishedElement rdfs:domain :CompletionNotice ; + rdfs:range :PublicationProvision . + +:refersToNoticeAwardInformation rdfs:domain :CompletionNotice ; + rdfs:range :NoticeAwardInformation . + +:refersToProcedure rdfs:domain [ a owl:Class ; + owl:unionOf ( :CompletionNotice :ContractModificationNotice :ResultNotice ) ] ; + rdfs:range :Procedure . + +:refersToRole rdfs:domain :CompletionNotice, + :ResultNotice ; + rdfs:range :AgentInRole . + +:StandardForm a owl:Class ; + rdfs:subClassOf skos:Concept ; + owl:equivalentClass [ a owl:Restriction ; + owl:hasValue :StandardForm ; + owl:onProperty skos:inScheme ] . + +[] a owl:AllDisjointClasses ; + owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Subcontract-D81 :Notice22 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Subcontract-D81 :Notice22 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + +[] a owl:AllDisjointClasses ; + owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + diff --git a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf new file mode 100644 index 0000000..a483a83 --- /dev/null +++ b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf @@ -0,0 +1,1057 @@ + + + + + + + + + + + + + + + + + + + + + + + eProcurement Ontology Notice - core shapes + http://publications.europa.eu/resource/authority/corporate-body/PUBL + The eProcurement Ontology Notice core shapes provides the generic datashape specifications for the eProcurement Ontology Notice core. + This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01 + + + + + 2023-11-01 + 2021-06-01 + 4.0.0 + 3.1.0 + + http://data.europa.eu/a4g/data-shape#not-shape-3.1.0 + http://data.europa.eu/a4g/ontology# + epo + © European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/). + + + + + + Completion notice + + + An announcement of the end of a Procurement by a Buyer. + + + + + + + + + Contract modification notice + + + An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity. + + + + + + + + + Result notice + + + An announcement of the award or non-award of a Contract by a Buyer. (WG approval 27/03/2019) + + + + + + + + + Direct award prenotification notice + + + Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition. + + + + + + + + + Competition notice + + + An announcement of the launch of a Procurement Procedure by a Procuring Entity. WG approval 18/05/2018 + + + + + + + + + Planning notice + + + Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process. + + + + + + + + + P i n only notice + + + PriorInformationNotice + + + + + + + + + P i n profile notice + + + + + + + + + P i n time limit notice + + + + + + + + + P m c notice + + + + + + + + + C n social notice + + + + + + + + + C n standard notice + + + + + + + + + Design contest notice + + + + + + + + + P i n- c f c social notice + + + + + + + + + P i n- c f c standard notice + + + + + + + + + Q s notice + + + + + + + + + Subcontract notice + + + + + + + + + Voluntary ex- ante transparency notice + + + A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. Additional Information: For European Notices above the threshold "A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . "Voluntary Ex-Ante Transparency Notice" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. <b>This definition is still to be worked on.</b> + + + + + + + + + C a n social notice + + + + + + + + + C a n standard notice + + + + + + + + + Design contest result notice + + + + + + + + + E forms notice + + + + + + + + + Notice1 + + + + + + + + + Notice2 + + + + + + + + + Notice3 + + + + + + + + + Notice4 + + + + + + + + + Notice5 + + + + + + + + + Notice6 + + + + + + + + + Notice7 + + + + + + + + + Notice8 + + + + + + + + + Notice9 + + + + + + + + + Notice10 + + + + + + + + + Notice11 + + + + + + + + + Notice12 + + + + + + + + + Notice13 + + + + + + + + + Notice14 + + + + + + + + + Notice15 + + + + + + + + + Notice16 + + + + + + + + + Notice17 + + + + + + + + + Notice18 + + + + + + + + + Notice19 + + + + + + + + + Notice20 + + + + + + + + + Notice21 + + + + + + + + + Notice22 + + + + + + + + + Notice23 + + + + + + + + + Notice24 + + + + + + + + + Notice25 + + + + + + + + + Notice26 + + + + + + + + + Notice27 + + + + + + + + + Notice28 + + + + + + + + + Notice29 + + + + + + + + + Notice30 + + + + + + + + + Notice31 + + + + + + + + + Notice32 + + + + + + + + + Notice33 + + + + + + + + + Notice34 + + + + + + + + + Notice35 + + + + + + + + + Notice36 + + + + + + + + + Notice37 + + + + + + + + + Notice38 + + + + + + + + + Notice39 + + + + + + + + + Notice40 + + + + + + + + + Standard forms notice + + + + + + + + + Concession award notice- d23 + + + + + + + + + Concession notice- d23 + + + + + + + + + Modification- d23 + + + + + + + + + Social and other specific services- d23 + + + + + + + + + V e a t- d23 + + + + + + + + + C a n standard- d24 + + + + + + + + + C n standard- d24 + + + + + + + + + Design contest- d24 + + + + + + + + + Design contest result- d24 + + + + + + + + + Modification- d24 + + + + + + + + + P i n- c f c standard- d24 + + + + + + + + + P i n- r t l- d24 + + + + + + + + + P i n only- d24 + + + + + + + + + P i n profile- d24 + + + + + + + + + Social and other specific services- d24 + + + public contracts + + + + + + + + + V e a t- d24 + + + + + + + + + C a n social- d25 + + + + + + + + + C a n social notice- d25 + + + Additional information: Social and other specific services – utilities + + + + + + + + + C n social- d25 + + + + + + + + + C n social notice- d25 + + + Additional information: Social and other specific services – utilities + + + + + + + + + Design contest- d25 + + + + + + + + + Design contest result- d25 + + + + + + + + + Modification- d25 + + + + + + + + + P i n- c f c social- d25 + + + + + + + + + P i n- c f c social notice- d25 + + + Additional information: Social and other specific services – utilities + + + + + + + + + P i n- r t l- d25 + + + + + + + + + P i n only- d25 + + + + + + + + + P i n profile- d25 + + + + + + + + + Q s- d25 + + + + + + + + + Q s notice- d25 + + + Additional information: Social and other specific services – utilities + + + + + + + + + V e a t- d25 + + + + + + + + + C a n defence- d81 + + + + + + + + + C n defence- d81 + + + + + + + + + P i n defence- d81 + + + + + + + + + P i n profile- d81 + + + + + + + + + Subcontract- d81 + + + + + + + + + V e a t- d81 + + + + + + for ReviewBody + + + What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist. + + + When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level. + + + should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level? + + + Preliminary Market Consultation This should be implemented in the future. + + + this is a buyer profile, not a PIN. + + + This value is NOT yet part of the notice-type controlled vocabulary. + + + where does this belong to? + + + where does this belong to? + + + This can be PIN or Concession award notice + + + This can be PIN (maybe CFC), CN or CAN. + + + What is the notice type here? + + + What is the notice type here? + + + What is the notice type here? + + diff --git a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl new file mode 100644 index 0000000..5d377af --- /dev/null +++ b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl @@ -0,0 +1,577 @@ +@prefix : . +@prefix at-voc: . +@prefix cccev: . +@prefix dcterms: . +@prefix foaf: . +@prefix not-shape: . +@prefix org: . +@prefix owl: . +@prefix rdfs: . +@prefix sh: . +@prefix vann: . +@prefix xsd: . + +not-shape:epo-not-CANDefence-D81 a sh:NodeShape ; + rdfs:label "C a n defence- d81" ; + rdfs:comment "What is the notice type here?" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CANDefence-D81 . + +not-shape:epo-not-CANSocial-D25 a sh:NodeShape ; + rdfs:label "C a n social- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CANSocial-D25 . + +not-shape:epo-not-CANSocialNotice a sh:NodeShape ; + rdfs:label "C a n social notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CANSocialNotice . + +not-shape:epo-not-CANSocialNotice-D25 a sh:NodeShape ; + rdfs:label "C a n social notice- d25" ; + rdfs:comment "Additional information: Social and other specific services – utilities" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CANSocialNotice-D25 . + +not-shape:epo-not-CANStandard-D24 a sh:NodeShape ; + rdfs:label "C a n standard- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CANStandard-D24 . + +not-shape:epo-not-CANStandardNotice a sh:NodeShape ; + rdfs:label "C a n standard notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CANStandardNotice . + +not-shape:epo-not-CNDefence-D81 a sh:NodeShape ; + rdfs:label "C n defence- d81" ; + rdfs:comment "What is the notice type here?" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CNDefence-D81 . + +not-shape:epo-not-CNSocial-D25 a sh:NodeShape ; + rdfs:label "C n social- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CNSocial-D25 . + +not-shape:epo-not-CNSocialNotice a sh:NodeShape ; + rdfs:label "C n social notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CNSocialNotice . + +not-shape:epo-not-CNSocialNotice-D25 a sh:NodeShape ; + rdfs:label "C n social notice- d25" ; + rdfs:comment "Additional information: Social and other specific services – utilities" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CNSocialNotice-D25 . + +not-shape:epo-not-CNStandard-D24 a sh:NodeShape ; + rdfs:label "C n standard- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CNStandard-D24 . + +not-shape:epo-not-CNStandardNotice a sh:NodeShape ; + rdfs:label "C n standard notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CNStandardNotice . + +not-shape:epo-not-CompetitionNotice a sh:NodeShape ; + rdfs:label "Competition notice" ; + rdfs:comment "An announcement of the launch of a Procurement Procedure by a Procuring Entity. WG approval 18/05/2018" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CompetitionNotice . + +not-shape:epo-not-CompletionNotice a sh:NodeShape ; + rdfs:label "Completion notice" ; + rdfs:comment "An announcement of the end of a Procurement by a Buyer.", + "What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist." ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :CompletionNotice . + +not-shape:epo-not-CompletionNotice-epo-announcesRole sh:description "for ReviewBody" . + +not-shape:epo-not-ConcessionAwardNotice-D23 a sh:NodeShape ; + rdfs:label "Concession award notice- d23" ; + rdfs:comment "where does this belong to?" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :ConcessionAwardNotice-D23 . + +not-shape:epo-not-ConcessionNotice-D23 a sh:NodeShape ; + rdfs:label "Concession notice- d23" ; + rdfs:comment "where does this belong to?" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :ConcessionNotice-D23 . + +not-shape:epo-not-ContractModificationNotice a sh:NodeShape ; + rdfs:label "Contract modification notice" ; + rdfs:comment "An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity.", + "should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level?" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :ContractModificationNotice . + +not-shape:epo-not-DesignContest-D24 a sh:NodeShape ; + rdfs:label "Design contest- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :DesignContest-D24 . + +not-shape:epo-not-DesignContest-D25 a sh:NodeShape ; + rdfs:label "Design contest- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :DesignContest-D25 . + +not-shape:epo-not-DesignContestNotice a sh:NodeShape ; + rdfs:label "Design contest notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :DesignContestNotice . + +not-shape:epo-not-DesignContestResult-D24 a sh:NodeShape ; + rdfs:label "Design contest result- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :DesignContestResult-D24 . + +not-shape:epo-not-DesignContestResult-D25 a sh:NodeShape ; + rdfs:label "Design contest result- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :DesignContestResult-D25 . + +not-shape:epo-not-DesignContestResultNotice a sh:NodeShape ; + rdfs:label "Design contest result notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :DesignContestResultNotice . + +not-shape:epo-not-DirectAwardPrenotificationNotice a sh:NodeShape ; + rdfs:label "Direct award prenotification notice" ; + rdfs:comment "Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition." ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :DirectAwardPrenotificationNotice . + +not-shape:epo-not-Modification-D23 a sh:NodeShape ; + rdfs:label "Modification- d23" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Modification-D23 . + +not-shape:epo-not-Modification-D24 a sh:NodeShape ; + rdfs:label "Modification- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Modification-D24 . + +not-shape:epo-not-Modification-D25 a sh:NodeShape ; + rdfs:label "Modification- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Modification-D25 . + +not-shape:epo-not-Notice1 a sh:NodeShape ; + rdfs:label "Notice1" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice1 . + +not-shape:epo-not-Notice10 a sh:NodeShape ; + rdfs:label "Notice10" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice10 . + +not-shape:epo-not-Notice11 a sh:NodeShape ; + rdfs:label "Notice11" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice11 . + +not-shape:epo-not-Notice12 a sh:NodeShape ; + rdfs:label "Notice12" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice12 . + +not-shape:epo-not-Notice13 a sh:NodeShape ; + rdfs:label "Notice13" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice13 . + +not-shape:epo-not-Notice14 a sh:NodeShape ; + rdfs:label "Notice14" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice14 . + +not-shape:epo-not-Notice15 a sh:NodeShape ; + rdfs:label "Notice15" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice15 . + +not-shape:epo-not-Notice16 a sh:NodeShape ; + rdfs:label "Notice16" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice16 . + +not-shape:epo-not-Notice17 a sh:NodeShape ; + rdfs:label "Notice17" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice17 . + +not-shape:epo-not-Notice18 a sh:NodeShape ; + rdfs:label "Notice18" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice18 . + +not-shape:epo-not-Notice19 a sh:NodeShape ; + rdfs:label "Notice19" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice19 . + +not-shape:epo-not-Notice2 a sh:NodeShape ; + rdfs:label "Notice2" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice2 . + +not-shape:epo-not-Notice20 a sh:NodeShape ; + rdfs:label "Notice20" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice20 . + +not-shape:epo-not-Notice21 a sh:NodeShape ; + rdfs:label "Notice21" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice21 . + +not-shape:epo-not-Notice22 a sh:NodeShape ; + rdfs:label "Notice22" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice22 . + +not-shape:epo-not-Notice23 a sh:NodeShape ; + rdfs:label "Notice23" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice23 . + +not-shape:epo-not-Notice24 a sh:NodeShape ; + rdfs:label "Notice24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice24 . + +not-shape:epo-not-Notice25 a sh:NodeShape ; + rdfs:label "Notice25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice25 . + +not-shape:epo-not-Notice26 a sh:NodeShape ; + rdfs:label "Notice26" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice26 . + +not-shape:epo-not-Notice27 a sh:NodeShape ; + rdfs:label "Notice27" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice27 . + +not-shape:epo-not-Notice28 a sh:NodeShape ; + rdfs:label "Notice28" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice28 . + +not-shape:epo-not-Notice29 a sh:NodeShape ; + rdfs:label "Notice29" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice29 . + +not-shape:epo-not-Notice3 a sh:NodeShape ; + rdfs:label "Notice3" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice3 . + +not-shape:epo-not-Notice30 a sh:NodeShape ; + rdfs:label "Notice30" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice30 . + +not-shape:epo-not-Notice31 a sh:NodeShape ; + rdfs:label "Notice31" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice31 . + +not-shape:epo-not-Notice32 a sh:NodeShape ; + rdfs:label "Notice32" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice32 . + +not-shape:epo-not-Notice33 a sh:NodeShape ; + rdfs:label "Notice33" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice33 . + +not-shape:epo-not-Notice34 a sh:NodeShape ; + rdfs:label "Notice34" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice34 . + +not-shape:epo-not-Notice35 a sh:NodeShape ; + rdfs:label "Notice35" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice35 . + +not-shape:epo-not-Notice36 a sh:NodeShape ; + rdfs:label "Notice36" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice36 . + +not-shape:epo-not-Notice37 a sh:NodeShape ; + rdfs:label "Notice37" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice37 . + +not-shape:epo-not-Notice38 a sh:NodeShape ; + rdfs:label "Notice38" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice38 . + +not-shape:epo-not-Notice39 a sh:NodeShape ; + rdfs:label "Notice39" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice39 . + +not-shape:epo-not-Notice4 a sh:NodeShape ; + rdfs:label "Notice4" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice4 . + +not-shape:epo-not-Notice40 a sh:NodeShape ; + rdfs:label "Notice40" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice40 . + +not-shape:epo-not-Notice5 a sh:NodeShape ; + rdfs:label "Notice5" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice5 . + +not-shape:epo-not-Notice6 a sh:NodeShape ; + rdfs:label "Notice6" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice6 . + +not-shape:epo-not-Notice7 a sh:NodeShape ; + rdfs:label "Notice7" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice7 . + +not-shape:epo-not-Notice8 a sh:NodeShape ; + rdfs:label "Notice8" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice8 . + +not-shape:epo-not-Notice9 a sh:NodeShape ; + rdfs:label "Notice9" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Notice9 . + +not-shape:epo-not-PIN-CFCSocial-D25 a sh:NodeShape ; + rdfs:label "P i n- c f c social- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PIN-CFCSocial-D25 . + +not-shape:epo-not-PIN-CFCSocialNotice a sh:NodeShape ; + rdfs:label "P i n- c f c social notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PIN-CFCSocialNotice . + +not-shape:epo-not-PIN-CFCSocialNotice-D25 a sh:NodeShape ; + rdfs:label "P i n- c f c social notice- d25" ; + rdfs:comment "Additional information: Social and other specific services – utilities" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PIN-CFCSocialNotice-D25 . + +not-shape:epo-not-PIN-CFCStandard-D24 a sh:NodeShape ; + rdfs:label "P i n- c f c standard- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PIN-CFCStandard-D24 . + +not-shape:epo-not-PIN-CFCStandardNotice a sh:NodeShape ; + rdfs:label "P i n- c f c standard notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PIN-CFCStandardNotice . + +not-shape:epo-not-PIN-RTL-D24 a sh:NodeShape ; + rdfs:label "P i n- r t l- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PIN-RTL-D24 . + +not-shape:epo-not-PIN-RTL-D25 a sh:NodeShape ; + rdfs:label "P i n- r t l- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PIN-RTL-D25 . + +not-shape:epo-not-PINDefence-D81 a sh:NodeShape ; + rdfs:label "P i n defence- d81" ; + rdfs:comment "What is the notice type here?" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PINDefence-D81 . + +not-shape:epo-not-PINOnly-D24 a sh:NodeShape ; + rdfs:label "P i n only- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PINOnly-D24 . + +not-shape:epo-not-PINOnly-D25 a sh:NodeShape ; + rdfs:label "P i n only- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PINOnly-D25 . + +not-shape:epo-not-PINOnlyNotice a sh:NodeShape ; + rdfs:label "P i n only notice" ; + rdfs:comment "PriorInformationNotice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PINOnlyNotice . + +not-shape:epo-not-PINProfile-D24 a sh:NodeShape ; + rdfs:label "P i n profile- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PINProfile-D24 . + +not-shape:epo-not-PINProfile-D25 a sh:NodeShape ; + rdfs:label "P i n profile- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PINProfile-D25 . + +not-shape:epo-not-PINProfile-D81 a sh:NodeShape ; + rdfs:label "P i n profile- d81" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PINProfile-D81 . + +not-shape:epo-not-PINProfileNotice a sh:NodeShape ; + rdfs:label "P i n profile notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PINProfileNotice . + +not-shape:epo-not-PINTimeLimitNotice a sh:NodeShape ; + rdfs:label "P i n time limit notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PINTimeLimitNotice . + +not-shape:epo-not-PMCNotice a sh:NodeShape ; + rdfs:label "P m c notice" ; + rdfs:comment "Preliminary Market Consultation This should be implemented in the future." ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PMCNotice . + +not-shape:epo-not-PlanningNotice a sh:NodeShape ; + rdfs:label "Planning notice" ; + rdfs:comment "Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process.", + "When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level." ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :PlanningNotice . + +not-shape:epo-not-QS-D25 a sh:NodeShape ; + rdfs:label "Q s- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :QS-D25 . + +not-shape:epo-not-QSNotice a sh:NodeShape ; + rdfs:label "Q s notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :QSNotice . + +not-shape:epo-not-QSNotice-D25 a sh:NodeShape ; + rdfs:label "Q s notice- d25" ; + rdfs:comment "Additional information: Social and other specific services – utilities" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :QSNotice-D25 . + +not-shape:epo-not-ResultNotice a sh:NodeShape ; + rdfs:label "Result notice" ; + rdfs:comment "An announcement of the award or non-award of a Contract by a Buyer. (WG approval 27/03/2019)" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :ResultNotice . + +not-shape:epo-not-SocialAndOtherSpecificServices-D23 a sh:NodeShape ; + rdfs:label "Social and other specific services- d23" ; + rdfs:comment "This can be PIN or Concession award notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :SocialAndOtherSpecificServices-D23 . + +not-shape:epo-not-SocialAndOtherSpecificServices-D24 a sh:NodeShape ; + rdfs:label "Social and other specific services- d24" ; + rdfs:comment "This can be PIN (maybe CFC), CN or CAN.", + "public contracts" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :SocialAndOtherSpecificServices-D24 . + +not-shape:epo-not-StandardFormsNotice a sh:NodeShape ; + rdfs:label "Standard forms notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :StandardFormsNotice . + +not-shape:epo-not-Subcontract-D81 a sh:NodeShape ; + rdfs:label "Subcontract- d81" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :Subcontract-D81 . + +not-shape:epo-not-SubcontractNotice a sh:NodeShape ; + rdfs:label "Subcontract notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :SubcontractNotice . + +not-shape:epo-not-VEAT-D23 a sh:NodeShape ; + rdfs:label "V e a t- d23" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :VEAT-D23 . + +not-shape:epo-not-VEAT-D24 a sh:NodeShape ; + rdfs:label "V e a t- d24" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :VEAT-D24 . + +not-shape:epo-not-VEAT-D25 a sh:NodeShape ; + rdfs:label "V e a t- d25" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :VEAT-D25 . + +not-shape:epo-not-VEAT-D81 a sh:NodeShape ; + rdfs:label "V e a t- d81" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :VEAT-D81 . + +not-shape:epo-not-VoluntaryEx-AnteTransparencyNotice a sh:NodeShape ; + rdfs:label "Voluntary ex- ante transparency notice" ; + rdfs:comment "A Notice informing of the intention to award a Contract without prior publication of a Contract Notice. Additional Information: For European Notices above the threshold \"A means of advertising the intention to award the Contract without opening it up to formal Competition. A Contracting Authority may decide that a Contract does not require prior publication through a Contract Notice in the O.J.E.U. A reason for this decision may be that the Contract meets the exceptional conditions described in Article 31 of Directive 2004/18/EC. In a recent V.E.A.T notice the reason was listed as “extreme urgency brought about by events unforeseeable by the Contracting Entity and in accordance with the strict conditions stated in the Directive” . \"Voluntary Ex-Ante Transparency Notice\" (VEAT) where a Contracting Authority deems that a Contract does not require prior publication of a Contract Notice in the European Journal (OJEU). This may apply, for example, if the Contract meets the exceptional conditions justifying direct award of contracts. This definition is still to be worked on." ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :VoluntaryEx-AnteTransparencyNotice . + +not-shape:epo-not-eFormsNotice a sh:NodeShape ; + rdfs:label "E forms notice" ; + rdfs:isDefinedBy not-shape:not-shape ; + sh:targetClass :eFormsNotice . + +not-shape:pin-buyer rdfs:comment "this is a buyer profile, not a PIN." . + +not-shape:pmc rdfs:comment "This value is NOT yet part of the notice-type controlled vocabulary." . + +not-shape:not-shape a owl:Ontology ; + dcterms:created "2021-06-01"^^xsd:date ; + dcterms:description "The eProcurement Ontology Notice core shapes provides the generic datashape specifications for the eProcurement Ontology Notice core."@en ; + dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; + dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; + dcterms:title "eProcurement Ontology Notice - core shapes"@en ; + vann:preferredNamespacePrefix "epo" ; + vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; + rdfs:comment "This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01" ; + rdfs:seeAlso , + , + , + ; + owl:imports :not, + :not-restriction, + cccev:, + , + at-voc:, + dcterms:, + , + , + , + , + , + org:, + , + foaf:, + ; + owl:incompatibleWith "3.1.0" ; + owl:priorVersion "http://data.europa.eu/a4g/data-shape#not-shape-3.1.0" ; + owl:versionIRI not-shape:not-shape-4.0.0 ; + owl:versionInfo "4.0.0" . + From a57629ea125a0cdf338d6f321f01e1e5d3e9899c Mon Sep 17 00:00:00 2001 From: Dragos0000 Date: Wed, 1 Nov 2023 12:44:18 +0000 Subject: [PATCH 17/21] deleted old action files --- .../generate_conventions_and_glossary.yml | 112 ------------------ .github/workflows/transform_ontology.yml | 96 --------------- 2 files changed, 208 deletions(-) delete mode 100644 .github/workflows/generate_conventions_and_glossary.yml delete mode 100644 .github/workflows/transform_ontology.yml diff --git a/.github/workflows/generate_conventions_and_glossary.yml b/.github/workflows/generate_conventions_and_glossary.yml deleted file mode 100644 index 395030f..0000000 --- a/.github/workflows/generate_conventions_and_glossary.yml +++ /dev/null @@ -1,112 +0,0 @@ -#name: generate conventions and glossary -#on: -# push: -# branches: -# - "**" -# paths: -# - "implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml" -# - "implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml" -# -# -#jobs: -# report_and_glossary: -# runs-on: ubuntu-latest -# env: -# OUTPUT_GLOSSARY_PATH: glossary/ -# steps: -# - uses: actions/checkout@master -# with: -# ref: ${{ github.ref }} -# -# - name: get model2owl -# run: | -# git clone https://github.com/OP-TED/model2owl.git -# pwd -# -# - name: get-saxon -# run: pwd && cd model2owl && make get-saxon -# -# -# - name: generate convention report and glossary -# run: | -# AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) -# for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" -# do -# echo "-------------------${implementation}---------------------------------" -# sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl -# cat model2owl/config-proxy.xsl -# -# -# CM_FILE_NAME=$(echo "${implementation}_CM.xml") -# CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}") -# -# OUTPUT_CONVENTION_REPORT_PATH=$(echo "implementation/$implementation/conventions_report/") -# OUTPUT_GLOSSARY_FILE_NAME=$(echo "${implementation}_glossary.html") -# ls -la implementation/$implementation/xmi_conceptual_model/ -# echo "CM_FILE_PATH is $CM_FILE_PATH" -# echo "OUTPUT_REPORT_PATH is $OUTPUT_CONVENTION_REPORT_PATH" -# echo "OUTPUT_GLOSSARY_FILE_NAME is $OUTPUT_GLOSSARY_FILE_NAME" -# -# mkdir -p $OUTPUT_CONVENTION_REPORT_PATH -# rm -f $OUTPUT_CONVENTION_REPORT_PATH*.html || true -# ls -la -# cd model2owl -# ls -la -# make generate-convention-report XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_CONVENTION_REPORT_PATH=../$OUTPUT_CONVENTION_REPORT_PATH -# make generate-glossary XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH -# -# sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl -# cd .. -# done -# shell: bash -# -# - name: merge implementations xmi files into one -# run: | -# AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) -# cd model2owl -# mkdir -p merge-xmis -# for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" -# do -# cp ../implementation/$implementation/xmi_conceptual_model/*_CM.xml merge-xmis -# done -# ls merge-xmis -# -# make merge-xmi FIRST_XMI_TO_BE_MERGED_FILE_PATH=merge-xmis/demo_ontology_CM.xml -# -# echo "merged XMI file" -# ls output/combined-xmi -# shell: bash -# -# - name: generate combined glossary from the merged xmi -# run: | -# cd model2owl -# make generate-glossary XMI_INPUT_FILE_PATH=output/combined-xmi/ontologies-combined.xmi OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH -# -# - name: remove unnecessary files -# run: | -# sudo rm -rf model2owl -# shell: bash -# -# - name: commit files -# id: commit -# run: | -# git config --local user.email "action@github.com" -# git config --local user.name "github-actions" -# git pull -# git status -# -# git add . -# if [ -z "$(git status --porcelain)" ]; then -# echo "::set-output name=push::false" -# else -# git commit -m "Adding convention report and glossary files" -# echo "::set-output name=push::true" -# fi -# shell: bash -# -# - name: Push changes -# if: steps.commit.outputs.push == 'true' -# uses: ad-m/github-push-action@master -# with: -# github_token: ${{ secrets.GITHUB_TOKEN }} -# branch: ${{ github.ref }} \ No newline at end of file diff --git a/.github/workflows/transform_ontology.yml b/.github/workflows/transform_ontology.yml deleted file mode 100644 index ade1387..0000000 --- a/.github/workflows/transform_ontology.yml +++ /dev/null @@ -1,96 +0,0 @@ -#name: transform UML model -#on: -# push: -# branches: -# - "**" -# paths: -# - "implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml" -# - "implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml" -# -#jobs: -# transform: -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@master -# with: -# ref: ${{ github.ref }} -# -# - name: get model2owl -# run: | -# git clone https://github.com/OP-TED/model2owl.git -# pwd -# -# - name: get-saxon -# run: pwd && cd model2owl && make get-saxon -# -# - name: get-rdflib -# run: cd model2owl && make create-virtual-env && make get-rdflib -# -# - name: transform step -# run: | -# AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module) -# for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}" -# do -# echo "-------------------${implementation} transform---------------------------------" -# sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl -# cat model2owl/config-proxy.xsl -# -# -# CM_FILE_NAME=$(echo "${implementation}_CM.xml") -# CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}") -# OUTPUT_PATH_OWL=$(echo "implementation/$implementation/owl_ontology/") -# OUTPUT_PATH_SHACL=$(echo "implementation/$implementation/shacl_shapes/") -# -# ls -la implementation/$implementation/xmi_conceptual_model/ -# echo "CM_FILE_PATH is $CM_FILE_PATH" -# echo "OUTPUT_PATH_OWL is $OUTPUT_PATH_OWL" -# echo "OUTPUT_PATH_SHACL is $OUTPUT_PATH_SHACL" -# -# -# cd model2owl -# ls -la -# echo "+++++++++++++++++transform to rdf++++++++++++++++++++++++++++" -# make owl-core XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL -# make owl-restrictions XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL -# make shacl XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_SHACL -# -# echo "+++++++++++++++++transform to turtle++++++++++++++++++++++++++++" -# echo $(ls ${OUTPUT_PATH_OWL}/*.rdf) -# make convert-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_OWL -# echo $(ls ${OUTPUT_PATH_SHACL}/*.rdf) -# make convert-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_SHACL -# echo "-------------------end transform---------------------------------" -# -# sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl -# cd .. -# done -# shell: bash -# -# - name: remove unnecessary files -# run: | -# sudo rm -rf model2owl -# shell: bash -# -# - name: commit files -# id: commit -# run: | -# git config --local user.email "action@github.com" -# git config --local user.name "github-actions" -# git pull -# git status -# -# git add . -# if [ -z "$(git status --porcelain)" ]; then -# echo "::set-output name=push::false" -# else -# git commit -m "Adding transformation files" -# echo "::set-output name=push::true" -# fi -# shell: bash -# -# - name: Push changes -# if: steps.commit.outputs.push == 'true' -# uses: ad-m/github-push-action@master -# with: -# github_token: ${{ secrets.GITHUB_TOKEN }} -# branch: ${{ github.ref }} \ No newline at end of file From 91581c3a85c14345b94c42a49331ef52dd99a94f Mon Sep 17 00:00:00 2001 From: Dragos0000 Date: Thu, 9 Nov 2023 14:53:03 +0000 Subject: [PATCH 18/21] config changes --- .../demo_ontology/model2owl-config/config-parameters.xsl | 4 ++++ .../model2owl-config/config-parameters.xsl | 4 ++++ model2owl-config/config-parameters.xsl | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/implementation/demo_ontology/model2owl-config/config-parameters.xsl b/implementation/demo_ontology/model2owl-config/config-parameters.xsl index 0c84b02..017b5c7 100644 --- a/implementation/demo_ontology/model2owl-config/config-parameters.xsl +++ b/implementation/demo_ontology/model2owl-config/config-parameters.xsl @@ -95,6 +95,10 @@ + + + + diff --git a/implementation/demo_ontology_module/model2owl-config/config-parameters.xsl b/implementation/demo_ontology_module/model2owl-config/config-parameters.xsl index c9d2afe..b774370 100644 --- a/implementation/demo_ontology_module/model2owl-config/config-parameters.xsl +++ b/implementation/demo_ontology_module/model2owl-config/config-parameters.xsl @@ -95,6 +95,10 @@ + + + + diff --git a/model2owl-config/config-parameters.xsl b/model2owl-config/config-parameters.xsl index 4c85df1..02d3eec 100644 --- a/model2owl-config/config-parameters.xsl +++ b/model2owl-config/config-parameters.xsl @@ -95,6 +95,10 @@ + + + + From 5b1eef649cba941f8214fe9ae00a4387ebe49e22 Mon Sep 17 00:00:00 2001 From: Dragos0000 Date: Thu, 9 Nov 2023 14:54:11 +0000 Subject: [PATCH 19/21] config changes --- .../xmi_conceptual_model/demo_ontology_module_CM.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml b/implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml index 2afb543..242c999 100644 --- a/implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml +++ b/implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml @@ -1,6 +1,6 @@ - + From 6aa76062f7a86dcbe4d416665975bd75477aa5ac Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 9 Nov 2023 14:55:09 +0000 Subject: [PATCH 20/21] Adding convention report and glossary files --- glossary/ontologies-combined_glossary.html | 32 +++++++++---------- .../demo_ontology_CM_convention_report.html | 4 +-- ..._ontology_module_CM_convention_report.html | 4 +-- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/glossary/ontologies-combined_glossary.html b/glossary/ontologies-combined_glossary.html index 4f9aad5..41b2db1 100644 --- a/glossary/ontologies-combined_glossary.html +++ b/glossary/ontologies-combined_glossary.html @@ -4503,7 +4503,7 @@

Predicates (object p epo:announcesContract - epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
+ epo-not:ResultNotice -> epo:Contract [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:Contract [0..*]
epo-not:ResultNotice -> epo:Contract [0..*]
epo:announcesLot @@ -4513,12 +4513,12 @@

Predicates (object p epo:announcesLotGroup - epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:CompetitionNotice -> epo:LotGroup [0..*]
+ epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo-not:CompetitionNotice -> epo:LotGroup [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroup [0..*]
epo:announcesLotGroupAwardInformation - epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
+ epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:LotGroupAwardInformation [0..*]
epo-not:ResultNotice -> epo:LotGroupAwardInformation [0..*]
epo:announcesNonPublishedElement @@ -4536,7 +4536,7 @@

Predicates (object p epo:announcesNoticeAwardInformation - epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
+ epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo-not:DirectAwardPrenotificationNotice -> epo:NoticeAwardInformation [0..1]
epo-not:ResultNotice -> epo:NoticeAwardInformation [0..1]
epo:announcesPlannedProcurementPart @@ -4556,7 +4556,7 @@

Predicates (object p epo:announcesRole - epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
+ epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo-not:DirectAwardPrenotificationNotice -> epo:AgentInRole [1..*]
epo-not:ContractModificationNotice -> epo:AgentInRole [0..*]
epo-not:PlanningNotice -> epo:AgentInRole [1..*]
epo-not:CompetitionNotice -> epo:AgentInRole [1..*]
epo-not:CompletionNotice -> epo:AgentInRole [0..*]
epo:associatedWith @@ -4805,7 +4805,7 @@

Predicates (object p epo:describesResultNotice - epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
+ epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:NoticeAwardInformation -> epo-not:DirectAwardPrenotificationNotice [0..1]
epo:NoticeAwardInformation -> epo-not:ResultNotice [0..1]
epo:distributesOffer @@ -5247,12 +5247,12 @@

Predicates (object p epo:hasFormType - A categorisation of the steps in which the Notice is used. + A categorisation of the steps in which the Notice is used. WG Approval 12/05/2020 - - epo:Notice -> at-voc:form-type [0..1]
epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
+ + epo-not:Notice1 -> planning [0..1]
epo-not:Notice2 -> planning [0..1]
epo-not:Notice3 -> planning [0..1]
epo-not:Notice4 -> planning [0..1]
epo-not:Notice5 -> planning [0..1]
epo-not:Notice6 -> planning [0..1]
epo-not:Notice7 -> planning [0..1]
epo-not:Notice8 -> planning [0..1]
epo-not:Notice9 -> planning [0..1]
epo-not:Notice10 -> competition [0..1]
epo-not:Notice11 -> competition [0..1]
epo-not:Notice12 -> competition [0..1]
epo-not:Notice13 -> competition [0..1]
epo-not:Notice14 -> competition [0..1]
epo-not:Notice15 -> competition [0..1]
epo-not:Notice16 -> competition [0..1]
epo-not:Notice17 -> competition [0..1]
epo-not:Notice18 -> competition [0..1]
epo-not:Notice19 -> competition [0..1]
epo-not:Notice20 -> competition [0..1]
epo-not:Notice21 -> competition [0..1]
epo-not:Notice22 -> competition [0..1]
epo-not:Notice23 -> competition [0..1]
epo-not:Notice24 -> competition [0..1]
epo-not:Notice25 -> dir-awa-pre [0..1]
epo-not:Notice26 -> dir-awa-pre [0..1]
epo-not:Notice27 -> dir-awa-pre [0..1]
epo-not:Notice28 -> dir-awa-pre [0..1]
epo-not:Notice29 -> result [0..1]
epo-not:Notice30 -> result [0..1]
epo-not:Notice31 -> result [0..1]
epo-not:Notice32 -> result [0..1]
epo-not:Notice33 -> result [0..1]
epo-not:Notice34 -> result [0..1]
epo-not:Notice35 -> result [0..1]
epo-not:Notice36 -> result [0..1]
epo-not:Notice37 -> result [0..1]
epo-not:Notice38 -> cont-modif [0..1]
epo-not:Notice39 -> cont-modif [0..1]
epo-not:Notice40 -> cont-modif [0..1]
epo-not:ConcessionAwardNotice-D23 -> Form25 [0..1]
epo-not:ConcessionNotice-D23 -> Form24 [0..1]
epo-not:Modification-D23 -> Form20 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Form23 [0..1]
epo-not:VEAT-D23 -> Form15 [0..1]
epo-not:CANStandard-D24 -> Form3 [0..1]
epo-not:CNStandard-D24 -> Form2 [0..1]
epo-not:DesignContest-D24 -> Form12 [0..1]
epo-not:DesignContestResult-D24 -> Form13 [0..1]
epo-not:Modification-D24 -> Form20 [0..1]
epo-not:PIN-CFCStandard-D24 -> Form1 [0..1]
epo-not:PIN-RTL-D24 -> Form1 [0..1]
epo-not:PINOnly-D24 -> Form1 [0..1]
epo-not:PINProfile-D24 -> Form8 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Form21 [0..1]
epo-not:VEAT-D24 -> Form15 [0..1]
epo-not:CANSocial-D25 -> Form6 [0..1]
epo-not:CANSocialNotice-D25 -> Form22 [0..1]
epo-not:CNSocial-D25 -> Form5 [0..1]
epo-not:CNSocialNotice-D25 -> Form22 [0..1]
epo-not:DesignContest-D25 -> Form12 [0..1]
epo-not:DesignContestResult-D25 -> Form13 [0..1]
epo-not:Modification-D25 -> Form20 [0..1]
epo-not:PIN-CFCSocial-D25 -> Form4 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Form22 [0..1]
epo-not:PIN-RTL-D25 -> Form4 [0..1]
epo-not:PINOnly-D25 -> Form4 [0..1]
epo-not:PINProfile-D25 -> Form8 [0..1]
epo-not:QS-D25 -> Form7 [0..1]
epo-not:QSNotice-D25 -> Form22 [0..1]
epo-not:VEAT-D25 -> Form15 [0..1]
epo-not:CANDefence-D81 -> Form18 [0..1]
epo-not:CNDefence-D81 -> Form17 [0..1]
epo-not:PINDefence-D81 -> Form16 [0..1]
epo-not:PINProfile-D81 -> Form8 [0..1]
epo-not:Subcontract-D81 -> Form19 [0..1]
epo-not:VEAT-D81 -> Form15 [0..1]
epo:Notice -> at-voc:form-type [0..1]
epo:hasFrameworkAgreementEstimatedValue @@ -5371,7 +5371,7 @@

Predicates (object p epo:hasLegalBasis - The legal basis under which the procurement procedure takes place. + The legal basis under which the procurement procedure takes place. Additional Information: For example European Directives or Regulations, national laws etc. @@ -5387,8 +5387,8 @@

Predicates (object p WG 09/11/2021 The codelist to be used is at-voc:legal-basis which is available at http://publications.europa.eu/resource/dataset/legal-basis - - epo:ProcurementObject -> at-voc:legal-basis [0..*]
epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
+ + epo-not:VEAT-D81 -> Directive 81 [0..1]
epo-not:PINProfile-D81 -> Directive 81 [0..1]
epo-not:Notice6 -> Directive 81 [0..1]
epo-not:PINDefence-D81 -> Directive 81 [0..1]
epo-not:Subcontract-D81 -> Directive 81 [0..1]
epo-not:Notice27 -> Directive 81 [0..1]
epo-not:Notice22 -> Directive 81 [0..1]
epo-not:CNDefence-D81 -> Directive 81 [0..1]
epo-not:Notice18 -> Directive 81 [0..1]
epo-not:CANDefence-D81 -> Directive 81 [0..1]
epo-not:Notice3 -> Directive 81 [0..1]
epo-not:Notice9 -> Directive 81 [0..1]
epo-not:Notice31 -> Directive 81 [0..1]
epo-not:Modification-D25 -> Directive 25 [0..1]
epo-not:Notice26 -> Directive 25 [0..1]
epo-not:CNSocial-D25 -> Directive 25 [0..1]
epo-not:PIN-CFCSocial-D25 -> Directive 25 [0..1]
epo-not:PINOnly-D25 -> Directive 25 [0..1]
epo-not:Notice2 -> Directive 25 [0..1]
epo-not:PINProfile-D25 -> Directive 25 [0..1]
epo-not:PIN-RTL-D25 -> Directive 25 [0..1]
epo-not:Notice37 -> Directive 25 [0..1]
epo-not:VEAT-D25 -> Directive 25 [0..1]
epo-not:CANSocialNotice-D25 -> Directive 25 [0..1]
epo-not:QSNotice-D25 -> Directive 25 [0..1]
epo-not:QS-D25 -> Directive 25 [0..1]
epo-not:DesignContestResult-D25 -> Directive 25 [0..1]
epo-not:CNSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice34 -> Directive 25 [0..1]
epo-not:Notice24 -> Directive 25 [0..1]
epo-not:CANSocial-D25 -> Directive 25 [0..1]
epo-not:Notice30 -> Directive 25 [0..1]
epo-not:Notice8 -> Directive 25 [0..1]
epo-not:Notice13 -> Directive 25 [0..1]
epo-not:Notice5 -> Directive 25 [0..1]
epo-not:Notice39 -> Directive 25 [0..1]
epo-not:Notice21 -> Directive 25 [0..1]
epo-not:Notice15 -> Directive 25 [0..1]
epo-not:Notice17 -> Directive 25 [0..1]
epo-not:DesignContest-D25 -> Directive 25 [0..1]
epo-not:Notice11 -> Directive 25 [0..1]
epo-not:PIN-CFCSocialNotice-D25 -> Directive 25 [0..1]
epo-not:Notice10 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D24 -> Directive 24 [0..1]
epo-not:VEAT-D24 -> Directive 24 [0..1]
epo-not:PINOnly-D24 -> Directive 24 [0..1]
epo-not:Notice25 -> Directive 24 [0..1]
epo-not:Notice23 -> Directive 24 [0..1]
epo-not:CNStandard-D24 -> Directive 24 [0..1]
epo-not:PIN-CFCStandard-D24 -> Directive 24 [0..1]
epo-not:Notice29 -> Directive 24 [0..1]
epo-not:Notice38 -> Directive 24 [0..1]
epo-not:Notice36 -> Directive 24 [0..1]
epo-not:Notice1 -> Directive 24 [0..1]
epo-not:DesignContestResult-D24 -> Directive 24 [0..1]
epo-not:Notice33 -> Directive 24 [0..1]
epo-not:CANStandard-D24 -> Directive 24 [0..1]
epo-not:DesignContest-D24 -> Directive 24 [0..1]
epo-not:PIN-RTL-D24 -> Directive 24 [0..1]
epo-not:Notice20 -> Directive 24 [0..1]
epo-not:PINProfile-D24 -> Directive 24 [0..1]
epo-not:Notice12 -> Directive 24 [0..1]
epo-not:Notice4 -> Directive 24 [0..1]
epo-not:Notice16 -> Directive 24 [0..1]
epo-not:Notice7 -> Directive 24 [0..1]
epo-not:VEAT-D23 -> Directive 24 [0..1]
epo-not:Notice35 -> Directive 24 [0..1]
epo-not:Modification-D23 -> Directive 24 [0..1]
epo-not:Notice32 -> Directive 24 [0..1]
epo-not:Notice19 -> Directive 24 [0..1]
epo-not:ConcessionNotice-D23 -> Directive 24 [0..1]
epo-not:ConcessionAwardNotice-D23 -> Directive 24 [0..1]
epo-not:Notice40 -> Directive 24 [0..1]
epo-not:Notice28 -> Directive 24 [0..1]
epo-not:SocialAndOtherSpecificServices-D23 -> Directive 24 [0..1]
epo-not:Notice14 -> Directive 24 [0..1]
epo:ProcurementObject -> at-voc:legal-basis [0..*]
epo:hasLegalIdentifier @@ -5529,7 +5529,7 @@

Predicates (object p epo:hasNoticeType - epo:Notice -> at-voc:notice-type [1]
epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
+ epo-not:ContractModificationNotice -> can-modif [1]
epo-not:PINOnlyNotice -> pin-only [1]
epo-not:PINProfileNotice -> pin-buyer [1]
epo-not:PINTimeLimitNotice -> pin-rtl [1]
epo-not:PMCNotice -> pmc [1]
epo-not:CNSocialNotice -> cn-social [1]
epo-not:CNStandardNotice -> cn-standard [1]
epo-not:DesignContestNotice -> cn-desg [1]
epo-not:PIN-CFCSocialNotice -> pin-cfc-social [1]
epo-not:PIN-CFCStandardNotice -> pin-cfc-standard [1]
epo-not:QSNotice -> qu-sy [1]
epo-not:SubcontractNotice -> subco [1]
epo-not:VoluntaryEx-AnteTransparencyNotice -> veat [1]
epo-not:CANSocialNotice -> can-social [1]
epo-not:CANStandardNotice -> can-standard [1]
epo-not:DesignContestResultNotice -> can-desg [1]
epo:Notice -> at-voc:notice-type [1]
epo:hasNotificationContentType @@ -6069,12 +6069,12 @@

Predicates (object p epo:refersToLot - epo:Notice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
+ epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo:Notice -> epo:Lot [1..*]
epo-not:CompletionNotice -> epo:Lot [1..*]
epo-not:ContractModificationNotice -> epo:Lot [1..*]
epo-not:ResultNotice -> epo:Lot [1..*]
epo:refersToLotGroup - epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
+ epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo-not:ContractModificationNotice -> epo:LotGroup [0..*]
epo-not:ResultNotice -> epo:LotGroup [0..*]
epo-not:CompletionNotice -> epo:LotGroup [0..*]
epo:refersToLotGroupAwardInformation @@ -6153,7 +6153,7 @@

Predicates (object p epo:refersToProcedure - epo-not:ResultNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo:Notice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:ResultNotice -> epo:Procedure [1]
+ epo-not:CompletionNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:ResultNotice -> epo:Procedure [1]
epo-not:ResultNotice -> epo:Procedure [1]
epo-not:ContractModificationNotice -> epo:Procedure [1]
epo-not:CompletionNotice -> epo:Procedure [1]
epo:Notice -> epo:Procedure [1]
epo:refersToRole diff --git a/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html b/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html index 791756f..afd6f92 100644 --- a/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html +++ b/implementation/demo_ontology/conventions_report/demo_ontology_CM_convention_report.html @@ -19,7 +19,7 @@

UML Conventions Comformance Report

-

[ 01/11/2023 ]

+

[ 09/11/2023 ]

Publications Office of the European Union
@@ -56,7 +56,7 @@

Abstract

Generalisations. Each major section lists model items that need correction of errors or consideration of warnings.

The UML model in file demo_ontology_CM.xml - was tested at 11:50 on November 1, 2023.

+ was tested at 14:54 on November 9, 2023.

Nomenclature

Class names

diff --git a/implementation/demo_ontology_module/conventions_report/demo_ontology_module_CM_convention_report.html b/implementation/demo_ontology_module/conventions_report/demo_ontology_module_CM_convention_report.html index 283ec27..1022258 100644 --- a/implementation/demo_ontology_module/conventions_report/demo_ontology_module_CM_convention_report.html +++ b/implementation/demo_ontology_module/conventions_report/demo_ontology_module_CM_convention_report.html @@ -19,7 +19,7 @@

UML Conventions Comformance Report

-

[ 01/11/2023 ]

+

[ 09/11/2023 ]

Publications Office of the European Union
@@ -56,7 +56,7 @@

Abstract

Generalisations. Each major section lists model items that need correction of errors or consideration of warnings.

The UML model in file demo_ontology_module_CM.xml - was tested at 11:51 on November 1, 2023.

+ was tested at 14:54 on November 9, 2023.

Nomenclature

Class names

From c07385f7d2d7392e5ff0ab3cf7c8c4283b19c4e9 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 9 Nov 2023 14:56:06 +0000 Subject: [PATCH 21/21] Adding transformation files --- .../owl_ontology/demo_ontology_CM.rdf | 2500 +--- .../owl_ontology/demo_ontology_CM.ttl | 18 +- .../demo_ontology_CM_restrictions.rdf | 1833 +-- .../demo_ontology_CM_restrictions.ttl | 1306 +- .../shacl_shapes/demo_ontology_CM_shapes.rdf | 5 +- .../shacl_shapes/demo_ontology_CM_shapes.ttl | 5 +- .../owl_ontology/demo_ontology_module_CM.rdf | 10061 +--------------- .../owl_ontology/demo_ontology_module_CM.ttl | 11 +- .../demo_ontology_module_CM_restrictions.rdf | 4098 +------ .../demo_ontology_module_CM_restrictions.ttl | 442 +- .../demo_ontology_module_CM_shapes.rdf | 5 +- .../demo_ontology_module_CM_shapes.ttl | 5 +- 12 files changed, 1514 insertions(+), 18775 deletions(-) diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf index 50bddcd..22ae804 100644 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf +++ b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.rdf @@ -51,14 +51,15 @@ eProcurement Ontology - core + eProcurement Ontology Ordering - core The eProcurement Ontology core describes the concepts and properties representing the European Public Procurement domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact. http://publications.europa.eu/resource/authority/corporate-body/PUBL - This version is automatically generated from demo_ontology_CM.xml on 2023-11-01 + This version is automatically generated from demo_ontology_CM.xml on 2023-11-09 - 2023-11-01 + 2023-11-09 2021-06-01 4.0.0 3.1.0 @@ -2023,15 +2024,114 @@ Integer + + + + + + + + + + + + + + + + + + + + + + + In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) + + + When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions. + + + This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping + + + In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria. + + + In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) + + + Check definitions for all concepts and relations. + + + Check definitions for all concepts and relations. + + + Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract. + + + Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. + + + Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. + + + Proposal to omit this link until we bring tax into ePO core because this does not appear in the data + + + <b>Procedure/ PlannedProcurementPart / Lot</b> are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the "process" description and "whole procurement subject matter". TODO: revise this definition. TODO: specify that all procedures have al least one lot. + + + should this be moved to document? + + + if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject. + + + there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..* + + + In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. + + + In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. + + + A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023 + + + based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure + + + BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision. + + + Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms). + + + Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. + + + Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. + + + To be decided if this should stay in the core or in the Offer module + + + What are the entities that can be reviewed? + + + This does not work in practice. + + + Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms. + - - - @@ -2044,18 +2144,6 @@ - - - - - - - - - - - - @@ -2071,42 +2159,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -2179,2105 +2231,209 @@ - - - - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -4324,48 +2480,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4390,144 +2504,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) - - - When a Framework Agreement is concerned, the Framework Agreement will result from LotAwardOutcome, which describes a Lot which specifies the both the Qualification and Award Criteria and Participation Conditions. - - - This might not be needed since if a winner is chosen we will have an instance of epo:Winner, if not, we will provide the reason for non award and we will have isCompetitionTerminated in case the Competition for that Lot is closed. This will impact std forms mapping - - - In the case of Dynamic Purchasing System, the Lot will only specify Participation Condition and Qualification Criteria. - - - In std forms, the techniques is used at the Procedure level (F01, sec IV.1.3) - - - Check definitions for all concepts and relations. - - - Check definitions for all concepts and relations. - - - Lot may be the object of more than one contract if it's a cascading situation. Otherwise, it is exactly one. Contract object is defined as follows: All things which are not outside the commerce of men may be the object of a contract. Similarly, all services which are not contrary to law, morals, good customs, public order, or public policy may be the object of a contract. - - - Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. - - - Used in F18 (and other standard forms) which is out of scope. We will need to reuse them for the Contract. - - - Proposal to omit this link until we bring tax into ePO core because this does not appear in the data - - - <b>Procedure/ PlannedProcurementPart / Lot</b> are a conflation of three aspects into one: - the procedural / process / game rules - the object/scope/purpose of procurement - the description of influences or additional information related to the procurement (isSME suitable, isUsingEuFunds, etc.) TODO: the definitions NEED to be aligned, for now, to cover all three aspects! Possibly in the future model a separation of concerns for higher clarity/accuracy. Note: The current procedure class is a conflation of the "process" description and "whole procurement subject matter". TODO: revise this definition. TODO: specify that all procedures have al least one lot. - - - should this be moved to document? - - - if PlannedProcurementPart has Terms, it should be a subclass of ProcurementObject. - - - there is a use case (2019-S-089-213584) where a contact point has more internet addresses. proposal to change the cardinality to 0..* - - - In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. - - - In order to align with Core Voc, it means we need to add cv:LegalEntity and org:FormalOrganization between org:Organisation and epo:Business. - - - A dependency enumeration will be created and a codelist added for hasLegalFormType. check WGM 17/01/2023 - - - based on eForms (BT-124) a Channel may differ per Lot based on standard forms, a channel may differ per procedure - - - BT-08 can be Awarding CBP; BG-03 is the Buyer. But Awarding CPB is not the same as the Buyer; the organisations may differ for these roles. Having the Awarder Role allows us to specify which Organisation is involved in the Award Decision. - - - Revise the Term hierarchy. e.g. ReviewTerm is per Procedure in SF (to be investigated how it is in eForms). - - - Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. - - - Estimated dates are not really conditions and stipulations, they are not terms. We need to segregate the procedural/process information from the procurement-object information in the future. - - - To be decided if this should stay in the core or in the Offer module - - - What are the entities that can be reviewed? - - - This does not work in practice. - - - Added hasAdditionalInformation to cover for section VII.2 in F14, since we do not have the Corrigendum notice type anymore in eForms. - Has candidate list diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl index 19b67bd..af4a591 100644 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl +++ b/implementation/demo_ontology/owl_ontology/demo_ontology_CM.ttl @@ -106,6 +106,11 @@ rdfs:subClassOf :Estimate ; skos:prefLabel "Concession estimate"@en . +:ContextSpecificDescription a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity."@en ; + skos:prefLabel "Context specific description"@en . + :ContractLotCompletionInformation a owl:Class ; rdfs:isDefinedBy :core ; rdfs:subClassOf :ContextualProjection ; @@ -339,7 +344,6 @@ :NoticeAwardInformation a owl:Class ; rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextSpecificDescription ; skos:definition "Information about an Award Notice."@en ; skos:prefLabel "Notice award information"@en . @@ -479,7 +483,6 @@ :ProcurementProcessInformation a owl:Class ; rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextSpecificDescription ; skos:definition "Information about the temporal unfolding or succession of Procurement Objects."@en ; skos:prefLabel "Procurement process information"@en . @@ -3736,11 +3739,6 @@ foaf:Person a owl:Class ; skos:definition "Role of an Agent who may be mentioned in the information exchanged during the Procurement Process but who does not play an active part in it."@en ; skos:prefLabel "Auxiliary party"@en . -:ContextSpecificDescription a owl:Class ; - rdfs:isDefinedBy :core ; - skos:definition "A description concerning a Procurement Object or a Notice in a specific Situation Context. Additional Information: The description has its own identity (+I) but is dependent (+D) on the concerned Entity. We say that ContextSpecificDescription *concerns* an Entity."@en ; - skos:prefLabel "Context specific description"@en . - :ContextualProjection a owl:Class ; rdfs:isDefinedBy :core ; skos:definition "Projection of an Entity and all of its properties that hold in a given Situation Context. Additional Information: The contextual projection does not have its own identity (-I), is dependent (+D) on the described Entity, and is anti-rigid (~R) We say that ContextualProjection *describes* an Entity. Adaptation of ContextSlices pattern encoding a 4D view. http://ontologydesignpatterns.org/wiki/Submissions:Context_Slices"@en ; @@ -3775,7 +3773,6 @@ foaf:Person a owl:Class ; :StatisticalInformation a owl:Class ; rdfs:isDefinedBy :core ; - rdfs:subClassOf :ContextSpecificDescription ; skos:definition "Statistical data on the Procedure and the Lot. Additional Information At the present time Procurement Procedures are not fully electronic. At a later date, information on the Tenders received could be inferred by the data in the eProcurement System. Therefore this class is temporal and should cease to exist in fully electronic Procurement. The need for its presence responds also to the alignment with the Regulation (EU) 2019/1780 (eForms). Attention will have to be paid in the future to possible inconsistencies derived from data placed in other classes and data held in the Statistical Information class; e.g. the TenderEvaluation class (see eEvaluation diagram) has the attribute admissibileTender indicator, which in case of being false, may enter in contradiction with the highest or lowest Tender value for that very same inadmissible Tender. WG Approval 12/12/2019"@en ; skos:prefLabel "Statistical information"@en . @@ -3852,15 +3849,16 @@ foaf:Agent a owl:Class ; skos:prefLabel "Acquiring party"@en . :core a owl:Ontology ; + rdfs:label "eProcurement Ontology Ordering - core"@en ; dcterms:created "2021-06-01"^^xsd:date ; dcterms:description "The eProcurement Ontology core describes the concepts and properties representing the European Public Procurement domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:issued "2023-11-09"^^xsd:date ; dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; dcterms:title "eProcurement Ontology - core"@en ; vann:preferredNamespacePrefix "epo" ; vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment "This version is automatically generated from demo_ontology_CM.xml on 2023-11-01" ; + rdfs:comment "This version is automatically generated from demo_ontology_CM.xml on 2023-11-09" ; rdfs:seeAlso , , , diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf index 8289f53..28c3653 100644 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf +++ b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.rdf @@ -53,15 +53,16 @@ eProcurement Ontology - core restrictions + eProcurement Ontology Ordering - core restrictions http://publications.europa.eu/resource/authority/corporate-body/PUBL The eProcurement Ontology core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology core. This version is automatically generated from demo_ontology_CM.xml on - 2023-11-01 + 2023-11-09 - 2023-11-01 + 2023-11-09 2021-06-01 4.0.0 3.1.0 @@ -2012,1444 +2013,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4631,80 +3194,370 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + - - + + + + + + + + + + + + + - - + + + + + + + + - - + + + + + + - - + + + + + + + + + + + + + + - - + + + + + + + + + - - + + + + + + - - + + + + + + + - - + + + + + + + - - + + + + + + + - - + + + + + + + - - + + + + + + - - + + + + + + - - + + + + + + + - - + + + + + + + - - + + + + + + + - - + + + + + + - - + + + + + + + - - + + + + + + + + + + + + + + + - - + + + + + + + + - - + + + + + + - - + + + + + + + - - + + + + + + + - - + + + + + + diff --git a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl index 3206c0a..a8bf6a9 100644 --- a/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl +++ b/implementation/demo_ontology/owl_ontology/demo_ontology_CM_restrictions.ttl @@ -118,16 +118,17 @@ rdfs:range :ProcurementObject . :core-restriction a owl:Ontology ; + rdfs:label "eProcurement Ontology Ordering - core restrictions"@en ; dcterms:created "2021-06-01"^^xsd:date ; dcterms:description "The eProcurement Ontology core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology core."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:issued "2023-11-09"^^xsd:date ; dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; dcterms:title "eProcurement Ontology - core restrictions"@en ; vann:preferredNamespacePrefix "epo" ; vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; rdfs:comment """This version is automatically generated from demo_ontology_CM.xml on - 2023-11-01""" ; + 2023-11-09""" ; rdfs:seeAlso , , , @@ -2178,6 +2179,10 @@ person:placeOfDeath rdfs:domain cccev:Person ; owl:maxCardinality 1 ; owl:onProperty adms:identifier ] . +:PurchaseContract rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :resultsFromMiniCompetitionAwardDecision ] . + :concernsLot a owl:FunctionalProperty ; rdfs:domain [ a owl:Class ; owl:unionOf ( :ProcurementProcessInformation :LotAwardDecision ) ] ; @@ -2213,56 +2218,21 @@ owl:Thing rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :containsModificationsOf ] . -:Prize rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPrizeRank ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasPrizeValue ] . - -:TenderGroup rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasTotalValue ], - [ a owl:Restriction ; +:DynamicPurchaseSystemTechnique rdfs:subClassOf [ a owl:Restriction ; owl:cardinality 1 ; - owl:onProperty :isSubmittedForLotGroup ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :comprisesTender ] . - -:MiniCompetition rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :followsRulesSetBy ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :usesCandidateList ] . - -:Purpose rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalQuantity ] . + owl:onProperty :resultsInDynamicPurchasingSystem ] . -:SelectedCandidateList rdfs:subClassOf [ a owl:Restriction ; +:JuryMember rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasStartDate ] . + owl:onProperty :playedBy ] . -:SelectionCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; +:NonDisclosureAgreementTerm a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :describesMinimumLevelOfStandards ], + owl:onProperty :isNonDisclosureAgreementRequired ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasSelectionCriteriaStatedInProcurementDocuments ] . - -:SpecificDuration rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty time:numericDuration ] . - -:DynamicPurchaseSystemTechnique rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :resultsInDynamicPurchasingSystem ] . - -:MiniCompetitionAwardDecision rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :concernsMiniCompetition ] . + owl:onProperty dcterms:description ] . :NoticeChange rdfs:subClassOf [ a owl:Restriction ; owl:minCardinality 1 ; @@ -2271,39 +2241,44 @@ owl:Thing rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :refersToPreviousNotice ] . -:ProcurementCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; +:ParticipationRequestTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :indicatesPerformingStaffInformationRequirement ] . - -:ProcurementCriterion rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :definesParticipationRequestReceiver ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasFormula ] . + owl:onProperty :definesParticipationRequestProcessor ] . -:PurchaseContract rdfs:subClassOf [ a owl:Restriction ; +:Prize rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :resultsFromMiniCompetitionAwardDecision ] . - -:Technique a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :hasPrizeRank ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasValidityPeriod ] . + owl:onProperty :hasPrizeValue ] . -cccev:InformationConcept a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; +:ProcurementCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . + owl:onProperty :indicatesPerformingStaffInformationRequirement ] . -cccev:Requirement a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; +:SelectionCriteriaSummary rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty dcterms:description ], + owl:onProperty :hasSelectionCriteriaStatedInProcurementDocuments ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty skos:prefLabel ] . + owl:onProperty :describesMinimumLevelOfStandards ] . -dcterms:description rdfs:domain [ a owl:Class ; - owl:unionOf ( :ProcurementElement :System :AgentInRole cccev:ContactPoint cccev:Channel :NonDisclosureAgreementTerm :SecurityClearanceTerm :SubcontractTerm cccev:InformationConcept cccev:Requirement :Technique :SubcontractingEstimate :ElectronicSignature :Document :Fund ) ] ; - rdfs:range rdf:PlainLiteral . +:SpecificDuration rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty time:numericDuration ] . + +:TenderGroup rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :isSubmittedForLotGroup ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasTotalValue ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :comprisesTender ] . :ContractModification rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; @@ -2312,106 +2287,106 @@ dcterms:description rdfs:domain [ a owl:Class ; owl:minCardinality 1 ; owl:onProperty :hasElementModification ] . -:Fund a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; +:Contractor rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasURL ], + owl:onProperty :needsToBeAWinner ] . + +:MiniCompetition rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :usesCandidateList ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . + owl:onProperty :followsRulesSetBy ] . -:OrganisationGroup rdfs:subClassOf [ a owl:Restriction ; +:MiniCompetitionAwardDecision rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :leadBy ], - [ a owl:Restriction ; + owl:onProperty :concernsMiniCompetition ] . + +:OrganisationGroup rdfs:subClassOf [ a owl:Restriction ; owl:minCardinality 1 ; - owl:onProperty :hasMember ] . + owl:onProperty :hasMember ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :leadBy ] . :ParticipationConditionsSummary rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :describesObjectiveParticipationRules ], + owl:onProperty :describesVerificationMethod ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :describesVerificationMethod ] . + owl:onProperty :describesObjectiveParticipationRules ] . -:ProcurementElement a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; +:ProcessPlanningTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedValue ], + owl:onProperty :hasEstimatedContractNoticePublicationDate ], [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty adms:identifier ] . + owl:maxCardinality 1 ; + owl:onProperty :hasAwardDateScheduled ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedTenderInvitationDate ] . + +:ProcurementServiceProvider rdfs:subClassOf [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :actsOnBehalfOf ] . :ProfessionalSuitabilitySummary rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :describesProfession ], + owl:onProperty :describesProfessionRelevantLaw ], [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :hasServiceReservedToParticularProfession ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :describesProfessionRelevantLaw ] . + owl:onProperty :describesProfession ] . + +:Purpose rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasTotalQuantity ] . :ReviewIrregularitySummary rdfs:subClassOf [ a owl:Restriction ; owl:cardinality 1 ; owl:onProperty :hasReviewIrregularityCount ] . :ReviewRequestSummary rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasTotalNumberOfComplainants ], - [ a owl:Restriction ; owl:cardinality 1 ; - owl:onProperty :concernsReviewSummaryForLot ] . - -:System a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :concernsReviewSummaryForLot ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isOwnedByAgent ] . + owl:onProperty :hasTotalNumberOfComplainants ] . -cccev:Channel a owl:Class ; +:SecurityClearanceTerm a owl:Class ; rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty dcterms:description ], + owl:onProperty :isSecurityClearanceRequired ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAddressURL ] . - -adms:identifier a owl:FunctionalProperty ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( :Project :LotGroup :ProcurementElement foaf:Agent dcterms:Location cccev:InformationConcept :Document :Fund :Consignment :TransportEquipment :ShipmentStage :TransportEquipmentSeal :ShipmentInformation :Line :AbstractContainer ) ] ; - rdfs:range adms:Identifier . - -foaf:Agent a owl:Class . + owl:onProperty :hasDeadline ] . -:AwardEvaluationTerm rdfs:subClassOf [ a owl:Restriction ; +:SelectedCandidateList rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasOverallPriceAwardCriteriaPonderation ], - [ a owl:Restriction ; + owl:onProperty :hasStartDate ] . + +:System a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasOverallQualityAwardCriteriaPonderation ], - [ a owl:Restriction ; + owl:onProperty :isOwnedByAgent ] . + +:Tenderer rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasOverallCostAwardCriteriaPonderation ], - [ a owl:Restriction ; + owl:onProperty :substantiatesExclusionGround ] . + +:Winner rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAwardCriteriaOrderJustification ] . + owl:onProperty :needsToBeATenderer ] . :Business rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :isListedCompany ] . -:ConcessionEstimate rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasCalculationMethod ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedBuyerConcessionRevenue ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedUserConcessionRevenue ], - [ a owl:Restriction ; +:DirectAwardTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasConcessionEstimatedValue ] . + owl:onProperty :refersToPreviousProcedure ] . :GreenProcurement rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; @@ -2424,50 +2399,63 @@ foaf:Agent a owl:Class . owl:onProperty :hasZeroEmissionVehicles ] . :LotGroupAwardInformation rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasGroupFrameworkAgreementMaximumValue ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :describesLotGroup ] . + +:OpeningTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :definesOpeningPlace ], + [ a owl:Restriction ; owl:cardinality 1 ; - owl:onProperty :describesLotGroup ], + owl:onProperty :hasOpeningDateTime ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasGroupFrameworkAgreementMaximumValue ] . + owl:onProperty :hasOpeningURL ] . -:ProcessPlanningTerm rdfs:subClassOf [ a owl:Restriction ; +:ProcurementCriterion rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasFormula ] . + +:ProcurementProcessInformation rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedTenderInvitationDate ], + owl:onProperty :concernsLot ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedContractNoticePublicationDate ], + owl:onProperty :concernsProcedure ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAwardDateScheduled ] . - -:PublicationProvision rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasElementConfidentiality ], + owl:onProperty :isCompetitionTerminated ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasPreferredPublicationDate ] . - -:SelectionCriterion rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :isToBeRelaunched ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isUsedForCandidateRestriction ] . + owl:onProperty :isDPSTerminated ] . -:SubcontractingEstimate a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; +:PublicationProvision rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedPercentage ], + owl:onProperty :hasPreferredPublicationDate ], [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :hasElementConfidentiality ] . + +:Technique a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasSubcontractingEstimatedValue ] . + owl:onProperty :hasValidityPeriod ] . :TenderAwardOutcome rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :indicatesAwardToWinner ], + owl:onProperty :hasAwardRank ], [ a owl:Restriction ; owl:cardinality 1 ; owl:onProperty :concernsTender ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAwardRank ] . + owl:onProperty :indicatesAwardToWinner ] . cccev:Constraint rdfs:subClassOf [ a owl:Restriction ; owl:cardinality 1 ; @@ -2483,570 +2471,571 @@ cccev:Criterion rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty cccev:weightingConsiderationDescription ] . -:AgentInRole a owl:Class ; +cccev:InformationConcept a owl:Class ; rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :playedBy ] . - -:ContractLotCompletionInformation rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :providesContractTotalPaymentValue ], - [ a owl:Restriction ; + owl:onProperty adms:identifier ] . + +cccev:Requirement a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasPaymentValueDiscrepancyJustification ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :describesLotCompletion ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :refersToContract ], + owl:onProperty skos:prefLabel ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :providesContractTotalPenaltyValue ] . + owl:onProperty dcterms:description ] . -:ElementModificationDescription a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasElementReference ] . +dcterms:description rdfs:domain [ a owl:Class ; + owl:unionOf ( :ProcurementElement :System :AgentInRole cccev:ContactPoint cccev:Channel :NonDisclosureAgreementTerm :SecurityClearanceTerm :SubcontractTerm cccev:InformationConcept cccev:Requirement :Technique :SubcontractingEstimate :ElectronicSignature :Document :Fund ) ] ; + rdfs:range rdf:PlainLiteral . -:PlannedProcurementPart rdfs:subClassOf [ a owl:Restriction ; +:AwardEvaluationTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasPlannedDuration ], + owl:onProperty :hasOverallQualityAwardCriteriaPonderation ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :foreseesProcurementObject ], + owl:onProperty :hasOverallCostAwardCriteriaPonderation ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasPlannedPeriod ] . - -:ProcurementProcessInformation rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isCompetitionTerminated ], + owl:onProperty :hasAwardCriteriaOrderJustification ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :concernsProcedure ], + owl:onProperty :hasOverallPriceAwardCriteriaPonderation ] . + +:ConcessionEstimate rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEstimatedUserConcessionRevenue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isToBeRelaunched ], + owl:onProperty :hasEstimatedBuyerConcessionRevenue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :concernsLot ], + owl:onProperty :hasCalculationMethod ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isDPSTerminated ] . + owl:onProperty :hasConcessionEstimatedValue ] . -:ReviewDecision rdfs:subClassOf [ a owl:Restriction ; +:ContractLotCompletionInformation rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasDecisionDate ], + owl:onProperty :providesContractTotalPenaltyValue ], [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasRemedyValue ], + owl:cardinality 1 ; + owl:onProperty :refersToContract ], [ a owl:Restriction ; owl:cardinality 1 ; - owl:onProperty :resolvesReviewRequest ] . - -:AwardCriterion rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :describesLotCompletion ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasFixedValue ], + owl:onProperty :hasPaymentValueDiscrepancyJustification ], [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasAwardCriteriaStatedInProcurementDocuments ] . - -:DirectAwardTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :refersToPreviousProcedure ] . + owl:onProperty :providesContractTotalPaymentValue ] . -:ElementConfidentialityDescription rdfs:subClassOf [ a owl:Restriction ; +:DesignContestRegimeTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasConfidentialityJustification ], + owl:onProperty :hasParticipationPayment ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAccessibilityDate ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasPropertyReference ], + owl:onProperty :hasFollowupContract ], [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasInstanceReference ] . + owl:maxCardinality 1 ; + owl:onProperty :isJuryDecisionBinding ] . -:LotGroup rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :setsGroupingContextForLot ], - [ a owl:Restriction ; +:ElementModificationDescription a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . + owl:onProperty :hasElementReference ] . -:SubcontractTerm a owl:Class ; +:Fund a owl:Class ; rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasSubcontractorsProposedAboveObligation ], + owl:onProperty :hasURL ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasMinimumShare ], - [ a owl:Restriction ; + owl:onProperty adms:identifier ] . + +:ProcurementElement a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasSubcontractingInvolved ], + owl:onProperty :hasEstimatedValue ], [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty adms:identifier ] . + +:ReviewObject a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasMaximumShare ], + owl:onProperty :hasReviewURL ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasMinimumSubcontractorsProposedObligation ] . + owl:onProperty :refersToPreviousReview ] . -cccev:ContactPoint a owl:Class ; +:SelectionCriterion rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isUsedForCandidateRestriction ] . + +:SubcontractingEstimate a owl:Class ; rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty cccev:address ], + owl:onProperty :hasSubcontractingEstimatedValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty cccev:email ], - [ a owl:Restriction ; + owl:onProperty :hasEstimatedPercentage ] . + +cccev:Channel a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasContactName ], + owl:onProperty :hasAddressURL ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasInternetAddress ] . + owl:onProperty dcterms:description ] . -:LotAwardDecision rdfs:subClassOf [ a owl:Restriction ; +adms:identifier a owl:FunctionalProperty ; + rdfs:domain [ a owl:Class ; + owl:unionOf ( :Project :LotGroup :ProcurementElement foaf:Agent dcterms:Location cccev:InformationConcept :Document :Fund :Consignment :TransportEquipment :ShipmentStage :TransportEquipmentSeal :ShipmentInformation :Line :AbstractContainer ) ] ; + rdfs:range adms:Identifier . + +foaf:Agent a owl:Class . + +:AwardCriterion rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasFrameworkAgreementEstimatedValue ], + owl:onProperty :hasFixedValue ], [ a owl:Restriction ; owl:cardinality 1 ; - owl:onProperty :concernsLot ], - [ a owl:Restriction ; + owl:onProperty :hasAwardCriteriaStatedInProcurementDocuments ] . + +:ElementConfidentialityDescription rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasFrameworkAgreementMaximumValue ], + owl:onProperty :hasConfidentialityJustification ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasApproximateFrameworkAgreementValue ], + owl:onProperty :hasAccessibilityDate ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasInstanceReference ], [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasPropertyReference ] . + +:PlannedProcurementPart rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasNonAwardedContractTitle ], + owl:onProperty :hasPlannedDuration ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAwardedEstimatedValue ], + owl:onProperty :hasPlannedPeriod ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasNonAwardedContractNumber ] . + owl:onProperty :foreseesProcurementObject ] . -:NoticeAwardInformation rdfs:subClassOf [ a owl:Restriction ; +:ReviewDecision rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :resolvesReviewRequest ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasMaximumFrameworkAgreementAwardedValue ], + owl:onProperty :hasRemedyValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasProcurementLowestReceivedTenderValue ], + owl:onProperty :hasDecisionDate ] . + +:AgentInRole a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :playedBy ] . + +:FrameworkAgreementTerm rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasLaunchFrameworkAgreementMaximumValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasProcurementHighestReceivedTenderValue ], + owl:onProperty :hasLaunchGroupFrameworkAgreementMaximumValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasTotalAwardedValue ], + owl:onProperty :hasDurationExtensionJustification ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasApproximateFrameworkAgreementValue ] . + owl:onProperty :hasMaximumParticipantsNumber ] . -:ReviewRequest rdfs:subClassOf [ a owl:Restriction ; +:NoticeAwardInformation rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasWithdrawalDate ], + owl:onProperty :hasProcurementHighestReceivedTenderValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isWithdrawn ], + owl:onProperty :hasMaximumFrameworkAgreementAwardedValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasWithdrawalReason ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasNumberOfReviewRequests ], + owl:onProperty :hasTotalAwardedValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasRequestDate ], + owl:onProperty :hasApproximateFrameworkAgreementValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReviewRequestFee ] . + owl:onProperty :hasProcurementLowestReceivedTenderValue ] . -:Contractor rdfs:subClassOf [ a owl:Restriction ; +:LotGroup rdfs:subClassOf [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :setsGroupingContextForLot ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :needsToBeAWinner ] . + owl:onProperty adms:identifier ] . -:ElementChangeDescription a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; +:MultipleStageProcedureTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasProcurementDocumentChangeDate ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasElementReference ], + owl:onProperty :hasSuccessiveReduction ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isProcurementDocumentChanged ], + owl:onProperty :hasMinimumNumberOfCandidates ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalInformation ], + owl:onProperty :hasEstimatedInvitationToExpressInterestDate ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasPreviousVersionOfElementReference ] . - -:NonDisclosureAgreementTerm a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :hasQualificationSystemRenewalDescription ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isNonDisclosureAgreementRequired ], + owl:onProperty :hasQualificationSystemDuration ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty dcterms:description ] . - -:ParticipationRequestTerm rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :hasMaximumNumberOfCandidates ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesParticipationRequestProcessor ], + owl:onProperty :hasNoNegotiationNecessary ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesParticipationRequestReceiver ] . + owl:onProperty :hasEstimatedInvitationToTenderDate ] . -:Period rdfs:subClassOf [ a owl:Restriction ; +:SubcontractTerm a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasBeginning ], + owl:onProperty :hasMinimumSubcontractorsProposedObligation ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEnd ] . - -:Tenderer rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :hasMinimumShare ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :substantiatesExclusionGround ] . - -:Winner rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :hasSubcontractorsProposedAboveObligation ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :needsToBeATenderer ] . + owl:onProperty :hasMaximumShare ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasSubcontractingInvolved ] . -:SecurityClearanceTerm a owl:Class ; +:ElementChangeDescription a owl:Class ; rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasDeadline ], + owl:onProperty :hasPreviousVersionOfElementReference ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isSecurityClearanceRequired ] . - -:OpeningTerm rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :hasAdditionalInformation ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :isProcurementDocumentChanged ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasOpeningURL ], + owl:onProperty :hasProcurementDocumentChangeDate ], [ a owl:Restriction ; owl:cardinality 1 ; - owl:onProperty :hasOpeningDateTime ], + owl:onProperty :hasElementReference ] . + +:LotAwardDecision rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasApproximateFrameworkAgreementValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesOpeningPlace ] . - -cccev:Person rdfs:subClassOf [ a owl:Restriction ; + owl:onProperty :hasNonAwardedContractTitle ], + [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty person:placeOfDeath ], + owl:onProperty :hasNonAwardedContractNumber ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty cccev:birthDate ], + owl:onProperty :hasAwardedEstimatedValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty cccev:registeredAddress ], + owl:onProperty :hasFrameworkAgreementEstimatedValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty person:placeOfBirth ] . + owl:onProperty :hasFrameworkAgreementMaximumValue ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :concernsLot ] . -dcterms:Location rdfs:subClassOf [ a owl:Restriction ; +:ReviewRequest rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:geographicName ], + owl:onProperty :isWithdrawn ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:geographicIdentifier ], + owl:onProperty :hasWithdrawalDate ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:address ], + owl:onProperty :hasRequestDate ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasNumberOfReviewRequests ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:geometry ], + owl:onProperty :hasReviewRequestFee ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty adms:identifier ] . + owl:onProperty :hasWithdrawalReason ] . -:DesignContestRegimeTerm rdfs:subClassOf [ a owl:Restriction ; +cccev:ContactPoint a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasFollowupContract ], + owl:onProperty :hasContactName ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasParticipationPayment ], + owl:onProperty cccev:email ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isJuryDecisionBinding ] . + owl:onProperty :hasInternetAddress ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty cccev:address ] . -:ReviewObject a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; +:Period rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :refersToPreviousReview ], + owl:onProperty :hasBeginning ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReviewURL ] . + owl:onProperty :hasEnd ] . -locn:Address rdfs:subClassOf [ a owl:Restriction ; +:AccessTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:adminUnitL2 ], + owl:onProperty :isProcurementDocumentRestricted ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:locatorName ], + owl:onProperty :definesProcurementProcedureInformationProvider ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:adminUnitL1 ], + owl:onProperty :hasRestrictedAccessURL ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:fullAddress ], + owl:onProperty :hasPublicAccessURL ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:addressArea ], + owl:onProperty :hasAdditionalInformationDeadline ], [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty locn:addressID ], + owl:cardinality 1 ; + owl:onProperty :involvesProcurementDocument ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty locn:locatorDesignator ] . - -:JuryMember rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :playedBy ] . + owl:onProperty :definesOfflineAccessProvider ] . -:MultipleStageProcedureTerm rdfs:subClassOf [ a owl:Restriction ; +:AwardDecision rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasQualificationSystemRenewalDescription ], + owl:onProperty :hasBargainPrice ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasSuccessiveReduction ], + owl:onProperty :hasAwardedValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasMinimumNumberOfCandidates ], + owl:onProperty :hasAwardDecisionDate ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasQualificationSystemDuration ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMaximumNumberOfCandidates ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasNoNegotiationNecessary ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedInvitationToExpressInterestDate ], - [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedInvitationToTenderDate ] . + owl:onProperty :hasAdditionalNonAwardJustification ] . -:Procedure rdfs:subClassOf [ a owl:Restriction ; +:ProcedureTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isAccelerated ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasProcurementScopeDividedIntoLot ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :isSubjectToProcedureSpecificTerm ], + owl:onProperty :definesBudgetProvider ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isDesignContest ], + owl:onProperty :isSubmissionForAllLotsAllowed ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isJointProcurement ], + owl:onProperty :isAwardedByCPB ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isExecutedByProcurementServiceProvider ] . - -:ProcedureTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isSubmissionForAllLotsAllowed ], + owl:onProperty :hasMaximumNumberOfLotsToBeAwarded ], [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :hasMaximumLotSubmissionAllowed ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isAwardedByCPB ], + owl:onProperty :isOneLotOnlyAllowed ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isOneLotOnlyAllowed ], + owl:onProperty :definesMediator ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesBudgetProvider ], + owl:onProperty :hasLotAwardCombination ] . + +cccev:Person rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty person:placeOfDeath ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasLotAwardCombination ], + owl:onProperty person:placeOfBirth ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasMaximumNumberOfLotsToBeAwarded ], + owl:onProperty cccev:registeredAddress ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesMediator ] . - -:ProcurementServiceProvider rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :actsOnBehalfOf ] . + owl:onProperty cccev:birthDate ] . -:ProcurementObject a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; +dcterms:Location rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :foreseesConcession ], + owl:onProperty adms:identifier ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isUsingEUFunds ], + owl:onProperty locn:geographicIdentifier ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isSMESuitable ], + owl:onProperty locn:address ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasPurpose ], + owl:onProperty locn:geographicName ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasRecurrenceDescription ], - [ a owl:Restriction ; + owl:onProperty locn:geometry ] . + +:Buyer rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isRecurrent ], + owl:onProperty :isContractingEntity ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isCoveredByGPA ] . + owl:onProperty :hasBuyerProfile ] . -org:Organization a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasMainActivityDescription ], - [ a owl:Restriction ; +:Tender rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasOrganisationUnitName ], + owl:onProperty :foreseesConcession ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasLegalFormType ], + owl:onProperty :hasElectronicSubmission ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasBuyerLegalTypeDescription ], + owl:onProperty :isSubjectToGrouping ], [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty cccev:registeredAddress ] . - -:FrameworkAgreementTerm rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasLaunchGroupFrameworkAgreementMaximumValue ], + owl:cardinality 1 ; + owl:onProperty :isSubmittedForLot ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasMaximumParticipantsNumber ], + owl:onProperty :isSubmitedBy ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasDurationExtensionJustification ], + owl:onProperty :isVariant ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasLaunchFrameworkAgreementMaximumValue ] . + owl:onProperty :hasFinancialOfferValue ] . -:Document a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasVersion ], - [ a owl:Restriction ; +locn:Address rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasPublicationDate ], + owl:onProperty locn:adminUnitL1 ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasUUID ], + owl:onProperty locn:locatorName ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasDispatchDate ], + owl:onProperty locn:fullAddress ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReceptionDate ], + owl:onProperty locn:addressArea ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty dcterms:description ], + owl:onProperty locn:addressID ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty dcterms:title ], + owl:onProperty locn:adminUnitL2 ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty dcterms:issued ] . + owl:onProperty locn:locatorDesignator ] . -:AwardDecision rdfs:subClassOf [ a owl:Restriction ; +:Procedure rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalNonAwardJustification ], + owl:onProperty :isAccelerated ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasBargainPrice ], + owl:onProperty :isDesignContest ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAwardedValue ], + owl:onProperty :isJointProcurement ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :isSubjectToProcedureSpecificTerm ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAwardDecisionDate ] . + owl:onProperty :isExecutedByProcurementServiceProvider ], + [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :hasProcurementScopeDividedIntoLot ] . -:ContractTerm rdfs:subClassOf [ a owl:Restriction ; +org:Organization a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isRenewalIndicator ], + owl:onProperty :hasMainActivityDescription ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesContractPeriod ], + owl:onProperty :hasLegalFormType ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasLegalFormRequirement ], + owl:onProperty :hasBuyerLegalTypeDescription ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesContractDuration ], + owl:onProperty cccev:registeredAddress ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEInvoicing ], - [ a owl:Restriction ; + owl:onProperty :hasOrganisationUnitName ] . + +:ProcurementObject a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasMaximumNumberOfRenewals ], + owl:onProperty :isCoveredByGPA ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesPaymentExecutor ], + owl:onProperty :isUsingEUFunds ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReservedExecution ], + owl:onProperty :hasPurpose ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesSubcontractingTerm ], + owl:onProperty :isRecurrent ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasOptions ], + owl:onProperty :hasRecurrenceDescription ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEOrdering ], + owl:onProperty :isSMESuitable ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEPayment ] . + owl:onProperty :foreseesConcession ] . :SubmissionStatisticalInformation rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasMediumTenderPerLots ], + owl:onProperty :hasNonEEAReceivedTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReceivedParticipationRequests ], + owl:onProperty :hasSMEReceivedTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReceivedTenders ], + owl:onProperty :hasMediumTenderPerLots ], [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :hasNonEUReceivedTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasElectronicTenders ], + owl:onProperty :hasLowestReceivedTenderValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :hasHighestReceivedTenderValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEEAReceivedTenders ], + owl:onProperty :hasUnverifiedTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEUReceivedTenders ], + owl:onProperty :hasNumberOfTenderersInvited ], [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasUnverifiedTenders ], + owl:cardinality 1 ; + owl:onProperty :summarisesInformationForAwardDecision ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasNumberOfTenderersInvited ], + owl:onProperty :hasEEAReceivedTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasSMEReceivedTenders ], + owl:onProperty :hasElectronicTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasNonEEAReceivedTenders ], + owl:onProperty :hasReceivedTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasInadmissibleTenders ], + owl:onProperty :hasReceivedSmallTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :hasReceivedMicroTenders ], @@ -3055,555 +3044,282 @@ org:Organization a owl:Class ; owl:onProperty :hasEstimatedTotalSubcontracts ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasLowestReceivedTenderValue ], + owl:onProperty :hasOtherCountriesReceivedTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAbnormallyLowTenders ], + owl:onProperty :hasReceivedParticipationRequests ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReceivedSmallTenders ], + owl:onProperty :hasAbnormallyLowTenders ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasOtherCountriesReceivedTenders ], + owl:onProperty :hasEUReceivedTenders ], [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :summarisesInformationForAwardDecision ] . + owl:maxCardinality 1 ; + owl:onProperty :hasInadmissibleTenders ] . -:AccessTerm rdfs:subClassOf [ a owl:Restriction ; +:Contract rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasPublicAccessURL ], + owl:onProperty :hasContractValue ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesOfflineAccessProvider ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :involvesProcurementDocument ], + owl:onProperty :hasEstimatedDuration ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesProcurementProcedureInformationProvider ], + owl:onProperty :hasContractConclusionDate ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isProcurementDocumentRestricted ], + owl:onProperty :hasEntryIntoForceDate ], [ a owl:Restriction ; + owl:minCardinality 1 ; + owl:onProperty :hasLotReference ] . + +:ContractTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalInformationDeadline ], + owl:onProperty :hasMaximumNumberOfRenewals ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasRestrictedAccessURL ] . - -:Tender rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :isSubmittedForLot ], + owl:onProperty :hasEInvoicing ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isVariant ], + owl:onProperty :hasEOrdering ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :foreseesConcession ], + owl:onProperty :definesSubcontractingTerm ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isSubmitedBy ], + owl:onProperty :definesPaymentExecutor ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isSubjectToGrouping ], + owl:onProperty :hasOptions ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasElectronicSubmission ], + owl:onProperty :hasEPayment ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasFinancialOfferValue ] . - -:Quantity rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :hasQuantityValue ] . - -adms:Identifier rdfs:subClassOf [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty skos:notation ] . - -:Buyer rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :isContractingEntity ], + owl:onProperty :hasReservedExecution ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasBuyerProfile ] . - -:Contract rdfs:subClassOf [ a owl:Restriction ; - owl:maxCardinality 1 ; - owl:onProperty :hasEntryIntoForceDate ], - [ a owl:Restriction ; - owl:minCardinality 1 ; - owl:onProperty :hasLotReference ], + owl:onProperty :definesContractDuration ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasContractValue ], + owl:onProperty :hasLegalFormRequirement ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasContractConclusionDate ], + owl:onProperty :isRenewalIndicator ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEstimatedDuration ] . + owl:onProperty :definesContractPeriod ] . -:Notice a owl:Class ; +:Document a owl:Class ; rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasLongTitle ], - [ a owl:Restriction ; - owl:cardinality 1 ; - owl:onProperty :refersToProcedure ], + owl:onProperty dcterms:issued ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasOJSType ], + owl:onProperty :hasReceptionDate ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasFormNumber ], + owl:onProperty :hasDispatchDate ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isEUInstitution ], + owl:onProperty dcterms:description ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasNoticePublicationNumber ], + owl:onProperty :hasPublicationDate ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :refersToNotice ], + owl:onProperty dcterms:title ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasESenderDispatchDate ], + owl:onProperty :hasVersion ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEFormsSubtype ], + owl:onProperty :hasUUID ] . + +:Notice a owl:Class ; + rdfs:subClassOf [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasFormNumber ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasOJSIssueNumber ], + owl:onProperty :isEUInstitution ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasAdditionalInformation ], + owl:onProperty :hasOJSType ], [ a owl:Restriction ; owl:minCardinality 1 ; - owl:onProperty :refersToLot ] . - + owl:onProperty :refersToLot ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasLongTitle ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :refersToNotice ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasAdditionalInformation ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasOJSIssueNumber ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasNoticePublicationNumber ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasESenderDispatchDate ], + [ a owl:Restriction ; + owl:maxCardinality 1 ; + owl:onProperty :hasEFormsSubtype ], + [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :refersToProcedure ] . + :SubmissionTerm rdfs:subClassOf [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isAdvancedElectronicSignatureRequired ], + owl:onProperty :isGuaranteeRequired ], [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :hasTenderValidityPeriod ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReceiptPreliminaryMarketConsultationDeadline ], + owl:onProperty :hasEAuctionURL ], [ a owl:Restriction ; owl:maxCardinality 1 ; owl:onProperty :hasReceiptExpressionDeadline ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesTenderProcessor ], + owl:onProperty :hasReceiptParticipationRequestDeadline ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReceiptTenderDeadline ], + owl:onProperty :hasReceiptDeadline ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isMultipleTenderSubmissionAllowed ], + owl:onProperty :isAdvancedElectronicSignatureRequired ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasEAuctionURL ], + owl:onProperty :definesTenderProcessor ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :isGuaranteeRequired ], + owl:onProperty :hasReceiptPreliminaryMarketConsultationDeadline ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :definesTenderReceiver ], + owl:onProperty :isMultipleTenderSubmissionAllowed ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReceiptParticipationRequestDeadline ], + owl:onProperty :definesTenderReceiver ], [ a owl:Restriction ; owl:maxCardinality 1 ; - owl:onProperty :hasReceiptDeadline ] . + owl:onProperty :hasReceiptTenderDeadline ] . -:MonetaryValue rdfs:subClassOf [ a owl:Restriction ; +:Quantity rdfs:subClassOf [ a owl:Restriction ; owl:cardinality 1 ; - owl:onProperty :hasAmountValue ] . + owl:onProperty :hasQuantityValue ] . -[] a owl:AllDisjointClasses ; - owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . +adms:Identifier rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty skos:notation ] . -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . +:MonetaryValue rdfs:subClassOf [ a owl:Restriction ; + owl:cardinality 1 ; + owl:onProperty :hasAmountValue ] . [] a owl:AllDisjointClasses ; - owl:members ( :SubcontractTerm :ContractTerm ) . + owl:members ( :ExclusionGround :SelectionCriterion ) . [] a owl:AllDisjointClasses ; - owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . + owl:members ( :AwardEvaluationTerm :SelectionEvaluationTerm ) . [] a owl:AllDisjointClasses ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . + owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . [] a owl:AllDisjointClasses ; - owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . + owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . [] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + owl:members ( :System org:Organization foaf:Person ) . [] a owl:AllDisjointClasses ; - owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . + owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . [] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . + owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . [] a owl:AllDisjointClasses ; owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . - [] a owl:AllDisjointClasses ; owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . [] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubcontractTerm :ContractTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . [] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + owl:members ( :SubcontractingEstimate :ConcessionEstimate ) . [] a owl:AllDisjointClasses ; - owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . + owl:members ( :SubcontractTerm :ContractTerm ) . [] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . + owl:members ( :ExclusionGroundsSummary :SelectionCriteriaSummary ) . [] a owl:AllDisjointClasses ; owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - [] a owl:AllDisjointClasses ; owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . [] a owl:AllDisjointClasses ; - owl:members ( :Procedure :Lot ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . + owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . [] a owl:AllDisjointClasses ; owl:members ( :MiniCompetitionAwardDecision :LotAwardDecision ) . -[] a owl:AllDisjointClasses ; - owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :IndefiniteDuration :SpecificDuration ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - [] a owl:AllDisjointClasses ; owl:members ( :IndefiniteDuration :SpecificDuration ) . -[] a owl:AllDisjointClasses ; - owl:members ( :ExclusionGroundsSummary :SelectionCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - [] a owl:AllDisjointClasses ; owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :TaxInformationProvider :EnvironmentalProtectionInformationProvider :EmploymentInformationProvider ) . - [] a owl:AllDisjointClasses ; owl:members ( :ReviewDecision :ReviewRequest ) . -[] a owl:AllDisjointClasses ; - owl:members ( :MiniCompetitionAwardDecision :LotAwardDecision ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ExclusionGroundsSummary :SelectionCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :System org:Organization foaf:Person ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AccessTerm :ProcedureTerm :SubmissionTerm :FrameworkAgreementTerm :DirectAwardTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ExclusionGround :SelectionCriterion ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :LeadBuyer :CentralPurchasingBody ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - [] a owl:AllDisjointClasses ; owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . -[] a owl:AllDisjointClasses ; - owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . - [] a owl:AllDisjointClasses ; owl:members ( :AcquiringCentralPurchasingBody :AwardingCentralPurchasingBody ) . [] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . [] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + owl:members ( :DirectContract :ConcessionContract :PurchaseContract :FrameworkAgreement ) . [] a owl:AllDisjointClasses ; - owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . + owl:members ( :LeadBuyer :CentralPurchasingBody ) . [] a owl:AllDisjointClasses ; owl:members ( :ProcurementObject :PlannedProcurementPart ) . [] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriterion :ParticipationCondition :QualificationCriterion ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AcquiringParty :OfferingParty :AuxiliaryParty ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubcontractingEstimate :ConcessionEstimate ) . + owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . [] a owl:AllDisjointClasses ; owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . [] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . + owl:members ( cccev:PublicOrganisation :Business :OrganisationGroup ) . [] a owl:AllDisjointClasses ; owl:members ( :ContractSpecificTerm :LotSpecificTerm :ProcedureSpecificTerm :ProcessPlanningTerm ) . -[] a owl:AllDisjointClasses ; - owl:members ( :ExclusionGround :SelectionCriterion ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :StatisticalInformation :ProcurementProcessInformation :NoticeAwardInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ReviewDecision :ReviewRequest ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AcquiringCentralPurchasingBody :AwardingCentralPurchasingBody ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DynamicPurchaseSystemTechnique :EAuctionTechnique :FrameworkAgreementTechnique ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubcontractingEstimate :ConcessionEstimate ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardEvaluationTerm :SelectionEvaluationTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :GreenProcurement :InnovativeProcurement :SocialProcurement ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardCriteriaSummary :ParticipationConditionsSummary :QualificationCriteriaSummary ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :OriginatorRequest :Tender :Offer :ProcurementDocument :Notice :RequestForClarification :Contract :ReviewObject :AwardDecision :ExpressionOfInterest :RequestForParticipation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :LeadBuyer :CentralPurchasingBody ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ContractModification :NoticeChange :PublicationProvision ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SubmissionStatisticalInformation :ReviewRequestSummary :ReviewIrregularitySummary ) . - [] a owl:AllDisjointClasses ; owl:members ( :Procedure :Lot ) . [] a owl:AllDisjointClasses ; - owl:members ( :System org:Organization foaf:Person ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :ProcurementObject :PlannedProcurementPart ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :SecurityClearanceTerm :ParticipationRequestTerm :DesignContestRegimeTerm :OpeningTerm :SubmissionTerm :EvaluationTerm :NonDisclosureAgreementTerm :AccessTerm :MultipleStageProcedureTerm :FrameworkAgreementTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :LotGroupAwardInformation :TenderAwardOutcome :ContractLotCompletionInformation ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Candidate :CatalogueProvider :Contractor :Tenderer :OtherEntity :ReviewRequester :Subcontractor :OfferIssuer :Winner ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :AwardEvaluationTerm :SelectionEvaluationTerm ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :System org:Organization foaf:Person ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Mediator :JuryMember :ParticipationRequestProcessor :ProcurementServiceProvider :ProcurementProcedureInformationProvider :Reviewer :TenderReceiver :PaymentExecutor :Awarder :BudgetProvider :Buyer :OfflineAccessProvider :TenderProcessor :ReviewProcedureInformationProvider :CatalogueReceiver :ParticipationRequestReceiver ) . + owl:members ( :ElementChangeDescription :ElementConfidentialityDescription :ElementModificationDescription ) . [] a owl:AllDisjointClasses ; - owl:members ( cccev:Constraint cccev:Criterion :ProcurementCriteriaSummary ) . + owl:members ( :EconomicStandingSummary :ProfessionalSuitabilitySummary :TechnicalAbilitySummary ) . diff --git a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf index 8d5657c..eeeb23b 100644 --- a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf +++ b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.rdf @@ -56,14 +56,15 @@ eProcurement Ontology - core shapes + eProcurement Ontology Ordering - core shapes http://publications.europa.eu/resource/authority/corporate-body/PUBL The eProcurement Ontology core shapes provides the generic datashape specifications for the eProcurement Ontology core. - This version is automatically generated from demo_ontology_CM.xml on 2023-11-01 + This version is automatically generated from demo_ontology_CM.xml on 2023-11-09 - 2023-11-01 + 2023-11-09 2021-06-01 4.0.0 3.1.0 diff --git a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl index e27ea5c..09402ef 100644 --- a/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl +++ b/implementation/demo_ontology/shacl_shapes/demo_ontology_CM_shapes.ttl @@ -5329,15 +5329,16 @@ core-shape:owl-Thing-epo-containsModificationsOf a sh:PropertyShape ; sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] . core-shape:core-shape a owl:Ontology ; + rdfs:label "eProcurement Ontology Ordering - core shapes"@en ; dcterms:created "2021-06-01"^^xsd:date ; dcterms:description "The eProcurement Ontology core shapes provides the generic datashape specifications for the eProcurement Ontology core."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:issued "2023-11-09"^^xsd:date ; dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; dcterms:title "eProcurement Ontology - core shapes"@en ; vann:preferredNamespacePrefix "epo" ; vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment "This version is automatically generated from demo_ontology_CM.xml on 2023-11-01" ; + rdfs:comment "This version is automatically generated from demo_ontology_CM.xml on 2023-11-09" ; rdfs:seeAlso , , , diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf index f74eae5..4c75789 100644 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf +++ b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.rdf @@ -51,14 +51,15 @@ eProcurement Ontology Notice - core + eProcurement Ontology Ordering - core The eProcurement Ontology Notice core describes the concepts and properties representing the European Public Procurement Notice domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact. http://publications.europa.eu/resource/authority/corporate-body/PUBL - This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01 + This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-09 - 2023-11-01 + 2023-11-09 2021-06-01 4.0.0 3.1.0 @@ -820,95 +821,65 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + for ReviewBody + + + What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist. + + + When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level. + + + should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level? + + + Preliminary Market Consultation This should be implemented in the future. + + + this is a buyer profile, not a PIN. + + + This value is NOT yet part of the notice-type controlled vocabulary. + + + where does this belong to? + + + where does this belong to? + + + This can be PIN or Concession award notice + + + This can be PIN (maybe CFC), CN or CAN. + + + What is the notice type here? + + + What is the notice type here? + + + What is the notice type here? + + + - - + + - - + + - - + + - - + + - - + + @@ -940,42 +911,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1000,9746 +935,332 @@ - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -10849,48 +1370,6 @@ - - for ReviewBody - - - What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist. - - - When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level. - - - should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level? - - - Preliminary Market Consultation This should be implemented in the future. - - - this is a buyer profile, not a PIN. - - - This value is NOT yet part of the notice-type controlled vocabulary. - - - where does this belong to? - - - where does this belong to? - - - This can be PIN or Concession award notice - - - This can be PIN (maybe CFC), CN or CAN. - - - What is the notice type here? - - - What is the notice type here? - - - What is the notice type here? - Announces completion of contract diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl index c57791b..bf64ad3 100644 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl +++ b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM.ttl @@ -63,6 +63,7 @@ :CompletionNotice a owl:Class ; rdfs:isDefinedBy :not ; + rdfs:subClassOf :Notice ; skos:definition "An announcement of the end of a Procurement by a Buyer."@en ; skos:editorialNote "What is the Form type here? There is no form type, because this is a new notice type. What is the Notice type here? This will be added to the codelist."@en ; skos:prefLabel "Completion notice"@en . @@ -607,6 +608,7 @@ :DirectAwardPrenotificationNotice a owl:Class ; rdfs:isDefinedBy :not ; + rdfs:subClassOf :Notice ; skos:definition "Notice which sets out the Buyer's purchasing intention to award a Contract without prior notification of Competition."@en ; skos:prefLabel "Direct award prenotification notice"@en . @@ -646,6 +648,7 @@ :ResultNotice a owl:Class ; rdfs:isDefinedBy :not ; + rdfs:subClassOf :Notice ; skos:definition "An announcement of the award or non-award of a Contract by a Buyer. (WG approval 27/03/2019)"@en ; skos:prefLabel "Result notice"@en . @@ -682,12 +685,14 @@ :PlanningNotice a owl:Class ; rdfs:isDefinedBy :not ; + rdfs:subClassOf :Notice ; skos:definition "Notice which sets out the Contracting Authority's purchasing intentions. It is used by Contracting Authorities to provide Suppliers with information about a Procurement Process."@en ; skos:editorialNote "When backwards compatibility to StandardForms is no longer required, switch to establishing the notice type constraint at this level."@en ; skos:prefLabel "Planning notice"@en . :ContractModificationNotice a owl:Class ; rdfs:isDefinedBy :not ; + rdfs:subClassOf :Notice ; skos:definition "An announcement of the Modification Of a Contract/Concession during its term by a Procuring Entity."@en ; skos:editorialNote "should we move refersToOriginalNotice at this level or should we use refersToNotice relation from the Notice level?"@en ; skos:prefLabel "Contract modification notice"@en . @@ -699,6 +704,7 @@ :CompetitionNotice a owl:Class ; rdfs:isDefinedBy :not ; + rdfs:subClassOf :Notice ; skos:definition "An announcement of the launch of a Procurement Procedure by a Procuring Entity. WG approval 18/05/2018"@en ; skos:prefLabel "Competition notice"@en . @@ -717,15 +723,16 @@ skos:prefLabel "E forms notice"@en . :not a owl:Ontology ; + rdfs:label "eProcurement Ontology Ordering - core"@en ; dcterms:created "2021-06-01"^^xsd:date ; dcterms:description "The eProcurement Ontology Notice core describes the concepts and properties representing the European Public Procurement Notice domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:issued "2023-11-09"^^xsd:date ; dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; dcterms:title "eProcurement Ontology Notice - core"@en ; vann:preferredNamespacePrefix "epo" ; vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment "This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01" ; + rdfs:comment "This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-09" ; rdfs:seeAlso , , , diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf index 6948dd9..4c9c154 100644 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf +++ b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.rdf @@ -53,15 +53,16 @@ eProcurement Ontology Notice - core restrictions + eProcurement Ontology Ordering - core restrictions http://publications.europa.eu/resource/authority/corporate-body/PUBL The eProcurement Ontology Notice core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology Notice core. This version is automatically generated from demo_ontology_module_CM.xml on - 2023-11-01 + 2023-11-09 - 2023-11-01 + 2023-11-09 2021-06-01 4.0.0 3.1.0 @@ -83,56 +84,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + @@ -155,33 +112,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -197,3998 +127,190 @@ - - - - - - - + + + + + - - - - - - - + + + + + - - - - - - - + + + + + + - - - - - - - + + + + + - - - - - - - + + + + - - - - - - - + + + + + - - - - - + + + + - - - - - + + + + + - - - - - + + + - - - - - + + + - - - - - + + - - - - - + + + + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - + + + + - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl index 734f820..80651f4 100644 --- a/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl +++ b/implementation/demo_ontology_module/owl_ontology/demo_ontology_module_CM_restrictions.ttl @@ -65,16 +65,17 @@ owl:unionOf ( :ResultNotice :DirectAwardPrenotificationNotice ) ] . :not-restriction a owl:Ontology ; + rdfs:label "eProcurement Ontology Ordering - core restrictions"@en ; dcterms:created "2021-06-01"^^xsd:date ; dcterms:description "The eProcurement Ontology Notice core restrictions provides the restrictions and the inference-related specifications on the concepts and properties in the eProcurement Ontology Notice core."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:issued "2023-11-09"^^xsd:date ; dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; dcterms:title "eProcurement Ontology Notice - core restrictions"@en ; vann:preferredNamespacePrefix "epo" ; vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; rdfs:comment """This version is automatically generated from demo_ontology_module_CM.xml on - 2023-11-01""" ; + 2023-11-09""" ; rdfs:seeAlso , , , @@ -138,199 +139,31 @@ owl:onProperty skos:inScheme ] . [] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + owl:members ( :Subcontract-D81 :Notice22 ) . [] a owl:AllDisjointClasses ; owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . [] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . + owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . [] a owl:AllDisjointClasses ; owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . [] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Subcontract-D81 :Notice22 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . + owl:members ( :CompletionNotice :ContractModificationNotice :ResultNotice :DirectAwardPrenotificationNotice :CompetitionNotice :PlanningNotice ) . [] a owl:AllDisjointClasses ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . + owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . [] a owl:AllDisjointClasses ; owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . -[] a owl:AllDisjointClasses ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - [] a owl:AllDisjointClasses ; owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . [] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . + owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . [] a owl:AllDisjointClasses ; owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . @@ -338,288 +171,33 @@ [] a owl:AllDisjointClasses ; owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - [] a owl:AllDisjointClasses ; owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . [] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . + owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . [] a owl:AllDisjointClasses ; owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - [] a owl:AllDisjointClasses ; owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . [] a owl:AllDisjointClasses ; owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . -[] a owl:AllDisjointClasses ; - owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :DesignContest-D24 :DesignContest-D25 :Notice23 :Notice24 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Subcontract-D81 :Notice22 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PMCNotice :PINTimeLimitNotice :PINOnlyNotice :PINDefence-D81 :PINProfileNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CNSocialNotice-D25 :Notice20 :CNSocial-D25 :Notice21 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice36 :Notice37 :DesignContestResult-D25 :DesignContestResult-D24 ) . - [] a owl:AllDisjointClasses ; owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - [] a owl:AllDisjointClasses ; owl:members ( :Notice2 :PINProfile-D25 :PINProfile-D81 :Notice3 :PINProfile-D24 :Notice1 ) . [] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice14 :Notice13 :Notice12 :PIN-CFCSocialNotice-D25 :PIN-CFCSocial-D25 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . + owl:members ( :QS-D25 :QSNotice-D25 :Notice15 ) . [] a owl:AllDisjointClasses ; owl:members ( :Notice4 :Notice5 :Notice6 :PINOnly-D24 :PINOnly-D25 ) . -[] a owl:AllDisjointClasses ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice31 :CANStandard-D24 :Notice30 :Notice32 :Notice29 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Modification-D24 :Notice39 :Modification-D25 :Notice38 :Modification-D23 :Notice40 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :VEAT-D81 :VEAT-D23 :VEAT-D24 :Notice25 :Notice27 :Notice26 :VEAT-D25 :Notice28 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice16 :Notice19 :CNStandard-D24 :Notice18 :Notice17 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandard-D24 :Notice11 :Notice10 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-CFCStandardNotice :PIN-CFCSocialNotice :CNSocialNotice :QSNotice :CNStandardNotice :DesignContestNotice :SubcontractNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice33 :CANSocial-D25 :Notice35 :CANSocialNotice-D25 :Notice34 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :PIN-RTL-D25 :Notice9 :PIN-RTL-D24 :Notice7 :Notice8 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :Notice13 :Notice12 :Notice40 :Notice9 :Notice20 :Notice26 :Notice31 :Notice8 :Notice19 :Notice29 :Notice5 :Notice21 :Notice14 :Notice7 :Notice10 :Notice1 :Notice30 :Notice32 :Notice11 :Notice24 :Notice35 :Notice39 :Notice17 :Notice34 :Notice38 :Notice15 :Notice28 :Notice37 :Notice6 :Notice36 :Notice16 :Notice23 :Notice4 :Notice25 :Notice3 :Notice22 :Notice27 :Notice18 :Notice2 :Notice33 ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANDefence-D81 :CANSocialNotice :CANStandardNotice :DesignContestResultNotice ) . - -[] a owl:AllDisjointClasses ; - owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . - [] a owl:AllDisjointClasses ; owl:members ( :CANSocialNotice-D25 :VEAT-D25 :CNSocialNotice-D25 :PIN-CFCSocialNotice-D25 :PINOnly-D24 :SocialAndOtherSpecificServices-D23 :PINProfile-D24 :DesignContestResult-D24 :DesignContestResult-D25 :DesignContest-D25 :VEAT-D81 :PIN-RTL-D24 :PINOnly-D25 :CANStandard-D24 :PINProfile-D25 :CNDefence-D81 :PIN-RTL-D25 :SocialAndOtherSpecificServices-D24 :ConcessionNotice-D23 :Modification-D24 :CNStandard-D24 :DesignContest-D24 :QSNotice-D25 :CNSocial-D25 :Modification-D25 :CANSocial-D25 :PIN-CFCSocial-D25 :PINProfile-D81 :VEAT-D24 :QS-D25 :Subcontract-D81 :VEAT-D23 :ConcessionAwardNotice-D23 :PIN-CFCStandard-D24 :CANDefence-D81 :Modification-D23 ) . diff --git a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf index a483a83..a9b7e69 100644 --- a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf +++ b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.rdf @@ -56,14 +56,15 @@ eProcurement Ontology Notice - core shapes + eProcurement Ontology Ordering - core shapes http://publications.europa.eu/resource/authority/corporate-body/PUBL The eProcurement Ontology Notice core shapes provides the generic datashape specifications for the eProcurement Ontology Notice core. - This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01 + This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-09 - 2023-11-01 + 2023-11-09 2021-06-01 4.0.0 3.1.0 diff --git a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl index 5d377af..acdfbd4 100644 --- a/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl +++ b/implementation/demo_ontology_module/shacl_shapes/demo_ontology_module_CM_shapes.ttl @@ -542,15 +542,16 @@ not-shape:pin-buyer rdfs:comment "this is a buyer profile, not a PIN." . not-shape:pmc rdfs:comment "This value is NOT yet part of the notice-type controlled vocabulary." . not-shape:not-shape a owl:Ontology ; + rdfs:label "eProcurement Ontology Ordering - core shapes"@en ; dcterms:created "2021-06-01"^^xsd:date ; dcterms:description "The eProcurement Ontology Notice core shapes provides the generic datashape specifications for the eProcurement Ontology Notice core."@en ; - dcterms:issued "2023-11-01"^^xsd:date ; + dcterms:issued "2023-11-09"^^xsd:date ; dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; dcterms:title "eProcurement Ontology Notice - core shapes"@en ; vann:preferredNamespacePrefix "epo" ; vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; - rdfs:comment "This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-01" ; + rdfs:comment "This version is automatically generated from demo_ontology_module_CM.xml on 2023-11-09" ; rdfs:seeAlso , , ,