Merge · Schema

TagsListResponse

Response for GET /v1/tags.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
object string
data array
has_more boolean
next_cursor stringnull
View JSON Schema on GitHub

JSON Schema

merge-tagslistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagsListResponse",
  "title": "TagsListResponse",
  "type": "object",
  "properties": {
    "object": {
      "type": "string",
      "enum": [
        "list"
      ]
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TagSchema"
      }
    },
    "has_more": {
      "type": "boolean",
      "default": false
    },
    "next_cursor": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "data"
  ],
  "description": "Response for GET /v1/tags."
}