Skip to content

Commit 1e89027

Browse files
committed
Fix SelectionTerm parameter mixup in SDK v1.3-1.8
The fields BT-752-Lot (weight) `cccev:weight` and co-occurent BT-752-Lot (threshold) `epo:hasTresholdValue` were being confused for one or the other in certain notices. Either the weight will be a duplicate of the threshold, the threshold be mistaken for the weight, or the weight be mistaken for the threshold. The effect can be hard to observe, because numbers can often be the same for both, or they don't co-occur. The fix lies in the conditional checks in the predicate mappings, where the notation `if(exists(SOME_CONDITION/something='value')) then ...` is not valid. The equality needs to be wrapped in an XPath filter/predicate `[]` such that `if(exists(SOME_CONDITION[something='value'])) then ...`, otherwise the condition would always return True (a value would always exist, not being checked for what the value is). Interestingly, in the recent fix for SelectionCriterion vs. SelectionTerm for these properties (weight and threshold), some notices would show a welcome change (introduction of `cccev:weight`), but in others, for e.g. our SDK v1.8 example, the same change is observed but is in fact unwelcome (in hindsight).
1 parent e4d9c26 commit 1e89027

12 files changed

Lines changed: 12 additions & 48 deletions

File tree

mappings/package_eforms_sdk1.3_epo4.0/transformation/mappings/Lot_v1.3-1.8.rml.ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ tedm:MG-SelectionCriterion-specifiesProcurementCriterion-Lot_ND-SecondStageCrite
143143
[
144144
tedm:minSDKVersion "1.3" ;
145145
tedm:maxSDKVersion "1.8" ;
146-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-weight')) then efbc:ParameterNumeric else null";
146+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-weight'])) then efbc:ParameterNumeric else null";
147147
rr:datatype xsd:decimal;
148148
] ;
149149
] ;
@@ -189,7 +189,7 @@ tedm:MG-Constraint-hasConstraint-SelectionCriterion-specifiesProcurementCriterio
189189
[
190190
tedm:minSDKVersion "1.3" ;
191191
tedm:maxSDKVersion "1.8" ;
192-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-threshold')) then efbc:ParameterNumeric else null";
192+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-threshold'])) then efbc:ParameterNumeric else null";
193193
rr:datatype xsd:decimal;
194194
] ;
195195
] ;

mappings/package_eforms_sdk1.5_epo4.0/transformation/mappings/Lot_v1.3-1.8.rml.ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ tedm:MG-SelectionCriterion-specifiesProcurementCriterion-Lot_ND-SecondStageCrite
143143
[
144144
tedm:minSDKVersion "1.3" ;
145145
tedm:maxSDKVersion "1.8" ;
146-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-weight')) then efbc:ParameterNumeric else null";
146+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-weight'])) then efbc:ParameterNumeric else null";
147147
rr:datatype xsd:decimal;
148148
] ;
149149
] ;
@@ -189,7 +189,7 @@ tedm:MG-Constraint-hasConstraint-SelectionCriterion-specifiesProcurementCriterio
189189
[
190190
tedm:minSDKVersion "1.3" ;
191191
tedm:maxSDKVersion "1.8" ;
192-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-threshold')) then efbc:ParameterNumeric else null";
192+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-threshold'])) then efbc:ParameterNumeric else null";
193193
rr:datatype xsd:decimal;
194194
] ;
195195
] ;

mappings/package_eforms_sdk1.6_epo4.0/transformation/mappings/Lot_v1.3-1.8.rml.ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ tedm:MG-SelectionCriterion-specifiesProcurementCriterion-Lot_ND-SecondStageCrite
143143
[
144144
tedm:minSDKVersion "1.3" ;
145145
tedm:maxSDKVersion "1.8" ;
146-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-weight')) then efbc:ParameterNumeric else null";
146+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-weight'])) then efbc:ParameterNumeric else null";
147147
rr:datatype xsd:decimal;
148148
] ;
149149
] ;
@@ -189,7 +189,7 @@ tedm:MG-Constraint-hasConstraint-SelectionCriterion-specifiesProcurementCriterio
189189
[
190190
tedm:minSDKVersion "1.3" ;
191191
tedm:maxSDKVersion "1.8" ;
192-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-threshold')) then efbc:ParameterNumeric else null";
192+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-threshold'])) then efbc:ParameterNumeric else null";
193193
rr:datatype xsd:decimal;
194194
] ;
195195
] ;

