IssueType

ConstructionBIMProject ManagementAECCADArchitectureEngineeringField Management

Properties

Name Type Description
id string
title string
description string
isActive boolean
subtypes array
View JSON Schema on GitHub

JSON Schema

autodesk-construction-cloud-issuetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueType",
  "title": "IssueType",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "isActive": {
      "type": "boolean"
    },
    "subtypes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      }
    }
  }
}