pboProperty Ontology
turtle1319 lines67.0 KB
RawDownload
1@prefix pbo: <https://ontology.property.local/pbo#> .
2@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
3@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
4@prefix owl: <http://www.w3.org/2002/07/owl#> .
5@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
6@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
7@prefix sh: <http://www.w3.org/ns/shacl#> .
8@prefix dcterms: <http://purl.org/dc/terms/> .
9@prefix prov: <http://www.w3.org/ns/prov#> .
10
11<https://ontology.property.local/pbo> a owl:Ontology ;
12 rdfs:label "Australian Property Investment, Accommodation and Operations Ontology"@en ;
13 dcterms:title "Australian Property Investment, Accommodation and Operations Ontology"@en ;
14 dcterms:description "Evidence-first ontology derived from the property-pages corpus: property assets and identifiers, parties and roles, agreements, accommodation and operating models, ownership structures, investment strategies, Australian regulatory regimes and authorisations with occupancy thresholds, tax rules with effective dates, business-planning artefacts, financial scenarios and metric values, risks and decision gates, property-management operations, agency business models and property data sources. Generated from build/build_model.py; see model.yaml for the term ledger."@en ;
15 dcterms:creator "Ryan Ballantyne" ;
16 dcterms:created "2026-09-14"^^xsd:date ;
17 dcterms:modified "2026-09-14"^^xsd:date ;
18 dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;
19 dcterms:source <file://property-pages/> ;
20 owl:versionInfo "0.1.0" ;
21 owl:versionIRI <https://ontology.property.local/pbo/0.1.0> ;
22 rdfs:comment "OWL 2 DL. PROV-O, SKOS and DCTERMS are referenced by IRI without owl:imports (DEC-002)."@en .
23
24# ---- Classes ----
25pbo:Party a owl:Class ;
26 rdfs:label "Party"@en ;
27 rdfs:comment "A person, organisation or government body that can bear a role in relation to a property asset, agreement, authorisation or business activity."@en ;
28 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
29 rdfs:subClassOf prov:Agent .
30
31pbo:Person a owl:Class ;
32 rdfs:label "Person"@en ;
33 rdfs:comment "An individual human party, for example an owner-occupier renting rooms, an individual investor or a resident."@en ;
34 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
35 rdfs:subClassOf pbo:Party ;
36 rdfs:subClassOf prov:Person .
37
38pbo:Organisation a owl:Class ;
39 rdfs:label "Organisation"@en ;
40 rdfs:comment "A legal or business entity such as a company, trust, partnership, agency, franchisor, lender or insurer."@en ;
41 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
42 rdfs:subClassOf pbo:Party ;
43 rdfs:subClassOf prov:Organization .
44
45pbo:GovernmentBody a owl:Class ;
46 rdfs:label "Government body"@en ;
47 rdfs:comment "A public authority at federal, state or local level that legislates, regulates, registers, licenses, taxes or plans."@en ;
48 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
49 rdfs:subClassOf pbo:Organisation .
50
51pbo:LocalCouncil a owl:Class ;
52 rdfs:label "Local council"@en ;
53 rdfs:comment "A local government authority administering a planning scheme, development approvals, premises registration and local compliance."@en ;
54 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
55 rdfs:subClassOf pbo:GovernmentBody .
56
57pbo:Regulator a owl:Class ;
58 rdfs:label "Regulator"@en ;
59 rdfs:comment "A government body that administers a regulatory regime, for example the Residential Tenancies Authority, the Australian Taxation Office or Consumer Affairs Victoria."@en ;
60 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
61 rdfs:subClassOf pbo:GovernmentBody .
62
63pbo:Business a owl:Class ;
64 rdfs:label "Business"@en ;
65 rdfs:comment "An organisation operating a commercial activity in property, such as a property-management agency, developer, operator or real-estate agency."@en ;
66 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
67 rdfs:subClassOf pbo:Organisation .
68
69pbo:PropertyManagementBusiness a owl:Class ;
70 rdfs:label "Property management business"@en ;
71 rdfs:comment "A business that manages properties on behalf of owners under management agreements, holding a rent roll and providing leasing, rent collection, inspection, maintenance and reporting services."@en ;
72 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
73 rdfs:subClassOf pbo:Business .
74
75pbo:Role a owl:Class ;
76 rdfs:label "Role"@en ;
77 rdfs:comment "A context-dependent capacity a party bears in relation to a property, agreement or activity (owner, investor, operator, landlord, tenant, resident, property manager, lender, insurer, developer, adviser). Roles are named individuals of this class, bound to parties through participations."@en ;
78 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
79
80pbo:Participation a owl:Class ;
81 rdfs:label "Participation"@en ;
82 rdfs:comment "The occurrence of a party bearing a role in a specific context (an agreement, property asset, development project or business), optionally bounded in time."@en ;
83 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
84
85pbo:PropertyAsset a owl:Class ;
86 rdfs:label "Property asset"@en ;
87 rdfs:comment "A parcel of land, building, dwelling, rentable unit or commercial premises that can be owned, leased, developed or operated."@en ;
88 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
89
90pbo:LandParcel a owl:Class ;
91 rdfs:label "Land parcel"@en ;
92 rdfs:comment "A legally identified parcel of land, described by a lot-on-plan and represented spatially in a cadastre."@en ;
93 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
94 rdfs:subClassOf pbo:PropertyAsset .
95
96pbo:Building a owl:Class ;
97 rdfs:label "Building"@en ;
98 rdfs:comment "A structure on land, classified for building-code purposes and containing one or more dwellings or units."@en ;
99 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
100 rdfs:subClassOf pbo:PropertyAsset .
101
102pbo:Dwelling a owl:Class ;
103 rdfs:label "Dwelling"@en ;
104 rdfs:comment "A self-contained residential unit of accommodation, whether a detached house, apartment, duplex half, dual-key section or secondary dwelling."@en ;
105 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
106 rdfs:subClassOf pbo:PropertyAsset .
107
108pbo:RentableUnit a owl:Class ;
109 rdfs:label "Rentable unit"@en ;
110 rdfs:comment "A room, studio, bed or tenancy unit let separately within a larger property, for example a rooming-house room, a coliving bed or a multi-tenant commercial unit."@en ;
111 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
112 rdfs:subClassOf pbo:PropertyAsset .
113
114pbo:CommercialPremises a owl:Class ;
115 rdfs:label "Commercial premises"@en ;
116 rdfs:comment "Property occupied for business purposes such as retail, office, industrial, healthcare or warehouse use."@en ;
117 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
118 rdfs:subClassOf pbo:PropertyAsset .
119
120pbo:Portfolio a owl:Class ;
121 rdfs:label "Portfolio"@en ;
122 rdfs:comment "A collection of property assets held or managed together by an investor or business, including a property manager's rent roll."@en ;
123 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
124
125pbo:PropertyIdentifier a owl:Class ;
126 rdfs:label "Property identifier"@en ;
127 rdfs:comment "An identifier that denotes a property asset within some identification scheme (address, lot-on-plan, title reference, cadastral parcel identifier, G-NAF address identifier)."@en ;
128 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
129
130pbo:Address a owl:Class ;
131 rdfs:label "Address"@en ;
132 rdfs:comment "A postal or geocoded street address identifying a property."@en ;
133 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
134 rdfs:subClassOf pbo:PropertyIdentifier .
135
136pbo:LotOnPlanIdentifier a owl:Class ;
137 rdfs:label "Lot-on-plan identifier"@en ;
138 rdfs:comment "A Queensland-style legal land description consisting of a lot number and registered plan."@en ;
139 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
140 rdfs:subClassOf pbo:PropertyIdentifier .
141
142pbo:TitleReference a owl:Class ;
143 rdfs:label "Title reference"@en ;
144 rdfs:comment "The registered title identifier under which ownership and registered interests (mortgages, easements, covenants, leases, caveats) are recorded."@en ;
145 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
146 rdfs:subClassOf pbo:PropertyIdentifier .
147
148pbo:CadastralParcelIdentifier a owl:Class ;
149 rdfs:label "Cadastral parcel identifier"@en ;
150 rdfs:comment "The identifier of a parcel in the spatial cadastral fabric."@en ;
151 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
152 rdfs:subClassOf pbo:PropertyIdentifier .
153
154pbo:Jurisdiction a owl:Class ;
155 rdfs:label "Jurisdiction"@en ;
156 rdfs:comment "A geographic-legal area (nation, state, local government area, metropolitan region) within which a regulatory regime, tax rule or market statistic applies."@en ;
157 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
158
159pbo:Agreement a owl:Class ;
160 rdfs:label "Agreement"@en ;
161 rdfs:comment "A contract between two or more parties concerning the occupation, operation, management or use of a property asset, carrying term, rent, permitted use and allocation of obligations and risks."@en ;
162 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
163
164pbo:ResidentialTenancyAgreement a owl:Class ;
165 rdfs:label "Residential tenancy agreement"@en ;
166 rdfs:comment "A general tenancy agreement under which a tenant rents whole residential premises from a lessor."@en ;
167 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
168 rdfs:subClassOf pbo:Agreement .
169
170pbo:RoomingAccommodationAgreement a owl:Class ;
171 rdfs:label "Rooming accommodation agreement"@en ;
172 rdfs:comment "An agreement under which a resident rents a room and shares facilities with a provider; in Queensland the prescribed form under the Residential Tenancies and Rooming Accommodation Act 2008."@en ;
173 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
174 rdfs:subClassOf pbo:Agreement .
175
176pbo:HeadLease a owl:Class ;
177 rdfs:label "Head lease (master lease)"@en ;
178 rdfs:comment "A lease from the property owner to an operator who then sublets to residents or occupants; the operator pays fixed rent regardless of occupancy."@en ;
179 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
180 rdfs:subClassOf pbo:Agreement .
181
182pbo:Sublease a owl:Class ;
183 rdfs:label "Sublease"@en ;
184 rdfs:comment "A letting by a head tenant or operator to an end tenant, resident or occupant of all or part of premises held under a head lease."@en ;
185 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
186 rdfs:subClassOf pbo:Agreement .
187
188pbo:ManagementAgreement a owl:Class ;
189 rdfs:label "Management agreement"@en ;
190 rdfs:comment "An agreement under which an operator or property manager manages accommodation or property for an owner in return for a fee and/or revenue or profit share, without fixed head rent."@en ;
191 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
192 rdfs:subClassOf pbo:Agreement .
193
194pbo:CorporateLease a owl:Class ;
195 rdfs:label "Corporate lease"@en ;
196 rdfs:comment "A lease of residential property to a company for occupation by its staff, typically furnished and serviced to a higher standard at a premium rent."@en ;
197 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
198 rdfs:subClassOf pbo:Agreement .
199
200pbo:CommercialLease a owl:Class ;
201 rdfs:label "Commercial lease"@en ;
202 rdfs:comment "A lease of commercial premises between a lessor and a business lessee, characterised by lease type (gross, net, triple net), term, rent reviews, permitted use and outgoings allocation."@en ;
203 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
204 rdfs:subClassOf pbo:Agreement .
205
206pbo:ContractClause a owl:Class ;
207 rdfs:label "Contract clause"@en ;
208 rdfs:comment "A provision within an agreement that allocates a specific right, obligation or contingency, such as subletting permission, break rights, rent escalation, make-good or co-tenancy relief."@en ;
209 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
210
211pbo:CoTenancyClause a owl:Class ;
212 rdfs:label "Co-tenancy clause"@en ;
213 rdfs:comment "A commercial-lease clause allowing a tenant to reduce rent or exercise other rights if an anchor tenant leaves or occupancy falls below an agreed level."@en ;
214 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
215 rdfs:subClassOf pbo:ContractClause .
216
217pbo:SublettingPermissionClause a owl:Class ;
218 rdfs:label "Subletting permission clause"@en ;
219 rdfs:comment "An express provision granting the tenant or operator authority to sublet or license the premises to others."@en ;
220 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
221 rdfs:subClassOf pbo:ContractClause .
222
223pbo:OutgoingAllocation a owl:Class ;
224 rdfs:label "Outgoing allocation"@en ;
225 rdfs:comment "The assignment of a category of property outgoing (taxes, insurance, maintenance, common-area costs, capital expenditure, utilities) to the party in a given role under a lease type."@en ;
226 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
227
228pbo:RegulatoryRegime a owl:Class ;
229 rdfs:label "Regulatory regime"@en ;
230 rdfs:comment "A coherent body of rules administered by a regulator under legislation in a jurisdiction that applies to an operating model or accommodation type, may set occupancy thresholds and may require authorisations before operation."@en ;
231 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
232
233pbo:Legislation a owl:Class ;
234 rdfs:label "Legislation"@en ;
235 rdfs:comment "A named statute, regulation, planning provision, code or ruling that establishes a regulatory regime or rule."@en ;
236 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
237 rdfs:subClassOf pbo:LegalInstrument .
238
239pbo:LegalInstrument a owl:Class ;
240 rdfs:label "Legal instrument"@en ;
241 rdfs:comment "An information artefact with legal effect, such as legislation, a prescribed form or a planning-scheme provision."@en ;
242 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
243 rdfs:subClassOf pbo:InformationArtefact .
244
245pbo:PrescribedForm a owl:Class ;
246 rdfs:label "Prescribed form"@en ;
247 rdfs:comment "A form mandated by a regulator for a specified agreement or notice, such as Queensland's Form R18 rooming accommodation agreement."@en ;
248 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
249 rdfs:subClassOf pbo:LegalInstrument .
250
251pbo:RegulatoryRule a owl:Class ;
252 rdfs:label "Regulatory rule"@en ;
253 rdfs:comment "A specific requirement, restriction or entitlement within a regime that has effective dates, such as a rent-increase frequency limit, a notice period, a levy or a tax deductibility rule."@en ;
254 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
255
256pbo:TaxRule a owl:Class ;
257 rdfs:label "Tax rule"@en ;
258 rdfs:comment "A regulatory rule about income tax, capital gains tax, GST, land tax or duty that applies to a class of property or taxpayer from an effective date, possibly with a grandfathering cut-off."@en ;
259 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
260 rdfs:subClassOf pbo:RegulatoryRule .
261
262pbo:OccupancyThreshold a owl:Class ;
263 rdfs:label "Occupancy threshold"@en ;
264 rdfs:comment "A numeric limit on residents, rooms, bedrooms, lettings or floor area that triggers, exempts or bounds the application of a regulatory regime."@en ;
265 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
266
267pbo:Authorisation a owl:Class ;
268 rdfs:label "Authorisation"@en ;
269 rdfs:comment "A planning approval, building approval, fire-safety certification, registration, accreditation or licence issued by a government body to a party for a property or operation under a regulatory regime, with a status and validity."@en ;
270 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
271
272pbo:PlanningApproval a owl:Class ;
273 rdfs:label "Planning approval"@en ;
274 rdfs:comment "A development or use approval under a local planning scheme permitting a stated use (for example rooming accommodation) on a site, or an exemption from needing one."@en ;
275 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
276 rdfs:subClassOf pbo:Authorisation .
277
278pbo:BuildingApproval a owl:Class ;
279 rdfs:label "Building approval"@en ;
280 rdfs:comment "A building permit, classification change, occupancy approval or compliance notice confirming the building is approved for its intended class and use."@en ;
281 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
282 rdfs:subClassOf pbo:Authorisation .
283
284pbo:FireSafetyCertification a owl:Class ;
285 rdfs:label "Fire-safety certification"@en ;
286 rdfs:comment "Documentation that the premises satisfy applicable fire-safety requirements (alarms, exits, emergency lighting, fire-safety management)."@en ;
287 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
288 rdfs:subClassOf pbo:Authorisation .
289
290pbo:ResidentialServiceRegistration a owl:Class ;
291 rdfs:label "Residential service registration"@en ;
292 rdfs:comment "Queensland registration required before operating a residential service accommodating four or more residents who separately pay for accommodation."@en ;
293 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
294 rdfs:subClassOf pbo:Authorisation .
295
296pbo:AccommodationServiceAccreditation a owl:Class ;
297 rdfs:label "Accommodation service accreditation"@en ;
298 rdfs:comment "Queensland accreditation of a registered residential service (Level 1 accommodation; Levels 2-3 where food or personal care are provided), sought within three months of registration."@en ;
299 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
300 rdfs:subClassOf pbo:Authorisation .
301
302pbo:RoomingHouseOperatorLicence a owl:Class ;
303 rdfs:label "Rooming house operator licence"@en ;
304 rdfs:comment "The Victorian licence a person or entity must hold before operating a rooming house under the Rooming House Operators Act 2016; one licence can cover multiple premises."@en ;
305 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
306 rdfs:subClassOf pbo:Authorisation .
307
308pbo:RoomingHousePremisesRegistration a owl:Class ;
309 rdfs:label "Rooming house premises registration"@en ;
310 rdfs:comment "Victorian registration of each rooming-house premises with the local council under the public-health framework, separate from the operator licence."@en ;
311 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
312 rdfs:subClassOf pbo:Authorisation .
313
314pbo:RealEstateAgentLicence a owl:Class ;
315 rdfs:label "Real estate agent licence"@en ;
316 rdfs:comment "A state licence or registration held by a property agent, salesperson or corporation, recorded in a public register such as the Queensland Office of Fair Trading register."@en ;
317 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
318 rdfs:subClassOf pbo:Authorisation .
319
320pbo:InvestmentStrategy a owl:Class ;
321 rdfs:label "Investment strategy"@en ;
322 rdfs:comment "A named approach to acquiring, holding, improving, operating or disposing of property to achieve return objectives (for example buy and hold, fix and flip, rooming house, dual income, small-scale development)."@en ;
323 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
324
325pbo:OperatingModel a owl:Class ;
326 rdfs:label "Operating model"@en ;
327 rdfs:comment "A named arrangement of who controls the asset, who earns the operating revenue and who bears vacancy and fixed-cost risk (ownership, master lease / rent-to-rent, management or revenue share, hybrid/franchise, corporate leasing, single-lease rental)."@en ;
328 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
329
330pbo:AccommodationType a owl:Class ;
331 rdfs:label "Accommodation type"@en ;
332 rdfs:comment "A named physical and occupancy configuration of accommodation (whole-house rental, rooming house / HMO, coliving, boarding house, share house, dual-income configurations, student accommodation, short-stay, single- or multi-tenant commercial)."@en ;
333 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
334
335pbo:OwnershipStructure a owl:Class ;
336 rdfs:label "Ownership structure"@en ;
337 rdfs:comment "A legal vehicle through which property is held (individual, joint tenants, tenants in common, discretionary trust, unit trust, company, self-managed super fund)."@en ;
338 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
339
340pbo:StructureCharacteristic a owl:Class ;
341 rdfs:label "Structure characteristic"@en ;
342 rdfs:comment "A stated tax, liability, distribution, financing, estate or administrative property of an ownership structure as described by a source."@en ;
343 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
344
345pbo:LeaseType a owl:Class ;
346 rdfs:label "Lease type"@en ;
347 rdfs:comment "A named commercial or residential lease structure distinguished by duration and outgoings allocation (short-term, long-term, shopping-centre/retail, gross, net, triple net)."@en ;
348 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
349
350pbo:TenantConfiguration a owl:Class ;
351 rdfs:label "Tenant configuration"@en ;
352 rdfs:comment "Whether a property is occupied by a single tenant or by multiple tenants under separate leases."@en ;
353 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
354
355pbo:TenantSegment a owl:Class ;
356 rdfs:label "Tenant segment"@en ;
357 rdfs:comment "A demand group that an accommodation product targets (students, young professionals, essential workers, corporate staff, singles and couples, families, new arrivals, temporary workers)."@en ;
358 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
359
360pbo:AgencyBusinessModel a owl:Class ;
361 rdfs:label "Agency business model"@en ;
362 rdfs:comment "An organisational structure for a real-estate agency (franchise, cooperative, joint venture, boutique, independent) with characteristic control and capability-sourcing patterns."@en ;
363 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
364
365pbo:BuildingClassification a owl:Class ;
366 rdfs:label "Building classification"@en ;
367 rdfs:comment "A National Construction Code building class (for example Class 1a, Class 1b, Class 3) that determines fire, egress and occupancy requirements."@en ;
368 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
369
370pbo:TaxClassification a owl:Class ;
371 rdfs:label "Tax classification"@en ;
372 rdfs:comment "A tax-law categorisation of a property activity or supply (rental investment, rental-property business, profit-making undertaking, input-taxed residential rent, commercial residential premises)."@en ;
373 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
374
375pbo:AuthorisationType a owl:Class ;
376 rdfs:label "Authorisation type"@en ;
377 rdfs:comment "The kind of authorisation a regime requires (planning approval, building approval, fire-safety certification, registration, accreditation, operator licence, premises registration, agent licence)."@en ;
378 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
379
380pbo:ThresholdKind a owl:Class ;
381 rdfs:label "Threshold kind"@en ;
382 rdfs:comment "What an occupancy threshold counts: residents, unrelated tenants, rooms rented, bedrooms, separate lettings, persons, floor area, dwellings."@en ;
383 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
384
385pbo:Metric a owl:Class ;
386 rdfs:label "Metric"@en ;
387 rdfs:comment "A named financial, operating or market measure (gross yield, net yield, NOI, cash-on-cash return, IRR, occupancy, economic vacancy, RevPAR, CAC, EBITDA, EBITDAR, DSCR, LVR, break-even occupancy, median rent, vacancy rate)."@en ;
388 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
389
390pbo:RiskCategory a owl:Class ;
391 rdfs:label "Risk category"@en ;
392 rdfs:comment "A grouping of risks by nature (planning-use, building/fire, licensing, tenancy-law, vacancy/turnover, management intensity, insurance, interest-rate/refinancing, valuation/exit, construction-cost, tax-classification, policy, counterparty, market-cycle, data/privacy, key-person)."@en ;
393 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
394
395pbo:OutgoingCategory a owl:Class ;
396 rdfs:label "Outgoing category"@en ;
397 rdfs:comment "A category of property operating cost that a lease may allocate: taxes/rates, insurance, maintenance, common-area maintenance, capital expenditure, utilities."@en ;
398 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
399
400pbo:DataAccessTier a owl:Class ;
401 rdfs:label "Data access tier"@en ;
402 rdfs:comment "The access model of a data source: open authoritative, public lookup or government paid, commercial API/extract, first-party, derived internally."@en ;
403 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
404
405pbo:PropertyAttribute a owl:Class ;
406 rdfs:label "Property attribute"@en ;
407 rdfs:comment "A kind of information about a property that a data source can supply (address, parcel boundary, zoning, overlay, flood exposure, school catchment, transport access, demographics, development application, transaction, listing, rent, ownership, title, valuation)."@en ;
408 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
409
410pbo:DocumentSection a owl:Class ;
411 rdfs:label "Document section"@en ;
412 rdfs:comment "A named component that a business-planning artefact is recommended to contain (executive summary, market analysis, financial projections, risk and contingency, exit strategy, and so on)."@en ;
413 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
414
415pbo:FeeModel a owl:Class ;
416 rdfs:label "Fee model"@en ;
417 rdfs:comment "The way a property-management service is charged: percentage of rent collected, flat fee, hybrid, letting fee, renewal fee, ancillary fees."@en ;
418 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
419
420pbo:CapabilitySourcing a owl:Class ;
421 rdfs:label "Capability sourcing"@en ;
422 rdfs:comment "How an organisation obtains a capability: owned internally, centralised, localised, outsourced, shared through a network, accessed through partnership (inbound/outbound open innovation)."@en ;
423 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
424
425pbo:PropertyClass a owl:Class ;
426 rdfs:label "Property class for tax purposes"@en ;
427 rdfs:comment "A category of property to which a tax rule applies: new residential build, established residential, commercial residential premises, build-to-rent project, affordable housing."@en ;
428 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
429
430pbo:ProjectPhase a owl:Class ;
431 rdfs:label "Project phase"@en ;
432 rdfs:comment "A stage in a development or conversion project (acquisition screening, conditional due diligence, concept and approvals, construction, completion, operating approvals, lease-up, ongoing operation)."@en ;
433 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
434
435pbo:Risk a owl:Class ;
436 rdfs:label "Risk"@en ;
437 rdfs:comment "An uncertain event or condition that, if it occurs, adversely affects a strategy, operating model, agreement, property or project, categorised and optionally mitigated."@en ;
438 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
439
440pbo:Mitigation a owl:Class ;
441 rdfs:label "Mitigation"@en ;
442 rdfs:comment "A control, action or diligence step recorded as reducing the likelihood or impact of a risk."@en ;
443 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
444
445pbo:DecisionGate a owl:Class ;
446 rdfs:label "Decision gate"@en ;
447 rdfs:comment "A go/no-go condition that must be satisfied before a project proceeds, such as the planning, building/fire, finance and operating gates for a rooming house."@en ;
448 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
449
450pbo:InformationArtefact a owl:Class ;
451 rdfs:label "Information artefact"@en ;
452 rdfs:comment "A document, dataset, model, plan, register or other information object produced or used in property business activity."@en ;
453 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
454 rdfs:subClassOf prov:Entity .
455
456pbo:BusinessPlan a owl:Class ;
457 rdfs:label "Business plan"@en ;
458 rdfs:comment "An internal strategy document describing a business's objectives, structure, market, strategy, operations, finances, risks and exit."@en ;
459 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
460 rdfs:subClassOf pbo:InformationArtefact .
461
462pbo:ProjectPlan a owl:Class ;
463 rdfs:label "Project plan"@en ;
464 rdfs:comment "A document describing a specific development project's site, scope, staging, milestones, team and delivery."@en ;
465 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
466 rdfs:subClassOf pbo:InformationArtefact .
467
468pbo:FeasibilityStudy a owl:Class ;
469 rdfs:label "Feasibility study"@en ;
470 rdfs:comment "A financial and technical assessment of whether a site and project are viable, covering income and cost streams, structure, risks and projected position."@en ;
471 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
472 rdfs:subClassOf pbo:InformationArtefact .
473
474pbo:InformationMemorandum a owl:Class ;
475 rdfs:label "Information memorandum"@en ;
476 rdfs:comment "An external document (typically 25-30 pages) presenting a development to investors or lenders with overview, location, plan, team, market, financial plan, offer and risk management."@en ;
477 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
478 rdfs:subClassOf pbo:InformationArtefact .
479
480pbo:FinancialModel a owl:Class ;
481 rdfs:label "Financial model"@en ;
482 rdfs:comment "A projection artefact containing income statement, cash flow, balance sheet, sources and uses, break-even, ROI/IRR and sensitivity analysis."@en ;
483 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
484 rdfs:subClassOf pbo:InformationArtefact .
485
486pbo:RiskRegister a owl:Class ;
487 rdfs:label "Risk register"@en ;
488 rdfs:comment "A structured list of risks with owner, likelihood, impact, mitigation, trigger and response."@en ;
489 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
490 rdfs:subClassOf pbo:InformationArtefact .
491
492pbo:ImplementationSchedule a owl:Class ;
493 rdfs:label "Implementation schedule"@en ;
494 rdfs:comment "A dated milestone schedule with role matrix, approval gates, governance cadence and reporting."@en ;
495 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
496 rdfs:subClassOf pbo:InformationArtefact .
497
498pbo:SourceDocument a owl:Class ;
499 rdfs:label "Source document"@en ;
500 rdfs:comment "A document in the property-pages corpus (scraped article, government page, forum thread, academic paper, synthesis or report) from which claims are drawn."@en ;
501 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
502 rdfs:subClassOf pbo:InformationArtefact .
503
504pbo:DataSource a owl:Class ;
505 rdfs:label "Data source"@en ;
506 rdfs:comment "A published dataset, register, API or service that supplies property attributes, identifiers or market statistics for a jurisdiction under an access tier and licence."@en ;
507 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
508 rdfs:subClassOf pbo:InformationArtefact .
509
510pbo:Workflow a owl:Class ;
511 rdfs:label "Workflow"@en ;
512 rdfs:comment "A documented operational process of a property business with trigger, responsible role, steps, decision points, records, service standard and escalation path."@en ;
513 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
514 rdfs:subClassOf pbo:InformationArtefact .
515
516pbo:Service a owl:Class ;
517 rdfs:label "Service"@en ;
518 rdfs:comment "A defined service a property-management business provides to landlords or tenants, such as tenant screening, lease preparation, rent collection, inspections, maintenance coordination or reporting."@en ;
519 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
520
521pbo:FinancialScenario a owl:Class ;
522 rdfs:label "Financial scenario"@en ;
523 rdfs:comment "A named set of underwriting assumptions applied to a property or project (project cost, leverage, interest, rooms, tariff, vacancy, operating-expense ratio, growth) that yields result metrics."@en ;
524 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
525
526pbo:MetricValue a owl:Class ;
527 rdfs:label "Metric value"@en ;
528 rdfs:comment "A value of a metric (numeric value, unit, basis note) as assumed in a scenario, computed as a result, or claimed by a source for a property, market or model."@en ;
529 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
530
531pbo:DevelopmentProject a owl:Class ;
532 rdfs:label "Development project"@en ;
533 rdfs:comment "An activity that acquires, converts, subdivides, builds or repositions property through phases from screening to operation, producing approvals, buildings and artefacts."@en ;
534 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
535 rdfs:subClassOf prov:Activity .
536
537pbo:ThresholdEffect a owl:Class ;
538 rdfs:label "Threshold effect"@en ;
539 rdfs:comment "The regulatory consequence when an occupancy threshold is satisfied: the regime applies in full, applies in part, does not apply, a permit is exempt, or an authorisation becomes required."@en ;
540 rdfs:isDefinedBy <https://ontology.property.local/pbo> .
541
542# ---- Restrictions ----
543pbo:Participation rdfs:subClassOf [ a owl:Restriction ; owl:onProperty pbo:participant ; owl:someValuesFrom pbo:Party ] ,
544 [ a owl:Restriction ; owl:onProperty pbo:inRole ; owl:someValuesFrom pbo:Role ] .
545pbo:MetricValue rdfs:subClassOf [ a owl:Restriction ; owl:onProperty pbo:metric ; owl:someValuesFrom pbo:Metric ] .
546pbo:HeadLease rdfs:subClassOf [ a owl:Restriction ; owl:onProperty pbo:fixedRent ; owl:hasValue true ] .
547
548# ---- Disjointness ----
549[] a owl:AllDisjointClasses ; owl:members ( pbo:Person pbo:Organisation ) .
550[] a owl:AllDisjointClasses ; owl:members ( pbo:HeadLease pbo:Sublease pbo:ManagementAgreement ) .
551[] a owl:AllDisjointClasses ; owl:members ( pbo:Agreement pbo:Authorisation pbo:PropertyAsset pbo:Party pbo:Participation pbo:MetricValue ) .
552
553# ---- Object properties ----
554pbo:hasParticipation a owl:ObjectProperty ;
555 rdfs:label "has participation"@en ;
556 rdfs:comment "Links an agreement, property asset, development project or business to a participation in which a party bears a role in that context."@en ;
557 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
558 rdfs:range pbo:Participation ;
559 owl:inverseOf pbo:participationContext .
560
561pbo:participationContext a owl:ObjectProperty ;
562 rdfs:label "participation context"@en ;
563 rdfs:comment "The agreement, property asset, project or business in which the participation occurs."@en ;
564 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
565 rdfs:domain pbo:Participation .
566
567pbo:participant a owl:ObjectProperty, owl:FunctionalProperty ;
568 rdfs:label "participant"@en ;
569 rdfs:comment "The party bearing the role in a participation."@en ;
570 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
571 rdfs:domain pbo:Participation ;
572 rdfs:range pbo:Party .
573
574pbo:inRole a owl:ObjectProperty, owl:FunctionalProperty ;
575 rdfs:label "in role"@en ;
576 rdfs:comment "The role borne by the participant in the participation."@en ;
577 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
578 rdfs:domain pbo:Participation ;
579 rdfs:range pbo:Role .
580
581pbo:ownedBy a owl:ObjectProperty ;
582 rdfs:label "owned by"@en ;
583 rdfs:comment "Convenience shortcut stating the party that owns the property asset; equivalent in intent to a participation in the Owner role."@en ;
584 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
585 rdfs:domain pbo:PropertyAsset ;
586 rdfs:range pbo:Party .
587
588pbo:managedBy a owl:ObjectProperty ;
589 rdfs:label "managed by"@en ;
590 rdfs:comment "Convenience shortcut stating the party that manages a property asset or portfolio on the owner's behalf."@en ;
591 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
592 rdfs:range pbo:Party .
593
594pbo:operatedBy a owl:ObjectProperty ;
595 rdfs:label "operated by"@en ;
596 rdfs:comment "Convenience shortcut stating the party that operates accommodation at the property (the operator, provider or head tenant)."@en ;
597 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
598 rdfs:domain pbo:PropertyAsset ;
599 rdfs:range pbo:Party .
600
601pbo:concernsAsset a owl:ObjectProperty ;
602 rdfs:label "concerns asset"@en ;
603 rdfs:comment "The property asset (or rentable unit) that an agreement, authorisation, scenario, risk or project concerns."@en ;
604 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
605 rdfs:range pbo:PropertyAsset .
606
607pbo:hasClause a owl:ObjectProperty ;
608 rdfs:label "has clause"@en ;
609 rdfs:comment "A clause contained in the agreement."@en ;
610 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
611 rdfs:domain pbo:Agreement ;
612 rdfs:range pbo:ContractClause .
613
614pbo:leaseType a owl:ObjectProperty ;
615 rdfs:label "classified by lease type"@en ;
616 rdfs:comment "The lease-type classification of an agreement."@en ;
617 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
618 rdfs:domain pbo:Agreement ;
619 rdfs:range pbo:LeaseType .
620
621pbo:agreementUnderHeadLease a owl:ObjectProperty ;
622 rdfs:label "sublease under head lease"@en ;
623 rdfs:comment "Links a sublease to the head lease from which the operator's right to sublet derives."@en ;
624 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
625 rdfs:domain pbo:Sublease ;
626 rdfs:range pbo:HeadLease .
627
628pbo:permittedUse a owl:ObjectProperty ;
629 rdfs:label "permitted use"@en ;
630 rdfs:comment "The accommodation type or use the agreement permits."@en ;
631 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
632 rdfs:domain pbo:Agreement ;
633 rdfs:range pbo:AccommodationType .
634
635pbo:allocatesOutgoing a owl:ObjectProperty ;
636 rdfs:label "allocates outgoing"@en ;
637 rdfs:comment "Links a lease type or agreement to an outgoing allocation."@en ;
638 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
639 rdfs:range pbo:OutgoingAllocation .
640
641pbo:outgoingCategory a owl:ObjectProperty ;
642 rdfs:label "allocates outgoing category"@en ;
643 rdfs:comment "The category of outgoing being allocated."@en ;
644 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
645 rdfs:domain pbo:OutgoingAllocation ;
646 rdfs:range pbo:OutgoingCategory .
647
648pbo:borneByRole a owl:ObjectProperty ;
649 rdfs:label "borne by role"@en ;
650 rdfs:comment "The role (landlord/lessor or tenant/lessee) that bears the allocated outgoing."@en ;
651 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
652 rdfs:domain pbo:OutgoingAllocation ;
653 rdfs:range pbo:Role .
654
655pbo:locatedIn a owl:ObjectProperty ;
656 rdfs:label "located in"@en ;
657 rdfs:comment "The jurisdiction in which a property asset is located."@en ;
658 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
659 rdfs:domain pbo:PropertyAsset ;
660 rdfs:range pbo:Jurisdiction .
661
662pbo:withinJurisdiction a owl:ObjectProperty, owl:TransitiveProperty ;
663 rdfs:label "within jurisdiction"@en ;
664 rdfs:comment "Containment of one jurisdiction within a larger one (a local government area within a state within a nation)."@en ;
665 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
666 rdfs:domain pbo:Jurisdiction ;
667 rdfs:range pbo:Jurisdiction .
668
669pbo:hasIdentifier a owl:ObjectProperty ;
670 rdfs:label "has identifier"@en ;
671 rdfs:comment "A property identifier denoting the asset."@en ;
672 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
673 rdfs:domain pbo:PropertyAsset ;
674 rdfs:range pbo:PropertyIdentifier .
675
676pbo:partOf a owl:ObjectProperty, owl:TransitiveProperty ;
677 rdfs:label "part of"@en ;
678 rdfs:comment "Mereological part relation between property assets (a room within a dwelling, a dwelling within a building, a building on a parcel)."@en ;
679 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
680 rdfs:domain pbo:PropertyAsset ;
681 rdfs:range pbo:PropertyAsset .
682
683pbo:inPortfolio a owl:ObjectProperty ;
684 rdfs:label "in portfolio"@en ;
685 rdfs:comment "The portfolio that holds or manages the asset."@en ;
686 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
687 rdfs:domain pbo:PropertyAsset ;
688 rdfs:range pbo:Portfolio .
689
690pbo:heldUnder a owl:ObjectProperty ;
691 rdfs:label "held under ownership structure"@en ;
692 rdfs:comment "The ownership structure through which an asset or portfolio is held."@en ;
693 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
694 rdfs:range pbo:OwnershipStructure .
695
696pbo:hasCharacteristic a owl:ObjectProperty ;
697 rdfs:label "has characteristic"@en ;
698 rdfs:comment "A characteristic a source attributes to an ownership structure."@en ;
699 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
700 rdfs:domain pbo:OwnershipStructure ;
701 rdfs:range pbo:StructureCharacteristic .
702
703pbo:hasAccommodationType a owl:ObjectProperty ;
704 rdfs:label "has accommodation type"@en ;
705 rdfs:comment "The accommodation-type classification of a property asset or rentable unit."@en ;
706 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
707 rdfs:domain pbo:PropertyAsset ;
708 rdfs:range pbo:AccommodationType .
709
710pbo:hasBuildingClassification a owl:ObjectProperty ;
711 rdfs:label "has building classification"@en ;
712 rdfs:comment "The building-code class of a building or dwelling."@en ;
713 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
714 rdfs:domain pbo:PropertyAsset ;
715 rdfs:range pbo:BuildingClassification .
716
717pbo:intendedOperatingModel a owl:ObjectProperty ;
718 rdfs:label "intended operating model"@en ;
719 rdfs:comment "The operating model under which a property is, or is proposed to be, operated."@en ;
720 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
721 rdfs:domain pbo:PropertyAsset ;
722 rdfs:range pbo:OperatingModel .
723
724pbo:tenantConfiguration a owl:ObjectProperty ;
725 rdfs:label "uses tenant configuration"@en ;
726 rdfs:comment "Whether the property is single- or multi-tenant."@en ;
727 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
728 rdfs:domain pbo:PropertyAsset ;
729 rdfs:range pbo:TenantConfiguration .
730
731pbo:hasAuthorisation a owl:ObjectProperty ;
732 rdfs:label "has authorisation"@en ;
733 rdfs:comment "An authorisation held for, or required by, a property asset or party."@en ;
734 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
735 rdfs:range pbo:Authorisation .
736
737pbo:authorisationType a owl:ObjectProperty ;
738 rdfs:label "has authorisation type"@en ;
739 rdfs:comment "The kind of authorisation."@en ;
740 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
741 rdfs:domain pbo:Authorisation ;
742 rdfs:range pbo:AuthorisationType .
743
744pbo:issuedBy a owl:ObjectProperty ;
745 rdfs:label "issued by"@en ;
746 rdfs:comment "The government body that issues or grants the authorisation."@en ;
747 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
748 rdfs:domain pbo:Authorisation ;
749 rdfs:range pbo:GovernmentBody .
750
751pbo:authorisedParty a owl:ObjectProperty ;
752 rdfs:label "authorised party"@en ;
753 rdfs:comment "The party to whom the authorisation is granted (the operator, provider, licensee or applicant)."@en ;
754 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
755 rdfs:domain pbo:Authorisation ;
756 rdfs:range pbo:Party .
757
758pbo:underRegime a owl:ObjectProperty ;
759 rdfs:label "under regime"@en ;
760 rdfs:comment "The regulatory regime under which the authorisation is issued or the rule sits."@en ;
761 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
762 rdfs:range pbo:RegulatoryRegime .
763
764pbo:appliesIn a owl:ObjectProperty ;
765 rdfs:label "applies in"@en ;
766 rdfs:comment "The jurisdiction in which a regulatory regime or rule applies."@en ;
767 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
768 rdfs:range pbo:Jurisdiction .
769
770pbo:governedBy a owl:ObjectProperty ;
771 rdfs:label "governed by"@en ;
772 rdfs:comment "The legislation that establishes the regime or rule."@en ;
773 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
774 rdfs:range pbo:Legislation .
775
776pbo:administeredBy a owl:ObjectProperty ;
777 rdfs:label "administered by"@en ;
778 rdfs:comment "The regulator or government body that administers the regime."@en ;
779 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
780 rdfs:domain pbo:RegulatoryRegime ;
781 rdfs:range pbo:GovernmentBody .
782
783pbo:appliesToOperatingModel a owl:ObjectProperty ;
784 rdfs:label "applies to operating model"@en ;
785 rdfs:comment "An operating model to which the regime applies."@en ;
786 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
787 rdfs:domain pbo:RegulatoryRegime ;
788 rdfs:range pbo:OperatingModel .
789
790pbo:appliesToAccommodationType a owl:ObjectProperty ;
791 rdfs:label "applies to accommodation type"@en ;
792 rdfs:comment "An accommodation type to which the regime applies."@en ;
793 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
794 rdfs:domain pbo:RegulatoryRegime ;
795 rdfs:range pbo:AccommodationType .
796
797pbo:requiresAuthorisationType a owl:ObjectProperty ;
798 rdfs:label "requires authorisation type"@en ;
799 rdfs:comment "A kind of authorisation that must be obtained before operating under the regime."@en ;
800 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
801 rdfs:domain pbo:RegulatoryRegime ;
802 rdfs:range pbo:AuthorisationType .
803
804pbo:hasThreshold a owl:ObjectProperty ;
805 rdfs:label "has threshold"@en ;
806 rdfs:comment "An occupancy or size threshold that triggers, exempts or bounds the regime."@en ;
807 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
808 rdfs:domain pbo:RegulatoryRegime ;
809 rdfs:range pbo:OccupancyThreshold .
810
811pbo:thresholdKind a owl:ObjectProperty, owl:FunctionalProperty ;
812 rdfs:label "has threshold kind"@en ;
813 rdfs:comment "What the threshold counts."@en ;
814 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
815 rdfs:domain pbo:OccupancyThreshold ;
816 rdfs:range pbo:ThresholdKind .
817
818pbo:hasRule a owl:ObjectProperty ;
819 rdfs:label "has rule"@en ;
820 rdfs:comment "A specific rule within the regime."@en ;
821 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
822 rdfs:domain pbo:RegulatoryRegime ;
823 rdfs:range pbo:RegulatoryRule .
824
825pbo:appliesToPropertyClass a owl:ObjectProperty ;
826 rdfs:label "applies to property class"@en ;
827 rdfs:comment "The class of property (new build, established, commercial residential, build-to-rent) to which a tax rule applies."@en ;
828 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
829 rdfs:domain pbo:TaxRule ;
830 rdfs:range pbo:PropertyClass .
831
832pbo:hasTaxClassification a owl:ObjectProperty ;
833 rdfs:label "has tax classification"@en ;
834 rdfs:comment "The tax classification attributed to an activity, party, property or supply."@en ;
835 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
836 rdfs:range pbo:TaxClassification .
837
838pbo:prescribesForm a owl:ObjectProperty ;
839 rdfs:label "prescribes form"@en ;
840 rdfs:comment "A prescribed form required by the regime for an agreement or notice."@en ;
841 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
842 rdfs:domain pbo:RegulatoryRegime ;
843 rdfs:range pbo:PrescribedForm .
844
845pbo:strategyUsesOperatingModel a owl:ObjectProperty ;
846 rdfs:label "strategy uses operating model"@en ;
847 rdfs:comment "An operating model on which the investment strategy relies."@en ;
848 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
849 rdfs:domain pbo:InvestmentStrategy ;
850 rdfs:range pbo:OperatingModel .
851
852pbo:strategyUsesAccommodationType a owl:ObjectProperty ;
853 rdfs:label "strategy uses accommodation type"@en ;
854 rdfs:comment "An accommodation type on which the investment strategy relies."@en ;
855 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
856 rdfs:domain pbo:InvestmentStrategy ;
857 rdfs:range pbo:AccommodationType .
858
859pbo:targetsTenantSegment a owl:ObjectProperty ;
860 rdfs:label "targets tenant segment"@en ;
861 rdfs:comment "A tenant segment that a strategy, accommodation type or property targets."@en ;
862 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
863 rdfs:range pbo:TenantSegment .
864
865pbo:hasStrategy a owl:ObjectProperty ;
866 rdfs:label "has strategy"@en ;
867 rdfs:comment "The investment strategy applied to a portfolio, asset or project."@en ;
868 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
869 rdfs:range pbo:InvestmentStrategy .
870
871pbo:hasRisk a owl:ObjectProperty ;
872 rdfs:label "has risk"@en ;
873 rdfs:comment "A risk that applies to the subject (strategy, operating model, agreement, property, project or business)."@en ;
874 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
875 rdfs:range pbo:Risk .
876
877pbo:riskCategory a owl:ObjectProperty ;
878 rdfs:label "classified in risk category"@en ;
879 rdfs:comment "The category of the risk."@en ;
880 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
881 rdfs:domain pbo:Risk ;
882 rdfs:range pbo:RiskCategory .
883
884pbo:mitigatedBy a owl:ObjectProperty ;
885 rdfs:label "mitigated by"@en ;
886 rdfs:comment "A mitigation recorded for the risk."@en ;
887 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
888 rdfs:domain pbo:Risk ;
889 rdfs:range pbo:Mitigation .
890
891pbo:hasDecisionGate a owl:ObjectProperty ;
892 rdfs:label "has decision gate"@en ;
893 rdfs:comment "A decision gate that must be passed for the subject (strategy or project)."@en ;
894 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
895 rdfs:range pbo:DecisionGate .
896
897pbo:gateRequiresAuthorisationType a owl:ObjectProperty ;
898 rdfs:label "gate requires authorisation type"@en ;
899 rdfs:comment "An authorisation type whose confirmation satisfies the decision gate."@en ;
900 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
901 rdfs:domain pbo:DecisionGate ;
902 rdfs:range pbo:AuthorisationType .
903
904pbo:hasMetricValue a owl:ObjectProperty ;
905 rdfs:label "has metric value"@en ;
906 rdfs:comment "A metric value describing the subject (property, portfolio, market claim, scenario)."@en ;
907 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
908 rdfs:range pbo:MetricValue .
909
910pbo:assumes a owl:ObjectProperty ;
911 rdfs:label "assumes"@en ;
912 rdfs:comment "A metric value used as an input assumption of the scenario."@en ;
913 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
914 rdfs:domain pbo:FinancialScenario ;
915 rdfs:range pbo:MetricValue .
916
917pbo:yields a owl:ObjectProperty ;
918 rdfs:label "yields"@en ;
919 rdfs:comment "A metric value produced as a result of the scenario."@en ;
920 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
921 rdfs:domain pbo:FinancialScenario ;
922 rdfs:range pbo:MetricValue .
923
924pbo:metric a owl:ObjectProperty, owl:FunctionalProperty ;
925 rdfs:label "measures metric"@en ;
926 rdfs:comment "The metric that the value measures."@en ;
927 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
928 rdfs:domain pbo:MetricValue ;
929 rdfs:range pbo:Metric .
930
931pbo:assertedIn a owl:ObjectProperty ;
932 rdfs:label "asserted in"@en ;
933 rdfs:comment "The corpus source document that asserts the value, definition or claim."@en ;
934 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
935 rdfs:range pbo:SourceDocument .
936
937pbo:describesJurisdiction a owl:ObjectProperty ;
938 rdfs:label "describes jurisdiction"@en ;
939 rdfs:comment "The jurisdiction a metric value, claim or data source refers to."@en ;
940 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
941 rdfs:range pbo:Jurisdiction .
942
943pbo:scenarioForModel a owl:ObjectProperty ;
944 rdfs:label "scenario for operating model"@en ;
945 rdfs:comment "The operating model or accommodation type that the scenario underwrites."@en ;
946 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
947 rdfs:domain pbo:FinancialScenario ;
948 rdfs:range pbo:OperatingModel .
949
950pbo:recommendsSection a owl:ObjectProperty ;
951 rdfs:label "recommends section"@en ;
952 rdfs:comment "A document section that a source or template recommends the artefact contain."@en ;
953 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
954 rdfs:domain pbo:InformationArtefact ;
955 rdfs:range pbo:DocumentSection .
956
957pbo:providesService a owl:ObjectProperty ;
958 rdfs:label "provides service"@en ;
959 rdfs:comment "A service provided by the business."@en ;
960 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
961 rdfs:domain pbo:Business ;
962 rdfs:range pbo:Service .
963
964pbo:hasFeeModel a owl:ObjectProperty ;
965 rdfs:label "has fee model"@en ;
966 rdfs:comment "The fee model under which a service is charged."@en ;
967 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
968 rdfs:domain pbo:Service ;
969 rdfs:range pbo:FeeModel .
970
971pbo:supportedByWorkflow a owl:ObjectProperty ;
972 rdfs:label "supported by workflow"@en ;
973 rdfs:comment "A workflow that delivers the service."@en ;
974 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
975 rdfs:domain pbo:Service ;
976 rdfs:range pbo:Workflow .
977
978pbo:measuredBy a owl:ObjectProperty ;
979 rdfs:label "measured by"@en ;
980 rdfs:comment "A metric used as a key performance indicator for the business, service or workflow."@en ;
981 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
982 rdfs:range pbo:Metric .
983
984pbo:businessModel a owl:ObjectProperty ;
985 rdfs:label "business model"@en ;
986 rdfs:comment "The agency business model under which the business is organised."@en ;
987 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
988 rdfs:domain pbo:Business ;
989 rdfs:range pbo:AgencyBusinessModel .
990
991pbo:sourcesCapabilityVia a owl:ObjectProperty ;
992 rdfs:label "sources capability via"@en ;
993 rdfs:comment "The capability-sourcing pattern characteristic of the business model or business."@en ;
994 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
995 rdfs:range pbo:CapabilitySourcing .
996
997pbo:publishedBy a owl:ObjectProperty ;
998 rdfs:label "published by"@en ;
999 rdfs:comment "The organisation that publishes the data source or document."@en ;
1000 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1001 rdfs:domain pbo:InformationArtefact ;
1002 rdfs:range pbo:Organisation .
1003
1004pbo:suppliesAttribute a owl:ObjectProperty ;
1005 rdfs:label "supplies attribute"@en ;
1006 rdfs:comment "A property attribute the data source can supply."@en ;
1007 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1008 rdfs:domain pbo:DataSource ;
1009 rdfs:range pbo:PropertyAttribute .
1010
1011pbo:accessTier a owl:ObjectProperty ;
1012 rdfs:label "access tier"@en ;
1013 rdfs:comment "The access tier of the data source."@en ;
1014 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1015 rdfs:domain pbo:DataSource ;
1016 rdfs:range pbo:DataAccessTier .
1017
1018pbo:coversJurisdiction a owl:ObjectProperty ;
1019 rdfs:label "covers jurisdiction"@en ;
1020 rdfs:comment "The jurisdiction the data source covers."@en ;
1021 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1022 rdfs:domain pbo:DataSource ;
1023 rdfs:range pbo:Jurisdiction .
1024
1025pbo:hasPhase a owl:ObjectProperty ;
1026 rdfs:label "has phase"@en ;
1027 rdfs:comment "A phase of the development project."@en ;
1028 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1029 rdfs:domain pbo:DevelopmentProject ;
1030 rdfs:range pbo:ProjectPhase .
1031
1032pbo:precedes a owl:ObjectProperty, owl:TransitiveProperty ;
1033 rdfs:label "precedes"@en ;
1034 rdfs:comment "Ordering between project phases."@en ;
1035 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1036 rdfs:domain pbo:ProjectPhase ;
1037 rdfs:range pbo:ProjectPhase .
1038
1039pbo:producesArtefact a owl:ObjectProperty ;
1040 rdfs:label "produces artefact"@en ;
1041 rdfs:comment "An information artefact produced by the project or business activity."@en ;
1042 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1043 rdfs:domain pbo:DevelopmentProject ;
1044 rdfs:range pbo:InformationArtefact .
1045
1046pbo:usesStrategy a owl:ObjectProperty ;
1047 rdfs:label "project uses strategy"@en ;
1048 rdfs:comment "The investment strategy that the development project implements."@en ;
1049 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1050 rdfs:domain pbo:DevelopmentProject ;
1051 rdfs:range pbo:InvestmentStrategy .
1052
1053pbo:occupancyThresholdEffect a owl:ObjectProperty ;
1054 rdfs:label "has threshold effect"@en ;
1055 rdfs:comment "The regime application effect when the threshold is met (regime applies in full, applies in part, does not apply, permit exempt, licence required)."@en ;
1056 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1057 rdfs:domain pbo:OccupancyThreshold ;
1058 rdfs:range pbo:ThresholdEffect .
1059
1060# ---- Datatype properties ----
1061pbo:weeklyRent a owl:DatatypeProperty ;
1062 rdfs:label "weekly rent"@en ;
1063 rdfs:comment "Rent payable per week under an agreement or for a rentable unit, in AUD unless stated."@en ;
1064 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1065 rdfs:range xsd:decimal .
1066
1067pbo:annualRent a owl:DatatypeProperty ;
1068 rdfs:label "annual rent"@en ;
1069 rdfs:comment "Scheduled rent per year."@en ;
1070 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1071 rdfs:range xsd:decimal .
1072
1073pbo:termMonths a owl:DatatypeProperty, owl:FunctionalProperty ;
1074 rdfs:label "term (months)"@en ;
1075 rdfs:comment "Duration of an agreement in months."@en ;
1076 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1077 rdfs:domain pbo:Agreement ;
1078 rdfs:range xsd:integer .
1079
1080pbo:escalationRatePercent a owl:DatatypeProperty, owl:FunctionalProperty ;
1081 rdfs:label "escalation rate (%)"@en ;
1082 rdfs:comment "Annual rent escalation rate in percent under an agreement."@en ;
1083 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1084 rdfs:domain pbo:Agreement ;
1085 rdfs:range xsd:decimal .
1086
1087pbo:fixedRent a owl:DatatypeProperty, owl:FunctionalProperty ;
1088 rdfs:label "fixed rent regardless of occupancy"@en ;
1089 rdfs:comment "Whether the rent obligation is fixed irrespective of occupancy (true for head/master leases)."@en ;
1090 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1091 rdfs:domain pbo:Agreement ;
1092 rdfs:range xsd:boolean .
1093
1094pbo:effectiveFrom a owl:DatatypeProperty, owl:FunctionalProperty ;
1095 rdfs:label "effective from"@en ;
1096 rdfs:comment "Date from which an agreement, authorisation, rule or regime is in force."@en ;
1097 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1098 rdfs:range xsd:date .
1099
1100pbo:effectiveUntil a owl:DatatypeProperty, owl:FunctionalProperty ;
1101 rdfs:label "effective until"@en ;
1102 rdfs:comment "Date until which an agreement, authorisation, rule or regime is in force."@en ;
1103 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1104 rdfs:range xsd:date .
1105
1106pbo:cutoffDate a owl:DatatypeProperty, owl:FunctionalProperty ;
1107 rdfs:label "cut-off date"@en ;
1108 rdfs:comment "A grandfathering or eligibility cut-off date-time attached to a rule (for example 7:30 pm AEST 12 May 2026)."@en ;
1109 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1110 rdfs:domain pbo:RegulatoryRule ;
1111 rdfs:range xsd:dateTime .
1112
1113pbo:thresholdComparator a owl:DatatypeProperty, owl:FunctionalProperty ;
1114 rdfs:label "threshold comparator"@en ;
1115 rdfs:comment "Comparison operator for the threshold value: 'gte', 'lte', 'gt', 'lt', 'eq', 'range'."@en ;
1116 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1117 rdfs:domain pbo:OccupancyThreshold ;
1118 rdfs:range xsd:string .
1119
1120pbo:thresholdValue a owl:DatatypeProperty, owl:FunctionalProperty ;
1121 rdfs:label "threshold value"@en ;
1122 rdfs:comment "Numeric threshold value (lower bound for ranges)."@en ;
1123 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1124 rdfs:domain pbo:OccupancyThreshold ;
1125 rdfs:range xsd:decimal .
1126
1127pbo:thresholdUpperValue a owl:DatatypeProperty, owl:FunctionalProperty ;
1128 rdfs:label "threshold upper value"@en ;
1129 rdfs:comment "Upper bound when the comparator is 'range'."@en ;
1130 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1131 rdfs:domain pbo:OccupancyThreshold ;
1132 rdfs:range xsd:decimal .
1133
1134pbo:thresholdUnit a owl:DatatypeProperty, owl:FunctionalProperty ;
1135 rdfs:label "threshold unit"@en ;
1136 rdfs:comment "Unit of the threshold value (persons, rooms, bedrooms, lettings, m2)."@en ;
1137 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1138 rdfs:domain pbo:OccupancyThreshold ;
1139 rdfs:range xsd:string .
1140
1141pbo:numericValue a owl:DatatypeProperty, owl:FunctionalProperty ;
1142 rdfs:label "numeric value"@en ;
1143 rdfs:comment "The numeric value of a metric value."@en ;
1144 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1145 rdfs:domain pbo:MetricValue ;
1146 rdfs:range xsd:decimal .
1147
1148pbo:upperValue a owl:DatatypeProperty, owl:FunctionalProperty ;
1149 rdfs:label "upper value"@en ;
1150 rdfs:comment "Upper bound of a metric value reported as a range."@en ;
1151 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1152 rdfs:domain pbo:MetricValue ;
1153 rdfs:range xsd:decimal .
1154
1155pbo:unit a owl:DatatypeProperty, owl:FunctionalProperty ;
1156 rdfs:label "unit"@en ;
1157 rdfs:comment "Unit of a metric value (percent, AUD, AUD_per_week, months, ratio, EUR)."@en ;
1158 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1159 rdfs:domain pbo:MetricValue ;
1160 rdfs:range xsd:string .
1161
1162pbo:basisNote a owl:DatatypeProperty ;
1163 rdfs:label "basis note"@en ;
1164 rdfs:comment "Free-text statement of the basis, assumptions or qualification attached to a value or claim."@en ;
1165 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1166 rdfs:range xsd:string .
1167
1168pbo:claimDate a owl:DatatypeProperty, owl:FunctionalProperty ;
1169 rdfs:label "claim date"@en ;
1170 rdfs:comment "Date on which a claim or figure was published or is current."@en ;
1171 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1172 rdfs:range xsd:date .
1173
1174pbo:roomCount a owl:DatatypeProperty, owl:FunctionalProperty ;
1175 rdfs:label "room count"@en ;
1176 rdfs:comment "Number of separately lettable rooms or studios in a property."@en ;
1177 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1178 rdfs:domain pbo:PropertyAsset ;
1179 rdfs:range xsd:integer .
1180
1181pbo:bedroomCount a owl:DatatypeProperty, owl:FunctionalProperty ;
1182 rdfs:label "bedroom count"@en ;
1183 rdfs:comment "Number of bedrooms."@en ;
1184 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1185 rdfs:domain pbo:PropertyAsset ;
1186 rdfs:range xsd:integer .
1187
1188pbo:floorAreaSqm a owl:DatatypeProperty, owl:FunctionalProperty ;
1189 rdfs:label "floor area (m2)"@en ;
1190 rdfs:comment "Total floor area in square metres."@en ;
1191 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1192 rdfs:domain pbo:PropertyAsset ;
1193 rdfs:range xsd:decimal .
1194
1195pbo:lotSizeSqm a owl:DatatypeProperty, owl:FunctionalProperty ;
1196 rdfs:label "lot size (m2)"@en ;
1197 rdfs:comment "Land area in square metres."@en ;
1198 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1199 rdfs:domain pbo:LandParcel ;
1200 rdfs:range xsd:decimal .
1201
1202pbo:identifierValue a owl:DatatypeProperty, owl:FunctionalProperty ;
1203 rdfs:label "identifier value"@en ;
1204 rdfs:comment "The literal value of a property identifier."@en ;
1205 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1206 rdfs:domain pbo:PropertyIdentifier ;
1207 rdfs:range xsd:string .
1208
1209pbo:jurisdictionCode a owl:DatatypeProperty, owl:FunctionalProperty ;
1210 rdfs:label "jurisdiction code"@en ;
1211 rdfs:comment "Short code for a jurisdiction (AU, QLD, VIC, NSW, WA, SA, BCC, LOGAN)."@en ;
1212 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1213 rdfs:domain pbo:Jurisdiction ;
1214 rdfs:range xsd:string .
1215
1216pbo:authorisationStatus a owl:DatatypeProperty, owl:FunctionalProperty ;
1217 rdfs:label "authorisation status"@en ;
1218 rdfs:comment "Status of an authorisation: 'held', 'pending', 'expired', 'refused', 'not_required', 'unknown'."@en ;
1219 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1220 rdfs:domain pbo:Authorisation ;
1221 rdfs:range xsd:string .
1222
1223pbo:dateIssued a owl:DatatypeProperty, owl:FunctionalProperty ;
1224 rdfs:label "date issued"@en ;
1225 rdfs:comment "Date the authorisation was issued."@en ;
1226 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1227 rdfs:domain pbo:Authorisation ;
1228 rdfs:range xsd:date .
1229
1230pbo:refreshCadence a owl:DatatypeProperty, owl:FunctionalProperty ;
1231 rdfs:label "refresh cadence"@en ;
1232 rdfs:comment "How often a data source is updated (daily, weekly, quarterly, annual, release-driven, near-real-time)."@en ;
1233 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1234 rdfs:domain pbo:DataSource ;
1235 rdfs:range xsd:string .
1236
1237pbo:licenceNote a owl:DatatypeProperty ;
1238 rdfs:label "licence note"@en ;
1239 rdfs:comment "Licence or terms under which a data source or document is available."@en ;
1240 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1241 rdfs:domain pbo:InformationArtefact ;
1242 rdfs:range xsd:string .
1243
1244pbo:sourceUrl a owl:DatatypeProperty ;
1245 rdfs:label "source URL"@en ;
1246 rdfs:comment "Original location of a source document or data source."@en ;
1247 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1248 rdfs:domain pbo:InformationArtefact ;
1249 rdfs:range xsd:anyURI .
1250
1251pbo:publicationDate a owl:DatatypeProperty, owl:FunctionalProperty ;
1252 rdfs:label "publication date"@en ;
1253 rdfs:comment "Date the artefact was published or compiled."@en ;
1254 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1255 rdfs:domain pbo:InformationArtefact ;
1256 rdfs:range xsd:date .
1257
1258pbo:authorityLevel a owl:DatatypeProperty, owl:FunctionalProperty ;
1259 rdfs:label "authority level"@en ;
1260 rdfs:comment "Authority level of a source document: normative, authoritative, primary, secondary, expert, reference, illustrative."@en ;
1261 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1262 rdfs:domain pbo:SourceDocument ;
1263 rdfs:range xsd:string .
1264
1265pbo:scenarioName a owl:DatatypeProperty, owl:FunctionalProperty ;
1266 rdfs:label "scenario name"@en ;
1267 rdfs:comment "Human-readable name of a financial scenario (conservative, moderate, aggressive)."@en ;
1268 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1269 rdfs:domain pbo:FinancialScenario ;
1270 rdfs:range xsd:string .
1271
1272pbo:characteristicNote a owl:DatatypeProperty, owl:FunctionalProperty ;
1273 rdfs:label "characteristic note"@en ;
1274 rdfs:comment "Text of a structure characteristic as stated by the source."@en ;
1275 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1276 rdfs:domain pbo:StructureCharacteristic ;
1277 rdfs:range xsd:string .
1278
1279pbo:mitigationNote a owl:DatatypeProperty, owl:FunctionalProperty ;
1280 rdfs:label "mitigation note"@en ;
1281 rdfs:comment "Text describing the mitigation, control or diligence step."@en ;
1282 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1283 rdfs:domain pbo:Mitigation ;
1284 rdfs:range xsd:string .
1285
1286pbo:gateCondition a owl:DatatypeProperty, owl:FunctionalProperty ;
1287 rdfs:label "gate condition"@en ;
1288 rdfs:comment "Text of the condition a decision gate requires."@en ;
1289 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1290 rdfs:domain pbo:DecisionGate ;
1291 rdfs:range xsd:string .
1292
1293pbo:phaseOrder a owl:DatatypeProperty, owl:FunctionalProperty ;
1294 rdfs:label "phase order"@en ;
1295 rdfs:comment "Ordinal position of a project phase."@en ;
1296 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1297 rdfs:domain pbo:ProjectPhase ;
1298 rdfs:range xsd:integer .
1299
1300pbo:feePercentOfRent a owl:DatatypeProperty, owl:FunctionalProperty ;
1301 rdfs:label "fee (% of rent)"@en ;
1302 rdfs:comment "Management fee expressed as a percentage of rent collected."@en ;
1303 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1304 rdfs:domain pbo:Service ;
1305 rdfs:range xsd:decimal .
1306
1307pbo:portfolioSizeProperties a owl:DatatypeProperty, owl:FunctionalProperty ;
1308 rdfs:label "portfolio size (properties)"@en ;
1309 rdfs:comment "Number of properties under management or held."@en ;
1310 rdfs:isDefinedBy <https://ontology.property.local/pbo> ;
1311 rdfs:domain pbo:Portfolio ;
1312 rdfs:range xsd:integer .
1313
1314# ---- Candidate mappings (annotation strength unless stated in model.yaml) ----
1315pbo:Organisation skos:closeMatch <http://www.w3.org/ns/org#Organization> .
1316pbo:Address skos:closeMatch <https://schema.org/PostalAddress> .
1317pbo:LandParcel rdfs:seeAlso <http://www.opengis.net/ont/geosparql#Feature> .
1318pbo:Jurisdiction skos:closeMatch <https://schema.org/AdministrativeArea> .
1319pbo:Legislation skos:closeMatch <http://data.europa.eu/eli/ontology#LegalResource> .