Apache Dubbo · Schema

model.Retry

model.Retry schema from Dubbo Admin API

ApacheGoJavaMicroservicesOpen SourceRPCService DiscoveryService Mesh

Properties

Name Type Description
group string
retry integer
service string
version string
View JSON Schema on GitHub

JSON Schema

dubbo-admin-model.-retry-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.-retry-schema.json",
  "title": "model.Retry",
  "description": "model.Retry schema from Dubbo Admin API",
  "type": "object",
  "properties": {
    "group": {
      "type": "string"
    },
    "retry": {
      "type": "integer"
    },
    "service": {
      "type": "string"
    },
    "version": {
      "type": "string"
    }
  },
  "required": [
    "retry",
    "service"
  ]
}