{
  "type": "object",
  "defaultProperties": [
    "name",
    "type",
    "url"
  ],
  "properties": {
    "data": {
      "type": "object",
      "title": "#Data",
      "description": "The GeoJSON data, represented as a binary blob, object literal, or a Promise for one of those things.\nIf this property is set, {@link CatalogItem#url} is ignored."
    },
    "dataSourceUrl": {
      "type": "string",
      "title": "#Data source URL",
      "description": "The URL from which the {@link GeoJsonCatalogItem#data} was obtained.  This will be used\nto resolve any resources linked in the GeoJSON file, if any."
    },
    "type": {
      "type": "string",
      "enum": [
        "geojson"
      ],
      "options": {
        "hidden": true
      }
    }
  },
  "description": "A {@link CatalogItem} representing GeoJSON feature data.",
  "title": "GeoJSON",
  "allOf": [
    {
      "$ref": "CatalogItem.json"
    },
    {
      "$ref": "CatalogMember.json"
    }
  ]
}