> ## Documentation Index
> Fetch the complete documentation index at: https://docs.serval.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Entities

> Search entities with advanced filtering, sorting, and pagination. Supports filtering by entity type, name search, field filters (with OR between filter groups and AND within groups), and custom sorting.



## OpenAPI

````yaml /sections/api-reference/openapi-spec-v2.yaml post /v2/entities/search
openapi: 3.1.0
info:
  title: Serval Public API
  description: Serval Public API
  contact:
    name: Serval
    url: https://serval.com
    email: support@serval.com
  license:
    name: Serval License
    url: https://serval.com/license
  version: 2.0.0
servers:
  - url: https://public.api.serval.com
security:
  - BearerAuth: []
tags:
  - name: Access Policy API
  - name: Access Policy Approval Procedure API
  - name: Access Profile API
  - name: Access Relationship API
  - name: Access Request API
  - name: Agent API
  - name: App Instance API
  - name: App Resource API
  - name: App Resource Role API
  - name: Approval Delegation API
  - name: Approval Request API
  - name: Audit Log API
  - name: Change Blackout API
  - name: Change Model API
  - name: Custom Field API
  - name: Custom Service API
  - name: Entity API
  - name: Entity Field Mapping API
  - name: Entity Ingestion Config API
  - name: Entity Type API
  - name: Folder API
  - name: Group API
  - name: Guidance API
  - name: Help Agent API
  - name: Journey API
  - name: Knowledge API
  - name: Knowledge Base API
  - name: Report API
  - name: SLA API
  - name: Schedule API
  - name: Tag API
  - name: Team API
  - name: Team User API
  - name: Ticket API
  - name: Topic API
  - name: User API
  - name: User Relationship API
  - name: Workflow API
  - name: Workflow Approval Procedure API
  - name: Workflow Run API
paths:
  /v2/entities/search:
    post:
      tags:
        - Entity API
      summary: Search Entities
      description: >-
        Search entities with advanced filtering, sorting, and pagination.
        Supports filtering by entity type, name search, field filters (with OR
        between filter groups and AND within groups), and custom sorting.
      operationId: svrelay.publicv2.PublicAPIServiceV2.SearchEntities
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/svstore.publicapi.SearchEntitiesRequest'
        required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/svstore.publicapi.SearchEntitiesResponse'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/connect.error'
      security:
        - BearerAuth: []
