{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateVideoRequest", "title": "CreateVideoRequest", "type": "object", "properties": { "classification": { "type": "array", "description": "The intended use for this video content. Currently, videos can only be added and associated with eBay listings, so the only supported value is ITEM.", "items": { "type": "string", "description": " For implementation help, refer to eBay API documentation" } }, "description": { "type": "string", "description": "The description of the video." }, "size": { "type": "integer", "description": "The size, in bytes, of the video content.

Max: 157,286,400 bytes", "format": "int32" }, "title": { "type": "string", "description": "The title of the video." } }, "description": "The request to create a video, which must contain the video's title, size, and classification. Description is an optional field when creating videos." }