Amazon Payment Cryptography · JSON Structure

Openapi Tag Structure

A structure that contains information about a tag.

Type: object Properties: 2 Required: 1
CryptographyFinancial ServicesPayment ProcessingPCI

Tag is a JSON Structure definition published by Amazon Payment Cryptography, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Key Value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-payment-cryptography/refs/heads/main/json-structure/openapi-tag-structure.json",
  "name": "Tag",
  "description": "A structure that contains information about a tag.",
  "type": "object",
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKey"
        },
        {
          "description": "The key of the tag."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagValue"
        },
        {
          "description": "The value of the tag."
        }
      ]
    }
  },
  "required": [
    "Key"
  ]
}