{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-aggregate-conformance-pack-compliance-count-schema.json", "title": "AggregateConformancePackComplianceCount", "description": "The number of conformance packs that are compliant and noncompliant.", "type": "object", "properties": { "CompliantConformancePackCount": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "Number of compliant conformance packs." } ] }, "NonCompliantConformancePackCount": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "Number of noncompliant conformance packs." } ] } } }