Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

This is what the template looks like as a data form.

Info

We show you how to import this template here:
https://aevolu.atlassian.net/wiki/spaces/DFC/pages/2368667649/Data+Forms+templates+-+How+to+export+and+import+templates#Import-templates

Code Block
{
  "id": "new-user",
  "name": "New User Request",
  "description": "We need the following information in order to create a new user account.",
  "metadata": {
    "version": 1,
    "created": "2021-01-01T01:01:01.000+0000",
    "updated": "20212022-0108-01T0115T01:01:01.000+0000",
    "creator": {
      "id": "evolu.software"
    },
    "updater": {
      "id": "evolu.software"
    },
    "template" : {
      "id" : "${tid}-${uuid}",
      "name" : "evoluNew softwareUser GmbHRequest"
    },
    "version": 2
  },
  "section": [
    {
      "id": "common",
      "name": "",
      "description": "",
      "field": [
        {
          "id": "username",
          "description": "What is the name of the new user?",
          "name": "Username"
        },
        {
          "id": "email",
          "description": "What is the email address of the new user?",
          "name": "Email address"
        },
        {
          "id": "role",
          "description": "In which role should the new user be included?",
          "name": "Role"
        },
        {
          "id": "manager",
          "description": "Who is the manager of the new user?",
          "name": "Manager"
        }
      ]
    }
  ],
  "data": {
    "username": {
      "type": "text",
      "value": ""
    },
    "email": {
      "type": "text",
      "value": ""
    },
    "role": {
      "type": "select-single",
      "allowedValues": [
        {
          "name": "Viewer"
        },
        {
          "name": "Editor"
        },
        {
          "name": "Administrator"
        }
      ],
      "value": {}
    },
    "manager": {
      "type": "user-single",
      "value": {}
    }
  }
}