"""Video assets schemas.""" from video.constants import asset as asset_constants BULK_ASSET_PRODUCT_IDS = { "type": "array", "maxItems": 185, "minItems": 1, "uniqueItems": True, "items": { "type": "integer", "minimum": 1, }, } BULK_ASSET_ASSET_TYPES = { "type": "array", "uniqueItems": True, "items": { "type": "string", "enum": list(asset_constants.VIDEO_ASSET_ASSETS_TYPES), }, }