Merge · Schema

PaginatedToolPackPublicList

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
count integer
next stringnull
previous stringnull
results array
View JSON Schema on GitHub

JSON Schema

merge-paginatedtoolpackpubliclist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedToolPackPublicList",
  "title": "PaginatedToolPackPublicList",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "next": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri"
    },
    "previous": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ToolPackPublic"
      }
    }
  },
  "required": [
    "count",
    "results"
  ]
}