Atlassian · Schema

search_line

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
line integer
segments array
View JSON Schema on GitHub

JSON Schema

atlassian-search-line-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/search_line",
  "title": "search_line",
  "type": "object",
  "properties": {
    "line": {
      "type": "integer",
      "format": "int32",
      "readOnly": true,
      "example": 10
    },
    "segments": {
      "type": "array",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/search_segment"
      },
      "example": []
    }
  }
}