Skip to content

Commit

Permalink
Merge pull request b-ox#144 from mwa-lter/master
Browse files Browse the repository at this point in the history
Fix declaration ConstructionStatus
  • Loading branch information
b-ox authored Mar 21, 2024
2 parents de4e46a + 4cae214 commit 7d2f926
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BuildingLifeCycleEvent.src.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"s4i": "http://schema4i.org/",
"BuildingLifeCycleEvent": "s4i:BuildingLifeCycleEvent",
"ConstructionStatus": {
"@id": "http://schema4i.org/ConstructionStatus",
"@id": "s4i:ConstructionStatus",
"@type": "@vocab",
"@context": {
"@vocab": "http://schema4i.org/EnumConstructionStatusCode#"
"@vocab": "s4i:EnumConstructionStatusCode#"
}
}
}
Expand Down
33 changes: 33 additions & 0 deletions src/ConstructionStatus.src.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"type": "ConstructionStatus",
"uri": "http://schema4i.org/ConstructionStatus",
"description": "The construction status of a building refers to its current stage of development.",
"links": [],
"parents": [
{ "@id": "http://schema4i.org/BuildingLifeCycleEvent#ConstructionStatus" }
],
"base": [
{ "@id": "http://schema4i.org/Property" }
],
"multipletypes": {},
"context": {
"@context": {
"@version": 1.1,
"s4i": "http://schema4i.org/",
"schema": "http://schema.org/",
"ConstructionStatus": {
"@id": "s4i:ConstructionStatus",
"@type": "s4i:EnumConstructionStatusCode"
}
}
},
"playground": [{
"title": "A simple ConstructionStatus",
"tab": "tab-expanded",
"input": {
"@context": {},
"ConstructionStatus": "Completed"
},
"context": {}
}]
}

0 comments on commit 7d2f926

Please sign in to comment.