Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

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

{
  "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": "2021-01-01T01:01:01.000+0000",
    "creator": {
      "id": "evolu.software",
      "name": "evolu software GmbH"
    }
  },
  "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": {}
    }
  }
}
  • No labels