Autodesk · Schema

DerivativeChild

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
guid string
type string
role string
name string
status string
progress string
mime string
urn string
children array
View JSON Schema on GitHub

JSON Schema

autodesk-derivativechild-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DerivativeChild",
  "title": "DerivativeChild",
  "type": "object",
  "properties": {
    "guid": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "resource",
        "geometry",
        "view"
      ]
    },
    "role": {
      "type": "string",
      "enum": [
        "3d",
        "2d",
        "graphics",
        "thumbnail",
        "Autodesk.CloudPlatform.PropertyDatabase"
      ]
    },
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "progress": {
      "type": "string"
    },
    "mime": {
      "type": "string"
    },
    "urn": {
      "type": "string"
    },
    "children": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DerivativeChild"
      }
    }
  }
}