eBay · Schema

Contact

The type that defines the fields for the information of the contact person for the account.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
firstName string The first name of the contact person.
lastName string The last name of the contact person.
View JSON Schema on GitHub

JSON Schema

ebay-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Contact",
  "title": "Contact",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "description": "The first name of the contact person."
    },
    "lastName": {
      "type": "string",
      "description": "The last name of the contact person."
    }
  },
  "description": "The type that defines the fields for the information of the contact person for the account."
}