Versions Compared

Key

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

This How-to will show you how you can use user based Metadata to step up enhance your service game desk by adding Service Levels.

If you are not sure what Service Levels are, you can learn more about Service Levels here.

Instructions

Add Service Levels to the Metadata Customer & User Screen (as Jira Administrator)

  1. Login to your Jira account.
  2. Click on the ⚙️ Settings Button on the top right corner and chose Add-ons.


  3. Click on Metadata configuration.


  4. Change the User Screen

    and Customer Screen

     to include a Service Level by adding the following to the existing configuration:
    Image Modified

    Code Block
    titleAdd Service Level to User Screen

...

  1.     {
          "name": "Customer",
          "fullRow": true,
          "metadata": [
            {
              "key": "

...

  1. Service Level",
              "group": "Customer",
              "hidden": false,
              "schema": {
                "type": "

...

  1. select"
              },
            

...

  1.   "allowedValues": 

...

  1. [
        

...

  1.         

...

  1. {"

...

  1. name": "

...

  1. Platinum"},
                {"

...

  1. name": "

...

  1. Gold"},
                {"

...

  1. name": 

...

  1. "Silver"}
              ]
          

...

  1.   }
          ]
        }
    

...


  1. Info
    In our example we set "hidden" to "false" for the Service Level.


  2. Change the Customer Screen to include a Service Level by adding the following to the existing configuration:
    Image Added

    Code Block
    titleAdd Service Level to Customer Screen
       {
          

...

  1. "name": "Customer",
          "fullRow": true,
          "

...

  1. metadata": [
            {
        

...

  1.       "key": "Service Level",
              "

...

  1. group": "

...

  1. Customer",
              

...

  1. "hidden": true,
              "schema": 

...

  1. {
                

...

  1. "

...

  1. type": "

...

  1. select"
              },
              

...

  1. "allowedValues": [
                {"name": "Platinum"},
                

...

  1. {"name": "

...

  1. Gold"},
                {"name": "Silver"}
              ]
            }
          ]
        } 
    


    Info
    In our example we set "hidden" to "true" for the Service Level. If you set "hidden" to "false" the Customer will be able to see his/her Service Level on his/her profile.


You can learn more about how to customize the Metadata User Screen here.

...