{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://openwebcomics.comicopia.app/schema/version.schema.json",
  "title": "RegistryVersion",
  "description": "Response from GET /comicopia/api/version. Identifies a Comicopia registry and its API version.",
  "type": "object",
  "required": ["version", "name"],
  "properties": {
    "version": {
      "type": "string",
      "description": "API version string. The app uses this to determine compatibility.",
      "example": "1"
    },
    "name": {
      "type": "string",
      "description": "Human-readable name for this registry.",
      "example": "Comicopia"
    },
    "description": {
      "type": ["string", "null"],
      "description": "Optional description of the registry.",
      "example": "The official Comicopia comic registry."
    }
  },
  "additionalProperties": false
}
