Represents a shop's listing-level return policies list.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ShopReturnPolicies", "description": "Represents a shop's listing-level return policies list.", "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-schema/open-api-v3-shop-return-policies-schema.json", "type": "object", "properties": { "count": { "type": "integer", "minimum": 0, "example": 1 }, "results": { "type": "array", "items": { "$ref": "#/components/schemas/ShopReturnPolicy" } } } }