The quarantine policy for a container registry.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-registry/refs/heads/main/json-schema/azure-container-registry-quarantine-policy-schema.json", "title": "QuarantinePolicy", "description": "The quarantine policy for a container registry.", "type": "object", "properties": { "status": { "default": "disabled", "description": "The value that indicates whether the policy is enabled or not.", "enum": [ "enabled", "disabled" ], "type": "string", "x-ms-enum": { "modelAsString": true, "name": "PolicyStatus" } } } }