Merge · Schema

PaginatedCustomObjectList

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

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

JSON Schema

merge-paginatedcustomobjectlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedCustomObjectList",
  "title": "PaginatedCustomObjectList",
  "type": "object",
  "properties": {
    "next": {
      "type": [
        "string",
        "null"
      ]
    },
    "previous": {
      "type": [
        "string",
        "null"
      ]
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomObject"
      }
    }
  }
}