{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FileList", "title": "FileList", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/File" } }, "total": { "type": "integer", "description": "Total number of files" }, "object": { "type": "string", "enum": [ "list" ] } } }