{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "definitions": {
    "symbolInfo": {
      "properties": {
        "isHidden": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "pattern": "^(true|false)$"
            }
          ]
        },
        "longName": {
          "type": "string"
        },
        "shortName": {
          "type": "string"
        }
      }
    }
  },
  "id": "https://json.schemastore.org/dotnetcli.host.json",
  "properties": {
    "symbolInfo": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/definitions/symbolInfo"
      }
    },
    "usageExamples": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "title": "JSON schema for .NET CLI template host files",
  "type": "object"
}
