{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://zeons.org/Forge/SDK/153/153.1/schemas/capability.schema.json",
  "title": "ZEON Capability",
  "type": "object",
  "required": [
    "id",
    "label",
    "description"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1
    },
    "label": {
      "type": "string",
      "minLength": 1
    },
    "description": {
      "type": "string"
    },
    "keywords": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "additionalProperties": false
}