{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://usedeed.app/contracts/deed.proof_card.revocations.v1.schema.json",
  "title": "DEED proof-card file revocations v1",
  "type": "object",
  "required": ["schema", "issuer", "updatedAt", "revokedCardIds", "note"],
  "properties": {
    "schema": { "const": "https://usedeed.app/contracts/deed.proof_card.revocations.v1.schema.json" },
    "issuer": { "const": "DEED" },
    "updatedAt": { "type": "string", "format": "date-time" },
    "revokedCardIds": {
      "type": "array",
      "items": { "type": "string", "pattern": "^zvpc_sha256_[0-9a-f]{64}$" },
      "uniqueItems": true
    },
    "note": { "type": "string", "minLength": 1 }
  },
  "additionalProperties": false
}
