# AFMRO — Sample instance data (gist 14.1.0 aligned)
# Workshop: AI-Assisted Ontology Engineering — KGC 2026
# Author: Dougal Watt, Graph Research Labs

@prefix afmro: <https://example.org/afmro/> .
@prefix gist:  <https://w3id.org/semanticarts/ns/ontology/gist/> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos:  <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .

#####################################################################
# Bases
#####################################################################

afmro:Base_RAAFAmberley a afmro:Base ;
  skos:prefLabel "RAAF Base Amberley"@en ;
  skos:definition "Royal Australian Air Force base in Queensland, Australia."@en .

afmro:Base_RAAFTindal a afmro:Base ;
  skos:prefLabel "RAAF Base Tindal"@en ;
  skos:definition "Royal Australian Air Force base in the Northern Territory, Australia."@en .

#####################################################################
# Squadrons
#####################################################################

afmro:Sq_75 a afmro:Squadron ;
  skos:prefLabel "75 Squadron"@en ;
  skos:definition "F-35A operating squadron based at Tindal."@en .

afmro:Sq_77 a afmro:Squadron ;
  skos:prefLabel "77 Squadron"@en ;
  skos:definition "F-22 operating squadron based at Amberley."@en .

afmro:Sq_36 a afmro:Squadron ;
  skos:prefLabel "36 Squadron"@en ;
  skos:definition "C-130J transport squadron based at Amberley."@en .

#####################################################################
# Aircraft — individuals with gist:isCategorizedBy and afmro:hasDirectPart.
#####################################################################

afmro:AC-001 a afmro:Aircraft ;
  skos:prefLabel "F-35A AC-001"@en ;
  gist:isCategorizedBy afmro:F-35A ;
  afmro:operatedBy afmro:Sq_75 ;
  afmro:stationedAt afmro:Base_RAAFTindal ;
  afmro:hasReadiness afmro:RS-001-current ;
  afmro:hasDirectPart afmro:Comp-001-radar , afmro:Comp-001-engine ;
  afmro:hasCapability afmro:Cap-001-A2G , afmro:Cap-001-A2A .

afmro:AC-002 a afmro:Aircraft ;
  skos:prefLabel "F-35A AC-002"@en ;
  gist:isCategorizedBy afmro:F-35A ;
  afmro:operatedBy afmro:Sq_75 ;
  afmro:stationedAt afmro:Base_RAAFTindal ;
  afmro:hasReadiness afmro:RS-002-current ;
  afmro:hasDirectPart afmro:Comp-002-radar , afmro:Comp-002-engine ;
  afmro:hasCapability afmro:Cap-002-A2G , afmro:Cap-002-A2A .

afmro:AC-003 a afmro:Aircraft ;
  skos:prefLabel "F-35A AC-003"@en ;
  gist:isCategorizedBy afmro:F-35A ;
  afmro:operatedBy afmro:Sq_75 ;
  afmro:stationedAt afmro:Base_RAAFTindal ;
  afmro:hasReadiness afmro:RS-003-current ;
  afmro:hasDirectPart afmro:Comp-003-radar ;
  afmro:hasCapability afmro:Cap-003-ISR .

afmro:AC-004 a afmro:Aircraft ;
  skos:prefLabel "F-35A AC-004"@en ;
  gist:isCategorizedBy afmro:F-35A ;
  afmro:operatedBy afmro:Sq_75 ;
  afmro:stationedAt afmro:Base_RAAFTindal ;
  afmro:hasReadiness afmro:RS-004-current ;
  afmro:hasDirectPart afmro:Comp-004-radar , afmro:Comp-004-engine ;
  afmro:hasCapability afmro:Cap-004-A2A .

