@prefix got:     <https://id.honoria.co.uk/def/gazette-org-type/> .
@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .
@prefix schema:  <https://schema.org/> .
@prefix dct:     <http://purl.org/dc/terms/> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .

#################################################################
# Gazette organisation-type vocabulary
#
# The organisation-type designators as they are RECORDED in London Gazette honours
# citations and the recipient's role/organisation context ("…, Chief Executive, The
# Art Fund", "Headteacher, Morpeth School"). This is a Gazette-recording vocabulary:
# each concept's skos:altLabel captures the surface spellings/abbreviations the Gazette
# uses (Ltd / Limited, PLC), so a parser can recognise an organisation-type token from
# the vocabulary rather than a hard-coded ORG_RE regex. It is NOT a canonical registry
# of organisations - it types the trailing designator of an organisation name.
#
# Concepts are grouped under a few broad categories (skos:broader) and, where an
# unambiguous equivalent exists, reconciled to a schema.org organisation subtype via
# skos:closeMatch. Reconciliation to other vocabularies (Wikidata legal-form entities,
# Companies House types) can be added per concept as skos:exactMatch / skos:closeMatch.
#################################################################

<https://id.honoria.co.uk/def/gazette-org-types>
    a skos:ConceptScheme ;
    dct:title "Gazette organisation types"@en ;
    dct:description "Organisation-type designators as recorded in London Gazette honours citations, for driving role/organisation parsing from the vocabulary. Grouped by broad category; reconciled to schema.org organisation subtypes where an unambiguous equivalent exists."@en ;
    dct:license <https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/> .

# ── Categories (top concepts) ───────────────────────────────────────────────
got:legal-form         a skos:Concept ; skos:prefLabel "Legal form"@en ;         skos:topConceptOf <https://id.honoria.co.uk/def/gazette-org-types> ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> .
got:membership-body    a skos:Concept ; skos:prefLabel "Membership body"@en ;    skos:topConceptOf <https://id.honoria.co.uk/def/gazette-org-types> ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> .
got:public-body        a skos:Concept ; skos:prefLabel "Public body"@en ;        skos:topConceptOf <https://id.honoria.co.uk/def/gazette-org-types> ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> .
got:education          a skos:Concept ; skos:prefLabel "Education body"@en ;      skos:topConceptOf <https://id.honoria.co.uk/def/gazette-org-types> ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> .
got:culture            a skos:Concept ; skos:prefLabel "Cultural body"@en ;       skos:topConceptOf <https://id.honoria.co.uk/def/gazette-org-types> ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> .
got:healthcare         a skos:Concept ; skos:prefLabel "Healthcare body"@en ;     skos:topConceptOf <https://id.honoria.co.uk/def/gazette-org-types> ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> .
got:emergency-service  a skos:Concept ; skos:prefLabel "Emergency service"@en ;   skos:topConceptOf <https://id.honoria.co.uk/def/gazette-org-types> ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> .
got:military-unit      a skos:Concept ; skos:prefLabel "Military unit"@en ;       skos:topConceptOf <https://id.honoria.co.uk/def/gazette-org-types> ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> .
got:philanthropy       a skos:Concept ; skos:prefLabel "Philanthropic body"@en ;  skos:topConceptOf <https://id.honoria.co.uk/def/gazette-org-types> ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> .

# ── Legal forms ─────────────────────────────────────────────────────────────
got:limited-company
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:legal-form ;
    skos:prefLabel "Limited company"@en ; skos:altLabel "Ltd"@en , "Limited"@en ; skos:notation "Ltd" ;
    skos:closeMatch schema:Corporation .
got:public-limited-company
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:legal-form ;
    skos:prefLabel "Public limited company"@en ; skos:altLabel "PLC"@en , "plc"@en ; skos:notation "PLC" ;
    skos:closeMatch schema:Corporation .
got:limited-liability-partnership
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:legal-form ;
    skos:prefLabel "Limited liability partnership"@en ; skos:altLabel "LLP"@en ; skos:notation "LLP" .
got:company
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:legal-form ;
    skos:prefLabel "Company"@en ; skos:closeMatch schema:Corporation .
got:partnership
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:legal-form ;
    skos:prefLabel "Partnership"@en .

# ── Membership bodies ───────────────────────────────────────────────────────
got:association
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:membership-body ;
    skos:prefLabel "Association"@en .
got:society
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:membership-body ;
    skos:prefLabel "Society"@en .
