KeyValue can shows key-value shaped data.

{
    "id": "order-property", 
    "type": "key-value",
    "items": [
      {
        "key": "name", 
        "value": "Jihoon Park" 
      },
      {
        "key": "mobileNumber",
        "value": "+82-10-1234-5678"
      },
      {
        "key": "address",
        "value": "[12345] Gangnam-gu, Seoul"
      }
    ]
  }
PropertyTypeExampleDescriptionRequired
idstringorder-propertyID of component. ID should be unique in snippet.true
typestringkey-valueType of component. use key-valuetrue
itemsList of Object[
{
"key": "name",
"value": "Jihoon Park"
},
{
"key": "mobileNumber",
"value": "+82-10-1234-5678"
},
{
"key": "address",
"value": "[12345] Gangnam-gu, Seoul"
}
]
true
items[i].keystringnameKey of informationtrue
items[i].valuestringJihoon ParkValue of informationtrue