afmro:AC-005 a afmro:Aircraft ;
  skos:prefLabel "F-22 AC-005"@en ;
  gist:isCategorizedBy afmro:F-22 ;
  afmro:operatedBy afmro:Sq_77 ;
  afmro:stationedAt afmro:Base_RAAFAmberley ;
  afmro:hasReadiness afmro:RS-005-current ;
  afmro:hasDirectPart afmro:Comp-005-radar , afmro:Comp-005-engine ;
  afmro:hasCapability afmro:Cap-005-A2A .

afmro:AC-006 a afmro:Aircraft ;
  skos:prefLabel "F-22 AC-006"@en ;
  gist:isCategorizedBy afmro:F-22 ;
  afmro:operatedBy afmro:Sq_77 ;
  afmro:stationedAt afmro:Base_RAAFAmberley ;
  afmro:hasReadiness afmro:RS-006-current ;
  afmro:hasDirectPart afmro:Comp-006-radar , afmro:Comp-006-engine ;
  afmro:hasCapability afmro:Cap-006-A2A .

afmro:AC-007 a afmro:Aircraft ;
  skos:prefLabel "F-22 AC-007"@en ;
  gist:isCategorizedBy afmro:F-22 ;
  afmro:operatedBy afmro:Sq_77 ;
  afmro:stationedAt afmro:Base_RAAFAmberley ;
  afmro:hasReadiness afmro:RS-007-current ;
  afmro:hasDirectPart afmro:Comp-007-radar ;
  afmro:hasCapability afmro:Cap-007-A2A .

afmro:AC-008 a afmro:Aircraft ;
  skos:prefLabel "C-130J AC-008"@en ;
  gist:isCategorizedBy afmro:C-130J ;
  afmro:operatedBy afmro:Sq_36 ;
  afmro:stationedAt afmro:Base_RAAFAmberley ;
  afmro:hasReadiness afmro:RS-008-current ;
  afmro:hasDirectPart afmro:Comp-008-engine , afmro:Comp-008-cargobay ;
  afmro:hasCapability afmro:Cap-008-HL .

afmro:AC-009 a afmro:Aircraft ;
  skos:prefLabel "C-130J AC-009"@en ;
  gist:isCategorizedBy afmro:C-130J ;
  afmro:operatedBy afmro:Sq_36 ;
  afmro:stationedAt afmro:Base_RAAFAmberley ;
  afmro:hasReadiness afmro:RS-009-current ;
  afmro:hasDirectPart afmro:Comp-009-engine , afmro:Comp-009-cargobay ;
  afmro:hasCapability afmro:Cap-009-HL .

afmro:AC-010 a afmro:Aircraft ;
  skos:prefLabel "C-130J AC-010"@en ;
  gist:isCategorizedBy afmro:C-130J ;
  afmro:operatedBy afmro:Sq_36 ;
  afmro:stationedAt afmro:Base_RAAFAmberley ;
  afmro:hasReadiness afmro:RS-010-current ;
  afmro:hasDirectPart afmro:Comp-010-engine ;
  afmro:hasCapability afmro:Cap-010-HL .

#####################################################################
# Components
#####################################################################

afmro:Comp-001-radar a afmro:Component ; skos:prefLabel "AC-001 radar set"@en .
afmro:Comp-001-engine a afmro:Component ; skos:prefLabel "AC-001 engine"@en .
afmro:Comp-002-radar a afmro:Component ; skos:prefLabel "AC-002 radar set"@en .
afmro:Comp-002-engine a afmro:Component ; skos:prefLabel "AC-002 engine"@en .
afmro:Comp-003-radar a afmro:Component ; skos:prefLabel "AC-003 radar set"@en .
afmro:Comp-004-radar a afmro:Component ; skos:prefLabel "AC-004 radar set"@en .
afmro:Comp-004-engine a afmro:Component ; skos:prefLabel "AC-004 engine"@en .
afmro:Comp-005-radar a afmro:Component ; skos:prefLabel "AC-005 radar set"@en .
afmro:Comp-005-engine a afmro:Component ; skos:prefLabel "AC-005 engine"@en .
afmro:Comp-006-radar a afmro:Component ; skos:prefLabel "AC-006 radar set"@en .
afmro:Comp-006-engine a afmro:Component ; skos:prefLabel "AC-006 engine"@en .
afmro:Comp-007-radar a afmro:Component ; skos:prefLabel "AC-007 radar set"@en .
afmro:Comp-008-engine a afmro:Component ; skos:prefLabel "AC-008 engine"@en .
afmro:Comp-008-cargobay a afmro:Component ; skos:prefLabel "AC-008 cargo bay"@en .
afmro:Comp-009-engine a afmro:Component ; skos:prefLabel "AC-009 engine"@en .
afmro:Comp-009-cargobay a afmro:Component ; skos:prefLabel "AC-009 cargo bay"@en .
afmro:Comp-010-engine a afmro:Component ; skos:prefLabel "AC-010 engine"@en .