mappings/package_eforms_sdk1.7_epo4.0/transformation/mappings/Lot_v1.3-1.8.rml.ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ tedm:MG-SelectionCriterion-specifiesProcurementCriterion-Lot_ND-SecondStageCrite
143143
[
144144
tedm:minSDKVersion "1.3" ;
145145
tedm:maxSDKVersion "1.8" ;
146-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-weight')) then efbc:ParameterNumeric else null";
146+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-weight'])) then efbc:ParameterNumeric else null";
147147
rr:datatype xsd:decimal;
148148
] ;
149149
] ;
@@ -189,7 +189,7 @@ tedm:MG-Constraint-hasConstraint-SelectionCriterion-specifiesProcurementCriterio
189189
[
190190
tedm:minSDKVersion "1.3" ;
191191
tedm:maxSDKVersion "1.8" ;
192-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-threshold')) then efbc:ParameterNumeric else null";
192+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-threshold'])) then efbc:ParameterNumeric else null";
193193
rr:datatype xsd:decimal;
194194
] ;
195195
] ;

mappings/package_eforms_sdk1.8_epo4.0/transformation/mappings/Lot_v1.3-1.8.rml.ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ tedm:MG-SelectionCriterion-specifiesProcurementCriterion-Lot_ND-SecondStageCrite
143143
[
144144
tedm:minSDKVersion "1.3" ;
145145
tedm:maxSDKVersion "1.8" ;
146-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-weight')) then efbc:ParameterNumeric else null";
146+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-weight'])) then efbc:ParameterNumeric else null";
147147
rr:datatype xsd:decimal;
148148
] ;
149149
] ;
@@ -189,7 +189,7 @@ tedm:MG-Constraint-hasConstraint-SelectionCriterion-specifiesProcurementCriterio
189189
[
190190
tedm:minSDKVersion "1.3" ;
191191
tedm:maxSDKVersion "1.8" ;
192-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-threshold')) then efbc:ParameterNumeric else null";
192+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-threshold'])) then efbc:ParameterNumeric else null";
193193
rr:datatype xsd:decimal;
194194
] ;
195195
] ;

src/mappings-versioned/Lot_v1.3-1.8.rml.ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ tedm:MG-SelectionCriterion-specifiesProcurementCriterion-Lot_ND-SecondStageCrite
143143
[
144144
tedm:minSDKVersion "1.3" ;
145145
tedm:maxSDKVersion "1.8" ;
146-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-weight')) then efbc:ParameterNumeric else null";
146+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-weight'])) then efbc:ParameterNumeric else null";
147147
rr:datatype xsd:decimal;
148148
] ;
149149
] ;
@@ -189,7 +189,7 @@ tedm:MG-Constraint-hasConstraint-SelectionCriterion-specifiesProcurementCriterio
189189
[
190190
tedm:minSDKVersion "1.3" ;
191191
tedm:maxSDKVersion "1.8" ;
192-
rml:reference "if (exists(efbc:ParameterCode/@listName='number-threshold')) then efbc:ParameterNumeric else null";
192+
rml:reference "if (exists(efbc:ParameterCode[@listName='number-threshold'])) then efbc:ParameterNumeric else null";
193193
rr:datatype xsd:decimal;
194194
] ;
195195
] ;

src/output-versioned/cn_24_maximal-1.3.ttl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_2Y8NzdfvWC5GNYLbH
10481048
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10491049
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/tp-abil>;
10501050
epo:isUsedForCandidateRestriction true;
1051-
cccev:weight 3.0;
10521051
dct:description "Selection Criteria Description ---"@en;
10531052
skos:prefLabel "Name of the selection criteria---"@en .
10541053

@@ -1059,7 +1058,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_9xGCswiFAKWwQgitq
10591058
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10601059
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/tp-abil>;
10611060
epo:isUsedForCandidateRestriction true;
1062-
cccev:weight 3.0;
10631061
dct:description "Selection Criteria Description ---"@en;
10641062
skos:prefLabel "Name of the selection criteria---"@en .
10651063

