Impacts#
Impacts is what connect entries in the Classified Compilation and Official Compilation. The entries in the Classified Compilation are consolidations of entries in the Official Compilation. This means that entries in the Official Compilation usually have an impact on entries in the Classified Compilation.
Impacts are modelled as jolux:LegalResourceImpact.
jolux:LegalResourceImpact
The owl:Class jolux:LegalResourceImpact is used to build an entry in the Classified Compilation out of different entries in the Official Compilation. Entries in the Official Compilation have impacts on entries in in the Classified Compilation. The jolux:LegalResourceImpact has two main predicates. jolux:impactFromLegalResource points to the source of the impact and jolux:impactToLegalResource points to the impacted resource.
Example#
Throughout this sub-page, the following jolux:LegalResourceImpact is used as an example.
URI: https://fedlex.data.admin.ch/eli/oc/2015/104/legal-analysis/LegalResourceImpact/1
URL: No URL available for jolux:LegalResourceImpact
URI#
The URI of a jolux:LegalResourceImpact contains the following parts:
it starts with the URI of the entry in the Official Compilation that is the source for the impact.
/legal-analysis/LegalResourceImpact/
denotes all impactsID
an identifier that has no specific meaning
General Structure#
The following figure shows the connection between entries in the Official Compilation and Classified Compilation trough jolux:LegalResourceImpact:

Connection between entries in the Official Compilation and the Classified Compilation through impacts.#
As it is shown in the figure above, the connection between jolux:LegalResourceImpact and the entries in the Official Compilation and Classified Compilation is not direct but through jolux:LegalResourceSubdivision. The predicates used to connect the source and the target of the impact are jolux:impactFromLegalResource and jolux:impactToLegalResource.
jolux:impactFromLegalResource
The object predicate jolux:impactFromLegalResource is used to connect a jolux:LegalResourceImpact to a jolux:LegalResourceSubdivision as a source of the impact.
jolux:impactToLegalResource
The object predicate jolux:impactToLegalResource is used to connect a jolux:LegalResourceImpact to a jolux:LegalResourceSubdivision as a target of the impact. The difference to jolux:impactConsolidatedBy is that the target here is the jolux:ConsolidationAbstract.
jolux:impactConsolidatedBy
The object predicate jolux:impactConsolidatedBy is used to connect a jolux:LegalResourceImpact to a jolux:LegalResourceSubdivision that is part of the corresponding jolux:Consolidation. The difference to jolux:impactToLegalResource is that the target here is the jolux:Consolidation and not the jolux:ConsolidationAbstract.
Datatype Properties#
Object Properties#
Object properties that point to a vocabulary entry:
Object properties that point to an individual:
SPARQL Examples#
The following query shows all the entries in the Official Compilation, that have an impact on the federal constitution:
PREFIX jolux: <http://data.legilux.public.lu/resource/ontology/jolux#>
SELECT DISTINCT ?act ?date WHERE {
?impact jolux:impactFromLegalResource/jolux:legalResourceSubdivisionIsPartOf ?act;
jolux:impactToLegalResource/jolux:legalResourceSubdivisionIsPartOf <https://fedlex.data.admin.ch/eli/cc/1999/404>.
?act jolux:dateEntryInForce ?date.
} ORDER BY ?date