Etsy · Schema

ShopProductionPartners

Represents a list of shop production partners.

MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

Properties

Name Type Description
count integer The number of results.
results array The list of requested resources.
View JSON Schema on GitHub

JSON Schema

open-api-v3-shop-production-partners-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ShopProductionPartners",
  "description": "Represents a list of shop production partners.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-schema/open-api-v3-shop-production-partners-schema.json",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "The number of results.",
      "minimum": 0,
      "example": 1
    },
    "results": {
      "type": "array",
      "description": "The list of requested resources.",
      "items": {
        "description": "The list of requested resources.",
        "oneOf": [
          {
            "$ref": "#/components/schemas/ShopProductionPartner"
          }
        ]
      }
    }
  }
}