@@ -1070,7 +1068,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_Bkpcxn7EFoAsBBzSi
10701068
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10711069
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/sui-act>;
10721070
epo:isUsedForCandidateRestriction true;
1073-
cccev:weight 3.0;
10741071
dct:description "Selection Criteria Description ---"@en;
10751072
skos:prefLabel "Name of the selection criteria---"@en .
10761073

@@ -1081,7 +1078,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_LPqCAx6u8AHZs68Sm
10811078
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10821079
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/ef-stand>;
10831080
epo:isUsedForCandidateRestriction true;
1084-
cccev:weight 3.0;
10851081
dct:description "Selection Criteria Description ---"@en;
10861082
skos:prefLabel "Name of the selection criteria---"@en .
10871083

@@ -1092,7 +1088,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_bxHGbwwHUP9MfJv6P
10921088
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10931089
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/ef-stand>;
10941090
epo:isUsedForCandidateRestriction true;
1095-
cccev:weight 3.0;
10961091
dct:description "Selection Criteria Description ---"@en;
10971092
skos:prefLabel "Name of the selection criteria---"@en .
10981093

@@ -1103,7 +1098,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_j76qWqsuJdCtjNmRv
11031098
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
11041099
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/sui-act>;
11051100
epo:isUsedForCandidateRestriction true;
1106-
cccev:weight 3.0;
11071101
dct:description "Selection Criteria Description ---"@en;
11081102
skos:prefLabel "Name of the selection criteria---"@en .
11091103

src/output-versioned/cn_24_maximal-1.4.ttl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_2Y8NzdfvWC5GNYLbH
10481048
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10491049
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/tp-abil>;
10501050
epo:isUsedForCandidateRestriction true;
1051-
cccev:weight 3.0;
10521051
dct:description "Selection Criteria Description ---"@en;
10531052
skos:prefLabel "Name of the selection criteria---"@en .
10541053

@@ -1059,7 +1058,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_9xGCswiFAKWwQgitq
10591058
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10601059
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/tp-abil>;
10611060
epo:isUsedForCandidateRestriction true;
1062-
cccev:weight 3.0;
10631061
dct:description "Selection Criteria Description ---"@en;
10641062
skos:prefLabel "Name of the selection criteria---"@en .
10651063

@@ -1070,7 +1068,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_Bkpcxn7EFoAsBBzSi
10701068
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10711069
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/sui-act>;
10721070
epo:isUsedForCandidateRestriction true;
1073-
cccev:weight 3.0;
10741071
dct:description "Selection Criteria Description ---"@en;
10751072
skos:prefLabel "Name of the selection criteria---"@en .
10761073

@@ -1081,7 +1078,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_LPqCAx6u8AHZs68Sm
10811078
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10821079
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/ef-stand>;
10831080
epo:isUsedForCandidateRestriction true;
1084-
cccev:weight 3.0;
10851081
dct:description "Selection Criteria Description ---"@en;
10861082
skos:prefLabel "Name of the selection criteria---"@en .
10871083

@@ -1092,7 +1088,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_bxHGbwwHUP9MfJv6P
10921088
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10931089
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/ef-stand>;
10941090
epo:isUsedForCandidateRestriction true;
1095-
cccev:weight 3.0;
10961091
dct:description "Selection Criteria Description ---"@en;
10971092
skos:prefLabel "Name of the selection criteria---"@en .
10981093

@@ -1103,7 +1098,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_j76qWqsuJdCtjNmRv
11031098
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
11041099
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/sui-act>;
11051100
epo:isUsedForCandidateRestriction true;
1106-
cccev:weight 3.0;
11071101
dct:description "Selection Criteria Description ---"@en;
11081102
skos:prefLabel "Name of the selection criteria---"@en .
11091103

src/output-versioned/cn_24_maximal-1.5.ttl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_2Y8NzdfvWC5GNYLbH
10481048
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10491049
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/tp-abil>;
10501050
epo:isUsedForCandidateRestriction true;
1051-
cccev:weight 3.0;
10521051
dct:description "Selection Criteria Description ---"@en;
10531052
skos:prefLabel "Name of the selection criteria---"@en .
10541053

@@ -1059,7 +1058,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_9xGCswiFAKWwQgitq
10591058
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10601059
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/tp-abil>;
10611060
epo:isUsedForCandidateRestriction true;
1062-
cccev:weight 3.0;
10631061
dct:description "Selection Criteria Description ---"@en;
10641062
skos:prefLabel "Name of the selection criteria---"@en .
10651063

