{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/konbiniapi/main/json-schema/konbiniapi-tik-tok-image-schema.json", "title": "TikTokImage", "type": "object", "properties": { "type": { "type": "string", "description": "ActivityStreams object type", "example": "Image" }, "url": { "type": "string", "format": "uri", "description": "Image URL", "example": "https://p16-sign.tiktokcdn-us.com/tos-maliva-avt-0068/avatar.jpeg" }, "width": { "type": "integer", "description": "Width in pixels", "example": 576 }, "height": { "type": "integer", "description": "Height in pixels", "example": 1024 } }, "required": [ "type", "url" ], "description": "Image resource with optional dimensions" }