Versions Compared

Key

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

...

Besides the existing screens you can define your own or change the default screen. You can delete existing screens, except if the screen is set as default.

Create a json which has the structure of this project-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

The following field types are supported

...

The following Jsons can be used as a basis.

...

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

...

Code Block
collapsetrue
{
  "key": "metadata-screen-project-core",
  "name": "Core Project Metadata Screen",
  "group": [
    {
      "name": "Info",
      "fullRow": true,
      "metadata": [
        {
          "key": "Management Summary",
          "group": "Info",
          "schema": {
            "type": "longstring"
          }
        }
      ]
    },
    {
      "name": "Lifetime Analysis",
      "metadata": [
        {
          "key": "In Time",
          "group": "Lifetime Analysis",
          "schema": {
            "type": "select"
          },
          "allowedValues": [
            {
              "name": "Red"
            },
            {
              "name": "Yellow"
            },
            {
              "name": "Green"
            }
          ]
        },
        {
          "key": "Risk",
          "group": "Lifetime Analysis",
          "schema": {
            "type": "select"
          },
          "allowedValues": [
            {
              "name": "Red"
            },
            {
              "name": "Yellow"
            },
            {
              "name": "Green"
            }
          ]
        }
      ]
    },
    {
      "name": "Stakeholder Analysis",
      "metadata": [
        {
          "key": "Importance",
          "group": "Stakeholder Analysis",
          "schema": {
            "type": "select"
          },
          "allowedValues": [
            {
              "name": "High"
            },
            {
              "name": "Medium"
            },
            {
              "name": "Low"
            }
          ]
        },
        {
          "key": "Influence",
          "group": "Stakeholder Analysis",
          "schema": {
            "type": "select"
          },
          "allowedValues": [
            {
              "name": "High"
            },
            {
              "name": "Medium"
            },
            {
              "name": "Low"
            }
          ]
        },
        {
          "key": "Stakeholder Group",
          "group": "Stakeholder Analysis",
          "schema": {
            "type": "string"
          }
        }
      ]
    }
  ]
}

...

collapsetrue

...

Futher details: How to customize the Metadata Project Screen as Jira-Administrator