{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/dotnetcli-host-json/latest.json",
  "title": "JSON schema for .NET CLI template host files",
  "x-lintel": {
    "source": "https://www.schemastore.org/dotnetcli.host.json",
    "sourceSha256": "f58b51ba1229860ddbdd7e99945e53e6d6e221dfe8bf71bfd36b5d407dd3e8a7",
    "fileMatch": [
      "dotnetcli.host.json"
    ],
    "parsers": [
      "json"
    ]
  },
  "type": "object",
  "properties": {
    "symbolInfo": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/$defs/symbolInfo"
      }
    },
    "usageExamples": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "id": "https://json.schemastore.org/dotnetcli.host.json",
  "$defs": {
    "symbolInfo": {
      "properties": {
        "isHidden": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "pattern": "^(true|false)$"
            }
          ]
        },
        "longName": {
          "type": "string"
        },
        "shortName": {
          "type": "string"
        }
      }
    }
  }
}
