{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Eviulon exit and renunciation readiness record",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "id",
    "title",
    "readinessState",
    "publicExplanation",
    "limitation",
    "punishesDecline",
    "destroysIdentity",
    "truthBoundary"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "readinessState": {
      "enum": [
        "DOCUMENTED",
        "IMPLEMENTED_LOCAL_STATIC",
        "DELEGATED_TO_PATEFACERE",
        "CONTRACT_PUBLISHED_INACTIVE",
        "NOT_IMPLEMENTED",
        "UNAVAILABLE"
      ]
    },
    "publicExplanation": {
      "type": "string"
    },
    "limitation": {
      "type": "string"
    },
    "punishesDecline": {
      "const": false
    },
    "destroysIdentity": {
      "const": false
    },
    "truthBoundary": {
      "type": "string"
    }
  }
}