#####################################################################
# Authorising authorities
#####################################################################

afmro:Person_GpCaptHale a gist:Person ;
  skos:prefLabel "Group Captain J. Hale"@en .

afmro:Person_WgCdrSinclair a gist:Person ;
  skos:prefLabel "Wing Commander R. Sinclair"@en .

afmro:Org_AirCommandHQ a gist:Organization ;
  skos:prefLabel "Air Command Headquarters"@en .

#####################################################################
# Time intervals — gist 14 uses startDateTime / endDateTime.
#####################################################################

afmro:TI-Now a gist:TimeInterval ;
  gist:startDateTime "2026-04-27T00:00:00Z"^^xsd:dateTime ;
  gist:endDateTime   "2026-04-27T23:59:59Z"^^xsd:dateTime ;
  skos:prefLabel "Today"@en .

afmro:TI-MissionRedFlag a gist:TimeInterval ;
  gist:startDateTime "2026-04-15T08:00:00Z"^^xsd:dateTime ;
  gist:endDateTime   "2026-04-15T11:00:00Z"^^xsd:dateTime ;
  skos:prefLabel "Red Flag mission window 15 April 2026"@en .

afmro:TI-MaintWindow a gist:TimeInterval ;
  gist:startDateTime "2026-04-20T06:00:00Z"^^xsd:dateTime ;
  gist:endDateTime   "2026-04-20T18:00:00Z"^^xsd:dateTime ;
  skos:prefLabel "Maintenance window 20 April 2026"@en .

afmro:TI-RedFlag-Planned a gist:TimeInterval ;
  gist:startDateTime "2026-04-15T07:00:00Z"^^xsd:dateTime ;
  gist:endDateTime   "2026-04-15T11:30:00Z"^^xsd:dateTime ;
  skos:prefLabel "Red Flag planned window 15 April 2026"@en .

afmro:TI-Reconnaissance-Planned a gist:TimeInterval ;
  gist:startDateTime "2026-04-22T03:00:00Z"^^xsd:dateTime ;
  gist:endDateTime   "2026-04-22T07:00:00Z"^^xsd:dateTime ;
  skos:prefLabel "Reconnaissance planned window (cancelled)"@en .

afmro:TI-AerialRefuelling-Planned a gist:TimeInterval ;
  gist:startDateTime "2026-05-10T09:00:00Z"^^xsd:dateTime ;
  gist:endDateTime   "2026-05-10T13:00:00Z"^^xsd:dateTime ;
  skos:prefLabel "Aerial refuelling planned window (future)"@en .

#####################################################################
# Readiness states
#####################################################################

