{
  "title": "mediaInfo chart",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "Defines a chart to be displayed in a popup window.",
  "properties": {
    "caption": {
      "type": "string",
      "description": "A string caption describing the media."
    },
    "title": {
      "type": "string",
      "description": "A string title for the media."
    },
    "type": {
      "type": "string",
      "description": "A string defining the type of media.",
      "enum": [
        "barchart",
        "columnchart",
        "linechart",
        "piechart"
      ]
    },
    "value": {
      "$ref": "mediaInfo_chart_value_schema.json"
    }
  },
  "required": [
    "type",
    "value"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "mediaInfo",
        "code": {
          "mediaInfo": {
            "title": "Chart stats",
            "type": "barchart",
            "caption": "For a better idea...",
            "value": {
              "fields": [
                "relationships/0/Pledge"
              ],
              "tooltipField": "relationships/2/Official"
            }
          }
        }
      }
    ]
  }
}
