Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| sku_id | object | |
| name | string | |
| description | stringnull | |
| stickers | array | |
| cover_sticker_id | object | |
| banner_asset_id | object |
JSON Schema
{
"$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"
]
}