Skip to main content
Question

Need help in one desktop plan

  • April 1, 2026
  • 1 reply
  • 9 views

Forum|alt.badge.img

Hello ​@Lisa Kovalskaia 

 

I need to bulk update the description of the rules which include a hyperlink. When I used ONE Desktop Plan it displays as string rather than link. Can you please help?

1 reply

Lisa Kovalskaia
Ataccamer
Forum|alt.badge.img+3

Hi ​@kpillai, it sounds like you perhaps had the hyperlink in a plan text input format. For reach text formatting to be rendered correctly, you’ll need to provide the input as a JSON e.g.

[
  {
    "type": "paragraph",
    "children": [
      { "text": "Documentation: " },
      {
        "type": "a",
        "url": "https://docs.example.com/connectors/new",
        "children": [
          { "text": "New connector" }
        ]
      }
    ]
  }
]

 

You can automate that in your ONE Desktop plan - I’m attaching an example that uses some keywords to determine the structure of the description and wrap it into a JSON syntax. This example is rather dated, you might instead feed your source file to an AI agent and give it the above JSON as an example to have the descriptions prepared for import into Ataccama.

Hope this helps! Let me know if you have any follow up questions!

Lisa