eBay · Schema

PublicKey

A type that defines the public key for a unique key ID.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
algorithm string The algorithm associated with the public key that is returned, such as Elliptic Curve Digital Signature Algorithm (ECDSA).
digest string The digest associated with the public key that is returned, such as Secure Hash Algorithm 1 (SHA1).
key string The public key that is returned for the specified key ID.

This value is used to validate the eBay push notification message payload.
View JSON Schema on GitHub

JSON Schema

ebay-publickey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublicKey",
  "title": "PublicKey",
  "type": "object",
  "properties": {
    "algorithm": {
      "type": "string",
      "description": "The algorithm associated with the public key that is returned, such as Elliptic Curve Digital Signature Algorithm (ECDSA)."
    },
    "digest": {
      "type": "string",
      "description": "The digest associated with the public key that is returned, such as Secure Hash Algorithm 1 (SHA1)."
    },
    "key": {
      "type": "string",
      "description": "The public key that is returned for the specified key ID.<br><br>This value is used to validate the eBay push notification message payload."
    }
  },
  "description": "A type that defines the public key for a unique key ID."
}