{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "HubModuleManifest",
  "description": "Schema for RPDev Feed context modules and external plugin manifests",
  "type": "object",
  "required": [
    "id",
    "name",
    "version",
    "category"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "author": {
      "type": "string"
    },
    "category": {
      "type": "string",
      "enum": [
        "DEVELOPER",
        "PRODUCTIVITY",
        "SYSTEM",
        "WEATHER",
        "IOT",
        "CUSTOM"
      ]
    },
    "minAppVersion": {
      "type": "string"
    },
    "icon": {
      "type": "string"
    },
    "builtin": {
      "type": "boolean"
    },
    "downloadUrl": {
      "type": "string"
    }
  }
}
