Amazon Marketplace · JSON Structure

Amazon Marketplace Tag Resource Request Structure

TagResourceRequest schema from Amazon Marketplace API

Type: object Properties: 2 Required: 2
CommerceISVMarketplaceSoftware Catalog

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

Properties

ResourceArn Tags

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-marketplace/refs/heads/main/json-structure/amazon-marketplace-tag-resource-request-structure.json",
  "name": "TagResourceRequest",
  "description": "TagResourceRequest schema from Amazon Marketplace API",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "Required. The Amazon Resource Name (ARN) associated with the resource you want to tag."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "Required. A list of objects specifying each key name and value. Number of objects allowed: 1-50."
        }
      ]
    }
  },
  "required": [
    "ResourceArn",
    "Tags"
  ]
}