{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://mememtech.com/content/schemas/authority-seal.schema.json",
  "title": "Mememtech Authority Seal",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "state",
    "seal",
    "allowedUse"
  ],
  "properties": {
    "state": {
      "type": "string",
      "enum": [
        "draft",
        "reviewed",
        "approved",
        "retired"
      ]
    },
    "seal": {
      "type": "string"
    },
    "allowedUse": {
      "type": "string"
    },
    "reviewedBy": {
      "type": "string"
    },
    "reviewedAtUtc": {
      "type": "string",
      "format": "date-time",
      "pattern": "Z$"
    }
  }
}
