Autodesk · Schema

Twin

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
id string
name string
settings object
docs array Associated document/model references.
View JSON Schema on GitHub

JSON Schema

autodesk-twin-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Twin",
  "title": "Twin",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "settings": {
      "type": "object",
      "properties": {
        "dateCreated": {
          "type": "string",
          "format": "date-time"
        },
        "dateModified": {
          "type": "string",
          "format": "date-time"
        },
        "props": {
          "type": "object",
          "additionalProperties": true
        }
      }
    },
    "docs": {
      "type": "array",
      "description": "Associated document/model references.",
      "items": {
        "type": "object",
        "properties": {
          "modelId": {
            "type": "string"
          },
          "urn": {
            "type": "string"
          },
          "label": {
            "type": "string"
          }
        }
      }
    }
  }
}