Apache Dubbo · Schema

model.Tag

model.Tag schema from Dubbo Admin API

ApacheGoJavaMicroservicesOpen SourceRPCService DiscoveryService Mesh

Properties

Name Type Description
addresses array
match array
name string
View JSON Schema on GitHub

JSON Schema

dubbo-admin-model.-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-dubbo/refs/heads/main/json-schema/dubbo-admin-model.-tag-schema.json",
  "title": "model.Tag",
  "description": "model.Tag schema from Dubbo Admin API",
  "type": "object",
  "properties": {
    "addresses": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "match": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/model.ParamMatch"
      }
    },
    "name": {
      "type": "string"
    }
  },
  "required": [
    "match",
    "name"
  ]
}