Created
December 7, 2023 16:39
-
-
Save hugoledoux/1a6084be2488959286376aee1df82bc0 to your computer and use it in GitHub Desktop.
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
| { | |
| "type": "CityJSONExtension", | |
| "name": "WeixiaoBuilding", | |
| "description": "Extension to model the building parts", | |
| "url": "https://someurl.org/noise.ext.json", | |
| "version": "0.1", | |
| "versionCityJSON": "2.0", | |
| "extraAttributes": {}, | |
| "extraCityObjects": {}, | |
| "extraRootProperties": {}, | |
| "extraSemanticSurfaces": { | |
| "+Chimney": { | |
| "type": "object", | |
| "properties": { | |
| "type": { "enum": [ "+Chimney" ] } | |
| }, | |
| "required": [ "type" ] | |
| }, | |
| "+Dormer": { | |
| "type": "object", | |
| "properties": { | |
| "type": { "enum": [ "+Dormer" ] } | |
| }, | |
| "required": [ "type" ] | |
| }, | |
| "+Balcony": { | |
| "type": "object", | |
| "properties": { | |
| "type": { "enum": [ "+Balcony" ] } | |
| }, | |
| "required": [ "type" ] | |
| }, | |
| "+RoofInstallation": { | |
| "type": "object", | |
| "properties": { | |
| "type": { "enum": [ "+RoofInstallation" ] } | |
| }, | |
| "required": [ "type" ] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment