Chilkat Online Tools

PowerBuilder / Support API / List Trigger Revisions

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Author_id
string ls_Created_at
string ls_Source_id
string ls_Target_id
string ls_Id
string ls_Active
string ls_Description
string ls_Title
string ls_Url
integer j
integer li_Count_j
integer k
integer li_Count_k
string ls_Change
string ls_Content
string ls_Field
string ls_Value
string ls_Operator
string ls_After_cursor
string ls_After_url
string ls_Before_cursor
string ls_Before_url
string ls_Count
integer i
integer li_Count_i

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.BasicAuth = 1
loo_Http.Login = "login"
loo_Http.Password = "password"

loo_Http.SetRequestHeader("Accept","application/json")

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

li_Success = loo_Http.QuickGetSb("https://example.zendesk.com/api/v2/triggers/:trigger_id/revisions",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Http.LastHeader
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "after_cursor": "<string>",
//   "after_url": "<string>",
//   "before_cursor": "<string>",
//   "before_url": "<string>",
//   "count": "<integer>",
//   "trigger_revisions": [
//     {
//       "author_id": "<integer>",
//       "created_at": "<string>",
//       "diff": {
//         "actions": [
//           {
//             "field": [
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               },
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               }
//             ],
//             "value": [
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               },
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               }
//             ]
//           },
//           {
//             "field": [
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               },
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               }
//             ],
//             "value": [
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               },
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               }
//             ]
//           }
//         ],
//         "active": [
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           },
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           }
//         ],
//         "conditions": {
//           "field": [
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             },
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             }
//           ],
//           "operator": [
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             },
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             }
//           ],
//           "value": [
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             },
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             }
//           ]
//         },
//         "description": [
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           },
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           }
//         ],
//         "source_id": "<integer>",
//         "target_id": "<integer>",
//         "title": [
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           },
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           }
//         ]
//       },
//       "id": "<integer>",
//       "snapshot": {
//         "actions": [
//           {
//             "field": "<string>",
//             "value": "<string>"
//           },
//           {
//             "field": "<string>",
//             "value": "<string>"
//           }
//         ],
//         "active": "<boolean>",
//         "conditions": {
//           "all": [
//             {
//               "field": "<string>",
//               "operator": "<string>",
//               "value": "<string>"
//             },
//             {
//               "field": "<string>",
//               "operator": "<string>",
//               "value": "<string>"
//             }
//           ],
//           "any": [
//             {
//               "field": "<string>",
//               "operator": "<string>",
//               "value": "<string>"
//             },
//             {
//               "field": "<string>",
//               "operator": "<string>",
//               "value": "<string>"
//             }
//           ]
//         },
//         "description": "<string>",
//         "title": "<string>"
//       },
//       "url": "<string>"
//     },
//     {
//       "author_id": "<integer>",
//       "created_at": "<string>",
//       "diff": {
//         "actions": [
//           {
//             "field": [
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               },
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               }
//             ],
//             "value": [
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               },
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               }
//             ]
//           },
//           {
//             "field": [
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               },
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               }
//             ],
//             "value": [
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               },
//               {
//                 "change": "<string>",
//                 "content": "<boolean>"
//               }
//             ]
//           }
//         ],
//         "active": [
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           },
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           }
//         ],
//         "conditions": {
//           "field": [
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             },
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             }
//           ],
//           "operator": [
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             },
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             }
//           ],
//           "value": [
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             },
//             {
//               "change": "<string>",
//               "content": "<boolean>"
//             }
//           ]
//         },
//         "description": [
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           },
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           }
//         ],
//         "source_id": "<integer>",
//         "target_id": "<integer>",
//         "title": [
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           },
//           {
//             "change": "<string>",
//             "content": "<boolean>"
//           }
//         ]
//       },
//       "id": "<integer>",
//       "snapshot": {
//         "actions": [
//           {
//             "field": "<string>",
//             "value": "<string>"
//           },
//           {
//             "field": "<string>",
//             "value": "<string>"
//           }
//         ],
//         "active": "<boolean>",
//         "conditions": {
//           "all": [
//             {
//               "field": "<string>",
//               "operator": "<string>",
//               "value": "<string>"
//             },
//             {
//               "field": "<string>",
//               "operator": "<string>",
//               "value": "<string>"
//             }
//           ],
//           "any": [
//             {
//               "field": "<string>",
//               "operator": "<string>",
//               "value": "<string>"
//             },
//             {
//               "field": "<string>",
//               "operator": "<string>",
//               "value": "<string>"
//             }
//           ]
//         },
//         "description": "<string>",
//         "title": "<string>"
//       },
//       "url": "<string>"
//     }
//   ]
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

