Apache EventMesh · Schema

Client

Client schema from Apache EventMesh Admin API

ApacheCloudEventsEvent-DrivenMessagingOpen SourcePub-SubServerless

Properties

Name Type Description
env string
idc string
sys string
ip string
pid string
protocol string
group string
topics array
View JSON Schema on GitHub

JSON Schema

eventmesh-admin-client-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-event-mesh/refs/heads/main/json-schema/eventmesh-admin-client-schema.json",
  "title": "Client",
  "description": "Client schema from Apache EventMesh Admin API",
  "type": "object",
  "properties": {
    "env": {
      "type": "string"
    },
    "idc": {
      "type": "string"
    },
    "sys": {
      "type": "string"
    },
    "ip": {
      "type": "string"
    },
    "pid": {
      "type": "string"
    },
    "protocol": {
      "type": "string",
      "enum": [
        "HTTP",
        "TCP",
        "GRPC"
      ]
    },
    "group": {
      "type": "string"
    },
    "topics": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}