eBay · Schema
SellerLegalInfo
The type that defines the fields for the contact information for a seller.
AuctionsCommerceProductsMarketplaceFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| string | The seller's business email address. | |
| fax | string | The seller' business fax number. |
| imprint | string | This is a free-form string created by the seller. This is information often found on business cards, such as address. This is information used by some countries. |
| legalContactFirstName | string | The seller's first name. |
| legalContactLastName | string | The seller's last name. |
| name | string | The name of the seller's business. |
| phone | string | The seller's business phone number. |
| registrationNumber | string | The seller's registration number. This is information used by some countries. |
| sellerProvidedLegalAddress | object | The container that returns the seller's address to be used to contact them. |
| termsOfService | string | This is a free-form string created by the seller. This is the seller's terms or condition, which is in addition to the seller's return policies. |
| vatDetails | array | An array of the seller's VAT (value added tax) IDs and the issuing country. VAT is a tax added by some European countries. |
| economicOperator | object | Provides required information about the manufacturer and/or supplier of the item. |
| weeeNumber | string | The Waste Electrical and Electronic Equipment (WEEE) registration number required for any seller to place electrical and electronic equipment on the market in Germany. This manufacturer number is assi |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SellerLegalInfo",
"title": "SellerLegalInfo",
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "The seller's business email address."
},
"fax": {
"type": "string",
"description": "The seller' business fax number."
},
"imprint": {
"type": "string",
"description": "This is a free-form string created by the seller. This is information often found on business cards, such as address. This is information used by some countries."
},
"legalContactFirstName": {
"type": "string",
"description": "The seller's first name."
},
"legalContactLastName": {
"type": "string",
"description": "The seller's last name."
},
"name": {
"type": "string",
"description": "The name of the seller's business."
},
"phone": {
"type": "string",
"description": "The seller's business phone number."
},
"registrationNumber": {
"type": "string",
"description": "The seller's registration number. This is information used by some countries."
},
"sellerProvidedLegalAddress": {
"description": "The container that returns the seller's address to be used to contact them.",
"$ref": "#/components/schemas/LegalAddress"
},
"termsOfService": {
"type": "string",
"description": "This is a free-form string created by the seller. This is the seller's terms or condition, which is in addition to the seller's return policies."
},
"vatDetails": {
"type": "array",
"description": "An array of the seller's VAT (value added tax) IDs and the issuing country. VAT is a tax added by some European countries.",
"items": {
"$ref": "#/components/schemas/VatDetail"
}
},
"economicOperator": {
"description": "Provides required information about the manufacturer and/or supplier of the item.",
"$ref": "#/components/schemas/EconomicOperator"
},
"weeeNumber": {
"type": "string",
"description": "The Waste Electrical and Electronic Equipment (WEEE) registration number required for any seller to place electrical and electronic equipment on the market in Germany. This manufacturer number is assigned to the first distributors of electrical and electronic equipment and comprises a country code and an 8-digit sequence of digits (e.g. \u201cWEEE Reg. No. DE 12345678\u201d)."
}
},
"description": "The type that defines the fields for the contact information for a seller."
}