ls_After_cursor = loo_JResp.StringOf("after_cursor")
ls_After_url = loo_JResp.StringOf("after_url")
ls_Before_cursor = loo_JResp.StringOf("before_cursor")
ls_Before_url = loo_JResp.StringOf("before_url")
ls_Count = loo_JResp.StringOf("count")
i = 0
li_Count_i = loo_JResp.SizeOfArray("trigger_revisions")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Author_id = loo_JResp.StringOf("trigger_revisions[i].author_id")
    ls_Created_at = loo_JResp.StringOf("trigger_revisions[i].created_at")
    ls_Source_id = loo_JResp.StringOf("trigger_revisions[i].diff.source_id")
    ls_Target_id = loo_JResp.StringOf("trigger_revisions[i].diff.target_id")
    ls_Id = loo_JResp.StringOf("trigger_revisions[i].id")
    ls_Active = loo_JResp.StringOf("trigger_revisions[i].snapshot.active")
    ls_Description = loo_JResp.StringOf("trigger_revisions[i].snapshot.description")
    ls_Title = loo_JResp.StringOf("trigger_revisions[i].snapshot.title")
    ls_Url = loo_JResp.StringOf("trigger_revisions[i].url")
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].diff.actions")
    do while j < li_Count_j
        loo_JResp.J = j
        k = 0
        li_Count_k = loo_JResp.SizeOfArray("trigger_revisions[i].diff.actions[j].field")
        do while k < li_Count_k
            loo_JResp.K = k
            ls_Change = loo_JResp.StringOf("trigger_revisions[i].diff.actions[j].field[k].change")
            ls_Content = loo_JResp.StringOf("trigger_revisions[i].diff.actions[j].field[k].content")
            k = k + 1
        loop
        k = 0
        li_Count_k = loo_JResp.SizeOfArray("trigger_revisions[i].diff.actions[j].value")
        do while k < li_Count_k
            loo_JResp.K = k
            ls_Change = loo_JResp.StringOf("trigger_revisions[i].diff.actions[j].value[k].change")
            ls_Content = loo_JResp.StringOf("trigger_revisions[i].diff.actions[j].value[k].content")
            k = k + 1
        loop
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].diff.active")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Change = loo_JResp.StringOf("trigger_revisions[i].diff.active[j].change")
        ls_Content = loo_JResp.StringOf("trigger_revisions[i].diff.active[j].content")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].diff.conditions.field")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Change = loo_JResp.StringOf("trigger_revisions[i].diff.conditions.field[j].change")
        ls_Content = loo_JResp.StringOf("trigger_revisions[i].diff.conditions.field[j].content")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].diff.conditions.operator")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Change = loo_JResp.StringOf("trigger_revisions[i].diff.conditions.operator[j].change")
        ls_Content = loo_JResp.StringOf("trigger_revisions[i].diff.conditions.operator[j].content")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].diff.conditions.value")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Change = loo_JResp.StringOf("trigger_revisions[i].diff.conditions.value[j].change")
        ls_Content = loo_JResp.StringOf("trigger_revisions[i].diff.conditions.value[j].content")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].diff.description")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Change = loo_JResp.StringOf("trigger_revisions[i].diff.description[j].change")
        ls_Content = loo_JResp.StringOf("trigger_revisions[i].diff.description[j].content")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].diff.title")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Change = loo_JResp.StringOf("trigger_revisions[i].diff.title[j].change")
        ls_Content = loo_JResp.StringOf("trigger_revisions[i].diff.title[j].content")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].snapshot.actions")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Field = loo_JResp.StringOf("trigger_revisions[i].snapshot.actions[j].field")
        ls_Value = loo_JResp.StringOf("trigger_revisions[i].snapshot.actions[j].value")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].snapshot.conditions.all")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Field = loo_JResp.StringOf("trigger_revisions[i].snapshot.conditions.all[j].field")
        ls_Operator = loo_JResp.StringOf("trigger_revisions[i].snapshot.conditions.all[j].operator")
        ls_Value = loo_JResp.StringOf("trigger_revisions[i].snapshot.conditions.all[j].value")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("trigger_revisions[i].snapshot.conditions.any")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Field = loo_JResp.StringOf("trigger_revisions[i].snapshot.conditions.any[j].field")
        ls_Operator = loo_JResp.StringOf("trigger_revisions[i].snapshot.conditions.any[j].operator")
        ls_Value = loo_JResp.StringOf("trigger_revisions[i].snapshot.conditions.any[j].value")
        j = j + 1
    loop
    i = i + 1
