Skip to content

Commit

Permalink
Merge pull request #144 from RealEstateCore/fix-missing-from-preview1
Browse files Browse the repository at this point in the history
Fix missing from preview1
  • Loading branch information
hammar authored Sep 5, 2022
2 parents 4b26850 + 8b4396f commit aa9a8e7
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 0 deletions.
1 change: 1 addition & 0 deletions Doc/Collection/Collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ An administrative grouping of entities that are adressed and treated as a unit f
* [FurnitureCollection](FurnitureCollection.md)
* [Portfolio](Portfolio.md)
* [Premises](Premises.md)
* [RealEstate](RealEstate.md)
* [Loop](Loop/Loop.md)
* [System](System/System.md)

Expand Down
29 changes: 29 additions & 0 deletions Doc/Collection/RealEstate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[Index](../index.md) > [Collection](Collection.md) > [RealEstate](#)
# RealEstate

The legal/administrative representation of some lands and/or buildings. I.e., "Fastighet" (Swedish), "Ejendom" (Denmark), etc.


**Display name:** Real Estate<br />
**DTMI:** dtmi:org:w3id:rec:RealEstate;1

---

## Relationships

|Name|Display name|Description|Multiplicity|Target|Properties|Writable|
|-|-|-|-|-|-|-|
|includes|**en**: includes||0-Infinity|[Architecture](../Space/Architecture/Architecture.md)||True|
### Inherited Relationships
* **[Collection](Collection.md):** documentation

---

## Properties

### Inherited Properties
* **[Collection](Collection.md):** customTags, externalIds, name

---

## Target Of
1 change: 1 addition & 0 deletions Doc/index.full.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@
* [Portfolio](Collection/Portfolio.md)
* [Premises](Collection/Premises.md)
* [PV_Array](Collection/PV_Array.md)
* [RealEstate](Collection/RealEstate.md)
* [System](Collection/System/System.md)
* [Domestic_Hot_Water_System](Collection/System/Domestic_Hot_Water_System.md)
* [Electrical_System](Collection/System/Electrical_System/Electrical_System.md)
Expand Down
1 change: 1 addition & 0 deletions Doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ For an index of the entire inheritance tree (much larger), see the [Full Type In
* [Portfolio](Collection/Portfolio.md)
* [Premises](Collection/Premises.md)
* [PV_Array](Collection/PV_Array.md)
* [RealEstate](Collection/RealEstate.md)
* [System](Collection/System/System.md)
* [Event](Event/Event.md)
* [ElevatorTrip](Event/ElevatorTrip.md)
Expand Down
25 changes: 25 additions & 0 deletions Ontology/DTDLv2/RealEstateCore/Collection/RealEstate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"@id": "dtmi:org:w3id:rec:RealEstate;1",
"@type": "Interface",
"contents": [
{
"@type": "Relationship",
"displayName": {
"en": "includes"
},
"name": "includes",
"target": "dtmi:org:w3id:rec:Architecture;1",
"writable": true
}
],
"description": {
"en": "The legal/administrative representation of some lands and/or buildings. I.e., \"Fastighet\" (Swedish), \"Ejendom\" (Denmark), etc."
},
"displayName": {
"en": "Real Estate"
},
"extends": "dtmi:org:w3id:rec:Collection;1",
"@context": [
"dtmi:dtdl:context;2"
]
}
15 changes: 15 additions & 0 deletions Ontology/SHACL/RealEstateCore/rec.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -1527,6 +1527,21 @@ rec:RadiologyRoom
rdfs:label "Radiology room" ;
rdfs:subClassOf rec:HealthcareRoom ;
.
rec:RealEstate
a rdfs:Class ;
a sh:NodeShape ;
rdfs:comment "The legal/administrative representation of some lands and/or buildings. I.e., \"Fastighet\" (Swedish), \"Ejendom\" (Denmark), etc." ;
rdfs:label "Real Estate" ;
rdfs:subClassOf rec:Collection ;
sh:property [
a sh:PropertyShape ;
sh:path rec:includes ;
sh:class rec:Architecture ;
sh:minCount 1 ;
sh:name "includes" ;
sh:nodeKind sh:IRI ;
] ;
.
rec:Reception
a rdfs:Class ;
a sh:NodeShape ;
Expand Down

0 comments on commit aa9a8e7

Please sign in to comment.