Autodesk · Schema

UpdateHookPayload

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
status string
filter string
hookAttribute object
hookExpiry string
autoReactivateHook boolean
View JSON Schema on GitHub

JSON Schema

autodesk-updatehookpayload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateHookPayload",
  "title": "UpdateHookPayload",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive"
      ]
    },
    "filter": {
      "type": "string"
    },
    "hookAttribute": {
      "type": "object",
      "additionalProperties": true
    },
    "hookExpiry": {
      "type": "string",
      "format": "date-time"
    },
    "autoReactivateHook": {
      "type": "boolean"
    }
  }
}