Kong · Schema

ReplacePortalImageAsset

The image data to upload. Images must be a data URL with binary image data in base 64 format. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URLs.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
data object
View JSON Schema on GitHub

JSON Schema

kong-replaceportalimageasset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplacePortalImageAsset",
  "title": "ReplacePortalImageAsset",
  "description": "The image data to upload. Images must be a data URL with binary image data in base 64 format. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URLs.",
  "type": "object",
  "properties": {
    "data": {
      "$ref": "#/components/schemas/PortalImageDataUri"
    }
  },
  "example": {
    "data": "data:image/jpeg;base64,bmljZV9sb29raW5nX3BpY3R1cmU="
  },
  "additionalProperties": false,
  "nullable": true,
  "required": [
    "data"
  ]
}