History

Contents

History#

The term history is used to list all legislative resources that are relevant for a specific entry in the Classified Compilation.

There is the possibility to see all relevant events for a specific entry in the Classified Compilation in the web frontend by adding /history to the URL of the entry. E.g. for seeing all the events for the Federal Constitution (not available in English), the URL would be https://www.fedlex.admin.ch/eli/cc/1999/404/de/history.

There are different mechanisms how legislative resources can be relevant for the history:

Draft#

In creating a new legislative resource, a jolux:Draft is created.

jolux:Draft

A jolux:Draft is used to bundle all the activities and documents during the process of drafting a new legislative resource.

The following figure shows the general structure of a jolux:Draft:

_images/draft.png

General structure of a jolux:Draft.#

The following SPARQL query shows all the jolux:Act that werde involved in drafting the Federal Constitution:

PREFIX jolux: <http://data.legilux.public.lu/resource/ontology/jolux#>
SELECT ?act WHERE {
    ?draft jolux:hasResultingLegalResource <https://fedlex.data.admin.ch/eli/oc/1999/404>;
        jolux:draftHasLegislativeTask ?task.
    ?task jolux:legislativeTaskHasResultingLegalResource ?act.
} 

Impact#

If new legislative resources are created that have an impact on existing ones, they are modelled as jolux:Impact.

The following SPARQL query shows all the jolux:Act that have an impact on the Federal Constitution:

PREFIX jolux: <http://data.legilux.public.lu/resource/ontology/jolux#>
SELECT DISTINCT ?act WHERE {
    ?impact jolux:impactFromLegalResource/jolux:legalResourceSubdivisionIsPartOf ?act;
        jolux:impactToLegalResource/jolux:legalResourceSubdivisionIsPartOf <https://fedlex.data.admin.ch/eli/cc/1999/404>.
}