{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-compliance-by-config-rule-schema.json", "title": "ComplianceByConfigRule", "description": "Indicates whether an Config rule is compliant. A rule is compliant if all of the resources that the rule evaluated comply with it. A rule is noncompliant if any of these resources do not comply.", "type": "object", "properties": { "ConfigRuleName": { "allOf": [ { "$ref": "#/components/schemas/StringWithCharLimit64" }, { "description": "The name of the Config rule." } ] }, "Compliance": { "allOf": [ { "$ref": "#/components/schemas/Compliance" }, { "description": "Indicates whether the Config rule is compliant." } ] } } }