Apollo Config · Schema
Namespace
Namespace schema from Apollo Config Open API
Apache 2.0Configuration ManagementCtripDistributed SystemsJavaMicroservicesOpen SourceReal-Time Configuration
Properties
| Name | Type | Description |
|---|---|---|
| appId | string | |
| clusterName | string | |
| namespaceName | string | |
| comment | string | |
| format | string | |
| isPublic | boolean | |
| items | array | |
| dataChangeCreatedBy | string | |
| dataChangeLastModifiedBy | string | |
| dataChangeCreatedTime | string | |
| dataChangeLastModifiedTime | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/apollo-config/refs/heads/main/json-schema/apollo-open-api-namespace-schema.json",
"title": "Namespace",
"description": "Namespace schema from Apollo Config Open API",
"type": "object",
"properties": {
"appId": {
"type": "string"
},
"clusterName": {
"type": "string"
},
"namespaceName": {
"type": "string"
},
"comment": {
"type": "string"
},
"format": {
"type": "string",
"enum": [
"properties",
"xml",
"json",
"yml",
"yaml",
"txt"
]
},
"isPublic": {
"type": "boolean"
},
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Item"
}
},
"dataChangeCreatedBy": {
"type": "string"
},
"dataChangeLastModifiedBy": {
"type": "string"
},
"dataChangeCreatedTime": {
"type": "string",
"format": "date-time"
},
"dataChangeLastModifiedTime": {
"type": "string",
"format": "date-time"
}
}
}