Autodesk · Schema

CreatePhotosceneRequest

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
scenename string Name for the photoscene.
scenetype string Processing type.
format string Output format.
gpstype string GPS data type.
callback string Optional callback URL to receive notification when processing completes.
View JSON Schema on GitHub

JSON Schema

autodesk-createphotoscenerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePhotosceneRequest",
  "title": "CreatePhotosceneRequest",
  "type": "object",
  "required": [
    "scenename",
    "scenetype",
    "format"
  ],
  "properties": {
    "scenename": {
      "type": "string",
      "description": "Name for the photoscene."
    },
    "scenetype": {
      "type": "string",
      "description": "Processing type.",
      "enum": [
        "aerial",
        "object"
      ]
    },
    "format": {
      "type": "string",
      "description": "Output format.",
      "enum": [
        "rcm",
        "rcs",
        "obj",
        "ortho"
      ]
    },
    "gpstype": {
      "type": "string",
      "description": "GPS data type.",
      "enum": [
        "none",
        "wgs84",
        "nadcon"
      ]
    },
    "callback": {
      "type": "string",
      "format": "uri",
      "description": "Optional callback URL to receive notification when processing completes."
    }
  }
}