Etsy · JSON Structure

Open Api V3 Shop Return Policy Structure

Represents a listing-level return policy.

Type: object Properties: 5
MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

ShopReturnPolicy is a JSON Structure definition published by Etsy, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

return_policy_id shop_id accepts_returns accepts_exchanges return_deadline

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-structure/open-api-v3-shop-return-policy-structure.json",
  "name": "ShopReturnPolicy",
  "description": "Represents a listing-level return policy.",
  "type": "object",
  "properties": {
    "return_policy_id": {
      "type": "int64",
      "description": "The numeric ID of the [Return Policy](/documentation/reference#operation/getShopReturnPolicies).",
      "minimum": 1,
      "example": 1
    },
    "shop_id": {
      "type": "int64",
      "description": "The unique positive non-zero numeric ID for an Etsy Shop.",
      "minimum": 1,
      "example": 123456
    },
    "accepts_returns": {
      "type": "boolean",
      "description": "return_policy_accepts_returns",
      "example": true
    },
    "accepts_exchanges": {
      "type": "boolean",
      "description": "return_policy_accepts_exchanges",
      "example": true
    },
    "return_deadline": {
      "type": "int32",
      "description": "The deadline for the Return Policy, measured in days. The value must be one of the following: [7, 14, 21, 30, 45, 60, 90].",
      "nullable": true,
      "example": 1
    }
  }
}