{
  "$schema": "http://json-schema.org/draft-04/schema#",

  "definitions": {
    "id": {
      "type": "string",
      "pattern": "^[\\w]+$"
    },
    "full_qualified_id": {
      "type": "string",
      "pattern": "^[\\w\\.]+$"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "arch_type": {
      "type": "string",
      "enum": ["controller", "headless"]
    },
    "route": {
      "type": "string"
    }
  }
}
