Kong · Schema

PortalDeveloper

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id object
created_at object
updated_at object
email string
full_name string
status object
View JSON Schema on GitHub

JSON Schema

kong-portaldeveloper-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalDeveloper",
  "title": "PortalDeveloper",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/UUID"
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    },
    "updated_at": {
      "$ref": "#/components/schemas/UpdatedAt"
    },
    "email": {
      "type": "string",
      "format": "email",
      "maxLength": 255
    },
    "full_name": {
      "type": "string",
      "maxLength": 255
    },
    "status": {
      "$ref": "#/components/schemas/DeveloperStatus"
    }
  },
  "example": {
    "id": "7cd9feff-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"
  },
  "additionalProperties": false,
  "required": [
    "id",
    "created_at",
    "updated_at",
    "email",
    "full_name",
    "status"
  ]
}