afmro:RS-001-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:MissionReady ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-001 current readiness"@en .
afmro:RS-002-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:MissionReady ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-002 current readiness"@en .
afmro:RS-003-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:MissionCapable ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-003 current readiness"@en .
afmro:RS-004-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:NonMissionReady ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-004 current readiness"@en .
afmro:RS-005-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:MissionReady ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-005 current readiness"@en .
afmro:RS-006-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:MissionReady ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-006 current readiness"@en .
afmro:RS-007-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:NonMissionReady ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-007 current readiness"@en .
afmro:RS-008-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:MissionReady ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-008 current readiness"@en .
afmro:RS-009-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:MissionReady ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-009 current readiness"@en .
afmro:RS-010-current a afmro:ReadinessState ; gist:isCategorizedBy afmro:MissionCapable ; gist:occursIn afmro:TI-Now ; skos:prefLabel "AC-010 current readiness"@en .

#####################################################################
# Capabilities
#####################################################################

afmro:Cap-001-A2G a afmro:Capability ; gist:isCategorizedBy afmro:AirToGround ; skos:prefLabel "AC-001 A2G"@en .
afmro:Cap-001-A2A a afmro:Capability ; gist:isCategorizedBy afmro:AirToAir ; skos:prefLabel "AC-001 A2A"@en .
afmro:Cap-002-A2G a afmro:Capability ; gist:isCategorizedBy afmro:AirToGround ; skos:prefLabel "AC-002 A2G"@en .
afmro:Cap-002-A2A a afmro:Capability ; gist:isCategorizedBy afmro:AirToAir ; skos:prefLabel "AC-002 A2A"@en .
afmro:Cap-003-ISR a afmro:Capability ; gist:isCategorizedBy afmro:ISR ; skos:prefLabel "AC-003 ISR"@en .
afmro:Cap-004-A2A a afmro:Capability ; gist:isCategorizedBy afmro:AirToAir ; skos:prefLabel "AC-004 A2A"@en .
afmro:Cap-005-A2A a afmro:Capability ; gist:isCategorizedBy afmro:AirToAir ; skos:prefLabel "AC-005 A2A"@en .
afmro:Cap-006-A2A a afmro:Capability ; gist:isCategorizedBy afmro:AirToAir ; skos:prefLabel "AC-006 A2A"@en .
afmro:Cap-007-A2A a afmro:Capability ; gist:isCategorizedBy afmro:AirToAir ; skos:prefLabel "AC-007 A2A"@en .
afmro:Cap-008-HL a afmro:Capability ; gist:isCategorizedBy afmro:HeavyLift ; skos:prefLabel "AC-008 HL"@en .
afmro:Cap-009-HL a afmro:Capability ; gist:isCategorizedBy afmro:HeavyLift ; skos:prefLabel "AC-009 HL"@en .
afmro:Cap-010-HL a afmro:Capability ; gist:isCategorizedBy afmro:HeavyLift ; skos:prefLabel "AC-010 HL"@en .

#####################################################################
# Crews
#####################################################################

afmro:Crew_Alpha a afmro:Crew ; skos:prefLabel "Crew Alpha"@en ; afmro:assignedTo afmro:AC-001 .
afmro:Crew_Bravo a afmro:Crew ; skos:prefLabel "Crew Bravo"@en ; afmro:assignedTo afmro:AC-002 .
afmro:Crew_Charlie a afmro:Crew ; skos:prefLabel "Crew Charlie"@en ; afmro:assignedTo afmro:AC-005 .
afmro:Crew_Delta a afmro:Crew ; skos:prefLabel "Crew Delta"@en ; afmro:assignedTo afmro:AC-008 .
afmro:Crew_Echo a afmro:Crew ; skos:prefLabel "Crew Echo"@en ; afmro:assignedTo afmro:AC-009 .

#####################################################################
# Mission plans (gist:Task) — planning-time properties only.
#####################################################################

afmro:MP-RedFlag-2026-04 a afmro:MissionPlan ;
  skos:prefLabel "Red Flag mission plan, April 2026"@en ;
  afmro:planFor afmro:Mission-RedFlag-2026-04 ;
  afmro:requiresCapability afmro:AirToAir , afmro:AirToGround ;
  afmro:plannedTimeWindow afmro:TI-RedFlag-Planned ;
  afmro:plannedOperatingArea afmro:Base_RAAFTindal ;
  afmro:plannedParticipantType afmro:F-35A ;
  afmro:authorisedBy afmro:Person_GpCaptHale ;
  afmro:planStatus afmro:Executed ;
  afmro:planRiskLevel afmro:ModerateRisk .

