Microsoft Azure · Schema

listThreadsResponse

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
object string
data array
first_id string
last_id string
has_more boolean
View JSON Schema on GitHub

JSON Schema

microsoft-azure-listthreadsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/listThreadsResponse",
  "title": "listThreadsResponse",
  "properties": {
    "object": {
      "type": "string",
      "example": "list"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/threadObject"
      }
    },
    "first_id": {
      "type": "string",
      "example": "asst_hLBK7PXBv5Lr2NQT7KLY0ag1"
    },
    "last_id": {
      "type": "string",
      "example": "asst_QLoItBbqwyAJEzlTy4y9kOMM"
    },
    "has_more": {
      "type": "boolean",
      "example": false
    }
  },
  "required": [
    "object",
    "data",
    "first_id",
    "last_id",
    "has_more"
  ]
}