Health
Collections
Collection Documents
Collection Features
Retriever Stages
Taxonomies
Clusters
Retriever Interactions
Namespaces
Research
List Objects
This endpoint lists objects in a bucket with pagination, sorting, and filtering options.
curl --request POST \
--url https://api.mixpeek.com/v1/buckets/{bucket_identifier}/objects \
--header 'Content-Type: application/json' \
--data '{
"filters": {
"AND": [
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
],
"OR": [
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
],
"NOT": [
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
],
"case_sensitive": true
},
"sort": {
"field": "created_at",
"direction": "desc"
},
"search": "<string>"
}'
{
"results": [
{
"blobs": [
{
"data": {
"num_pages": 5,
"title": "Service Agreement 2024"
},
"details": {
"filename": "agreement.pdf",
"hash": "sha256:a1b2c3d4e5f6...",
"mime_type": "application/pdf",
"s3_object_key": "tenant123/object456/content.pdf",
"size_bytes": 1245678
},
"key": "/contract-2024/content.pdf",
"metadata": {
"author": "John Doe",
"department": "Legal"
},
"property": "content",
"status": "COMPLETED",
"type": "PDF"
}
],
"bucket_id": "bkt_12345678",
"created_at": "2024-06-01T10:30:00Z",
"created_by": "user_12345",
"key": "/documents/contract-2024",
"metadata": {
"category": "contracts",
"status": "active",
"year": 2024
},
"object_id": "obj_a1b2c3d4e5f6",
"status": "COMPLETED",
"task_id": "task_87654321",
"updated_at": "2024-06-01T10:35:12Z"
}
],
"pagination": {
"total": 123,
"page": 123,
"page_size": 123,
"total_pages": 123,
"next_page": "<string>",
"previous_page": "<string>"
}
}
Headers
Bearer token authentication using your API key. Format: 'Bearer your_api_key'. To get an API key, create an account at mixpeek.com/start and generate a key in your account settings. Example: 'Bearer sk_1234567890abcdef'
Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint.
Path Parameters
Identifier of the bucket
Body
Request model for listing objects in a bucket
Filters to apply to the object list
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
Logical AND operation - all conditions must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
]
Logical OR operation - at least one condition must be true
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
]
Logical NOT operation - all conditions must be false
Represents a logical operation (AND, OR, NOT) on filter conditions.
Attributes: AND: List of conditions that must all be true OR: List of conditions where at least one must be true NOT: List of conditions that must all be false case_sensitive: Whether string comparisons are case sensitive
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
[
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
]
Whether to perform case-sensitive matching
true
Search term to filter objects by key or metadata
Response
Response model for listing objects in a bucket
List of objects matching the query
Response model for bucket objects
Unique identifier for the object
ID of the bucket this object belongs to
List of blobs contained in this object
Model for a blob within a bucket object
Property name of the blob
The schema field type this blob corresponds to (e.g., IMAGE, PDF, DOCUMENT)
string
, number
, integer
, boolean
, object
, array
, date
, datetime
, json
, text
, image
, audio
, video
, pdf
, document
, spreadsheet
, presentation
Data for the blob
Unique identifier for the blob
Storage key/path of the blob, this will be used to retrieve the blob from the storage. It is similar to a file path. If not provided, it will be placed in the root of the bucket.
Metadata for the blob, this will only be applied to the documents that use this blob
Status of the blob
DONE
, FAILED
, SKIPPED
, CANCELLED
, PROCESSING
, DOWNLOADING
, INITIALIZING
, UPLOADING
, QUEUED
, PENDING
, CONVERTING
Error message if the blob failed to be ingested
Status of the object (PENDING, PROCESSING, COMPLETED, FAILED)
DONE
, FAILED
, SKIPPED
, CANCELLED
, PROCESSING
, DOWNLOADING
, INITIALIZING
, UPLOADING
, QUEUED
, PENDING
, CONVERTING
Additional metadata for the object, appended to downstream documents of connected collections
ID of the task that created this object, used to track the object creation progress and status
Storage key/path of the object, used to retrieve the object from storage
Identifier of the entity that created this object
Error message if the object processing failed
Timestamp when the object was created
Timestamp when the object was last updated
Was this page helpful?
curl --request POST \
--url https://api.mixpeek.com/v1/buckets/{bucket_identifier}/objects \
--header 'Content-Type: application/json' \
--data '{
"filters": {
"AND": [
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
],
"OR": [
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
],
"NOT": [
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
],
"case_sensitive": true
},
"sort": {
"field": "created_at",
"direction": "desc"
},
"search": "<string>"
}'
{
"results": [
{
"blobs": [
{
"data": {
"num_pages": 5,
"title": "Service Agreement 2024"
},
"details": {
"filename": "agreement.pdf",
"hash": "sha256:a1b2c3d4e5f6...",
"mime_type": "application/pdf",
"s3_object_key": "tenant123/object456/content.pdf",
"size_bytes": 1245678
},
"key": "/contract-2024/content.pdf",
"metadata": {
"author": "John Doe",
"department": "Legal"
},
"property": "content",
"status": "COMPLETED",
"type": "PDF"
}
],
"bucket_id": "bkt_12345678",
"created_at": "2024-06-01T10:30:00Z",
"created_by": "user_12345",
"key": "/documents/contract-2024",
"metadata": {
"category": "contracts",
"status": "active",
"year": 2024
},
"object_id": "obj_a1b2c3d4e5f6",
"status": "COMPLETED",
"task_id": "task_87654321",
"updated_at": "2024-06-01T10:35:12Z"
}
],
"pagination": {
"total": 123,
"page": 123,
"page_size": 123,
"total_pages": 123,
"next_page": "<string>",
"previous_page": "<string>"
}
}