CoreStack Dimension Version API

Manage Dimension Versions

Operations 5

POST /v1/dimensions/versions/batch Batch Dimension Versions #
POST /v1/dimensions/versions/create Create Dimension Version #
GET /v1/dimensions/versions/item/{dimension_definition_version_id} Get Dimension Version #
PATCH /v1/dimensions/versions/item/{dimension_definition_version_id}/make-head Make Dimension Version Head #
PATCH /v1/dimensions/versions/item/{dimension_definition_version_id}/make-release Make Dimension Version Release #

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/corestack-dimensionversion-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

corestack-dimensionversion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CoreStack External Dimension Version API
  version: 1.0.0
  termsOfService: http://corestack.io/
  license:
    name: CoreStack Inc License
    url: http://corestack.io/licenses/LICENSE-2.0.html
  description: Manage Dimension Versions
servers:
- url: /
tags:
- name: DimensionVersion
  description: Manage Dimension Versions
paths:
  /v1/dimensions/versions/batch:
    post:
      responses:
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '200':
          description: Fetched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DimensionDefinitionVersionBatchResponse'
      summary: Batch Dimension Versions
      description: Batch Dimension Definition Versions.
      operationId: BatchDimensionBatchDefinitionVersion
      security:
      - auth_token: []
      tags:
      - DimensionVersion
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchRequest'
        required: true
  /v1/dimensions/versions/create:
    post:
      responses:
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '200':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DimensionDefinitionVersion'
      summary: Create Dimension Version
      description: Create a New Dimension Definition Version.
      operationId: CreateDimensionDefinitionVersion
      security:
      - auth_token: []
      tags:
      - DimensionVersion
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DimensionDefinitionVersion'
        required: true
  /v1/dimensions/versions/item/{dimension_definition_version_id}:
    get:
      responses:
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '200':
          description: Fetched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DimensionDefinitionVersion'
      summary: Get Dimension Version
      description: Get Dimension Definition Version.
      operationId: GetDimensionDefinitionVersion
      parameters:
      - name: dimension_definition_version_id
        in: path
        required: true
        description: ID of Dimension Definition Version.
        schema:
          type: string
      security:
      - auth_token: []
      tags:
      - DimensionVersion
  /v1/dimensions/versions/item/{dimension_definition_version_id}/make-head:
    patch:
      responses:
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '200':
          description: Updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DimensionDefinitionVersion'
      summary: Make Dimension Version Head
      description: Make Dimensions Definition Version Head.
      operationId: MakeDimensionDefinitionVersionHead
      parameters:
      - name: dimension_definition_version_id
        in: path
        required: true
        description: ID of Dimension Definition Version.
        schema:
          type: string
      security:
      - auth_token: []
      tags:
      - DimensionVersion
  /v1/dimensions/versions/item/{dimension_definition_version_id}/make-release:
    patch:
      responses:
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '200':
          description: Updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DimensionDefinitionVersion'
      summary: Make Dimension Version Release
      description: Make Dimension Definition Version Release.
      operationId: MakeDimensionDefinitionVersionRelease
      parameters:
      - name: dimension_definition_version_id
        in: path
        required: true
        description: ID of Dimension Definition Version.
        schema:
          type: string
      security:
      - auth_token: []
      tags:
      - DimensionVersion
