{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JobFileListResponse", "title": "JobFileListResponse", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string", "const": "jobFileEntry" }, "id": { "type": "string" }, "attributes": { "type": "object", "properties": { "fileName": { "type": "string", "description": "Full path of the file" }, "fileSize": { "type": "integer", "description": "Size of the file in bytes" } } } } }, "example": [] }, "meta": { "$ref": "#/components/schemas/PaginationMeta" } } }