{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-put-external-evaluation-request-schema.json", "title": "PutExternalEvaluationRequest", "description": "PutExternalEvaluationRequest schema", "type": "object", "properties": { "ConfigRuleName": { "allOf": [ { "$ref": "#/components/schemas/ConfigRuleName" }, { "description": "The name of the Config rule." } ] }, "ExternalEvaluation": { "allOf": [ { "$ref": "#/components/schemas/ExternalEvaluation" }, { "description": "An ExternalEvaluation object that provides details about compliance." } ] } }, "required": [ "ConfigRuleName", "ExternalEvaluation" ] }