{
  "$schema": "http://json-schema.org/schema",
  "id": "feature-options",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Library name",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    },
    "domain": {
      "type": "string",
      "description": "Domain name"
    },
    "entity": {
      "type": "string",
      "description": "Optional entity to create for this feature"
    },
    "type": {
      "type": "string",
      "enum": [
        "internal",
        "buildable"
      ],
      "description": "A type to determine if and how to build the library.",
      "default": "buildable"
    }
  },
  "required": ["name", "domain"]
}
