{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StickerPackResponse", "title": "StickerPackResponse", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/SnowflakeType" }, "sku_id": { "$ref": "#/components/schemas/SnowflakeType" }, "name": { "type": "string" }, "description": { "type": [ "string", "null" ] }, "stickers": { "type": "array", "items": { "$ref": "#/components/schemas/StandardStickerResponse" } }, "cover_sticker_id": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/SnowflakeType" } ] }, "banner_asset_id": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/SnowflakeType" } ] } }, "required": [ "id", "sku_id", "name", "stickers" ] }