Etsy · Schema

ShopHolidayPreference

Represents a shop's holiday preference

MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

Properties

Name Type Description
shop_id integer The unique positive non-zero numeric ID for an Etsy Shop.
holiday_id integer The unique id that maps to the holiday a country observes. See the [Fulfillment Tutorial docs](https://developer.etsy.com/documentation/tutorials/fulfillment/#country-holidays) for more info
country_iso string The country ISO where the shop is located.
is_working boolean A boolean value for whether the shop will process orders on a particular holiday.
holiday_name string The name of the holiday that a country observes.
View JSON Schema on GitHub

JSON Schema

open-api-v3-shop-holiday-preference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ShopHolidayPreference",
  "description": "Represents a shop's holiday preference",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-schema/open-api-v3-shop-holiday-preference-schema.json",
  "type": "object",
  "properties": {
    "shop_id": {
      "type": "integer",
      "description": "The unique positive non-zero numeric ID for an Etsy Shop.",
      "format": "int64",
      "minimum": 1,
      "example": 123456
    },
    "holiday_id": {
      "type": "integer",
      "description": "The unique id that maps to the holiday a country observes. See the [Fulfillment Tutorial docs](https://developer.etsy.com/documentation/tutorials/fulfillment/#country-holidays) for more info",
      "enum": [
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105
      ],
      "example": 1
    },
    "country_iso": {
      "type": "string",
      "description": "The country ISO where the shop is located.",
      "format": "ISO 3166-1 alpha-2",
      "example": "US"
    },
    "is_working": {
      "type": "boolean",
      "description": "A boolean value for whether the shop will process orders on a particular holiday.",
      "example": true
    },
    "holiday_name": {
      "type": "string",
      "description": "The name of the holiday that a country observes.",
      "example": "Handmade Ceramic Mug"
    }
  }
}