{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-control-tower/refs/heads/main/json-schema/enabled-control-parameter-schema.json", "title": "EnabledControlParameter", "description": "A key-value pair for a control parameter.", "type": "object", "properties": { "key": { "type": "string", "description": "The parameter key.", "example": "AllowedRegions" }, "value": { "description": "The parameter value." } }, "required": [ "key", "value" ] }