-
Notifications
You must be signed in to change notification settings - Fork 42
Adding missing Brick locations #260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
gtfierro
wants to merge
2
commits into
RealEstateCore:dev/peterhart/wing
Choose a base branch
from
BrickSchema:dev/gtfierro/bricklocations
base: dev/peterhart/wing
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Building/Gatehouse.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:Gatehouse;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Gatehouse" | ||
| }, | ||
| "comment": { | ||
| "en": "The standalone building used to manage the entrance to a campus or building grounds." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Building;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/FieldOfPlay.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:FieldOfPlay;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Field Of Play" | ||
| }, | ||
| "comment": { | ||
| "en": "The area of a stadium where athletic events occur, e.g., the soccer pitch." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Architecture;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Level/ParkingLevel.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:ParkingLevel;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Parking Level" | ||
| }, | ||
| "comment": { | ||
| "en": "A floor of a parking structure." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Level;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/EnvironmentBox.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:EnvironmentBox;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Environment Box" | ||
| }, | ||
| "comment": { | ||
| "en": "An enclosed space designed to create a particular environment, also known as a climatic chamber." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Room;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/FoodHandling/Freezer.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:Freezer;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Freezer" | ||
| }, | ||
| "comment": { | ||
| "en": "A cold chamber usually kept at a temperature of 22°F to 31°F (–5°C to –1°C), with high-volume air circulation." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:FoodHandlingRoom;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/HazardousMaterialsStorage.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:HazardousMaterialsStorage;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Hazardous Materials Storage" | ||
| }, | ||
| "comment": { | ||
| "en": "A storage space set aside (usually with restricted access) for the storage of materials that can be hazardous to living beings or the environment." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Room;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
13 changes: 13 additions & 0 deletions
13
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/Healthcare-/FirstAidRoom.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:FirstAidRoom;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "First Aid Room" | ||
| }, | ||
| "comment": { | ||
| "en": "A room where a person with minor injuries can be treated or temporarily treated until transferred to a more advanced medical facility." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:HealthcareRoom;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } | ||
|
|
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/InformationArea.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:InformationArea;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Information Area" | ||
| }, | ||
| "comment": { | ||
| "en": "An information booth or kiosk where visitors would look for information." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Room;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/LoadingDock.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:LoadingDock;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Loading Dock" | ||
| }, | ||
| "comment": { | ||
| "en": "A part of a facility where delivery trucks can load and unload. Usually partially enclosed with specific traffic lanes leading to the dock." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Room;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/MediaRoom-/MediaHotDesk.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:MediaHotDesk;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Media Hot Desk" | ||
| }, | ||
| "comment": { | ||
| "en": "A non-enclosed space used by members of the media temporarily to cover an event while they are present at a venue." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:MediaRoom;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/MediaRoom-/MediaProductionRoom.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:MediaProductionRoom;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Media Production Room" | ||
| }, | ||
| "comment": { | ||
| "en": "An enclosed space used by media professionals for the production of media." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:MediaRoom;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/MediaRoom-/MediaRoom.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:MediaRoom;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Media Room" | ||
| }, | ||
| "comment": { | ||
| "en": "A class of spaces related to the creation of media." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Room;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/SportsServiceRoom/BenchSpace.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:BenchSpace;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Bench Space" | ||
| }, | ||
| "comment": { | ||
| "en": "For areas of play in a stadium, the area for participants and referees by the side of the field." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:SportsServiceRoom;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/SportsServiceRoom/HospitalityBox.json
gtfierro marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:HospitalityBox;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Hospitality Box" | ||
| }, | ||
| "comment": { | ||
| "en": "A room at a stadium, usually overlooking the field of play, that is physically separate from the other seating at the venue." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:SportsServiceRoom;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
...ce/DTDLv2/RealEstateCore/Space/Architecture/Room/SportsServiceRoom/SportsServiceRoom.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:SportsServiceRoom;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Sports Service Room" | ||
| }, | ||
| "comment": { | ||
| "en": "A class of spaces used in the support of sports." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Room;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/SportsServiceRoom/TicketingBooth.json
gtfierro marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:TicketingBooth;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Ticketing Booth" | ||
| }, | ||
| "comment": { | ||
| "en": "A room or space used to sell or distribute tickets to events at a venue." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:SportsServiceRoom;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Room/UtilitiesRoom/PumpRoom.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:PumpRoom;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Pump Room" | ||
| }, | ||
| "comment": { | ||
| "en": "A mechanical room that houses pumps." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:UtilitiesRoom;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Zone/ParkingStructure.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:ParkingStructure;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Parking Structure" | ||
| }, | ||
| "comment": { | ||
| "en": "A building or part of a building devoted to vehicle parking." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Zone;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
12 changes: 12 additions & 0 deletions
12
Source/DTDLv2/RealEstateCore/Space/Architecture/Zone/Riser.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "@id": "dtmi:org:w3id:rec:Riser;1", | ||
| "@type": "Interface", | ||
| "displayName": { | ||
| "en": "Riser" | ||
| }, | ||
| "comment": { | ||
| "en": "A vertical shaft intended for installing building infrastructure, e.g., electrical wire, network communication wire, plumbing, etc." | ||
| }, | ||
| "extends": "dtmi:org:w3id:rec:Zone;1", | ||
| "@context": ["dtmi:dtdl:context;2"] | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.