https://api.parliament.uk/sparql
55
 
1
# This query uses classes from UK Parliament's procedure ontology: https://ukparliament.github.io/ontologies/procedure/procedure-ontology.html.
2
3
# This query looks for made affirmatives laid under Section 55(3) in conjunction with Section 56(5) of the Sanctions and Anti-money Laundering Act 2018. These instruments do not follow the usual approval period of the made affirmative procedure. Instead these instruments are subject to an approval period of 60 days beginning with the first day on which any provision of the regulations come into force. The provisions of the instruments come into force when the Foreign and Commonwealth Office make commencement orders.
4
5
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
6
PREFIX : <https://id.parliament.uk/schema/>
7
PREFIX id: <https://id.parliament.uk/>
8
# The above rows describe where the datasets that this query is built on come from. 
9
10
select distinct ?procedure ?si ?siName ?workPackage ?StatutoryInstrumentYear ?Number ?link ?LaidDate ?LayingBody ?stepName ?date ?stepName2 ?date2 where {
11
 # The select row is identifying what information to return from the query. These are all variables from the query below. 
12
  
13
# SPARQL variables start with a ? and can match any node (resource or literal) in the RDF dataset.  
14
15
  ?si a :StatutoryInstrumentPaper;
16
      :statutoryInstrumentPaperName ?siName.