Atlassian · Schema

AutoCompleteSuggestion

A field auto-complete suggestion.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
displayName string The display name of a suggested item. If `fieldValue` or `predicateValue` are provided, the matching text is highlighted with the HTML bold tag.
value string The value of a suggested item.
View JSON Schema on GitHub

JSON Schema

atlassian-autocompletesuggestion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutoCompleteSuggestion",
  "title": "AutoCompleteSuggestion",
  "additionalProperties": false,
  "description": "A field auto-complete suggestion.",
  "properties": {
    "displayName": {
      "description": "The display name of a suggested item. If `fieldValue` or `predicateValue` are provided, the matching text is highlighted with the HTML bold tag.",
      "type": "string"
    },
    "value": {
      "description": "The value of a suggested item.",
      "type": "string"
    }
  },
  "type": "object"
}