{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-prometheus/refs/heads/main/json-schema/amazon-managed-prometheus-rule-groups-namespace-status-schema.json", "title": "RuleGroupsNamespaceStatus", "description": "Represents the status of a namespace.", "type": "object", "properties": { "statusCode": { "allOf": [ { "$ref": "#/components/schemas/RuleGroupsNamespaceStatusCode" }, { "description": "Status code of this namespace." } ] }, "statusReason": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The reason for failure if any." } ] } }, "required": [ "statusCode" ] }