components:
  schemas:
    GroupingRuleCostAnomalyThreshold:
      required:
      - impact
      - op
      properties:
        impact:
          description: Cost impact conditions to trigger anomaly detection for this dimension
          $ref: '#/components/schemas/GroupingRuleCostAnomalyImpact'
        minimum_cost_spend:
          type: number
          description: Minimum cost spend to trigger anomaly detection for this Grouping Rule
          default: 0.0
        op:
          type: string
          description: Operator to combine the threshold conditions
          example: AND
          enum:
          - AND
          - OR
          x-cs-enum-type: CostAnomalyThresholdOperator
      type: object
    DimensionGroupingRule:
      required:
      - name
      properties:
        name:
          type: string
          description: Name of the Grouping Rule
        description:
          type: string
          description: Grouping Rule Description
        grouping_rule_id:
          type: string
          description: ID of the Dimension grouping (system generated)
        rule_type:
          type: string
          description: Type of Grouping Rule
          example: System
          enum:
          - System
          - UserDefined
          x-cs-enum-type: GroupingRuleType
        attributes:
          type: array
          items:
            $ref: '#/components/schemas/AttributeValueBase'
        filters:
          description: Conditions applied to the grouping
          $ref: '#/components/schemas/QueryOperator'
        platform_filters:
          description: Conditions applied to the grouping
          $ref: '#/components/schemas/QueryOperator'
        access_granted_identities:
          description: Identities allowed to access this grouping rule
          $ref: '#/components/schemas/AccessGrantedRolesAndUserGroups'
        dependent_grouping_rule:
          type: array
          description: Other Dimension Groupings associated with the grouping rule
          items:
            $ref: '#/components/schemas/DependentDimension'
        cost_anomaly_configuration:
          description: Cost Anomaly configuration for this grouping rule
          $ref: '#/components/schemas/GroupingRuleCostAnomalyConfiguration'
        priority:
          type: integer
          description: Priority of the Grouping Rule for evaluation order
      type: object
    GroupingRuleCostAnomalyImpact:
      required:
      - op
      properties:
        minimum_cost_impact:
          type: number
          description: Minimum cost impact to trigger anomaly detection for this dimension
          default: 0.0
        minimum_cost_impact_percentage:
          type: number
          description: Minimum cost impact to trigger anomaly detection for this dimension
          default: 0.0
        op:
          type: string
          description: Operator to combine the cost impact conditions
          example: OR
          enum:
          - OR
          x-cs-enum-type: CostAnomalyDimensionImpactOperator
      type: object
    AttributeValueBase:
      required:
      - __type
      - name
      properties:
        name:
          type: string
          description: Name of the Attribute
      discriminator:
        propertyName: __type
      type: object
      x-cs-subtypes:
      - subtype_model: AttributeValueForBoolean
        subtype_name: AttributeValueForBoolean
      - subtype_model: AttributeValueForString
        subtype_name: AttributeValueForString
      - subtype_model: AttributeValueForNumber
        subtype_name: AttributeValueForNumber
      - subtype_model: AttributeValueForDateTime
        subtype_name: AttributeValueForDateTime
    GroupingRuleCostAnomalyConfiguration:
      required:
      - notification
      - threshold
      properties:
        threshold:
          description: Cost Anomaly Threshold for Grouping Rule
          $ref: '#/components/schemas/GroupingRuleCostAnomalyThreshold'
        notification:
          description: Cost Anomaly Notification Configuration for Grouping Rule
          $ref: '#/components/schemas/GroupingRuleCostAnomalyNotification'
      type: object
    AccessGrantedRoles:
      required:
      - tenant_id
      properties:
        tenant_id:
          type: string
          description: Tenant ID explicitly denied access
          x-cs-type: ObjectId
        role_ids:
          type: array
          description: Role IDs under this tenant explicitly denied access
          items:
            type: string
            x-cs-type: ObjectId
      type: object
    DependentDimension:
      required:
      - dimension_id
      - grouping_rule_ids
      properties:
        dimension_id:
          type: string
          description: Id of the Dependent Dimension
        grouping_rule_ids:
          type: array
          description: Ids of the Dependent Dimension Grouping rules
          items:
            type: string
        priority:
          type: integer
          description: Priority of the Dependent Dimension Grouping Rule for evaluation order
          default: 0
      type: object
    DimensionDefinitionConfiguration:
      required:
      - end_date
      - start_date
      properties:
        start_date:
          type: string
          format: date-time
          description: Start date of the Dimension Definition
        end_date:
          type: string
          format: date-time
          description: End date of the Dimension Definition
        enable_cost_center:
          type: boolean
          description: Is cost center enabled for the Dimension Definition
        attributes:
          type: array
          description: Configured attributes for Dimension Definition
          items:
            $ref: '#/components/schemas/AttributeDefinitionBase'
        access_granted_identities:
          description: Identities allowed to access this Dimension Definition
          $ref: '#/components/schemas/AccessGrantedRolesAndUserGroups'
        grouping_rules:
          type: array
          description: Configured grouping rule for Dimension Definition
          items:
            $ref: '#/components/schemas/DimensionGroupingRule'
        precompute:
          type: boolean
          description: Enable precomputation tagging of Dimension tagging on billing line items
          default: false
        include_unallocated_cost:
          type: boolean
          description: Enable Unallocated Cost grouping rule for this Dimension Version
          default: false
      type: object
    ModelError:
      required:
      - message
      properties:
        message:
          type: string
          description: Error response message.
      type: object
    AttributeDefinitionBase:
      required:
      - __type
      - name
      properties:
        name:
          type: string
          description: Name of the Attribute
        mandatory:
          type: boolean
          description: Is the dimensions attribute mandatory
      discriminator:
        propertyName: __type
      type: object
      x-cs-subtypes:
      - subtype_model: AttributeDefinitionForBoolean
        subtype_name: AttributeDefinitionForBoolean
      - subtype_model: AttributeDefinitionForString
        subtype_name: AttributeDefinitionForString
      - subtype_model: AttributeDefinitionForNumber
        subtype_name: AttributeDefinitionForNumber
      - subtype_model: AttributeDefinitionForDateTime
        subtype_name: AttributeDefinitionForDateTime
    GroupingRuleCostAnomalyNotification:
      required:
      - daily_summary_email_enabled
      - notifications_enabled
      - notify_on_detection
      properties:
        notifications_enabled:
          type: boolean
          description: Is Notifications Enabled for Grouping Rule
        daily_summary_email_enabled:
          type: boolean
          description: Is Daily Summary Notification Enabled for Grouping Rule
        notify_on_detection:
          type: boolean
          description: Is Notify On Detection Enabled for Grouping Rule
        notify_on_detection_emails:
          type: array
          description: Emails to notify immediately on anomaly detection
          default: []
          items:
            type: string
        daily_summary_emails:
          type: array
          description: Emails to send daily summary notification
          default: []
          items:
            type: string
        notify_on_detection_teams_webhooks:
          type: array
          description: Microsoft Teams webhook URLs to notify on anomaly detection
          default: []
          items:
            type: string
        notify_on_detection_webhooks:
          type: array
          description: Webhook URLs (Slack or generic) to notify on anomaly detection
          default: []
          items:
            type: string
        daily_summary_teams_webhooks:
          type: array
          description: Microsoft Teams webhook URLs for daily summary notification
          default: []
          items:
            type: string
        daily_summary_webhooks:
          type: array
          description: Webhook URLs (Slack or generic) for daily summary notification
          default: []
          items:
            type: string
      type: object
    DimensionDefinitionVersionBatchResponse:
      properties:
        results:
          type: object
          description: Map from identifier to response model
          additionalProperties:
            $ref: '#/components/schemas/DimensionDefinitionVersion'
      type: object
    AccessGrantedRolesAndUserGroups:
      allOf:
      - $ref: '#/components/schemas/AccessGrantedUserGroups'
      - properties:
          roles:
            type: array
            description: Roles explicitly denied access by tenant
            items:
              $ref: '#/components/schemas/AccessGrantedRoles'
        type: object
    RecordIdentity:
      properties:
        sysId:
          type: string
          description: Unique Identifier of the tracked item
        lastUpdate:
          type: string
          format: date-time
          description: Last update of the tracked item
        table:
          type: string
          description: Context of the tracked item
      type: object
    AccessGrantedUserGroups:
      properties:
        user_groups:
          type: array
          description: User groups explicitly denied access
          items:
            type: string
            x-cs-type: ObjectId
      type: object
    BaseDefinitionVersion:
      properties:
        sysId:
          type: string
          description: Identifier of the version
        createdOn:
          type: string
          format: date-time
          description: Version created on
        updatedOn:
          type: string
          format: date-time
          description: Version  updated on
        version:
          type: integer
          default: Sequence number of the version
        definition:
          description: Reference to the definition
          $ref: '#/components/schemas/RecordIdentity'
        predecessor:
          description: Reference to the previous version
          $ref: '#/components/schemas/RecordIdentity'
      type: object
    DimensionDefinitionVersion:
      allOf:
      - $ref: '#/components/schemas/BaseDefinitionVersion'
      - properties:
          details:
            description: Details of the version
            $ref: '#/components/schemas/DimensionDefinitionConfiguration'
        type: object
    QueryOperator:
      required:
      - __type
      properties: {}
      discriminator:
        propertyName: __type
      type: object
      x-cs-subtypes:
      - subtype_model: QueryOperatorTrue
        subtype_name: QueryOperatorTrue
      - subtype_model: QueryOperatorFalse
        subtype_name: QueryOperatorFalse
      - subtype_model: QueryOperatorBinary
        subtype_name: QueryOperatorBinary
      - subtype_model: QueryOperatorBinaryLogic
        subtype_name: QueryOperatorBinaryLogic
      - subtype_model: QueryOperatorNary
        subtype_name: QueryOperatorNary
      - subtype_model: QueryOperatorNaryLogic
        subtype_name: QueryOperatorNaryLogic
      - subtype_model: QueryOperatorComparator
        subtype_name: QueryOperatorComparator
      - subtype_model: QueryOperatorComparatorLogic
        subtype_name: QueryOperatorComparatorLogic
      - subtype_model: QueryOperatorUnary
        subtype_name: QueryOperatorUnary
      - subtype_model: QueryOperatorUnaryNot
        subtype_name: QueryOperatorUnaryNot
      - subtype_model: QueryOperatorBinaryForGraph
        subtype_name: QueryOperatorBinaryForGraph
      - subtype_model: QueryOperatorBinaryLogicForGraph
        subtype_name: QueryOperatorBinaryLogicForGraph
      - subtype_model: QueryOperatorNaryForGraph
        subtype_name: QueryOperatorNaryForGraph
      - subtype_model: QueryOperatorNaryLogicForGraph
        subtype_name: QueryOperatorNaryLogicForGraph
      - subtype_model: QueryOperatorUnaryForGraph
        subtype_name: QueryOperatorUnaryForGraph
      - subtype_model: QueryOperatorUnaryNotForGraph
        subtype_name: QueryOperatorUnaryNotForGraph
      - subtype_model: ServiceAccountQueryOperator
        subtype_name: ServiceAccountQueryOperator
      - subtype_model: TenantQueryOperator
        subtype_name: TenantQueryOperator
      - subtype_model: DescendantServiceAccountQueryOperator
        subtype_name: DescendantServiceAccountQueryOperator
      - subtype_model: DescendantServiceAccountInTenantQueryOperator
        subtype_name: DescendantServiceAccountInTenantQueryOperator
      - subtype_model: TenantTagKeyQueryOperator
        subtype_name: TenantTagKeyQueryOperator
      - subtype_model: TenantTagKeyValueQueryOperator
        subtype_name: TenantTagKeyValueQueryOperator
      - subtype_model: LocationQueryOperator
        subtype_name: LocationQueryOperator
      - subtype_model: AvailabilityZoneQueryOperator
        subtype_name: AvailabilityZoneQueryOperator
      - subtype_model: BillingSourceQueryOperator
        subtype_name: BillingSourceQueryOperator
      - subtype_model: CurrencyQueryOperator
        subtype_name: CurrencyQueryOperator
      - subtype_model: ProductCategoryQueryOperator
        subtype_name: ProductCategoryQueryOperator
      - subtype_model: ProductFamilyQueryOperator
        subtype_name: ProductFamilyQueryOperator
      - subtype_model: ProductServiceCodeQueryOperator
        subtype_name: ProductServiceCodeQueryOperator
      - subtype_model: ProductSkuQueryOperator
        subtype_name: ProductSkuQueryOperator
      - subtype_model: PublisherQueryOperator
        subtype_name: PublisherQueryOperator
      - subtype_model: ResourceCategoryQueryOperator
        subtype_name: ResourceCategoryQueryOperator
      - subtype_model: ResourceIdQueryOperator
        subtype_name: ResourceIdQueryOperator
      - subtype_model: ResourceGroupQueryOperator
        subtype_name: ResourceGroupQueryOperator
      - subtype_model: ResourceNameQueryOperator
        subtype_name: ResourceNameQueryOperator
      - subtype_model: ResourceOperationQueryOperator
        subtype_name: ResourceOperationQueryOperator
      - subtype_model: ResourceQueryExtraPresence
        subtype_name: ResourceQueryExtraPresence
      - subtype_model: ResourceQueryExtraKey
        subtype_name: ResourceQueryExtraKey
      - subtype_model: ScopeContainsTenantQueryOperator
        subtype_name: ScopeContainsTenantQueryOperator
      - subtype_model: ScopeContainsServiceAccountQueryOperator
        subtype_name: ScopeContainsServiceAccountQueryOperator
      - subtype_model: ScopeIsQueryOperator
        subtype_name: ScopeIsQueryOperator
      - subtype_model: ServiceCategoryQueryOperator
        subtype_name: ServiceCategoryQueryOperator
      - subtype_model: ServiceTypeQueryOperator
        subtype_name: ServiceTypeQueryOperator
      - subtype_model: CompartmentNameQueryOperator
        subtype_name: CompartmentNameQueryOperator
      - subtype_model: ResourceQueryExtraKeyValue
        subtype_name: ResourceQueryExtraKeyValue
      - subtype_model: WorkFlowIdQueryOperator
        subtype_name: WorkFlowIdQueryOperator
      - subtype_model: RecommendationSubClassificationQueryOperator
        subtype_name: RecommendationSubClassificationQueryOperator
      - subtype_model: ServiceNowCmdbQuerySyncLogResourceId
        subtype_name: ServiceNowCmdbQuerySyncLogResourceId
      - subtype_model: ServiceNowCmdbQuerySyncLogResourceType
        subtype_name: ServiceNowCmdbQuerySyncLogResourceType
      - subtype_model: ServiceNowCmdbQuerySyncLogAction
        subtype_name: ServiceNowCmdbQuerySyncLogAction
      - subtype_model: ServiceNowCmdbQuerySyncLogStatus
        subtype_name: ServiceNowCmdbQuerySyncLogStatus
      - subtype_model: ServiceNowCmdbQuerySyncLogService
        subtype_name: ServiceNowCmdbQuerySyncLogService
      - subtype_model: ServiceAccountNativeDetailsQueryOperator
        subtype_name: ServiceAccountNativeDetailsQueryOperator
      - subtype_model: ServiceAccountStatusQueryOperator
        subtype_name: ServiceAccountStatusQueryOperator
      - subtype_model: ServiceAccountTagKeyQueryOperator
        subtype_name: ServiceAccountTagKeyQueryOperator
      - subtype_model: ServiceAccountTagKeyRegexQueryOperator
        subtype_name: ServiceAccountTagKeyRegexQueryOperator
      - subtype_model: ServiceAccountTagKeyValueQueryOperator
        subtype_name: ServiceAccountTagKeyValueQueryOperator
      - subtype_model: ApplicableHealthMetricsQueryOperator
        subtype_name: ApplicableHealthMetricsQueryOperator
      - subtype_model: EpssScoreRangeQueryOperator
        subtype_name: EpssScoreRangeQueryOperator
      - subtype_model: CvssMetricScoreRangeQueryOperator
        subtype_name: CvssMetricScoreRangeQueryOperator
      - subtype_model: GraphionScoreRangeQueryOperator
        subtype_name: GraphionScoreRangeQueryOperator
      - subtype_model: AppSecopsApplicationIdQueryOperator
        subtype_name: AppSecopsApplicationIdQueryOperator
      - subtype_model: AppSecopsPortfolioIdQueryOperator
        subtype_name: AppSecopsPortfolioIdQueryOperator
      - subtype_model: AppSecopsProjectIdQueryOperator
        subtype_name: AppSecopsProjectIdQueryOperator
      - subtype_model: AppSecopsSbomComponentIdQueryOperator
        subtype_name: AppSecopsSbomComponentIdQueryOperator
      - subtype_model: AppSecopsSbomVersionIdQueryOperator
        subtype_name: AppSecopsSbomVersionIdQueryOperator
      - subtype_model: AppSecopsComponentProductQueryOperator
        subtype_name: AppSecopsComponentProductQueryOperator
      - subtype_model: AppSecopsSbomComponentTypeQueryOperator
        subtype_name: AppSecopsSbomComponentTypeQueryOperator
      - subtype_model: AppSecopsSbomVersionSubmittedByQueryOperator
        subtype_name: AppSecopsSbomVersionSubmittedByQueryOperator
      - subtype_model: AppSecopsSbomVersionSubmittedDateQueryOperator
        subtype_name: AppSecopsSbomVersionSubmittedDateQueryOperator
      - subtype_model: AppSecopsSbomVersionBuildIdQueryOperator
        subtype_name: AppSecopsSbomVersionBuildIdQueryOperator
      - subtype_model: AppSecopsSbomNameQueryOperator
        subtype_name: AppSecopsSbomNameQueryOperator
      - subtype_model: AppSecopsCveIdQueryOperator
        subtype_name: AppSecopsCveIdQueryOperator
      - subtype_model: AppSecopsEpssScoreQueryOperator
        subtype_name: AppSecopsEpssScoreQueryOperator
      - subtype_model: AppSecopsCvssScoreQueryOperator
        subtype_name: AppSecopsCvssScoreQueryOperator
      - subtype_model: AppSecopsGraphionScoreQueryOperator
        subtype_name: AppSecopsGraphionScoreQueryOperator
      - subtype_model: SecopsVulnerabilitySeverityQueryOperator
        subtype_name: SecopsVulnerabilitySeverityQueryOperator
      - subtype_model: AppSecopsIsKnownExploitedVulnerabilityQueryOperator
        subtype_name: AppSecopsIsKnownExploitedVulnerabilityQueryOperator
      - subtype_model: AppSecopsVulnerabilityExploitabilityMetricAttackVectorV31QueryOperator
        subtype_name: AppSecopsVulnerabilityExploitabilityMetricAttackVectorV31QueryOperator
      - subtype_model: AppSecopsFixAvailableQueryOperator
        subtype_name: AppSecopsFixAvailableQueryOperator
      - subtype_model: AppSecopsVulnerabilityExploitabilityMetricAttackComplexityV31QueryOperator
        subtype_name: AppSecopsVulnerabilityExploitabilityMetricAttackComplexityV31QueryOperator
      - subtype_model: AppSecopsVulnerabilityExploitabilityMetricPrivilegesRequiredV31QueryOperator
        subtype_name: AppSecopsVulnerabilityExploitabilityMetricPrivilegesRequiredV31QueryOperator
      - subtype_model: AppSecopsVulnerabilityExploitabilityMetricScopeV31QueryOperator
        subtype_name: AppSecopsVulnerabilityExploitabilityMetricScopeV31QueryOperator
      - subtype_model: AppSecopsVulnerabilityExploitabilityUserInteractionV31QueryOperator
        subtype_name: AppSecopsVulnerabilityExploitabilityUserInteractionV31QueryOperator
      - subtype_model: AppSecopsVulnerabilityImpactMetricConfidentialityImpactV31QueryOperator
        subtype_name: AppSecopsVulnerabilityImpactMetricConfidentialityImpactV31QueryOperator
      - subtype_model: AppSecopsVulnerabilityImpactMetricIntegrityImpactV31QueryOperator
        subtype_name: AppSecopsVulnerabilityImpactMetricIntegrityImpactV31QueryOperator
      - subtype_model: AppSecopsVulnerabilityImpactMetricAvailabilityImpactV31QueryOperator
        subtype_name: AppSecopsVulnerabilityImpactMetricAvailabilityImpactV31QueryOperator
      - subtype_model: AppSecopsContainerFindingsSBOMVersionIdsQueryOperator
        subtype_name: AppSecopsContainerFindingsSBOMVersionIdsQueryOperator
      - subtype_model: AppSecopsContainerFindingsCategoryQueryOperator
        subtype_name: AppSecopsContainerFindingsCategoryQueryOperator
      - subtype_model: AppSecopsContainerFindingsExecutionPhaseQueryOperator
        subtype_name: AppSecopsContainerFindingsExecutionPhaseQueryOperator
      - subtype_model: AppSecopsContainerFindingsSeverityQueryOperator
        subtype_name: AppSecopsContainerFindingsSeverityQueryOperator
      - subtype_model: AppSecopsContainerFindingsStatusQueryOperator
        subtype_name: AppSecopsContainerFindingsStatusQueryOperator
      - subtype_model: DimensionSourceQueryOperator
        subtype_name: DimensionSourceQueryOperator
      - subtype_model: DimensionQueryOperator
        subtype_name: DimensionQueryOperator
      - subtype_model: ResourceTypeQueryOperator
        subtype_name: ResourceTypeQueryOperator
      - subtype_model: PodIdRegexQueryOperator
        subtype_name: PodIdRegexQueryOperator
      - subtype_model: PodNameRegexQueryOperator
        subtype_name: PodNameRegexQueryOperator
      - subtype_model: ContainerIdRegexQueryOperator
        subtype_name: ContainerIdRegexQueryOperator
      - subtype_model: PodNamesQueryOperator
        subtype_name: PodNamesQueryOperator
      - subtype_model: PodIdsQueryOperator
        subtype_name: PodIdsQueryOperator
      - subtype_model: UtilizationTypeQueryOperator
        subtype_name: UtilizationTypeQueryOperator
      - subtype_model: ResourceIdRegexQueryOperator
        subtype_name: ResourceIdRegexQueryOperator
      - subtype_model: ResourceNameRegexQueryOperator
        subtype_name: ResourceNameRegexQueryOperator
      - subtype_model: ExtrasValueRegexQueryOperator
        subtype_name: ExtrasValueRegexQueryOperator
      - subtype_model: TagKeyValueRegexQueryOperator
        subtype_name: TagKeyValueRegexQueryOperator
      - subtype_model: ResourceQueryTagKeyKind
        subtype_name: ResourceQueryTagKeyKind
      - subtype_model: ResourceQueryTagKeyValuesKind
        subtype_name: ResourceQueryTagKeyValuesKind
      - subtype_model: TagKeyStringValueRegexQueryOperator
        subtype_name: TagKeyStringValueRegexQueryOperator
      - subtype_model: TagKindStringKeyRegexQueryOperator
        subtype_name: TagKindStringKeyRegexQueryOperator
      - subtype_model: ServiceAccountNameRegexQueryOperator
        subtype_name: ServiceAccountNameRegexQueryOperator
      - subtype_model: TenantNameRegexQueryOperator
        subtype_name: TenantNameRegexQueryOperator
      - subtype_model: PlatFormAccountQueryOperator
        subtype_name: PlatFormAccountQueryOperator
      - subtype_model: BillingLineItemTypeQueryOperator
        subtype_name: BillingLineItemTypeQueryOperator
      - subtype_model: BillingEntityQueryOperator
        subtype_name: BillingEntityQueryOperator
      - subtype_model: LineItemDescriptionQueryOperator
        subtype_name: LineItemDescriptionQueryOperator
      - subtype_model: LineItemDescriptionRegexQueryOperator
  

# --- truncated at 32 KB (44 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/corestack/refs/heads/main/openapi/corestack-dimensionversion-api-openapi.yml