Autodesk · Schema

IssuesResponse

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
data array
meta object
View JSON Schema on GitHub

JSON Schema

autodesk-issuesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssuesResponse",
  "title": "IssuesResponse",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Issue"
      }
    },
    "meta": {
      "type": "object",
      "properties": {
        "record_count": {
          "type": "integer"
        },
        "page": {
          "type": "object",
          "properties": {
            "limit": {
              "type": "integer"
            },
            "offset": {
              "type": "integer"
            }
          }
        }
      }
    }
  }
}