afmro:MP-Reconnaissance-Cancelled a afmro:MissionPlan ;
  skos:prefLabel "Reconnaissance plan (cancelled, never executed)"@en ;
  afmro:planFor afmro:Mission-Reconnaissance-Cancelled ;
  afmro:requiresCapability afmro:ISR ;
  afmro:plannedTimeWindow afmro:TI-Reconnaissance-Planned ;
  afmro:plannedParticipantType afmro:F-35A ;
  afmro:authorisedBy afmro:Person_WgCdrSinclair ;
  afmro:planStatus afmro:Cancelled ;
  afmro:planRiskLevel afmro:LowRisk .

afmro:MP-AerialRefuelling-Future a afmro:MissionPlan ;
  skos:prefLabel "Aerial refuelling plan (capability gap, draft)"@en ;
  afmro:planFor afmro:Mission-AerialRefuelling-Future ;
  afmro:requiresCapability afmro:AerialRefuelling ;
  afmro:plannedTimeWindow afmro:TI-AerialRefuelling-Planned ;
  afmro:plannedParticipantType afmro:C-130J ;
  afmro:authorisedBy afmro:Org_AirCommandHQ ;
  afmro:planStatus afmro:Draft ;
  afmro:planRiskLevel afmro:HighRisk .

#####################################################################
# Missions (gist:Event) — occurrence-time properties only.
# Reconnaissance and AerialRefuelling missions have no gist:occursIn
# (CQ7 yes-case for "plans never executed"). Note: this WILL produce
# SHACL violations against MissionShape because the shape requires
# gist:occursIn. The demo can either accept the violations as
# expected (showing what the unexecuted plans look like) or you may
# prefer to drop the dummy Mission instances and rewrite CQ7 to look
# for plans whose planFor target lacks occursIn — see the runbook.
#####################################################################

afmro:Mission-RedFlag-2026-04 a afmro:Mission ;
  skos:prefLabel "Red Flag mission, 15 April 2026"@en ;
  gist:hasParticipant afmro:AC-001 , afmro:AC-002 ;
  gist:occursIn afmro:TI-MissionRedFlag ;
  gist:hasPhysicalLocation afmro:Base_RAAFTindal ;
  afmro:implementsPlan afmro:MP-RedFlag-2026-04 ;
  afmro:missionCallsign "REDF-04-15" ;
  afmro:missionOutcome afmro:Successful .

afmro:Mission-Reconnaissance-Cancelled a afmro:Mission ;
  skos:prefLabel "Reconnaissance mission (planned, never executed)"@en ;
  gist:hasParticipant afmro:AC-003 ;
  afmro:implementsPlan afmro:MP-Reconnaissance-Cancelled .

afmro:Mission-AerialRefuelling-Future a afmro:Mission ;
  skos:prefLabel "Aerial refuelling mission (planned, never executed)"@en ;
  gist:hasParticipant afmro:AC-008 ;
  afmro:implementsPlan afmro:MP-AerialRefuelling-Future .

#####################################################################
# Maintenance events
#####################################################################

afmro:ME-AC004-Engine a afmro:MaintenanceEvent ;
  skos:prefLabel "AC-004 engine inspection 20 April"@en ;
  afmro:affectsAircraft afmro:AC-004 ;
  gist:occursIn afmro:TI-MaintWindow .

afmro:ME-AC007-Radar a afmro:MaintenanceEvent ;
  skos:prefLabel "AC-007 radar replacement 20 April"@en ;
  afmro:affectsAircraft afmro:AC-007 ;
  gist:occursIn afmro:TI-MaintWindow .