@@ -1070,7 +1068,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_Bkpcxn7EFoAsBBzSi
10701068
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10711069
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/sui-act>;
10721070
epo:isUsedForCandidateRestriction true;
1073-
cccev:weight 3.0;
10741071
dct:description "Selection Criteria Description ---"@en;
10751072
skos:prefLabel "Name of the selection criteria---"@en .
10761073

@@ -1081,7 +1078,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_LPqCAx6u8AHZs68Sm
10811078
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10821079
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/ef-stand>;
10831080
epo:isUsedForCandidateRestriction true;
1084-
cccev:weight 3.0;
10851081
dct:description "Selection Criteria Description ---"@en;
10861082
skos:prefLabel "Name of the selection criteria---"@en .
10871083

@@ -1092,7 +1088,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_bxHGbwwHUP9MfJv6P
10921088
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10931089
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/ef-stand>;
10941090
epo:isUsedForCandidateRestriction true;
1095-
cccev:weight 3.0;
10961091
dct:description "Selection Criteria Description ---"@en;
10971092
skos:prefLabel "Name of the selection criteria---"@en .
10981093

@@ -1103,7 +1098,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_j76qWqsuJdCtjNmRv
11031098
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
11041099
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/sui-act>;
11051100
epo:isUsedForCandidateRestriction true;
1106-
cccev:weight 3.0;
11071101
dct:description "Selection Criteria Description ---"@en;
11081102
skos:prefLabel "Name of the selection criteria---"@en .
11091103

src/output-versioned/cn_24_maximal-1.6.ttl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_2Y8NzdfvWC5GNYLbH
10481048
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10491049
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/tp-abil>;
10501050
epo:isUsedForCandidateRestriction true;
1051-
cccev:weight 3.0;
10521051
dct:description "Selection Criteria Description ---"@en;
10531052
skos:prefLabel "Name of the selection criteria---"@en .
10541053

@@ -1059,7 +1058,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_9xGCswiFAKWwQgitq
10591058
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10601059
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/tp-abil>;
10611060
epo:isUsedForCandidateRestriction true;
1062-
cccev:weight 3.0;
10631061
dct:description "Selection Criteria Description ---"@en;
10641062
skos:prefLabel "Name of the selection criteria---"@en .
10651063

@@ -1070,7 +1068,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_Bkpcxn7EFoAsBBzSi
10701068
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10711069
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/sui-act>;
10721070
epo:isUsedForCandidateRestriction true;
1073-
cccev:weight 3.0;
10741071
dct:description "Selection Criteria Description ---"@en;
10751072
skos:prefLabel "Name of the selection criteria---"@en .
10761073

@@ -1081,7 +1078,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_LPqCAx6u8AHZs68Sm
10811078
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10821079
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/ef-stand>;
10831080
epo:isUsedForCandidateRestriction true;
1084-
cccev:weight 3.0;
10851081
dct:description "Selection Criteria Description ---"@en;
10861082
skos:prefLabel "Name of the selection criteria---"@en .
10871083

@@ -1092,7 +1088,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_bxHGbwwHUP9MfJv6P
10921088
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
10931089
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/ef-stand>;
10941090
epo:isUsedForCandidateRestriction true;
1095-
cccev:weight 3.0;
10961091
dct:description "Selection Criteria Description ---"@en;
10971092
skos:prefLabel "Name of the selection criteria---"@en .
10981093

@@ -1103,7 +1098,6 @@ epd:id_14549263-b47b-4e59-96a1-2d0d13e19343_SelectionCriterion_j76qWqsuJdCtjNmRv
11031098
epo:hasSelectionCriteriaUsage <http://publications.europa.eu/resource/authority/usage/used>;
11041099
epo:hasSelectionCriterionType <http://publications.europa.eu/resource/authority/selection-criterion/sui-act>;
11051100
epo:isUsedForCandidateRestriction true;
1106-
cccev:weight 3.0;
11071101
dct:description "Selection Criteria Description ---"@en;
11081102
skos:prefLabel "Name of the selection criteria---"@en .
11091103

0 commit comments

Comments
 (0)