{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://blackproof.fr/schemas/delivery-protocol/revocation-v1.schema.json",
  "title": "BLACKPROOF Delivery Revocation V1",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "product",
    "formatVersion",
    "deliveryId",
    "deliveryFingerprint",
    "status",
    "revokedAt",
    "fingerprint"
  ],
  "properties": {
    "product": {
      "const": "BLACKPROOF"
    },
    "formatVersion": {
      "const": "blackproof-delivery-revocation-v1"
    },
    "deliveryId": {
      "type": "string",
      "pattern": "^delivery_[a-f0-9]{32}$"
    },
    "deliveryFingerprint": {
      "type": "string",
      "pattern": "^bp_sha256_[a-f0-9]{64}$"
    },
    "status": {
      "const": "revoked"
    },
    "revokedAt": {
      "type": "string",
      "format": "date-time"
    },
    "reason": {
      "type": "string",
      "minLength": 1,
      "maxLength": 240
    },
    "fingerprint": {
      "type": "string",
      "pattern": "^bp_sha256_[a-f0-9]{64}$"
    }
  }
}