@prefix oasis: <http://parliament.uk/ontologies/oasis/> . 
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . 
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf:	<http://xmlns.com/foaf/0.1/> .

<http://parliament.uk/ontologies/oasis/> 
    rdf:type owl:Ontology ;
    dcterms:title "OaSIS ontology"@en ;
    dcterms:created "2026-05-29"^^xsd:date ;
	dcterms:rights "Open Parliament Licence v3.0"@en ;
    dcterms:description "A model for the Odds and Sods Information System, used by the Indexing and Data Management Section in the House of Commons Library."@en ;
	foaf:depiction <https://ukparliament.github.io/ontologies/oasis/oasis.svg> ;
	foaf:maker 
		[ foaf:name "Jayne Bosworth" ],
		[ foaf:name "Emily Davis" ],
		[ foaf:name "Michael Smethurst"; foaf:homepage <http://smethur.st/> ],
		[ foaf:name "Anya Somerville" ].


#######  Classes #####
	
oasis:Record rdf:type owl:Class ;
	rdfs:label "Record"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:HouseRecord rdf:type owl:Class ;
	rdfs:subClassOf oasis:Record ;
	rdfs:label "House record"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:SessionalRecord rdf:type owl:Class ;
	rdfs:subClassOf oasis:HouseRecord ;
	rdfs:label "Sessional record"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:Session rdf:type owl:Class ;
	rdfs:label "Session"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:PrimaryLegislationRecord rdf:type owl:Class ;
	rdfs:subClassOf oasis:Record ;
	rdfs:label "Primary legislation record"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:ActOfParliament rdf:type owl:Class ;
	rdfs:subClassOf oasis:PrimaryLegislationRecord ;
	rdfs:label "Act of Parliament"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:PublicAct rdf:type owl:Class ;
	rdfs:subClassOf oasis:ActOfParliament ;
	rdfs:label "Public Act"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:PrivateAct rdf:type owl:Class ;
	rdfs:subClassOf oasis:ActOfParliament ;
	rdfs:label "Private Act"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:ChurchOfEnglandMeasure rdf:type owl:Class ;
	rdfs:subClassOf oasis:PrimaryLegislationRecord ;
	rdfs:label "Church of England measure"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:TransportAndWorksActOrderApplication rdf:type owl:Class ;
	rdfs:subClassOf oasis:Record ;
	rdfs:label "Transport and Works Act order application"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:ImpactAssessment rdf:type owl:Class ;
	rdfs:subClassOf oasis:HouseRecord ;
	rdfs:label "Impact assessment"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:SpeakerCertificate rdf:type owl:Class ;
	rdfs:subClassOf oasis:SessionalRecord ;
	rdfs:label "Speaker certificate"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:Bill rdf:type owl:Class ;
	rdfs:subClassOf oasis:SessionalRecord ;
	rdfs:label "Bill"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:PrivateBill rdf:type owl:Class ;
	rdfs:subClassOf oasis:Bill ;
	rdfs:label "Private bill"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:PublicBill rdf:type owl:Class ;
	rdfs:subClassOf oasis:Bill ;
	rdfs:label "Public bill"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:PublicBillCertification rdf:type owl:Class ;
	rdfs:label "Public bill certification"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:ParliamentaryPaper rdf:type owl:Class ;
	rdfs:subClassOf oasis:SessionalRecord ;
	rdfs:label "Parliamentary paper"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:SelectCommitteePaper rdf:type owl:Class ;
	rdfs:subClassOf oasis:ParliamentaryPaper ;
	rdfs:label "Select committee paper"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:OtherParliamentaryPaper rdf:type owl:Class ;
	rdfs:subClassOf oasis:ParliamentaryPaper ;
	rdfs:label "Other parliamentary paper"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:ProceedingRecord rdf:type owl:Class ;
	rdfs:subClassOf oasis:SessionalRecord ;
	rdfs:label "Proceeding record"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:CommitteeProceeding rdf:type owl:Class ;
	rdfs:subClassOf oasis:ProceedingRecord ;
	rdfs:label "Committee proceeding"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:GeneralCommitteeProceeding rdf:type owl:Class ;
	rdfs:subClassOf oasis:CommitteeProceeding ;
	rdfs:label "General Committee proceeding"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:CommonsGrandCommitteeProceeding rdf:type owl:Class ;
	rdfs:subClassOf oasis:CommitteeProceeding ;
	rdfs:label "Commons Grand Committee proceeding"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:FormalProceeding rdf:type owl:Class ;
	rdfs:subClassOf oasis:ProceedingRecord ;
	rdfs:label "Formal proceeding"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

	
	
	
	


	
	
oasis:Term rdf:type owl:Class ;
	rdfs:label "Term"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:PersonTerm rdf:type owl:Class ;
	rdfs:subClassOf oasis:Term ;
	rdfs:label "Person term"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:memberTerm rdf:type owl:Class ;
	rdfs:subClassOf oasis:PersonTerm ;
	rdfs:label "Member term"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:OrganisationTerm rdf:type owl:Class ;
	rdfs:subClassOf oasis:Term ;
	rdfs:label "Organisation term"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:HouseTerm rdf:type owl:Class ;
	rdfs:subClassOf oasis:OrganisationTerm ;
	rdfs:label "House term"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:GovernmentDepartmentTerm rdf:type owl:Class ;
	rdfs:subClassOf oasis:OrganisationTerm ;
	rdfs:label "Government department term"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:ConceptTerm rdf:type owl:Class ;
	rdfs:subClassOf oasis:Term ;
	rdfs:label "Concept term"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:ParliamentaryCertificationTerm rdf:type owl:Class ;
	rdfs:subClassOf oasis:ConceptTerm ;
	rdfs:label "Parliamentary certification term"@en ;
	rdfs:comment ""@en ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
	

#######  Object properties ##### 
	
oasis:house rdf:type owl:ObjectProperty ;
	rdfs:label "House"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:HouseRecord ;
	rdfs:range oasis:House ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:applicationAgent rdf:type owl:ObjectProperty ;
	rdfs:label "Application agent"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:TransportAndWorksActOrderApplication ;
	rdfs:range oasis:OrganisationTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:applicationApplicant rdf:type owl:ObjectProperty ;
	rdfs:label "Application applicant"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:TransportAndWorksActOrderApplication ;
	rdfs:range oasis:OrganisationTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:impactAssessmentHasCorporateAuthor rdf:type owl:ObjectProperty ;
	rdfs:label "Impact assessment has corporate author"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:ImpactAssessment ;
	rdfs:range oasis:OrganisationTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:impactAssessmentHasGovernmentDepartment rdf:type owl:ObjectProperty ;
	rdfs:label "Impact assessment has government department"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:ImpactAssessment ;
	rdfs:range oasis:GovernmentDepartmentTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:during rdf:type owl:ObjectProperty ;
	rdfs:label "During"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:SessionalRecord ;
	rdfs:range oasis:Session ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:reportedIn rdf:type owl:ObjectProperty ;
	rdfs:label "Report in"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:SessionalRecord ;
	rdfs:range oasis:Session ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:promoter rdf:type owl:ObjectProperty ;
	rdfs:label "Promoter"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:PrivateBill ;
	rdfs:range oasis:OrganisationTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:parliamentaryAgent rdf:type owl:ObjectProperty ;
	rdfs:label "Parliamentary agent"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:PrivateBill ;
	rdfs:range oasis:OrganisationTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:sponsoringDepartment rdf:type owl:ObjectProperty ;
	rdfs:label "Sponsoring department"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:PublicBill ;
	rdfs:range oasis:GovernmentDepartmentTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:sponsoringMember rdf:type owl:ObjectProperty ;
	rdfs:label "Sponsoring Member"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:PublicBill ;
	rdfs:range oasis:MemberTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:ofPublicBill rdf:type owl:ObjectProperty ;
	rdfs:label "Of public bill"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:PublicBillCertification ;
	rdfs:range oasis:PublicBill ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:certifiedAs rdf:type owl:ObjectProperty ;
	rdfs:label "Certified as"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:PublicBillCertification ;
	rdfs:range oasis:ParliamentaryCertificationTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:corporateAuthor rdf:type owl:ObjectProperty ;
	rdfs:label "Corporate author"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:SelectCommitteePaper ;
	rdfs:range oasis:OrganisationTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:hasCommittee rdf:type owl:ObjectProperty ;
	rdfs:label "Has committee"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:CommitteeProceeding ;
	rdfs:range oasis:OrganisationTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .	
	
oasis:proceedingCorporateAuthor rdf:type owl:ObjectProperty ;
	rdfs:label "Proceeding corporate author"@en ;
	rdfs:comment "."@en ;
	rdfs:domain oasis:FormalProceeding ;
	rdfs:range oasis:OrganisationTerm ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .	


				

#######  Data properties #####

oasis:title rdf:type owl:DatatypeProperty ;
	rdfs:label "Title"@en ;
	rdfs:comment "The title of an OaSIS record."@en ;
	rdfs:domain oasis:Record ;
	rdfs:range rdf:langString ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:webLocation rdf:type owl:DatatypeProperty ;
	rdfs:label "Web location"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:Record ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:royalAssentOn rdf:type owl:DatatypeProperty ;
	rdfs:label "Royal Assent on"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:PrimaryLegislationRecord ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:year rdf:type owl:DatatypeProperty ;
	rdfs:label "Year"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:PrimaryLegislationRecord ;
	rdfs:range xsd:integer ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:longTitle rdf:type owl:DatatypeProperty ;
	rdfs:label "Long title"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:PrimaryLegislationRecord ;
	rdfs:range rdf:langString ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:chapterNumber rdf:type owl:DatatypeProperty ;
	rdfs:label "Chapter number"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:ActOfParliament ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:number rdf:type owl:DatatypeProperty ;
	rdfs:label "Number"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:ChurchOfEnglandMeasure ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:referenceNumber rdf:type owl:DatatypeProperty ;
	rdfs:label "Reference number"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:TransportAndWorksActOrderApplication ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:description rdf:type owl:DatatypeProperty ;
	rdfs:label "Description"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:TransportAndWorksActOrderApplication ;
	rdfs:range rdf:langString ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:dateOfOrigin rdf:type owl:DatatypeProperty ;
	rdfs:label "Date of origin"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:TransportAndWorksActOrderApplication ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:impactAssessmentNumber rdf:type owl:DatatypeProperty ;
	rdfs:label "Impact assessment number"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:ImpactAssessment ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:publishedOn rdf:type owl:DatatypeProperty ;
	rdfs:label "Published on"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:ImpactAssessment ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
		
# NOTE: Duplicate property name!!!!
oasis:billLongTitle rdf:type owl:DatatypeProperty ;
	rdfs:label "Long title"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:Bill ;
	rdfs:range rdf:langString ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:orderedToBePrintedOn rdf:type owl:DatatypeProperty ;
	rdfs:label "Ordered to be printed on"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:Bill ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:containsExplanatoryNote rdf:type owl:DatatypeProperty ;
	rdfs:label "Contains explanatory note"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:Bill ;
	rdfs:range xsd:boolean ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:billNumber rdf:type owl:DatatypeProperty ;
	rdfs:label "Bill number"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:PublicBill ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:certifiedOn rdf:type owl:DatatypeProperty ;
	rdfs:label "Certified on"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:PublicBillCertification ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:paperNumber rdf:type owl:DatatypeProperty ;
	rdfs:label "Paper number"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:ParliamentaryPaper ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:reportedToHouseOn rdf:type owl:DatatypeProperty ;
	rdfs:label "Reported to House on"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:SelectCommitteePaper ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
oasis:publishedOn rdf:type owl:DatatypeProperty ;
	rdfs:label "Published on"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:SelectCommitteePaper ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

# NOTE: duplicate property name
oasis:paperOrderedToBePrintedOn rdf:type owl:DatatypeProperty ;
	rdfs:label "Ordered to be printed on"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:OtherParliamentaryPaper ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

oasis:containsImpactAssessment rdf:type owl:DatatypeProperty ;
	rdfs:label "Contains impact assessment"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:OtherParliamentaryPaper ;
	rdfs:range xsd:boolean ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

# NOTE: duplicate property name
oasis:speakerCertificateSittingDate rdf:type owl:DatatypeProperty ;
	rdfs:label "Speaker certificate sitting date"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:SpeakerCertificate ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .
	
# NOTE: duplicate property name
oasis:proceedingRecordSittingDate rdf:type owl:DatatypeProperty ;
	rdfs:label "Proceeding record sitting date"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:ProceedingRecord ;
	rdfs:range xsd:date ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .

# NOTE: duplicate property name
oasis:proceeedingRecordReferenceNumber rdf:type owl:DatatypeProperty ;
	rdfs:label "Proceeeding record reference number"@en ;
	rdfs:comment ""@en ;
	rdfs:domain oasis:ProceedingRecord ;
	rdfs:range rdfs:Literal ;
	rdfs:isDefinedBy <http://parliament.uk/ontologies/oasis/> .