Versions Compared

Key

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


Note
titleUsage of hidden with Screens

If "hidden" is set to "false", the customer will be able to see this metadata on his/her profile.

Setting metadata from hidden to visible is a system-wide change, not just a change in the project.

Image Removed

if "hidden" is set to "true", only Agents (and other Jira User) will be able to see the Metadata of a customer. 

Info

The Metadata Customer Screen defines which values every customer can see and which values the customers can change for themselves.

Image Removed

These metadata values are also displayed in the hover profile.

Image Removed

And can be edited directly in the hover profile.

Image Removed

Besides the existing screen you can change the default customer screen.

Create a json which has the structure of this user-screen-1-0.json - scheme (you will find a validator here: http://json-schema-validator.herokuapp.com/) and upload it in the admin area on the page "Metadata configuration":

Image Removed

Supported Schema Types

The following field types are supported:

...

Json-Templates

The following Jsons can be used as a basis.

...

Empty
Metadata Customer Screen

Code Block
collapsetrue
{
 "key": "metadata-screen-customer-default",
 "name": "Default Metadata Screen"
}

...

Default
Metadata Customer Screen

Code Block
collapsetrue
{
 "key": "metadata-screen-customer-default",
 "name": "Default Metadata Screen",
 "group": [
  {
   "name": "Telephone",
   "fullRow": true,
   "metadata": [
    {
     "key": "Telephone Number",
     "group": "Telephone",
     "hidden": false,
     "schema": {
      "type": "tel"
     }
    }
   ]
  },
  {
   "name": "Organization",
   "fullRow": true,
   "metadata": [
    {
     "key": "Title",
     "group": "Organization",
     "hidden": false,
     "schema": {
      "type": "string"
     }
    },
    {
     "key": "Company",
     "group": "Organization",
     "hidden": false,
     "schema": {
      "type": "string"
     }
    }
   ]
  }
  ]
}
    

...

Customized Metadata Customer Screen

(with hidden Metadata)

...

collapsetrue

...

Info

this page has been replaced by the following page

How-to customize the Metadata Customer Screen as Jira-Administrator (Metadata for Jira Version 4.6 or older)