Autodesk · Schema

Derivative

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
name string
hasThumbnail string
status string
progress string
outputType string
children array
View JSON Schema on GitHub

JSON Schema

autodesk-derivative-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Derivative",
  "title": "Derivative",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "hasThumbnail": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "inprogress",
        "success",
        "failed",
        "timeout"
      ]
    },
    "progress": {
      "type": "string"
    },
    "outputType": {
      "type": "string"
    },
    "children": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DerivativeChild"
      }
    }
  }
}