ProductFeedCreated
v0.0.1

ProductFeedCreated

This event is triggered when a product feed is created.

The generation of product price feeds is part of Brink BI Service and thus not part of the standard Brink API License Agreement. Reach out to us for more details as to how to activate this for your account.

ProductFeedCreated Schema (json)
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "ProductFeedCreated",
  "required": [
    "detail-type",
    "resources",
    "detail",
    "id",
    "source",
    "time",
    "region",
    "version",
    "account"
  ],
  "type": "object",
  "x-amazon-events-detail-type": "ProductFeedCreated",
  "x-amazon-events-source": "brink.external.v1",
  "properties": {
    "account": {
      "type": "string"
    },
    "detail": {
      "$ref": "#/definitions/Detail"
    },
    "detail-type": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "region": {
      "type": "string"
    },
    "resources": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "source": {
      "type": "string"
    },
    "time": {
      "format": "date-time",
      "type": "string"
    },
    "version": {
      "type": "string"
    }
  },
  "definitions": {
    "Feed": {
      "properties": {
        "countryCode": {
          "type": "string"
        },
        "storeGroupId": {
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "required": [
        "countryCode",
        "storeGroupId",
        "url"
      ],
      "type": "object"
    },
    "Data": {
      "properties": {
        "feed": {
          "$ref": "#/definitions/Feed"
        }
      },
      "required": [
        "feed"
      ],
      "type": "object"
    },
    "Metadata": {
      "properties": {
        "awsRequestId": {
          "type": "string"
        }
      },
      "required": [
        "awsRequestId"
      ],
      "type": "object"
    },
    "Detail": {
      "properties": {
        "data": {
          "$ref": "#/definitions/Data"
        },
        "metadata": {
          "$ref": "#/definitions/Metadata"
        }
      },
      "required": [
        "metadata",
        "data"
      ],
      "type": "object"
    }
  }
}
Last updated on 2024/9/30