Kong · Schema

ListDevelopersResponse

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

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

JSON Schema

kong-listdevelopersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListDevelopersResponse",
  "title": "ListDevelopersResponse",
  "type": "object",
  "properties": {
    "meta": {
      "$ref": "#/components/schemas/PaginatedMeta"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PortalDeveloper"
      }
    }
  },
  "example": {
    "meta": {
      "page": {
        "number": 1,
        "size": 10,
        "total": 4
      }
    },
    "data": [
      {
        "id": "8cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
        "email": "[email protected]",
        "full_name": "Jane Dev",
        "status": "approved",
        "created_at": "2022-11-15T20:37:41.457Z",
        "updated_at": "2022-11-15T20:37:47.456Z"
      },
      {
        "id": "4cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
        "email": "[email protected]",
        "full_name": "John Dev",
        "status": "revoked",
        "created_at": "2022-11-15T20:37:41.457Z",
        "updated_at": "2022-11-15T20:37:47.456Z"
      },
      {
        "id": "6cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
        "email": "[email protected]",
        "full_name": "Jim Dev",
        "status": "pending",
        "created_at": "2022-11-15T20:37:41.457Z",
        "updated_at": "2022-11-15T20:37:47.456Z"
      },
      {
        "id": "7cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
        "email": "[email protected]",
        "full_name": "Jan Dev",
        "status": "rejected",
        "created_at": "2022-11-15T20:37:41.457Z",
        "updated_at": "2022-11-15T20:37:47.456Z"
      }
    ]
  },
  "additionalProperties": false,
  "required": [
    "data",
    "meta"
  ]
}