got:institute
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:membership-body ;
    skos:prefLabel "Institute"@en ; skos:altLabel "Institution"@en .
got:club
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:membership-body ;
    skos:prefLabel "Club"@en .
got:union
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:membership-body ;
    skos:prefLabel "Union"@en .
got:federation
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:membership-body ;
    skos:prefLabel "Federation"@en .

# ── Public bodies ───────────────────────────────────────────────────────────
got:council
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Council"@en ; skos:closeMatch schema:GovernmentOrganization .
got:board
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Board"@en .
got:authority
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Authority"@en ; skos:closeMatch schema:GovernmentOrganization .
got:commission
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Commission"@en .
got:department
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Department"@en ; skos:closeMatch schema:GovernmentOrganization .
got:ministry
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Ministry"@en ; skos:closeMatch schema:GovernmentOrganization .
got:office
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Office"@en .
got:agency
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Agency"@en .
got:committee
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Committee"@en .
got:forum
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Forum"@en .
got:network
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:public-body ;
    skos:prefLabel "Network"@en .

# ── Education ───────────────────────────────────────────────────────────────
got:university
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:education ;
    skos:prefLabel "University"@en ; skos:closeMatch schema:CollegeOrUniversity .
got:college
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:education ;
    skos:prefLabel "College"@en ; skos:closeMatch schema:CollegeOrUniversity .
got:school
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:education ;
    skos:prefLabel "School"@en ; skos:closeMatch schema:School .
got:academy
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:education ;
    skos:prefLabel "Academy"@en ; skos:closeMatch schema:School .

# ── Cultural bodies ─────────────────────────────────────────────────────────
got:orchestra
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:culture ;
    skos:prefLabel "Orchestra"@en .
got:theatre
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:culture ;
    skos:prefLabel "Theatre"@en ; skos:altLabel "Theater"@en ; skos:closeMatch schema:PerformingArtsTheater .
got:museum
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:culture ;
    skos:prefLabel "Museum"@en ; skos:closeMatch schema:Museum .
got:gallery
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:culture ;
    skos:prefLabel "Gallery"@en .
got:library
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:culture ;
    skos:prefLabel "Library"@en ; skos:closeMatch schema:Library .

# ── Healthcare ──────────────────────────────────────────────────────────────
got:hospital
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:healthcare ;
    skos:prefLabel "Hospital"@en ; skos:closeMatch schema:Hospital .
got:hospice
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:healthcare ;
    skos:prefLabel "Hospice"@en .
got:nhs
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:healthcare ;
    skos:prefLabel "National Health Service"@en ; skos:altLabel "NHS"@en ; skos:notation "NHS" .

# ── Emergency services ──────────────────────────────────────────────────────
got:police
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:emergency-service ;
    skos:prefLabel "Police"@en ; skos:altLabel "Constabulary"@en , "Police Service"@en .
got:fire-and-rescue
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:emergency-service ;
    skos:prefLabel "Fire and rescue service"@en ; skos:altLabel "Fire"@en , "Fire Brigade"@en , "Brigade"@en .
got:ambulance
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:emergency-service ;
    skos:prefLabel "Ambulance service"@en ; skos:altLabel "Ambulance"@en .

# ── Military units ──────────────────────────────────────────────────────────
got:regiment
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:military-unit ;
    skos:prefLabel "Regiment"@en .
got:corps
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:military-unit ;
    skos:prefLabel "Corps"@en .
got:command
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:military-unit ;
    skos:prefLabel "Command"@en .

# ── Philanthropy / finance / generic ────────────────────────────────────────
got:charity
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:philanthropy ;
    skos:prefLabel "Charity"@en ; skos:altLabel "Charitable"@en ; skos:closeMatch schema:NGO .
got:trust
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:philanthropy ;
    skos:prefLabel "Trust"@en .
got:foundation
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:philanthropy ;
    skos:prefLabel "Foundation"@en .
got:bank
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ; skos:broader got:legal-form ;
    skos:prefLabel "Bank"@en ; skos:closeMatch schema:BankOrCreditUnion .
got:centre
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ;
    skos:prefLabel "Centre"@en ; skos:altLabel "Center"@en .
got:service
    a skos:Concept ; skos:inScheme <https://id.honoria.co.uk/def/gazette-org-types> ;
    skos:prefLabel "Service"@en ; skos:altLabel "Services"@en .
