eBay · Schema

ConditionDescriptorValue

This type displays the value(s) associated with the specified condition descriptor name, as well as any additional information about a condition descriptor.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
additionalInfo array Additional information about the condition of an item as it relates to a condition descriptor. This array elaborates on the value specified in the content field and provides additional details
content string The value for the condition descriptor indicated in the associated name field.
View JSON Schema on GitHub

JSON Schema

ebay-conditiondescriptorvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConditionDescriptorValue",
  "title": "ConditionDescriptorValue",
  "type": "object",
  "properties": {
    "additionalInfo": {
      "type": "array",
      "description": "Additional information about the condition of an item as it relates to a condition descriptor. This array elaborates on the value specified in the <b>content</b> field and provides additional details about the condition of an item.",
      "items": {
        "type": "string"
      }
    },
    "content": {
      "type": "string",
      "description": "The value for the condition descriptor indicated in the associated <b>name</b> field."
    }
  },
  "description": "This type displays the value(s) associated with the specified condition descriptor name, as well as any additional information about a condition descriptor. "
}