CredentialMetadata
display object[]
Array [
namestring
Example: 
Extended Display Namelocalestring
Example: 
en-USlogo object
uristringrequired
Example: 
https://example.com/image.pngalt_textstring
Example: 
Logo alt textdescriptionstring
Example: 
Extended display descriptionbackground_colorstring
Example: 
#ffffffbackground_image object
uristringrequired
Example: 
https://example.com/image.pngtext_colorstring
Example: 
#000000]
claims object[]
Array [
path object[]required
Array [
- string
- null
string
null
]
mandatoryboolean
Example: 
truedisplay object[]
Array [
namestring
Example: 
Display Namelocalestring
Example: 
en-US]
]
CredentialMetadata
{
  "display": [
    {
      "name": "University Degree",
      "locale": "en-US",
      "description": "A verified university degree credential",
      "background_color": "#ffffff",
      "text_color": "#000000",
      "logo": {
        "uri": "https://example.com/logo.png",
        "alt_text": "Logo alt text"
      }
    }
  ],
  "claims": [
    {
      "path": [
        "name"
      ],
      "mandatory": true,
      "display": [
        {
          "name": "Full Name",
          "locale": "en-US"
        }
      ]
    },
    {
      "path": [
        "degree"
      ],
      "mandatory": true,
      "display": [
        {
          "name": "Degree",
          "locale": "en-US"
        }
      ]
    },
    {
      "path": [
        "id"
      ],
      "mandatory": false,
      "display": [
        {
          "name": "Student ID",
          "locale": "en-US"
        }
      ]
    }
  ]
}