{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean"
    },
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 12,
      "pattern": "^[A-Za-z0-9_-]+$"
    },
    "action": {
      "type": "string",
      "enum": [
        "created",
        "updated"
      ]
    }
  },
  "required": [
    "success",
    "id",
    "action"
  ],
  "additionalProperties": false
}
