{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetEvalRunPaginatedDTO", "title": "GetEvalRunPaginatedDTO", "type": "object", "properties": { "id": { "type": "string" }, "page": { "type": "number", "description": "This is the page number to return. Defaults to 1.", "minimum": 1 }, "sortOrder": { "type": "string", "description": "This is the sort order for pagination. Defaults to 'DESC'.", "enum": [ "ASC", "DESC" ] }, "sortBy": { "type": "string", "description": "This is the column to sort by. Defaults to 'createdAt'.", "enum": [ "createdAt", "duration", "cost" ] }, "limit": { "type": "number", "description": "This is the maximum number of items to return. Defaults to 100.", "minimum": 0, "maximum": 1000 }, "createdAtGt": { "format": "date-time", "type": "string", "description": "This will return items where the createdAt is greater than the specified value." }, "createdAtLt": { "format": "date-time", "type": "string", "description": "This will return items where the createdAt is less than the specified value." }, "createdAtGe": { "format": "date-time", "type": "string", "description": "This will return items where the createdAt is greater than or equal to the specified value." }, "createdAtLe": { "format": "date-time", "type": "string", "description": "This will return items where the createdAt is less than or equal to the specified value." }, "updatedAtGt": { "format": "date-time", "type": "string", "description": "This will return items where the updatedAt is greater than the specified value." }, "updatedAtLt": { "format": "date-time", "type": "string", "description": "This will return items where the updatedAt is less than the specified value." }, "updatedAtGe": { "format": "date-time", "type": "string", "description": "This will return items where the updatedAt is greater than or equal to the specified value." }, "updatedAtLe": { "format": "date-time", "type": "string", "description": "This will return items where the updatedAt is less than or equal to the specified value." } } }