Skip to content
Snippets Groups Projects
Verified Commit ceb7e423 authored by Minyong Li's avatar Minyong Li :speech_balloon:
Browse files

vocab: add ontology

parent c2ccd3d4
No related branches found
No related tags found
No related merge requests found
# Vocabulary for the Business Impact of COVID-19 Survey (BICS) Results
# For COMP6214 Open Data Innovation use only
# Copyright (C) 2021 Minyong Li <ml10g20@soton.ac.uk>
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema##> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix ukgeo: <http://statistics.data.gov.uk/id/statistical-geography/> .
@prefix sdmx-concept: <http://purl.org/linked-data/sdmx/2009/concept#> .
@prefix sdmx-measure: <http://purl.org/linked-data/sdmx/2009/measure#> .
@prefix sdmx-dimension: <http://purl.org/linked-data/sdmx/2009/dimension#> .
@prefix bics: <http://purl.yhi.moe/vocab/bics-comp6214#> .
# About This Ontology
<http://purl.yhi.moe/vocab/bics-comp6214> a owl:Ontology ;
owl:versionInfo "0.1.0"^^xsd:string ;
rdfs:label "BICS-COMP6214"@en ;
rdfs:comment "Vocabulary for Business Impact of COVID-19 Survey (BICS) Results (for COMP6214 Use Only)"@en ;
dct:title "Vocabulary for Business Impact of COVID-19 Survey (BICS) Results (for COMP6214 Use Only)"@en ;
dct:creator bics:MinyongLi ;
.
bics:MinyongLi a foaf:Person ;
foaf:name "Minyong Li"@en ;
foaf:mbox <mailto:ml10g20@soton.ac.uk> ;
.
# Classes
## For all classes
[
a owl:AllDisjointClasses ;
owl:members ( bics:Industry bics:Country bics:WorkforceSize bics:TradingStatus bics:Initiative bics:InitiativeStatus ) ;
] .
## Industries
bics:Industry a owl:Class ;
rdfs:label "Industry"@en ;
rdfs:comment "A generic class representing all types of industry."@en ;
.
bics:MiningAndQuarrying a owl:Class ;
rdfs:label "Mining And Quarrying"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:Manufacturing a owl:Class ;
rdfs:label "Manufacturing"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:WaterSupplySewerageWasteManagementAndRemediationActivities a owl:Class ;
rdfs:label "Water Supply, Sewerage, Waste Management And Remediation Activities"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:Construction a owl:Class ;
rdfs:label "Construction"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:WholesaleAndRetailTradeRepairOfMotorVehiclesAndMotorcycles a owl:Class ;
rdfs:label "Wholesale And Retail Trade; Repair Of Motor Vehicles And Motorcycles"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:AccommodationAndFoodServiceActivities a owl:Class ;
rdfs:label "Accommodation And Food Service Activities"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:TransportationAndStorage a owl:Class ;
rdfs:label "Transportation And Storage"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:InformationAndCommunication a owl:Class ;
rdfs:label "Information And Communication"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:RealEstateActivities a owl:Class ;
rdfs:label "Real Estate Activities"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:ProfessionalScientificAndTechnicalActivities a owl:Class ;
rdfs:label "Professional, Scientific And Technical Activities"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:AdministrativeAndSupportServiceActivities a owl:Class ;
rdfs:label "Administrative And Support Service Activities"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:Education a owl:Class ;
rdfs:label "Education"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:HumanHealthAndSocialWorkActivities a owl:Class ;
rdfs:label "Human Health And Social Work Activities"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:ArtsEntertainmentAndRecreation a owl:Class ;
rdfs:label "Arts, Entertainment And Recreation"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:ElectricityGasSteamAndAirConditioningSupply a owl:Class ;
rdfs:label "Electricity, Gas, Steam And Air Conditioning Supply"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:FinancialAndInsuranceActivities a owl:Class ;
rdfs:label "Financial And Insurance Activities"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:OtherServiceActivities a owl:Class ;
rdfs:label "Other Service Activities"@en ;
rdfs:subClassOf bics:Industry ;
.
bics:AllIndustries a owl:Class ;
rdfs:label "All Industries"@en ;
rdfs:subClassOf bics:Industry ;
.
## Country
bics:Country a owl:Class ;
rdfs:label "Country"@en ;
rdfs:comment "A generic class representing all countries used in the dataset."@en ;
.
bics:England a owl:Class ;
rdfs:label "England"@en ;
rdfs:subClassOf bics:Country ;
owl:equivalentClass ukgeo:E92000001 ;
.
bics:Wales a owl:Class ;
rdfs:label "Wales"@en ;
rdfs:subClassOf bics:Country ;
owl:equivalentClass ukgeo:W92000004 ;
.
bics:Scotland a owl:Class ;
rdfs:label "Scotland"@en ;
rdfs:subClassOf bics:Country ;
owl:equivalentClass ukgeo:S92000003 ;
.
bics:NorthernIreland a owl:Class ;
rdfs:label "Northern Ireland"@en ;
rdfs:subClassOf bics:Country ;
owl:equivalentClass ukgeo:N92000002 ;
.
bics:UK a owl:Class ;
rdfs:label "UK"@en ;
rdfs:subClassOf bics:Country ;
owl:equivalentClass ukgeo:K02000001 ;
.
## Workforce Sizes
bics:WorkforceSize a owl:Class ;
rdfs:label "Workforce Size"@en ;
rdfs:comment "A generic class representing all workforce sizes."@en ;
.
bics:LessThan250 a owl:Class ;
rdfs:label "Workforce Size < 250"@en ;
rdfs:subClassOf bics:WorkforceSize ;
.
bics:From0To99 a owl:Class ;
rdfs:label "Workforce Size 0 - 99"@en ;
rdfs:subClassOf bics:WorkforceSize ;
.
bics:From100To249 a owl:Class ;
rdfs:label "Workforce Size 100 - 249"@en ;
rdfs:subClassOf bics:WorkforceSize ;
.
bics:MoreThan250 a owl:Class ;
rdfs:label "Workforce Size 250 +"@en ;
rdfs:subClassOf bics:WorkforceSize ;
.
bics:AllWorkforceSizeBands a owl:Class ;
rdfs:label "All Size Bands"@en ;
rdfs:subClassOf bics:WorkforceSize ;
.
## Trading Statuses
bics:TradingStatus a owl:Class ;
rdfs:label "Trading Status"@en ;
rdfs:comment "A generic class representing all trading statuses."@en ;
.
bics:ContinuingToTrade a owl:Class ;
rdfs:label "Continuing to trade"@en ;
rdfs:subClassOf bics:TradingStatus ;
.
bics:HasPermanentlyCeasedTrading a owl:Class ;
rdfs:label "Has permanently ceased trading"@en ;
rdfs:subClassOf bics:TradingStatus ;
.
bics:HasTemporaryClosedOrTemporaryPausedTrading a owl:Class ;
rdfs:label "Has temporarily closed or temporarily paused trading"@en ;
rdfs:subClassOf bics:TradingStatus ;
.
## Initiatives
bics:Initiative a owl:Class ;
rdfs:label "Initiative"@en ;
rdfs:comment "A generic class representing all government initiatives."@en ;
.
bics:CoronavirusJobRetentionScheme a owl:Class ;
rdfs:label "Coronavirus Job Retention Scheme"@en ;
rdfs:subClassOf bics:Initiative ;
.
bics:BusinessRatesHoliday a owl:Class ;
rdfs:label "Business rates holiday"@en ;
rdfs:subClassOf bics:Initiative ;
.
bics:DeferringVATPayments a owl:Class ;
rdfs:label "Deferring VAT payments"@en ;
rdfs:subClassOf bics:Initiative ;
.
bics:HMRCTimeToPayScheme a owl:Class ;
rdfs:label "HMRC Time To Pay scheme"@en ;
rdfs:subClassOf bics:Initiative ;
.
bics:GovernmentFundedSmallBusinessGrantOrLoanSchemes a owl:Class ;
rdfs:label "Government-funded small business grant or loan schemes"@en ;
rdfs:subClassOf bics:Initiative ;
.
bics:AccreditedFinanceAgreements a owl:Class ;
rdfs:label "Accredited finance agreements"@en ;
rdfs:subClassOf bics:Initiative ;
.
bics:NoInitiative a owl:Class ;
rdfs:label "No initiative"@en ;
rdfs:comment "We do not intend / have not applied for / have not received any of these initiatives"@en ;
rdfs:subClassOf bics:Initiative ;
.
## Initiative Statuses
bics:InitiativeStatus a owl:Class ;
rdfs:label "Initiative Status"@en ;
rdfs:comment "A generic class representing all possible statuses of government initiatives to an enterprise."@en ;
.
bics:Intending a owl:Class ;
rdfs:label "Intending"@en ;
rdfs:comment "The enterprise intends to apply for the initiative."@en ;
rdfs:subClassOf bics:InitiativeStatus ;
.
bics:Applied a owl:Class ;
rdfs:label "Applied"@en ;
rdfs:comment "The enterprise has applied for the initiative."@en ;
rdfs:subClassOf bics:InitiativeStatus ;
.
bics:Received a owl:Class ;
rdfs:label "Received"@en ;
rdfs:comment "The enterprise has received the applied initiative."@en;
rdfs:subClassOf bics:InitiativeStatus ;
.
# Properties
## Dimension Properties
bics:refIndustry a qb:DimensionProperty ;
rdfs:label "reference industry"@en ;
rdfs:comment "The industry sector that the observation corresponds to."@en ;
rdfs:range bics:Industry ;
qb:concept sdmx-concept:occupation ;
.
bics:refCountry a qb:DimensionProperty ;
rdfs:label "reference country"@en ;
rdfs:comment "The country that the observation corresponds to."@en ;
rdfs:range bics:Country ;
owl:equivalentProperty sdmx-dimension:refArea ;
.
bics:refWorkforceSize a qb:DimensionProperty ;
rdfs:label "reference workforce size"@en ;
rdfs:comment "The workforce size that the observation corresponds to."@en ;
rdfs:range bics:WorkforceSize ;
qb:concept sdmx-concept:classSystem ;
.
bics:refTradingStatus a qb:DimensionProperty ;
rdfs:label "reference trading status"@en ;
rdfs:comment "The trading status that the observation corresponds to."@en ;
rdfs:range bics:TradingStatus ;
qb:concept sdmx-concept:classSystem ;
.
bics:refInitiative a qb:DimensionProperty ;
rdfs:label "reference initiative"@en ;
rdfs:comment "The government initiative that the observation corresponds to."@en ;
rdfs:range bics:Initiative ;
qb:concept sdmx-concept:classSystem ;
.
bics:refInitiativeStatus a qb:DimensionProperty ;
rdfs:label "reference initiative status"@en ;
rdfs:comment "The government initiative status that the observation corresponds to."@en ;
rdfs:range bics:InitiativeStatus ;
qb:concept sdmx-concept:classSystem ;
.
## Measure Properties
bics:sampleSize a qb:MeasureProperty ;
rdfs:label "has sample size"@en ;
rdfs:subClassOf sdmx-measure:obsValue ;
.
bics:nResponded a qb:MeasureProperty ;
rdfs:label "has response number"@en ;
rdfs:subClassOf sdmx-measure:obsValue ;
.
bics:pResponded a qb:MeasureProperty ;
rdfs:label "has response %"@en ;
rdfs:subClassOf sdmx-measure:obsValue ;
.
bics:pTradingStatus a qb:MeasureProperty ;
rdfs:label "has trading status %"@en ;
rdfs:subClassOf sdmx-measure:obsValue ;
.
bics:pInitiativeApplied a qb:MeasureProperty ;
rdfs:label "has initiative application number"@en ;
rdfs:subClassOf sdmx-measure:obsValue ;
.
bics:pInitiativeReceived a qb:MeasureProperty ;
rdfs:label "has initiative receive number"@en ;
rdfs:subClassOf sdmx-measure:obsValue ;
.
bics:pInitiativeIntending a qb:MeasureProperty ;
rdfs:label "has initiative intention number"@en ;
rdfs:subClassOf sdmx-measure:obsValue ;
.
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:dct="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:qb="http://purl.org/linked-data/cube#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#refTradingStatus">
<rdf:type rdf:resource="http://purl.org/linked-data/cube#DimensionProperty"/>
<rdfs:comment xml:lang="en">The trading status that the observation corresponds to.</rdfs:comment>
<qb:concept rdf:resource="http://purl.org/linked-data/sdmx/2009/concept#classSystem"/>
<rdfs:label xml:lang="en">reference trading status</rdfs:label>
<rdfs:range rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#TradingStatus"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Applied">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#InitiativeStatus"/>
<rdfs:comment xml:lang="en">The enterprise has applied for the initiative.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Applied</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214">
<dct:title xml:lang="en">Vocabulary for Business Impact of COVID-19 Survey (BICS) Results (for COMP6214 Use Only)</dct:title>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema##string">0.1.0</owl:versionInfo>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
<rdfs:comment xml:lang="en">Vocabulary for Business Impact of COVID-19 Survey (BICS) Results (for COMP6214 Use Only)</rdfs:comment>
<dct:creator rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#MinyongLi"/>
<rdfs:label xml:lang="en">BICS-COMP6214</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#WaterSupplySewerageWasteManagementAndRemediationActivities">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdfs:label xml:lang="en">Water Supply, Sewerage, Waste Management And Remediation Activities</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#HasTemporaryClosedOrTemporaryPausedTrading">
<rdfs:label xml:lang="en">Has temporarily closed or temporarily paused trading</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#TradingStatus"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#ArtsEntertainmentAndRecreation">
<rdfs:label xml:lang="en">Arts, Entertainment And Recreation</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#refIndustry">
<rdfs:range rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdfs:comment xml:lang="en">The industry sector that the observation corresponds to.</rdfs:comment>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#DimensionProperty"/>
<qb:concept rdf:resource="http://purl.org/linked-data/sdmx/2009/concept#occupation"/>
<rdfs:label xml:lang="en">reference industry</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Scotland">
<rdfs:label xml:lang="en">Scotland</rdfs:label>
<owl:equivalentClass rdf:resource="http://statistics.data.gov.uk/id/statistical-geography/S92000003"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Country"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b3">
<rdf:rest rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b4"/>
<rdf:first rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#WorkforceSize"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#From100To249">
<rdfs:label xml:lang="en">Workforce Size 100 - 249</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#WorkforceSize"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#MinyongLi">
<foaf:mbox rdf:resource="mailto:ml10g20@soton.ac.uk"/>
<foaf:name xml:lang="en">Minyong Li</foaf:name>
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#pInitiativeReceived">
<rdfs:label xml:lang="en">has initiative receive number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/linked-data/sdmx/2009/measure#obsValue"/>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#MeasureProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#pInitiativeIntending">
<rdfs:subClassOf rdf:resource="http://purl.org/linked-data/sdmx/2009/measure#obsValue"/>
<rdfs:label xml:lang="en">has initiative intention number</rdfs:label>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#MeasureProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#refInitiative">
<qb:concept rdf:resource="http://purl.org/linked-data/sdmx/2009/concept#classSystem"/>
<rdfs:range rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Initiative"/>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#DimensionProperty"/>
<rdfs:comment xml:lang="en">The government initiative that the observation corresponds to.</rdfs:comment>
<rdfs:label xml:lang="en">reference initiative</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#CoronavirusJobRetentionScheme">
<rdfs:label xml:lang="en">Coronavirus Job Retention Scheme</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Initiative"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#refInitiativeStatus">
<qb:concept rdf:resource="http://purl.org/linked-data/sdmx/2009/concept#classSystem"/>
<rdfs:comment xml:lang="en">The government initiative status that the observation corresponds to.</rdfs:comment>
<rdfs:range rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#InitiativeStatus"/>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#DimensionProperty"/>
<rdfs:label xml:lang="en">reference initiative status</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b5">
<rdf:rest rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b6"/>
<rdf:first rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Initiative"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#FinancialAndInsuranceActivities">
<rdfs:label xml:lang="en">Financial And Insurance Activities</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Wales">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Country"/>
<rdfs:label xml:lang="en">Wales</rdfs:label>
<owl:equivalentClass rdf:resource="http://statistics.data.gov.uk/id/statistical-geography/W92000004"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#pResponded">
<rdfs:subClassOf rdf:resource="http://purl.org/linked-data/sdmx/2009/measure#obsValue"/>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#MeasureProperty"/>
<rdfs:label xml:lang="en">has response %</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b2">
<rdf:first rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Country"/>
<rdf:rest rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b3"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#AccommodationAndFoodServiceActivities">
<rdfs:label xml:lang="en">Accommodation And Food Service Activities</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#ElectricityGasSteamAndAirConditioningSupply">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Electricity, Gas, Steam And Air Conditioning Supply</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#WholesaleAndRetailTradeRepairOfMotorVehiclesAndMotorcycles">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdfs:label xml:lang="en">Wholesale And Retail Trade; Repair Of Motor Vehicles And Motorcycles</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Manufacturing">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Manufacturing</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#AllIndustries">
<rdfs:label xml:lang="en">All Industries</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#DeferringVATPayments">
<rdfs:label xml:lang="en">Deferring VAT payments</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Initiative"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#InformationAndCommunication">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Information And Communication</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#nResponded">
<rdf:type rdf:resource="http://purl.org/linked-data/cube#MeasureProperty"/>
<rdfs:label xml:lang="en">has response number</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/linked-data/sdmx/2009/measure#obsValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Intending">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#InitiativeStatus"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:comment xml:lang="en">The enterprise intends to apply for the initiative.</rdfs:comment>
<rdfs:label xml:lang="en">Intending</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#WorkforceSize">
<rdfs:comment xml:lang="en">A generic class representing all workforce sizes.</rdfs:comment>
<rdfs:label xml:lang="en">Workforce Size</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#RealEstateActivities">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdfs:label xml:lang="en">Real Estate Activities</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Received">
<rdfs:label xml:lang="en">Received</rdfs:label>
<rdfs:comment xml:lang="en">The enterprise has received the applied initiative.</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#InitiativeStatus"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="ub1bL33C1">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDisjointClasses"/>
<owl:members rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b1"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Education">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Education</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#HMRCTimeToPayScheme">
<rdfs:label xml:lang="en">HMRC Time To Pay scheme</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Initiative"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#AllWorkforceSizeBands">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">All Size Bands</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#WorkforceSize"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#OtherServiceActivities">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Other Service Activities</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Country">
<rdfs:label xml:lang="en">Country</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:comment xml:lang="en">A generic class representing all countries used in the dataset.</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#AdministrativeAndSupportServiceActivities">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Administrative And Support Service Activities</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#NoInitiative">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">No initiative</rdfs:label>
<rdfs:comment xml:lang="en">We do not intend / have not applied for / have not received any of these initiatives</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Initiative"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#refWorkforceSize">
<rdfs:range rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#WorkforceSize"/>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#DimensionProperty"/>
<rdfs:comment xml:lang="en">The workforce size that the observation corresponds to.</rdfs:comment>
<qb:concept rdf:resource="http://purl.org/linked-data/sdmx/2009/concept#classSystem"/>
<rdfs:label xml:lang="en">reference workforce size</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#NorthernIreland">
<owl:equivalentClass rdf:resource="http://statistics.data.gov.uk/id/statistical-geography/N92000002"/>
<rdfs:label xml:lang="en">Northern Ireland</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Country"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#ProfessionalScientificAndTechnicalActivities">
<rdfs:label xml:lang="en">Professional, Scientific And Technical Activities</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#From0To99">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#WorkforceSize"/>
<rdfs:label xml:lang="en">Workforce Size 0 - 99</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#sampleSize">
<rdfs:label xml:lang="en">has sample size</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/linked-data/sdmx/2009/measure#obsValue"/>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#MeasureProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#MiningAndQuarrying">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Mining And Quarrying</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#BusinessRatesHoliday">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Initiative"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Business rates holiday</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b4">
<rdf:first rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#TradingStatus"/>
<rdf:rest rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b5"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#refCountry">
<rdf:type rdf:resource="http://purl.org/linked-data/cube#DimensionProperty"/>
<owl:equivalentProperty rdf:resource="http://purl.org/linked-data/sdmx/2009/dimension#refArea"/>
<rdfs:comment xml:lang="en">The country that the observation corresponds to.</rdfs:comment>
<rdfs:label xml:lang="en">reference country</rdfs:label>
<rdfs:range rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Country"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#HumanHealthAndSocialWorkActivities">
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdfs:label xml:lang="en">Human Health And Social Work Activities</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#HasPermanentlyCeasedTrading">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#TradingStatus"/>
<rdfs:label xml:lang="en">Has permanently ceased trading</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#pInitiativeApplied">
<rdfs:subClassOf rdf:resource="http://purl.org/linked-data/sdmx/2009/measure#obsValue"/>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#MeasureProperty"/>
<rdfs:label xml:lang="en">has initiative application number</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b6">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#InitiativeStatus"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Construction">
<rdfs:label xml:lang="en">Construction</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Initiative">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:comment xml:lang="en">A generic class representing all government initiatives.</rdfs:comment>
<rdfs:label xml:lang="en">Initiative</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#TradingStatus">
<rdfs:comment xml:lang="en">A generic class representing all trading statuses.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Trading Status</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#Industry">
<rdfs:comment xml:lang="en">A generic class representing all types of industry.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Industry</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#UK">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Country"/>
<owl:equivalentClass rdf:resource="http://statistics.data.gov.uk/id/statistical-geography/K02000001"/>
<rdfs:label xml:lang="en">UK</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#England">
<rdfs:label xml:lang="en">England</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<owl:equivalentClass rdf:resource="http://statistics.data.gov.uk/id/statistical-geography/E92000001"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Country"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#AccreditedFinanceAgreements">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Initiative"/>
<rdfs:label xml:lang="en">Accredited finance agreements</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#LessThan250">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#WorkforceSize"/>
<rdfs:label xml:lang="en">Workforce Size &lt; 250</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#pTradingStatus">
<rdfs:subClassOf rdf:resource="http://purl.org/linked-data/sdmx/2009/measure#obsValue"/>
<rdf:type rdf:resource="http://purl.org/linked-data/cube#MeasureProperty"/>
<rdfs:label xml:lang="en">has trading status %</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b1">
<rdf:first rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdf:rest rdf:nodeID="f3b5e4b151a3b4c238886dcd78420d847b2"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#InitiativeStatus">
<rdfs:comment xml:lang="en">A generic class representing all possible statuses of government initiatives to an enterprise.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Initiative Status</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#GovernmentFundedSmallBusinessGrantOrLoanSchemes">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Initiative"/>
<rdfs:label xml:lang="en">Government-funded small business grant or loan schemes</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#MoreThan250">
<rdfs:label xml:lang="en">Workforce Size 250 +</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#WorkforceSize"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#TransportationAndStorage">
<rdfs:label xml:lang="en">Transportation And Storage</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#Industry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.yhi.moe/vocab/bics-comp6214#ContinuingToTrade">
<rdfs:label xml:lang="en">Continuing to trade</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.yhi.moe/vocab/bics-comp6214#TradingStatus"/>
</rdf:Description>
</rdf:RDF>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment