For the complete documentation index, see llms.txt. This page is also available as Markdown.

Specify an entity alias

Auto-generated aliases in the response are not straightforward. For example, Community0, Responsibility1 or User2. For this reason, you must specify an alias.

{
  "ViewConfig": {
    "Resources": {
      "Community": {
        "name": "community",
        "Id": { "name": "community id" },
        "Name": { "name": "community name" },
        "Responsibility": {
          "name": "responsibility",
          "User": {
            "name": "employee",
            "Id": { "name": "user id" },
            "FirstName": { "name": "first name" },
            "LastName": { "name": "last name" }
          },
          "Role": {
            "name": "role",
            "Signifier": { "name": "role name" }
          }
        }
      }
    }
  }
}

The results should then parse like the example below.

Last updated

Was this helpful?