{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SigningKey", "title": "SigningKey", "type": "object", "properties": { "creationTime": { "type": "integer", "description": "The UNIX timestamp when the SigningKey was created. This time is represented as the number of seconds from \"1970-01-01T00:00:00Z\", as measured in UTC, until the date and time the SigningKey was created.", "format": "int32" }, "expirationTime": { "type": "integer", "description": "The UNIX timestamp when the SigningKey expires. This time is represented as the number of seconds from \"1970-01-01T00:00:00Z\", as measured in UTC, until the date and time the SigningKey expires.
Note: All keys have an expiration date of three (3) years after their creationTime.", "format": "int32" }, "jwe": { "type": "string", "description": "This is the JSON Web Encrypted (JWE) value for the publicKey." }, "privateKey": { "type": "string", "description": "This is the Private Key that has been generated using the specified signingKeyCipher.
Note: The privateKey value will only be returned in the response payload of the createSigningKey method.

It will never be returned by the getSigningKey or getSigningKeys methods.
Developers are strongly advised to download their privateKey value as Privacy Enhance Mail (PEM) format and store it locally for future reference. In order to guarantee the security of confidential client information, eBay does not store privateKey values on any system.
Note: If a developer loses their privateKey they must generate new keypairs set using the createSigningKey method." }, "publicKey": { "type": "string", "description": "This is the Public Key that has been generated using the specified signingKeyCipher.

As a matter of good practice, developers are strongly advised to download this value and store it locally for safe-keeping and future reference." }, "signingKeyCipher": { "type": "string", "description": "Indicates the cipher used to create the keypairs. Refer to SigningKeyCiper for the list of supported enum values. For implementation help, refer to eBay API documentation" }, "signingKeyId": { "type": "string", "description": "The system-generated eBay ID for the keypairs." } }, "description": "This container stores metadata for a signing key." }