Bentley Systems · Schema
RealityData
Reality capture output (point cloud, mesh, 3D Tiles, orthophoto) attached to an iTwin.
Infrastructure EngineeringDigital TwinBIMCADReality CaptureConstructionAsset ManagementGeospatialiTwiniModel
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| displayName | string | |
| description | string | |
| type | string | RealityMesh3DTiles, OPC, Cesium3DTiles, Terrain3DTiles, etc. |
| classification | string | |
| size | integer | |
| authoring | boolean | |
| extent | object | |
| accessControl | string | |
| modifiedDateTime | string | |
| createdDateTime | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://developer.bentley.com/schemas/reality-data.json",
"title": "RealityData",
"type": "object",
"description": "Reality capture output (point cloud, mesh, 3D Tiles, orthophoto) attached to an iTwin.",
"required": [
"id",
"displayName",
"type"
],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"displayName": {
"type": "string"
},
"description": {
"type": "string"
},
"type": {
"type": "string",
"description": "RealityMesh3DTiles, OPC, Cesium3DTiles, Terrain3DTiles, etc."
},
"classification": {
"type": "string",
"enum": [
"Imagery",
"Terrain",
"Pinned",
"Model",
"Undefined"
]
},
"size": {
"type": "integer",
"format": "int64"
},
"authoring": {
"type": "boolean"
},
"extent": {
"type": "object"
},
"accessControl": {
"type": "string"
},
"modifiedDateTime": {
"type": "string",
"format": "date-time"
},
"createdDateTime": {
"type": "string",
"format": "date-time"
}
}
}