Sift Stack Calculated Channel Service API

The CalculatedChannelService API from Sift Stack — 10 operation(s) for calculatedchannelservice.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sift-stack-calculatedchannelservice-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sift-stack-calculatedchannelservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sift Calculated Channel Service API
  version: '1.0'
servers:
- url: https://api.siftstack.com
  description: Production
- url: https://gov.api.siftstack.com
  description: Gov
security:
- BearerAuth: []
tags:
- name: CalculatedChannelService
paths:
  /api/v2/calculated-channels:
    get:
      summary: ListCalculatedChannels
      description: Retrieve the latest versions of calculated channels based on an optional filter.
      operationId: CalculatedChannelService_ListCalculatedChannels
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ListCalculatedChannelsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: pageSize
        description: 'The maximum number of calculated channels to return. The service may return fewer than this value.

          If unspecified, at most 50 calculated channels will be returned. The maximum value is 1000; values above

          1000 will be coerced to 1000. Optional.'
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: pageToken
        description: 'A page token, received from a previous `ListCalculatedChannels` call.

          Provide this to retrieve the subsequent page.

          When paginating, all other parameters provided to `ListCalculatedChannels` must match

          the call that provided the page token. Optional.'
        in: query
        required: false
        schema:
          type: string
      - name: filter
        description: 'A [Common Expression Language (CEL)](https://github.com/google/cel-spec) filter string.

          Available fields to filter by are `calculated_channel_id`, `organization_id`, `client_key`, `name`, `description`,

          `asset_id`, `asset_name`, `tag_id`, `tag_name`, `units`, `calculated_channel_version_id`,

          `created_date`, `modified_date`, `created_by_user_id`, `modified_by_user_id`, `is_archived`, and `archived_date`.

          Folder membership is filterable via the `folders` and `activeFolders` fields. Both contain the ids of the folders

          the calculated channel belongs to; `activeFolders` excludes archived folders. Use `"<folder_id>" in folders` to

          return calculated channels in the given folder, and `size(activeFolders) == 0` to return uncategorized calculated

          channels (calculated channels whose only memberships are in archived folders count as uncategorized).

          For further information about how to use CELs, please refer to [this guide](https://github.com/google/cel-spec/blob/master/doc/langdef.md#standard-definitions).'
        in: query
        required: false
        schema:
          type: string
      - name: organizationId
        description: This field is only required if your user belongs to multiple organizations.
        in: query
        required: false
        schema:
          type: string
      - name: orderBy
        description: 'How to order the retrieved calculated channels. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...".

          Available fields to order_by are `created_date`, `modified_date`, `name`, `description`, `units`, and `archived_date`.

          If left empty, items are ordered by `created_date` in descending order (newest-first).

          For more information about the format of this field, read [this](https://google.aip.dev/132#ordering)

          Example: "created_date desc,modified_date"'
        in: query
        required: false
        schema:
          type: string
      tags:
      - CalculatedChannelService
    post:
      summary: CreateCalculatedChannel
      description: Create a calculated channel.
      operationId: CalculatedChannelService_CreateCalculatedChannel
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2CreateCalculatedChannelResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v2CreateCalculatedChannelRequest'
        required: true
      tags:
      - CalculatedChannelService
    patch:
      summary: UpdateCalculatedChannel
      description: Update and create a new version of a calculated channel.
      operationId: CalculatedChannelService_UpdateCalculatedChannel
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2UpdateCalculatedChannelResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v2UpdateCalculatedChannelRequest'
        description: 'The request for a call to `CalculatedChannelService_UpdateCalculatedChannel` to update a calculated channel. Updating a calculated

          channel creates a new version of the calculated channel, leaving the previous untouched. If no update is deemed necessary, then the

          the current version is returned. To archive calculated channel, specify `archived_date` in the `update mask` as well as a non-null

          value for `archived_date` in the `calculated_channel` object. To unarchive a calculated channel, specify `archived_date` in the

          `update mask` and a `null` value for `archived_date` in the `calculated_channel` object.'
        required: true
      tags:
      - CalculatedChannelService
  /api/v2/calculated-channels/dependents:
    get:
      summary: GetCalculatedChannelDependents
      description: Retrieve calculated channels that depend on a given calculated channel.
      operationId: CalculatedChannelService_GetCalculatedChannelDependents
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2GetCalculatedChannelDependentsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: calculatedChannelId
        in: query
        required: false
        schema:
          type: string
      - name: calculatedChannelVersionId
        in: query
        required: false
        schema:
          type: string
      tags:
      - CalculatedChannelService
  /api/v2/calculated-channels/resolve:
    post:
      summary: ResolveCalculatedChannel
      description: Resolve a calculated channel into an expression with references
      operationId: CalculatedChannelService_ResolveCalculatedChannel
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ResolveCalculatedChannelResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v2ResolveCalculatedChannelRequest'
        description: "The request for a call to `CalculatedChannelService_ResolveCalculatedChannel` to get the all possible calculated channels.\n1) If the calculated channel has a selection of assets and tags then those assets will be used as a base and then filtered down by the given assets and assets from the run.\n2) If the calculated channel is enabled for all assets then:\n  a) If the request has run and assets from the run will be used as a base and then filtered down by the given assets.\n  b) If the request has run and no assets then those assets will be used.\n  c) If the request has only assets then those assets will be used.\nThe `organization_id` argument is only required if using `client_key` and the user belongs to multiple organizations."
        required: true
      tags:
      - CalculatedChannelService
  /api/v2/calculated-channels/resolve:batch:
    post:
      summary: BatchResolveCalculatedChannel
      description: Resolve a batch of calculated channels into expressions with references
      operationId: CalculatedChannelService_BatchResolveCalculatedChannels
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2BatchResolveCalculatedChannelsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v2BatchResolveCalculatedChannelsRequest'
        description: The request of a call to `CalculatedChannelService_BatchResolveCalculatedChannels`.
        required: true
      tags:
      - CalculatedChannelService
  /api/v2/calculated-channels/resolved:
    get:
      summary: ListResolvedCalculatedChannels
      description: Retrieve the latest versions of calculated channels based on an optional filter.
      operationId: CalculatedChannelService_ListResolvedCalculatedChannels
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ListResolvedCalculatedChannelsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: assetId
        description: Assets or runs to get the resolved calculated channels for. At least one asset or run must be provided.
        in: query
        required: false
        schema:
          type: string
      - name: runId
        in: query
        required: false
        schema:
          type: string
      - name: pageSize
        description: 'The maximum number of calculated channels to return. The service may return fewer than this value.

          If unspecified, at most 50 calculated channels will be returned. The maximum value is 1000; values above

          1000 will be coerced to 1000. Optional.'
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: pageToken
        description: 'A page token, received from a previous `ListCalculatedChannels` call.

          Provide this to retrieve the subsequent page.

          When paginating, all other parameters provided to `ListCalculatedChannels` must match

          the call that provided the page token. Optional.'
        in: query
        required: false
        schema:
          type: string
      - name: filter
        description: 'A [Common Expression Language (CEL)](https://github.com/google/cel-spec) filter string.

          Available fields to filter by are `calculated_channel_id`, `organization_id`, `client_key`, `name`, `description`,

          `asset_id`, `asset_name`, `tag_id`, `tag_name`, `version`, `units`, `calculated_channel_version_id`,

          `created_date`, `modified_date`, `created_by_user_id`, `modified_by_user_id`, `is_archived`, and `archived_date`.

          For further information about how to use CELs, please refer to [this guide](https://github.com/google/cel-spec/blob/master/doc/langdef.md#standard-definitions).'
        in: query
        required: false
        schema:
          type: string
      - name: orderBy
        description: 'How to order the retrieved calculated channels. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...".

          Available fields to order_by are `created_date` and `modified_date`.

          If left empty, items are ordered by `created_date` in descending order (newest-first).

          For more information about the format of this field, read [this](https://google.aip.dev/132#ordering)

          Example: "created_date desc,modified_date"'
        in: query
        required: false
        schema:
          type: string
      tags:
      - CalculatedChannelService
  /api/v2/calculated-channels/versions:
    get:
      summary: GetCalculatedChannelVersions
      description: Retrieve calculated channel versions by their version IDs.
      operationId: CalculatedChannelService_GetCalculatedChannelVersions
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2GetCalculatedChannelVersionsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: calculatedChannelVersionIds
        in: query
        required: true
        explode: true
        schema:
          type: array
          items:
            type: string
      tags:
      - CalculatedChannelService
  /api/v2/calculated-channels/{calculatedChannelId}:
    get:
      summary: GetCalculatedChannel
      description: Retrieve the latest version of a calculated channel.
      operationId: CalculatedChannelService_GetCalculatedChannel
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2GetCalculatedChannelResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: calculatedChannelId
        in: path
        required: true
        schema:
          type: string
      - name: clientKey
        in: query
        required: false
        schema:
          type: string
      - name: organizationId
        in: query
        required: false
        schema:
          type: string
      - name: calculatedChannelVersionId
        in: query
        required: false
        schema:
          type: string
      tags:
      - CalculatedChannelService
  /api/v2/calculated-channels/{calculatedChannelId}/versions:
    get:
      summary: ListCalculatedChannelVersions
      description: List versions of a particular calculated channel with an optional filter.
      operationId: CalculatedChannelService_ListCalculatedChannelVersions
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ListCalculatedChannelVersionsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: calculatedChannelId
        in: path
        required: true
        schema:
          type: string
      - name: clientKey
        in: query
        required: false
        schema:
          type: string
      - name: pageSize
        description: 'The maximum number of calculated channel versions to return. The service may return fewer than this value.

          If unspecified, at most 50 calculated channels will be returned. The maximum value is 1000; values above

          1000 will be coerced to 1000. Optional.'
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: pageToken
        description: 'A page token, received from a previous `ListCalculatedChannelVersions` call.

          Provide this to retrieve the subsequent page.

          When paginating, all other parameters provided to `ListCalculatedChannelVersions` must match

          the call that provided the page token. Optional.'
        in: query
        required: false
        schema:
          type: string
      - name: filter
        description: 'A [Common Expression Language (CEL)](https://github.com/google/cel-spec) filter string.

          Available fields to filter by are `calculated_channel_id`, `organization_id`, `client_key`, `name`, `description`,

          `asset_id`, `asset_name`, `tag_id`, `tag_name`, `version`, `units`, `calculated_channel_version_id`,

          `created_date`, `modified_date`, `created_by_user_id`, `modified_by_user_id`, `is_archived`, and `archived_date`.

          For further information about how to use CELs, please refer to [this guide](https://github.com/google/cel-spec/blob/master/doc/langdef.md#standard-definitions).'
        in: query
        required: false
        schema:
          type: string
      - name: organizationId
        description: This field is only required if your user belongs to multiple organizations.
        in: query
        required: false
        schema:
          type: string
      - name: orderBy
        description: 'How to order the retrieved calculated channel versions. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...".

          Available fields to order_by are ''version'', `created_date`, `modified_date`, `name`, `description`, `units`, and `archived_date`.

          If left empty, items are ordered by `created_date` in ascending order (oldest-first).

          For more information about the format of this field, read [this](https://google.aip.dev/132#ordering)

          Example: "created_date desc,modified_date".'
        in: query
        required: false
        schema:
          type: string
      tags:
      - CalculatedChannelService
  /v2/organizations/{organizationId}/calculated-channels/{clientKey}:
    get:
      summary: GetCalculatedChannel
      description: Retrieve the latest version of a calculated channel.
      operationId: CalculatedChannelService_GetCalculatedChannel2
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2GetCalculatedChannelResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: organizationId
        in: path
        required: true
        schema:
          type: string
      - name: clientKey
        in: path
        required: true
        schema:
          type: string
      - name: calculatedChannelId
        in: query
        required: false
        schema:
          type: string
      - name: calculatedChannelVersionId
        in: query
        required: false
        schema:
          type: string
      tags:
      - CalculatedChannelService
  /v2/organizations/{organizationId}/calculated-channels/{clientKey}/versions:
    get:
      summary: ListCalculatedChannelVersions
      description: List versions of a particular calculated channel with an optional filter.
      operationId: CalculatedChannelService_ListCalculatedChannelVersions2
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ListCalculatedChannelVersionsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: organizationId
        description: This field is only required if your user belongs to multiple organizations.
        in: path
        required: true
        schema:
          type: string
      - name: clientKey
        in: path
        required: true
        schema:
          type: string
      - name: calculatedChannelId
        in: query
        required: false
        schema:
          type: string
      - name: pageSize
        description: 'The maximum number of calculated channel versions to return. The service may return fewer than this value.

          If unspecified, at most 50 calculated channels will be returned. The maximum value is 1000; values above

          1000 will be coerced to 1000. Optional.'
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: pageToken
        description: 'A page token, received from a previous `ListCalculatedChannelVersions` call.

          Provide this to retrieve the subsequent page.

          When paginating, all other parameters provided to `ListCalculatedChannelVersions` must match

          the call that provided the page token. Optional.'
        in: query
        required: false
        schema:
          type: string
      - name: filter
        description: 'A [Common Expression Language (CEL)](https://github.com/google/cel-spec) filter string.

          Available fields to filter by are `calculated_channel_id`, `organization_id`, `client_key`, `name`, `description`,

          `asset_id`, `asset_name`, `tag_id`, `tag_name`, `version`, `units`, `calculated_channel_version_id`,

          `created_date`, `modified_date`, `created_by_user_id`, `modified_by_user_id`, `is_archived`, and `archived_date`.

          For further information about how to use CELs, please refer to [this guide](https://github.com/google/cel-spec/blob/master/doc/langdef.md#standard-definitions).'
        in: query
        required: false
        schema:
          type: string
      - name: orderBy
        description: 'How to order the retrieved calculated channel versions. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...".

          Available fields to order_by are ''version'', `created_date`, `modified_date`, `name`, `description`, `units`, and `archived_date`.

          If left empty, items are ordered by `created_date` in ascending order (oldest-first).

          For more information about the format of this field, read [this](https://google.aip.dev/132#ordering)

          Example: "created_date desc,modified_date".'
        in: query
        required: false
        schema:
          type: string
      tags:
      - CalculatedChannelService
components:
  schemas:
    protobufAny:
      type: object
      properties:
        '@type':
          type: string
          description: "A URL/resource name that uniquely identifies the type of the serialized\nprotocol buffer message. This string must contain at least\none \"/\" character. The last segment of the URL's path must represent\nthe fully qualified name of the type (as in\n`path/google.protobuf.Duration`). The name should be in a canonical form\n(e.g., leading \".\" is not accepted).\n\nIn practice, teams usually precompile into the binary all types that they\nexpect it to use in the context of Any. However, for URLs which use the\nscheme `http`, `https`, or no scheme, one can optionally set up a type\nserver that maps type URLs to message definitions as follows:\n\n* If no scheme is provided, `https` is assumed.\n* An HTTP GET on the URL must yield a [google.protobuf.Type][]\n  value in binary format, or produce an error.\n* Applications are allowed to cache lookup results based on the\n  URL, or have them precompiled into a binary to avoid any\n  lookup. Therefore, binary compatibility needs to be preserved\n  on changes to types. (Use versioned type names to manage\n  breaking changes.)\n\nNote: this functionality is not currently available in the official\nprotobuf release, and it is not used for type URLs beginning with\ntype.googleapis.com. As of May 2023, there are no widely used type server\nimplementations and no plans to implement one.\n\nSchemes other than `http`, `https` (or the empty scheme) might be\nused with implementation specific semantics."
      additionalProperties: {}
      description: "`Any` contains an arbitrary serialized protocol buffer message along with a\nURL that describes the type of the serialized message.\n\nProtobuf library provides support to pack/unpack Any values in the form\nof utility functions or additional generated methods of the Any type.\n\nExample 1: Pack and unpack a message in C++.\n\n    Foo foo = ...;\n    Any any;\n    any.PackFrom(foo);\n    ...\n    if (any.UnpackTo(&foo)) {\n      ...\n    }\n\nExample 2: Pack and unpack a message in Java.\n\n    Foo foo = ...;\n    Any any = Any.pack(foo);\n    ...\n    if (any.is(Foo.class)) {\n      foo = any.unpack(Foo.class);\n    }\n    // or ...\n    if (any.isSameTypeAs(Foo.getDefaultInstance())) {\n      foo = any.unpack(Foo.getDefaultInstance());\n    }\n\n Example 3: Pack and unpack a message in Python.\n\n    foo = Foo(...)\n    any = Any()\n    any.Pack(foo)\n    ...\n    if any.Is(Foo.DESCRIPTOR):\n      any.Unpack(foo)\n      ...\n\n Example 4: Pack and unpack a message in Go\n\n     foo := &pb.Foo{...}\n     any, err := anypb.New(foo)\n     if err != nil {\n       ...\n     }\n     ...\n     foo := &pb.Foo{}\n     if err := any.UnmarshalTo(foo); err != nil {\n       ...\n     }\n\nThe pack methods provided by protobuf library will by default use\n'type.googleapis.com/full.type.name' as the type URL and the unpack\nmethods only use the fully qualified type name after the last '/'\nin the type URL, for example \"foo.bar.com/x/y.z\" will yield type\nname \"y.z\".\n\nJSON\n====\nThe JSON representation of an `Any` value uses the regular\nrepresentation of the deserialized, embedded message, with an\nadditional field `@type` which contains the type URL. Example:\n\n    package google.profile;\n    message Person {\n      string first_name = 1;\n      string last_name = 2;\n    }\n\n    {\n      \"@type\": \"type.googleapis.com/google.profile.Person\",\n      \"firstName\": <string>,\n      \"lastName\": <string>\n    }\n\nIf the embedded message type is well-known and has a custom JSON\nrepresentation, that representation will be embedded adding a field\n`value` which holds the custom JSON in addition to the `@type`\nfield. Example (for message [google.protobuf.Duration][]):\n\n    {\n      \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n      \"value\": \"1.212s\"\n    }"
    CalculatedChannelQueryConfigurationSel:
      type: object
      properties:
        expression:
          type: string
        expressionChannelReferences:
          type: array
          items:
            $ref: '#/components/schemas/v2CalculatedChannelAbstractChannelReference'
      description: Sift Expression Language.
      required:
      - expression
      - expressionChannelReferences
    v2ResolvedCalculatedChannel:
      type: object
      properties:
        assetName:
          type: string
          description: The name of the specific asset that was resolved.
        expressionRequest:
          $ref: '#/components/schemas/v1ExpressionRequest'
        outputDataType:
          $ref: '#/components/schemas/v1ChannelDataType'
        assetId:
          type: string
      description: A specific calculated channel including the asset and exact channels to query.
      required:
      - assetName
      - expressionRequest
      - outputDataType
      - assetId
    v1SingleChannelComparisonExpression:
      type: object
      properties:
        channelComponent:
          type: string
          title: Deprecated - use channel_name instead. If provided, channel_component will be joined with the name as `channel_component.channel_name`
        channelName:
          type: string
        comparator:
          $ref: '#/components/schemas/v1ConditionComparator'
        double:
          type: number
          format: double
        string:
          type: string
        lastValue:
          $ref: '#/components/schemas/v1LastValueThreshold'
      description: Deprecated - use CalculatedChannelConfig.
      required:
      - channelComponent
      - channelName
      - comparator
    v2ListResolvedCalculatedChannelsResponse:
      type: object
      properties:
        calculatedChannelResolutions:
          type: array
          items:
            $ref: '#/components/schemas/v2CalculatedChannelResolution'
        nextPageToken:
          type: string
      required:
      - calculatedChannelResolutions
    v2GetCalculatedChannelResponse:
      type: object
      properties:
        calculatedChannel:
          $ref: '#/components/schemas/v2CalculatedChannel'
      required:
      - calculatedChannel
    v1NotificationActionConfiguration:
      type: object
      properties:
        recipientUserIds:
          type: array
          items:
            type: string
      required:
      - recipientUserIds
    v2UpdateCalculatedChannelResponse:
      type: object
      properties:
        calculatedChannel:
          $ref: '#/components/schemas/v2CalculatedChannel'
        inapplicableAssets:
          type: array
          items:
            $ref: '#/components/schemas/v2CalculatedChannelValidationResult'
      description: The response of a call to `CalculatedChannelService_UpdateCalculatedChannel`.
      required:
      - calculatedChannel
      - inapplicableAssets
    v1ChannelDataType:
      type: string
      enum:
      - CHANNEL_DATA_TYPE_UNSPECIFIED
      - CHANNEL_DATA_TYPE_DOUBLE
      - CHANNEL_DATA_TYPE_STRING
      - CHANNEL_DATA_TYPE_ENUM
      - CHANNEL_DATA_TYPE_BIT_FIELD
      - CHANNEL_DATA_TYPE_BOOL
      - CHANNEL_DATA_TYPE_FLOAT
      - CHANNEL_DATA_TYPE_INT_32
      - CHANNEL_DATA_TYPE_UINT_32
      - CHANNEL_DATA_TYPE_INT_64
      - CHANNEL_DATA_TYPE_UINT_64
      - CHANNEL_DATA_TYPE_BYTES
      default: CHANNEL_DATA_TYPE_UNSPECIFIED
    v1Rule:
      type: object
      properties:
        ruleId:
          type: string
        assetId:
          type: string
        name:
          type: string
        description:
          type: string
        isEnabled:
          type: boolean
        createdDate:
          type: string
          format: date-time
        modifiedDate:
          type: string
          format: date-time
        createdByUserId:
          type: string
        modifiedByUserId:
          type: string
        organizationId:
          type: string
        conditions:
          type: array
          items:
            $ref: '#/components/schemas/v1RuleCondition'
        ruleVersion:
          $ref: '#/components/schemas/v1RuleVersion'
        clientKey:
          type: string
          description: client_key is a client provided identifier for the rule. It is immutable after rule creation.
        assetConfiguration:
          $ref: '#/components/schemas/v1RuleAssetConfiguration'
        contextualChannels:
          $ref: '#/components/schemas/v1ContextualChannels'
        deletedDate:
          type: string
          format: date-time
        isExternal:
          type: boolean
        metadata:
          type: array
          items:
            $ref: '#/components/schemas/v1MetadataValue'
        archivedDate:
          type: string
          format: date-time
          title: archived_date indicates when the rule was archived
        isArchived:
          type: boolean
          title: is_archived is inferred from when archived_date is not null
        isLiveEvaluationEnabled:
          type: boolean
          description: 'If `true`, this rule will be evaluated on live data; if `false`, live rule evaluation is

            disabled (the rule remains usable for report generation).


            Note: this value is the server''s effective state, not necessarily what was requested. A rule

            saved via `BatchUpdateRulesRequest.over

# --- truncated at 32 KB (55 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/sift-stack/refs/heads/main/openapi/sift-stack-calculatedchannelservice-api-openapi.yml