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