Apache Dubbo · Schema
model.ConditionRouteDto
model.ConditionRouteDto schema from Dubbo Admin API
ApacheGoJavaMicroservicesOpen SourceRPCService DiscoveryService Mesh
Properties
| Name | Type | Description |
|---|---|---|
| application | string | |
| conditions | array | |
| configVersion | string | |
| enabled | boolean | |
| force | boolean | |
| id | string | |
| priority | integer | |
| runtime | boolean | |
| service | string | |
| serviceGroup | string | |
| serviceVersion | string |
JSON Schema
{
"$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.-condition-route-dto-schema.json",
"title": "model.ConditionRouteDto",
"description": "model.ConditionRouteDto schema from Dubbo Admin API",
"type": "object",
"properties": {
"application": {
"type": "string"
},
"conditions": {
"type": "array",
"items": {
"type": "string"
}
},
"configVersion": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"force": {
"type": "boolean"
},
"id": {
"type": "string"
},
"priority": {
"type": "integer"
},
"runtime": {
"type": "boolean"
},
"service": {
"type": "string"
},
"serviceGroup": {
"type": "string"
},
"serviceVersion": {
"type": "string"
}
},
"required": [
"conditions",
"configVersion",
"enabled"
]
}