components:
  schemas:
    svstore.publicapi.SearchEntitiesRequest:
      type: object
      properties:
        teamId:
          type: string
          title: team_id
          description: The ID of the team.
          x-stainless-terraform-configurability: optional
        entityTypeId:
          type: string
          title: entity_type_id
          description: Optional filter by entity type ID.
          nullable: true
          x-stainless-terraform-configurability: optional
        entityTypeKey:
          type: string
          title: entity_type_key
          description: Optional filter by entity type key (alternative to entity_type_id).
          nullable: true
          x-stainless-terraform-configurability: optional
        filterGroups:
          type: array
          items:
            $ref: '#/components/schemas/svstore.EntityFilterGroup'
          title: filter_groups
          description: >-
            Filter groups for complex filtering. OR between groups, AND within
            each group.
          x-stainless-terraform-configurability: optional
        fieldSorts:
          type: array
          items:
            $ref: '#/components/schemas/svstore.EntitySort'
          title: field_sorts
          description: Sorting specifications.
          x-stainless-terraform-configurability: optional
        pageSize:
          type: integer
          title: page_size
          format: int32
          description: >-
            Maximum number of results to return. Default is 2000, maximum is
            5000.
          nullable: true
          x-stainless-terraform-configurability: computed_optional
        pageToken:
          type: string
          title: page_token
          description: Token for pagination. Leave empty for the first request.
          nullable: true
          x-stainless-terraform-configurability: optional
        key:
          type: string
          title: key
          description: Optional filter by entity key (exact match).
          nullable: true
          x-stainless-terraform-configurability: optional
      title: SearchEntitiesRequest
      additionalProperties: false
    svstore.publicapi.SearchEntitiesResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/svstore.Entity'
          title: data
          description: The list of matching entities.
          x-stainless-terraform-configurability: optional
        nextPageToken:
          type: string
          title: next_page_token
          description: >-
            Token for retrieving the next page of results. Empty if no more
            results.
          nullable: true
          x-stainless-terraform-configurability: optional
      title: SearchEntitiesResponse
      additionalProperties: false
    connect.error:
      type: object
      properties:
        code:
          type: string
          examples:
            - not_found
          enum:
            - canceled
            - unknown
            - invalid_argument
            - deadline_exceeded
            - not_found
            - already_exists
            - permission_denied
            - resource_exhausted
            - failed_precondition
            - aborted
            - out_of_range
            - unimplemented
            - internal
            - unavailable
            - data_loss
            - unauthenticated
          description: >-
            The status code, which should be an enum value of
            [google.rpc.Code][google.rpc.Code].
          x-stainless-terraform-configurability: optional
        message:
          type: string
          description: >-
            A developer-facing error message, which should be in English. Any
            user-facing error message should be localized and sent in the
            [google.rpc.Status.details][google.rpc.Status.details] field, or
            localized by the client.
          x-stainless-terraform-configurability: optional
        detail:
          $ref: '#/components/schemas/google.protobuf.Any'
          x-stainless-terraform-configurability: optional
      title: Connect Error
      additionalProperties: true
      description: >-
        Error type returned by Connect:
        https://connectrpc.com/docs/go/errors/#http-representation
    svstore.EntityFilterGroup:
      type: object
      properties:
        filters:
          type: array
          items:
            $ref: '#/components/schemas/svstore.EntityFieldFilter'
          title: filters
          description: AND within group
          x-stainless-terraform-configurability: optional
        sourceFilter:
          $ref: '#/components/schemas/svstore.EntitySourcePredicate'
          title: source_filter
          nullable: true
          x-stainless-terraform-configurability: optional
      title: EntityFilterGroup
      additionalProperties: false
    svstore.EntitySort:
      type: object
      oneOf:
        - $ref: '#/components/schemas/svstore.EntitySort.EntitySource'
        - $ref: '#/components/schemas/svstore.EntitySort.FieldId'
        - $ref: '#/components/schemas/svstore.EntitySort.FieldKey'
      title: EntitySort
    svstore.Entity:
      type: object
      properties:
        id:
          type: string
          title: id
          description: Identity
          x-stainless-terraform-configurability: optional
        key:
          type: string
          title: key
          x-stainless-terraform-configurability: optional
        name:
          type: string
          title: name
          x-stainless-terraform-configurability: optional
        teamId:
          type: string
          title: team_id
          x-stainless-terraform-configurability: optional
        entityTypeId:
          type: string
          title: entity_type_id
          x-stainless-terraform-configurability: optional
        entityTypeKey:
          type: string
          title: entity_type_key
          x-stainless-terraform-configurability: optional
        createdByUserId:
          type: string
          title: created_by_user_id
          description: Audit
          x-stainless-terraform-configurability: optional
        updatedByUserId:
          type: string
          title: updated_by_user_id
          x-stainless-terraform-configurability: optional
        createdAt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: created_at
          x-stainless-terraform-configurability: optional
        updatedAt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: updated_at
          x-stainless-terraform-configurability: optional
        deletedAt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: deleted_at
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldValues:
          type: array
          items:
            $ref: '#/components/schemas/svstore.EntityFieldValue'
          title: field_values
          description: Data
          x-stainless-terraform-configurability: optional
        sourceAppInstanceIds:
          type: array
          items:
            type: string
          title: source_app_instance_ids
          x-stainless-terraform-configurability: optional
        sharedMetadata:
          $ref: '#/components/schemas/svstore.SharedEntityMetadata'
          title: shared_metadata
          description: >-
            Populated when entity is from a shared schema (visible via org_wide
            visibility).
          nullable: true
          x-stainless-terraform-configurability: optional
      title: Entity
      additionalProperties: false
    google.protobuf.Any:
      type: object
      properties:
        type:
          type: string
          x-stainless-terraform-configurability: optional
        value:
          type: string
          format: binary
          x-stainless-terraform-configurability: optional
        debug:
          type: object
          additionalProperties: true
          x-stainless-terraform-configurability: optional
      additionalProperties: true
      description: >-
        Contains an arbitrary serialized message along with a @type that
        describes the type of the serialized message.
    svstore.EntityFieldFilter:
      type: object
      oneOf:
        - $ref: '#/components/schemas/svstore.EntityFieldFilter.BoolValue'
        - $ref: '#/components/schemas/svstore.EntityFieldFilter.EntityRef'
        - $ref: '#/components/schemas/svstore.EntityFieldFilter.EnumValue'
        - $ref: '#/components/schemas/svstore.EntityFieldFilter.FileValue'
        - $ref: '#/components/schemas/svstore.EntityFieldFilter.MultiSelectValue'
        - $ref: '#/components/schemas/svstore.EntityFieldFilter.Number'
        - $ref: '#/components/schemas/svstore.EntityFieldFilter.Text'
        - $ref: '#/components/schemas/svstore.EntityFieldFilter.Timestamp'
        - $ref: '#/components/schemas/svstore.EntityFieldFilter.UserRef'
      title: EntityFieldFilter
    svstore.EntitySourcePredicate:
      type: object
      properties:
        eq:
          type: string
          title: eq
          description: '**Option: eq**'
          x-stainless-terraform-configurability: optional
        ne:
          type: string
          title: ne
          description: '**Option: ne**'
          x-stainless-terraform-configurability: optional
      title: EntitySourcePredicate
      description: |-
        Built-in entity source supports filtering by source_app_instance_id.

        **Set exactly ONE of:** eq, ne
      additionalProperties: false
    svstore.EntitySort.EntitySource:
      type: object
      title: Entity Source
      properties:
        entitySource:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: entity_source
          x-stainless-terraform-configurability: optional
        descending:
          type: boolean
          title: descending
          description: false = ASC, true = DESC
          x-stainless-terraform-configurability: computed_optional
      required:
        - entitySource
      additionalProperties: false
    svstore.EntitySort.FieldId:
      type: object
      title: Field Id
      properties:
        fieldId:
          type: string
          title: field_id
          x-stainless-terraform-configurability: optional
        descending:
          type: boolean
          title: descending
          description: false = ASC, true = DESC
          x-stainless-terraform-configurability: computed_optional
      required:
        - fieldId
      additionalProperties: false
    svstore.EntitySort.FieldKey:
      type: object
      title: Field Key
      properties:
        fieldKey:
          type: string
          title: field_key
          x-stainless-terraform-configurability: optional
        descending:
          type: boolean
          title: descending
          description: false = ASC, true = DESC
          x-stainless-terraform-configurability: computed_optional
      required:
        - fieldKey
      additionalProperties: false
    google.protobuf.Timestamp:
      type: string
      format: date-time
      description: A timestamp in RFC 3339 format (e.g., "2025-01-15T01:30:15Z").
    svstore.EntityFieldValue:
      type: object
      properties:
        id:
          type: string
          title: id
          description: >-
            The EAV row id. NOT populated on entity read paths
            (Entity.field_values:
             search / list / get / create / update) since the v4 slim document_json
             dropped it — it has no consumer there. It IS populated on the
             listEntityFieldValueHistory RPC, which reads EAV rows directly.
          x-stainless-terraform-configurability: optional
        entityId:
          type: string
          title: entity_id
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          x-stainless-terraform-configurability: optional
        fieldName:
          type: string
          title: field_name
          x-stainless-terraform-configurability: optional
        dataType:
          $ref: '#/components/schemas/svstore.EntityTypeField.DataType'
          title: data_type
          x-stainless-terraform-configurability: optional
        value:
          $ref: '#/components/schemas/google.protobuf.Value'
          title: value
          description: |-
            The field value as a JSON-compatible value. Type interpretation is
             determined by data_type:
               TEXT, UNIQUE, ENUM, ENTITY_REF, USER_REF → string
               NUMBER → number
               BOOL → bool
               TIMESTAMP → string (ISO 8601, e.g. "2024-03-15T10:30:00Z")
               MULTI_SELECT → list of strings (enum option IDs)
          x-stainless-terraform-configurability: optional
        setByUserId:
          type: string
          title: set_by_user_id
          description: |-
            Attribution: who/what set this field value. Stored in the slim
             document_json and populated on ALL entity read paths (search / list / get
             / create / update) as well as field-value history.
          nullable: true
          x-stainless-terraform-configurability: optional
        setByAppInstanceId:
          type: string
          title: set_by_app_instance_id
          nullable: true
          x-stainless-terraform-configurability: optional
        createdAt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: created_at
          description: >-
            Temporal context. NOT populated on entity read paths
            (Entity.field_values)
             since the v4 slim document_json dropped created_at — it has no consumer
             there. It IS populated on the listEntityFieldValueHistory RPC. The current
             value for a field has deleted_at unset.
          x-stainless-terraform-configurability: optional
        deletedAt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: deleted_at
          nullable: true
          x-stainless-terraform-configurability: optional
        pinned:
          type: boolean
          title: pinned
          description: >-
            When true, ingestion cannot overwrite this user-set value. Stored in
            the
             slim document_json and populated on ALL entity read paths.
          x-stainless-terraform-configurability: computed_optional
      title: EntityFieldValue
      additionalProperties: false
      description: |-
        EntityFieldValue represents a concrete field value on a specific entity.
         Used for both current values (on Entity.field_values) and historical values
         (in field value history responses).
    svstore.SharedEntityMetadata:
      type: object
      properties:
        sourceTeamId:
          type: string
          title: source_team_id
          x-stainless-terraform-configurability: optional
        sourceTeamName:
          type: string
          title: source_team_name
          x-stainless-terraform-configurability: optional
      title: SharedEntityMetadata
      additionalProperties: false
      description: Metadata for entities shared from another team's schema.
    svstore.EntityFieldFilter.BoolValue:
      type: object
      title: Bool Value
      properties:
        boolValue:
          $ref: '#/components/schemas/svstore.BoolPredicate'
          title: bool_value
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          nullable: true
          x-stainless-terraform-configurability: optional
      required:
        - boolValue
      additionalProperties: false
    svstore.EntityFieldFilter.EntityRef:
      type: object
      title: Entity Ref
      properties:
        entityRef:
          $ref: '#/components/schemas/svstore.ExactStringPredicate'
          title: entity_ref
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          nullable: true
          x-stainless-terraform-configurability: optional
      required:
        - entityRef
      additionalProperties: false
    svstore.EntityFieldFilter.EnumValue:
      type: object
      title: Enum Value
      properties:
        enumValue:
          $ref: '#/components/schemas/svstore.ExactStringPredicate'
          title: enum_value
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          nullable: true
          x-stainless-terraform-configurability: optional
      required:
        - enumValue
      additionalProperties: false
    svstore.EntityFieldFilter.FileValue:
      type: object
      title: File Value
      properties:
        fileValue:
          $ref: '#/components/schemas/svstore.ExactStringPredicate'
          title: file_value
          description: |-
            FILE fields support only is-null / is-not-null; other operations on
             the predicate are rejected at the serialization boundary.
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          nullable: true
          x-stainless-terraform-configurability: optional
      required:
        - fileValue
      additionalProperties: false
      description: |-
        FILE fields support only is-null / is-not-null; other operations on
         the predicate are rejected at the serialization boundary.
    svstore.EntityFieldFilter.MultiSelectValue:
      type: object
      title: Multi Select Value
      properties:
        multiSelectValue:
          $ref: '#/components/schemas/svstore.MultiSelectPredicate'
          title: multi_select_value
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          nullable: true
          x-stainless-terraform-configurability: optional
      required:
        - multiSelectValue
      additionalProperties: false
    svstore.EntityFieldFilter.Number:
      type: object
      title: Number
      properties:
        number:
          $ref: '#/components/schemas/svstore.NumberPredicate'
          title: number
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          nullable: true
          x-stainless-terraform-configurability: optional
      required:
        - number
      additionalProperties: false
    svstore.EntityFieldFilter.Text:
      type: object
      title: Text
      properties:
        text:
          $ref: '#/components/schemas/svstore.StringPredicate'
          title: text
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          nullable: true
          x-stainless-terraform-configurability: optional
      required:
        - text
      additionalProperties: false
    svstore.EntityFieldFilter.Timestamp:
      type: object
      title: Timestamp
      properties:
        timestamp:
          $ref: '#/components/schemas/svstore.TimestampPredicate'
          title: timestamp
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          nullable: true
          x-stainless-terraform-configurability: optional
      required:
        - timestamp
      additionalProperties: false
    svstore.EntityFieldFilter.UserRef:
      type: object
      title: User Ref
      properties:
        userRef:
          $ref: '#/components/schemas/svstore.ExactStringPredicate'
          title: user_ref
          x-stainless-terraform-configurability: optional
        fieldId:
          type: string
          title: field_id
          nullable: true
          x-stainless-terraform-configurability: optional
        fieldKey:
          type: string
          title: field_key
          nullable: true
          x-stainless-terraform-configurability: optional
      required:
        - userRef
      additionalProperties: false
    google.protobuf.Empty:
      type: object
      description: |-
        A generic empty message that you can re-use to avoid defining duplicated
         empty messages in your APIs. A typical example is to use it as the request
         or the response type of an API method. For instance:

             service Foo {
               rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
             }
    svstore.EntityTypeField.DataType:
      type: string
      title: DataType
      enum:
        - DATA_TYPE_UNSPECIFIED
        - TEXT
        - NUMBER
        - BOOL
        - TIMESTAMP
        - ENUM
        - ENTITY_REF
        - USER_REF
        - UNIQUE
        - MULTI_SELECT
        - FILE
    google.protobuf.Value:
      oneOf:
        - type: 'null'
        - type: number
        - type: string
        - type: boolean
        - type: array
        - type: object
          additionalProperties: true
      description: |-
        `Value` represents a dynamically typed value which can be either
         null, a number, a string, a boolean, a recursive struct value, or a
         list of values. A producer of value is expected to set one of these
         variants. Absence of any variant indicates an error.

         The JSON representation for `Value` is JSON value.
    svstore.BoolPredicate:
      type: object
      oneOf:
        - $ref: '#/components/schemas/svstore.BoolPredicate.Eq'
        - $ref: '#/components/schemas/svstore.BoolPredicate.IsNotNull'
        - $ref: '#/components/schemas/svstore.BoolPredicate.IsNull'
        - $ref: '#/components/schemas/svstore.BoolPredicate.Ne'
      title: BoolPredicate
    svstore.ExactStringPredicate:
      type: object
      oneOf:
        - $ref: '#/components/schemas/svstore.ExactStringPredicate.Eq'
        - $ref: '#/components/schemas/svstore.ExactStringPredicate.IsNotNull'
        - $ref: '#/components/schemas/svstore.ExactStringPredicate.IsNull'
        - $ref: '#/components/schemas/svstore.ExactStringPredicate.Ne'
      title: ExactStringPredicate
    svstore.MultiSelectPredicate:
      type: object
      oneOf:
        - $ref: '#/components/schemas/svstore.MultiSelectPredicate.Contains'
        - $ref: '#/components/schemas/svstore.MultiSelectPredicate.ContainsAll'
        - $ref: '#/components/schemas/svstore.MultiSelectPredicate.ContainsAny'
        - $ref: '#/components/schemas/svstore.MultiSelectPredicate.DoesNotContain'
        - $ref: '#/components/schemas/svstore.MultiSelectPredicate.IsNotNull'
        - $ref: '#/components/schemas/svstore.MultiSelectPredicate.IsNull'
      title: MultiSelectPredicate
    svstore.NumberPredicate:
      type: object
      oneOf:
        - $ref: '#/components/schemas/svstore.NumberPredicate.Eq'
        - $ref: '#/components/schemas/svstore.NumberPredicate.Gt'
        - $ref: '#/components/schemas/svstore.NumberPredicate.Gte'
        - $ref: '#/components/schemas/svstore.NumberPredicate.IsNotNull'
        - $ref: '#/components/schemas/svstore.NumberPredicate.IsNull'
        - $ref: '#/components/schemas/svstore.NumberPredicate.Lt'
        - $ref: '#/components/schemas/svstore.NumberPredicate.Lte'
        - $ref: '#/components/schemas/svstore.NumberPredicate.Ne'
      title: NumberPredicate
    svstore.StringPredicate:
      type: object
      oneOf:
        - $ref: '#/components/schemas/svstore.StringPredicate.Contains'
        - $ref: '#/components/schemas/svstore.StringPredicate.DoesNotContain'
        - $ref: '#/components/schemas/svstore.StringPredicate.EndsWith'
        - $ref: '#/components/schemas/svstore.StringPredicate.Eq'
        - $ref: '#/components/schemas/svstore.StringPredicate.InList'
        - $ref: '#/components/schemas/svstore.StringPredicate.IsNotNull'
        - $ref: '#/components/schemas/svstore.StringPredicate.IsNull'
        - $ref: '#/components/schemas/svstore.StringPredicate.Like'
        - $ref: '#/components/schemas/svstore.StringPredicate.Ne'
        - $ref: '#/components/schemas/svstore.StringPredicate.StartsWith'
      title: StringPredicate
    svstore.TimestampPredicate:
      type: object
      oneOf:
        - $ref: '#/components/schemas/svstore.TimestampPredicate.Eq'
        - $ref: '#/components/schemas/svstore.TimestampPredicate.Gt'
        - $ref: '#/components/schemas/svstore.TimestampPredicate.Gte'
        - $ref: '#/components/schemas/svstore.TimestampPredicate.IsNotNull'
        - $ref: '#/components/schemas/svstore.TimestampPredicate.IsNull'
        - $ref: '#/components/schemas/svstore.TimestampPredicate.Lt'
        - $ref: '#/components/schemas/svstore.TimestampPredicate.Lte'
        - $ref: '#/components/schemas/svstore.TimestampPredicate.Ne'
      title: TimestampPredicate
    svstore.BoolPredicate.Eq:
      type: object
      title: Eq
      properties:
        eq:
          type: boolean
          title: eq
          x-stainless-terraform-configurability: optional
      required:
        - eq
      additionalProperties: false
    svstore.BoolPredicate.IsNotNull:
      type: object
      title: Is Not Null
      properties:
        isNotNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_not_null
          x-stainless-terraform-configurability: optional
      required:
        - isNotNull
      additionalProperties: false
    svstore.BoolPredicate.IsNull:
      type: object
      title: Is Null
      properties:
        isNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_null
          x-stainless-terraform-configurability: optional
      required:
        - isNull
      additionalProperties: false
    svstore.BoolPredicate.Ne:
      type: object
      title: Ne
      properties:
        ne:
          type: boolean
          title: ne
          x-stainless-terraform-configurability: optional
      required:
        - ne
      additionalProperties: false
    svstore.ExactStringPredicate.Eq:
      type: object
      title: Eq
      properties:
        eq:
          type: string
          title: eq
          x-stainless-terraform-configurability: optional
      required:
        - eq
      additionalProperties: false
    svstore.ExactStringPredicate.IsNotNull:
      type: object
      title: Is Not Null
      properties:
        isNotNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_not_null
          x-stainless-terraform-configurability: optional
      required:
        - isNotNull
      additionalProperties: false
    svstore.ExactStringPredicate.IsNull:
      type: object
      title: Is Null
      properties:
        isNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_null
          x-stainless-terraform-configurability: optional
      required:
        - isNull
      additionalProperties: false
    svstore.ExactStringPredicate.Ne:
      type: object
      title: Ne
      properties:
        ne:
          type: string
          title: ne
          x-stainless-terraform-configurability: optional
      required:
        - ne
      additionalProperties: false
    svstore.MultiSelectPredicate.Contains:
      type: object
      title: Contains
      properties:
        contains:
          type: string
          title: contains
          x-stainless-terraform-configurability: optional
      required:
        - contains
      additionalProperties: false
    svstore.MultiSelectPredicate.ContainsAll:
      type: object
      title: Contains All
      properties:
        containsAll:
          $ref: '#/components/schemas/svstore.StringListValue'
          title: contains_all
          x-stainless-terraform-configurability: optional
      required:
        - containsAll
      additionalProperties: false
    svstore.MultiSelectPredicate.ContainsAny:
      type: object
      title: Contains Any
      properties:
        containsAny:
          $ref: '#/components/schemas/svstore.StringListValue'
          title: contains_any
          x-stainless-terraform-configurability: optional
      required:
        - containsAny
      additionalProperties: false
    svstore.MultiSelectPredicate.DoesNotContain:
      type: object
      title: Does Not Contain
      properties:
        doesNotContain:
          type: string
          title: does_not_contain
          x-stainless-terraform-configurability: optional
      required:
        - doesNotContain
      additionalProperties: false
    svstore.MultiSelectPredicate.IsNotNull:
      type: object
      title: Is Not Null
      properties:
        isNotNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_not_null
          x-stainless-terraform-configurability: optional
      required:
        - isNotNull
      additionalProperties: false
    svstore.MultiSelectPredicate.IsNull:
      type: object
      title: Is Null
      properties:
        isNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_null
          x-stainless-terraform-configurability: optional
      required:
        - isNull
      additionalProperties: false
    svstore.NumberPredicate.Eq:
      type: object
      title: Eq
      properties:
        eq:
          type: number
          title: eq
          format: double
          x-stainless-terraform-configurability: optional
      required:
        - eq
      additionalProperties: false
    svstore.NumberPredicate.Gt:
      type: object
      title: Gt
      properties:
        gt:
          type: number
          title: gt
          format: double
          x-stainless-terraform-configurability: optional
      required:
        - gt
      additionalProperties: false
    svstore.NumberPredicate.Gte:
      type: object
      title: Gte
      properties:
        gte:
          type: number
          title: gte
          format: double
          x-stainless-terraform-configurability: optional
      required:
        - gte
      additionalProperties: false
    svstore.NumberPredicate.IsNotNull:
      type: object
      title: Is Not Null
      properties:
        isNotNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_not_null
          x-stainless-terraform-configurability: optional
      required:
        - isNotNull
      additionalProperties: false
    svstore.NumberPredicate.IsNull:
      type: object
      title: Is Null
      properties:
        isNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_null
          x-stainless-terraform-configurability: optional
      required:
        - isNull
      additionalProperties: false
    svstore.NumberPredicate.Lt:
      type: object
      title: Lt
      properties:
        lt:
          type: number
          title: lt
          format: double
          x-stainless-terraform-configurability: optional
      required:
        - lt
      additionalProperties: false
    svstore.NumberPredicate.Lte:
      type: object
      title: Lte
      properties:
        lte:
          type: number
          title: lte
          format: double
          x-stainless-terraform-configurability: optional
      required:
        - lte
      additionalProperties: false
    svstore.NumberPredicate.Ne:
      type: object
      title: Ne
      properties:
        ne:
          type: number
          title: ne
          format: double
          x-stainless-terraform-configurability: optional
      required:
        - ne
      additionalProperties: false
    svstore.StringPredicate.Contains:
      type: object
      title: Contains
      properties:
        contains:
          type: string
          title: contains
          x-stainless-terraform-configurability: optional
      required:
        - contains
      additionalProperties: false
    svstore.StringPredicate.DoesNotContain:
      type: object
      title: Does Not Contain
      properties:
        doesNotContain:
          type: string
          title: does_not_contain
          x-stainless-terraform-configurability: optional
      required:
        - doesNotContain
      additionalProperties: false
    svstore.StringPredicate.EndsWith:
      type: object
      title: Ends With
      properties:
        endsWith:
          type: string
          title: ends_with
          x-stainless-terraform-configurability: optional
      required:
        - endsWith
      additionalProperties: false
    svstore.StringPredicate.Eq:
      type: object
      title: Eq
      properties:
        eq:
          type: string
          title: eq
          x-stainless-terraform-configurability: optional
      required:
        - eq
      additionalProperties: false
    svstore.StringPredicate.InList:
      type: object
      title: In List
      properties:
        inList:
          $ref: '#/components/schemas/svstore.StringListValue'
          title: in_list
          x-stainless-terraform-configurability: optional
      required:
        - inList
      additionalProperties: false
    svstore.StringPredicate.IsNotNull:
      type: object
      title: Is Not Null
      properties:
        isNotNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_not_null
          x-stainless-terraform-configurability: optional
      required:
        - isNotNull
      additionalProperties: false
    svstore.StringPredicate.IsNull:
      type: object
      title: Is Null
      properties:
        isNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_null
          x-stainless-terraform-configurability: optional
      required:
        - isNull
      additionalProperties: false
    svstore.StringPredicate.Like:
      type: object
      title: Like
      properties:
        like:
          type: string
          title: like
          x-stainless-terraform-configurability: optional
      required:
        - like
      additionalProperties: false
    svstore.StringPredicate.Ne:
      type: object
      title: Ne
      properties:
        ne:
          type: string
          title: ne
          x-stainless-terraform-configurability: optional
      required:
        - ne
      additionalProperties: false
    svstore.StringPredicate.StartsWith:
      type: object
      title: Starts With
      properties:
        startsWith:
          type: string
          title: starts_with
          x-stainless-terraform-configurability: optional
      required:
        - startsWith
      additionalProperties: false
    svstore.TimestampPredicate.Eq:
      type: object
      title: Eq
      properties:
        eq:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: eq
          x-stainless-terraform-configurability: optional
      required:
        - eq
      additionalProperties: false
    svstore.TimestampPredicate.Gt:
      type: object
      title: Gt
      properties:
        gt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: gt
          x-stainless-terraform-configurability: optional
      required:
        - gt
      additionalProperties: false
    svstore.TimestampPredicate.Gte:
      type: object
      title: Gte
      properties:
        gte:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: gte
          x-stainless-terraform-configurability: optional
      required:
        - gte
      additionalProperties: false
    svstore.TimestampPredicate.IsNotNull:
      type: object
      title: Is Not Null
      properties:
        isNotNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_not_null
          x-stainless-terraform-configurability: optional
      required:
        - isNotNull
      additionalProperties: false
    svstore.TimestampPredicate.IsNull:
      type: object
      title: Is Null
      properties:
        isNull:
          $ref: '#/components/schemas/google.protobuf.Empty'
          title: is_null
          x-stainless-terraform-configurability: optional
      required:
        - isNull
      additionalProperties: false
    svstore.TimestampPredicate.Lt:
      type: object
      title: Lt
      properties:
        lt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: lt
          x-stainless-terraform-configurability: optional
      required:
        - lt
      additionalProperties: false
    svstore.TimestampPredicate.Lte:
      type: object
      title: Lte
      properties:
        lte:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: lte
          x-stainless-terraform-configurability: optional
      required:
        - lte
      additionalProperties: false
    svstore.TimestampPredicate.Ne:
      type: object
      title: Ne
      properties:
        ne:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          title: ne
          x-stainless-terraform-configurability: optional
      required:
        - ne
      additionalProperties: false
    svstore.StringListValue:
      type: object
      properties:
        values:
          type: array
          items:
            type: string
          title: values
          x-stainless-terraform-configurability: optional
      title: StringListValue
      additionalProperties: false
      description: |-
        Object Search Types
         Predicates make allowed operator/value pairings explicit via oneof branches.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````