{
  "title": "popupElement text",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "Configures text in popup elements.",
  "properties": {
    "text": {
      "type": "string",
      "description": "This property applies to elements of type `text`. This is string value indicating the text to be displayed within the popupElement. If no `text` property is provided, the popupElement will display whatever is specified in the [popupInfo.description](popupInfo.md) property."
    },
    "type": {
      "type": "string",
      "enum": [
        "text"
      ]
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "popupElement",
        "code": {
          "popupElements": [
            {
              "type": "text",
              "text": "Some descriptive text describing the popup."
            }
          ]
        }
      }
    ]
  }
}
