{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FileListResponse", "title": "FileListResponse", "type": "object", "description": "Paginated list of repository objects", "properties": { "list": { "type": "array", "description": "Array of repository object records", "items": { "$ref": "#/components/schemas/RepositoryObject" } }, "page": { "$ref": "#/components/schemas/PageInfo" } } }