{
  "title": "Raster DataSource",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "Raster data source is a file-based raster that resides in a registered raster workspace.",
  "properties": {
    "dataSourceName": {
      "type": "string",
      "description": "The raster datasource's name."
    },
    "type": {
      "type": "string",
      "description": "String value indicating the type for the dataSource.",
      "enum": [
        "raster"
      ]
    },
    "workspaceId": {
      "type": "string",
      "description": "The unique string value used to identify the datasource's workspace."
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "Raster DataSource",
        "code": {
          "dataSource": {
            "type": "raster",
            "workspaceId": "rasterWS",
            "dataSourceName": "NewOrleans.tif"
          }
        }
      }
    ]
  }
}
