Skip to main content
Skip table of contents

Data storage format

For Connected Custom fields, the table below outlines how data should be formatted depending on the field type:

Field Type

Storage format

Example

Text - Select list (single choice)

Snapshot

String

"value"

Object (*)

JSON

CODE
{
  "id":"{key}",
  "value":"{template}"
}

Text - Select list (multiple choices)

Snapshot

List

["value1", "value2"]

Text - Read only

Snapshot

String

"value"

Object (*)

JSON

CODE
{
  "id":"{key}",
  "value":"{template}"
}

Multi

List

["value1", "value2"]

User - Select list (single choice)

Snapshot

JSON

CODE
{
  "accountId":"value"
}

User - Read only

Snapshot

JSON

CODE
{
  "accountId":"value"
}

Read only

Snapshot

String

“2025-01-01”

For Object fields, when the "Recalculate displayed value on issue view" option is enabled and correctly set up, only the id needs to be provided. The value attribute will then be automatically computed when accessing the issue view.

Accepted formats:

  • Format #1:

    CODE
    {
      "id":"{key}",
      "value":""
    }
  • Format #2:

    CODE
    {
      "id":"{key}",
      "value":null
    }
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.