loop


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl  -u login:password -X GET
	-H "Accept: application/json"
https://example.zendesk.com/api/v2/triggers/:trigger_id/revisions

Postman Collection Item JSON

{
  "name": "List Trigger Revisions",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/triggers/:trigger_id/revisions",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "triggers",
        ":trigger_id",
        "revisions"
      ],
      "variable": [
        {
          "key": "trigger_id",
          "value": "<integer>"
        }
      ]
    },
    "description": "List the revisions associated with a trigger. Trigger revision history is only available on Enterprise plans.\n\n#### Allowed For\n\n * Agents\n\n#### Sideloads\n\nThe following sideloads are supported:\n\n| Name  | Will sideload\n| ----- | -------------\n| users | The user that authored each revision\n\n#### Pagination\n\nThis endpoint uses cursor-based pagination. The records are ordered in\ndescending order by the `created_at` timestamp, then by `id` on duplicate\n`created_at` values.\n\nThe `cursor` parameter is a non-human-readable argument you can use to move\nforward or backward in time.\n\nEach JSON response will contain the following attributes to help you get\nmore results:\n\n- `after_url` requests more recent results\n- `before_url` requests older results\n- `after_cursor` is the cursor to build the request yourself\n- `before_cursor` is the cursor to build the request yourself\n\nThe properties are null if no more records are available.\n\nYou can request a maximum of 1000 records using the `limit` parameter. If\nno `limit` parameter is supplied, it will default to 1,000.\n"
  },
  "response": [
    {
      "name": "Success response",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/triggers/:trigger_id/revisions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "triggers",
            ":trigger_id",
            "revisions"
          ],
          "variable": [
            {
              "key": "trigger_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"after_cursor\": \"<string>\",\n  \"after_url\": \"<string>\",\n  \"before_cursor\": \"<string>\",\n  \"before_url\": \"<string>\",\n  \"count\": \"<integer>\",\n  \"trigger_revisions\": [\n    {\n      \"author_id\": \"<integer>\",\n      \"created_at\": \"<string>\",\n      \"diff\": {\n        \"actions\": [\n          {\n            \"field\": [\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              },\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              }\n            ],\n            \"value\": [\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              },\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              }\n            ]\n          },\n          {\n            \"field\": [\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              },\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              }\n            ],\n            \"value\": [\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              },\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              }\n            ]\n          }\n        ],\n        \"active\": [\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          },\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          }\n        ],\n        \"conditions\": {\n          \"field\": [\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            },\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            }\n          ],\n          \"operator\": [\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            },\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            }\n          ],\n          \"value\": [\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            },\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            }\n          ]\n        },\n        \"description\": [\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          },\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          }\n        ],\n        \"source_id\": \"<integer>\",\n        \"target_id\": \"<integer>\",\n        \"title\": [\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          },\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          }\n        ]\n      },\n      \"id\": \"<integer>\",\n      \"snapshot\": {\n        \"actions\": [\n          {\n            \"field\": \"<string>\",\n            \"value\": \"<string>\"\n          },\n          {\n            \"field\": \"<string>\",\n            \"value\": \"<string>\"\n          }\n        ],\n        \"active\": \"<boolean>\",\n        \"conditions\": {\n          \"all\": [\n            {\n              \"field\": \"<string>\",\n              \"operator\": \"<string>\",\n              \"value\": \"<string>\"\n            },\n            {\n              \"field\": \"<string>\",\n              \"operator\": \"<string>\",\n              \"value\": \"<string>\"\n            }\n          ],\n          \"any\": [\n            {\n              \"field\": \"<string>\",\n              \"operator\": \"<string>\",\n              \"value\": \"<string>\"\n            },\n            {\n              \"field\": \"<string>\",\n              \"operator\": \"<string>\",\n              \"value\": \"<string>\"\n            }\n          ]\n        },\n        \"description\": \"<string>\",\n        \"title\": \"<string>\"\n      },\n      \"url\": \"<string>\"\n    },\n    {\n      \"author_id\": \"<integer>\",\n      \"created_at\": \"<string>\",\n      \"diff\": {\n        \"actions\": [\n          {\n            \"field\": [\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              },\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              }\n            ],\n            \"value\": [\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              },\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              }\n            ]\n          },\n          {\n            \"field\": [\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              },\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              }\n            ],\n            \"value\": [\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              },\n              {\n                \"change\": \"<string>\",\n                \"content\": \"<boolean>\"\n              }\n            ]\n          }\n        ],\n        \"active\": [\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          },\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          }\n        ],\n        \"conditions\": {\n          \"field\": [\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            },\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            }\n          ],\n          \"operator\": [\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            },\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            }\n          ],\n          \"value\": [\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            },\n            {\n              \"change\": \"<string>\",\n              \"content\": \"<boolean>\"\n            }\n          ]\n        },\n        \"description\": [\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          },\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          }\n        ],\n        \"source_id\": \"<integer>\",\n        \"target_id\": \"<integer>\",\n        \"title\": [\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          },\n          {\n            \"change\": \"<string>\",\n            \"content\": \"<boolean>\"\n          }\n        ]\n      },\n      \"id\": \"<integer>\",\n      \"snapshot\": {\n        \"actions\": [\n          {\n            \"field\": \"<string>\",\n            \"value\": \"<string>\"\n          },\n          {\n            \"field\": \"<string>\",\n            \"value\": \"<string>\"\n          }\n        ],\n        \"active\": \"<boolean>\",\n        \"conditions\": {\n          \"all\": [\n            {\n              \"field\": \"<string>\",\n              \"operator\": \"<string>\",\n              \"value\": \"<string>\"\n            },\n            {\n              \"field\": \"<string>\",\n              \"operator\": \"<string>\",\n              \"value\": \"<string>\"\n            }\n          ],\n          \"any\": [\n            {\n              \"field\": \"<string>\",\n              \"operator\": \"<string>\",\n              \"value\": \"<string>\"\n            },\n            {\n              \"field\": \"<string>\",\n              \"operator\": \"<string>\",\n              \"value\": \"<string>\"\n            }\n          ]\n        },\n        \"description\": \"<string>\",\n        \"title\": \"<string>\"\n      },\n      \"url\": \"<string>\"\n    }\n  ]\n}"
    }
  ]
}