{
  "type": "object",
  "oneOf": [
    {
      "properties": {
        "subject_digests": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "List of subject digests associated with the artifact attestations to delete.",
          "minItems": 1,
          "maxItems": 1024
        }
      },
      "required": [
        "subject_digests"
      ]
    },
    {
      "properties": {
        "attestation_ids": {
          "type": "array",
          "items": {
            "type": "integer"
          },
          "description": "List of unique IDs associated with the artifact attestations to delete.",
          "minItems": 1,
          "maxItems": 1024
        }
      },
      "required": [
        "attestation_ids"
      ]
    }
  ],
  "description": "The request body must include either `subject_digests` or `attestation_ids`, but not both.",
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}