CoreStack Schedules API

Schedules

Operations 8

POST /v1/schedules/batch Fetch a batch of schedules #
POST /v1/schedules/create Creates a Schedule #
DELETE /v1/schedules/item/{schedule_id} Delete Schedule #
GET /v1/schedules/item/{schedule_id} Retrieve Schedule #
POST /v1/schedules/item/{schedule_id} Updates a Schedule #
POST /v1/schedules/item/{schedule_id}/set_next_execution Set Next Execution of a Schedule #
GET /v1/schedules/item/{schedule_id}/skip_next_execution Skip next execution of a Schedule #
POST /v1/schedules/list List Schedules of given category #

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-schedules-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-schedules-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CoreStack External Schedules API
  version: 1.0.0
  termsOfService: http://corestack.io/
  license:
    name: CoreStack Inc License
    url: http://corestack.io/licenses/LICENSE-2.0.html
  description: Schedules
servers:
- url: /
tags:
- name: Schedules
  description: Schedules
paths:
  /v1/schedules/batch:
    post:
      responses:
        '500':
          description: Internal Server Error
          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: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ScheduleDetails'
      summary: Fetch a batch of schedules
      description: Fetch a batch of schedules
      operationId: SchedulesBatch
      security:
      - auth_token: []
      tags:
      - Schedules
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RecordIdentityBatchRequest'
        required: true
  /v1/schedules/create:
    post:
      responses:
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduleDetails'
      summary: Creates a Schedule
      description: Creates a Schedule
      operationId: CreateSchedule
      security:
      - auth_token: []
      tags:
      - Schedules
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScheduleDetails'
        required: true
  /v1/schedules/item/{schedule_id}:
    delete:
      responses:
        '500':
          description: Internal Server Error
          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: Deleted
          content:
            application/json:
              schema:
                type: boolean
      summary: Delete Schedule
      description: Delete given schedule
      operationId: ScheduleDelete
      parameters:
      - name: schedule_id
        in: path
        required: true
        description: Specify the schedule Id to remove the schedule data
        schema:
          type: string
      security:
      - auth_token: []
      tags:
      - Schedules
    get:
      responses:
        '500':
          description: Internal Server Error
          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
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduleDetails'
      summary: Retrieve Schedule
      description: Retrieve details of given schedule
      operationId: ScheduleGet
      parameters:
      - name: schedule_id
        in: path
        required: true
        description: Specify the schedule Id to retrieve the schedule data
        schema:
          type: string
      security:
      - auth_token: []
      tags:
      - Schedules
    post:
      responses:
        '500':
          description: Internal Server Error
          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: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduleDetails'
      summary: Updates a Schedule
      description: Update schedule
      operationId: ScheduleUpdate
      parameters:
      - name: schedule_id
        in: path
        required: true
        description: Specify the schedule Id to update the schedule data
        schema:
          type: string
      security:
      - auth_token: []
      tags:
      - Schedules
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScheduleDetails'
        required: true
  /v1/schedules/item/{schedule_id}/set_next_execution:
    post:
      responses:
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: boolean
      summary: Set Next Execution of a Schedule
      description: Set Next Execution of a Schedule
      operationId: SetNextExecutionSchedule
      parameters:
      - name: schedule_id
        in: path
        required: true
        description: Specify the schedule Id to remove the schedule data
        schema:
          type: string
      security:
      - auth_token: []
      tags:
      - Schedules
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScheduleSetNextExecutionRequest'
        required: true
  /v1/schedules/item/{schedule_id}/skip_next_execution:
    get:
      responses:
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelError'
        '200':
          description: Skipped
          content:
            application/json:
              schema:
                type: boolean
      summary: Skip next execution of a Schedule
      description: Skip next execution of a Schedule
      operationId: SkipNextExecutionSchedule
      parameters:
      - name: schedule_id
        in: path
        required: true
        description: Specify the schedule Id to remove the schedule data
        schema:
          type: string
      security:
      - auth_token: []
      tags:
      - Schedules
  /v1/schedules/list:
    post:
      responses:
        '500':
          description: Internal Server Error
          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: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduleListResponse'
      summary: List Schedules of given category
      description: List schedules of given Category
      operationId: ScheduleList
      security:
      - auth_token: []
      tags:
      - Schedules
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScheduleListRequest'
        required: true
components:
  schemas:
    ListContext:
      properties:
        batch_size:
          type: integer
          description: Max number of ids in the response
        batch_offset:
          type: integer
          description: Offset of batches into the results. First batch is 0
        total:
          type: integer
          description: Total number of results
      type: object
    ScheduleExecutionNotificationWebhook:
      required:
      - __type
      properties:
        webhook_id:
          type: string
          description: Webhook ID to trigger notification
      discriminator:
        propertyName: __type
      type: object
      x-cs-type-name: ScheduleExecutionNotificationWebhook
      x-cs-subtypes:
      - subtype_model: ScheduleExecutionNotificationWebHookForStandardType
        subtype_name: ScheduleExecutionNotificationWebHookForStandardType
    ScheduleListRequest:
      properties:
        list_context:
          description: Optional list context
          $ref: '#/components/schemas/ListContext'
        sort:
          type: array
          description: Sort criteria
          items:
            $ref: '#/components/schemas/ScheduleListSortCriteria'
        filters:
          description: Filters for the request
          $ref: '#/components/schemas/ScheduleFilter'
      type: object
    ScheduleListSortCriteria:
      required:
      - column
      properties:
        column:
          type: string
          example: Name
          enum:
          - Name
          - CreatedAt
          - UpdatedAt
          - NextRun
          x-cs-enum-type: ScheduleListSortColumn
        ascending:
          type: boolean
      type: object
    ScheduleFilter:
      required:
      - tenant_id
      properties:
        tenant_id:
          type: string
          description: Tenant ID
          x-cs-type: ObjectId
        category:
          type: string
          description: Category of the schedule
          example: ComplianceStandard
          enum:
          - ComplianceStandard
          - Policy
          - PolicyRemediation
          - Reports
          - Script
          - Template
          x-cs-enum-type: ScheduleCategory
        is_active:
          type: boolean
          description: Flag to represent whether the schedule is active or not.
        query:
          $ref: '#/components/schemas/QueryOperator'
      type: object
    ScheduleExecutionParameterBase:
      required:
      - type
      properties: {}
      discriminator:
        propertyName: type
      type: object
      x-cs-subtypes:
      - subtype_model: ScheduleExecutionParameterServiceAccountBase
        subtype_name: ScheduleExecutionParameterServiceAccountBase
      - subtype_model: ScheduleExecutionParameterForTemplateBase
        subtype_name: ScheduleExecutionParameterForTemplateBase
      - subtype_model: ScheduleExecutionParameterForTemplateAwsProvider
        subtype_name: ScheduleExecutionParameterForTemplateAwsProvider
      - subtype_model: ScheduleExecutionParameterForTemplateAzureProvider
        subtype_name: ScheduleExecutionParameterForTemplateAzureProvider
      - subtype_model: ScheduleExecutionParameterForTemplateGcpProvider
        subtype_name: ScheduleExecutionParameterForTemplateGcpProvider
      - subtype_model: ScheduleExecutionParameterForTemplateOciProvider
        subtype_name: ScheduleExecutionParameterForTemplateOciProvider
      - subtype_model: ScheduleExecutionParameterForPolicy
        subtype_name: ScheduleExecutionParameterForPolicy
      - subtype_model: ScheduleExecutionParameterForPolicyRemediation
        subtype_name: ScheduleExecutionParameterForPolicyRemediation
      - subtype_model: ScheduleExecutionParameterForComplianceStandard
        subtype_name: ScheduleExecutionParameterForComplianceStandard
      - subtype_model: ScheduleExecutionParameterForAssessmentRunReport
        subtype_name: ScheduleExecutionParameterForAssessmentRunReport
      - subtype_model: ScheduleExecutionParameterForExecutiveDashboardReport
        subtype_name: ScheduleExecutionParameterForExecutiveDashboardReport
      - subtype_model: ScheduleExecutionParameterForNextGenReport
        subtype_name: ScheduleExecutionParameterForNextGenReport
      - subtype_model: ScheduleExecutionParameterForAssessmentAgentAgenticFeed
        subtype_name: ScheduleExecutionParameterForAssessmentAgentAgenticFeed
      - subtype_model: ScheduleExecutionParameterForScript
        subtype_name: ScheduleExecutionParameterForScript
    ScheduleDetails:
      required:
      - category
      - name
      - resource
      - schedule
      properties:
        schedule_id:
          type: string
          description: ID of the schedule
          x-cs-type: ObjectId
        name:
          type: string
          description: Schedule Name
        category:
          type: string
          description: Category of the schedule.
          example: ComplianceStandard
          enum:
          - ComplianceStandard
          - Policy
          - PolicyRemediation
          - Reports
          - Script
          - Template
          x-cs-enum-type: ScheduleCategory
        source:
          type: string
          description: Source of the schedule creation
          example: Report
          enum:
          - Report
          - ScheduleRecommendation
          x-cs-enum-type: ScheduleSource
        description:
          type: string
          description: Description of the schedule
        recurrence:
          type: string
          description: Re-occurrence of the schedule
          example: Once
          enum:
          - Once
          - Minutes
          - Hours
          - Daily
          - Weekly
          - Monthly
          - Annually
          x-cs-enum-type: ScheduleRecurrence
        next_run:
          type: string
          format: date-time
          description: When will the schedule run for the next time
        last_run:
          type: string
          format: date-time
          description: When the last schedule triggered
        end_run:
          type: string
          format: date-time
          description: Upto when the schedule should run
        schedule:
          description: Schedule date and time details
          $ref: '#/components/schemas/SchedulingDetails'
        timezone:
          type: string
          description: Timezone of the schedule
        resource:
          type: string
          description: ID of the resource which is scheduled. Can be retrieved using the respective List API
        resource_args:
          type: string
          description: Input Parameters for the resource that is scheduled which is a JSON string
        execution_params:
          type: array
          description: Execution parameters for the schedule.
          items:
            $ref: '#/components/schemas/ScheduleExecutionParameterBase'
        notification_configuration:
          description: Notification configuration for the schedule.
          $ref: '#/components/schemas/ScheduleExecutionNotificationConfiguration'
        is_active:
          type: boolean
          description: Flag to represent whether the schedule is active or not.
        is_system_schedule:
          type: boolean
          description: Flag to represent whether the schedule is system scheduled or not.
        tenant_id:
          type: string
          description: Tenant owning the schedule.
          x-cs-type: ObjectId
        created_at:
          type: string
          format: date-time
          description: When the schedule is created
        created_by:
          type: string
          description: Who has created the schedule
        updated_at:
          type: string
          format: date-time
          description: When the schedule is updated
        updated_by:
          type: string
          description: Who has updated the schedule
        background_job:
          description: Identity of the background job used for processing schedule. null if the job has completed
          $ref: '#/components/schemas/RecordIdentity'
      type: object
    ScheduleExecutionNotificationWebHookForStandardType:
      allOf:
      - $ref: '#/components/schemas/ScheduleExecutionNotificationWebhook'
      - properties: {}
        type: object
      x-cs-type-name: ScheduleExecutionNotificationWebHookForStandardType
    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
        subtype_name: LineItemDescriptionRegexQueryOperator
      - subtype_model: MeterSubCategoryQueryOperator
        subtype_name: MeterSubCategoryQueryOperator
      - subtype_model: PricingCategoryQueryOperator
        subtype_name: PricingCategoryQueryOperator
      - subtype_model: PricingPurchaseOptionQueryOperator
        subtype_name: PricingPurchaseOptionQueryOperator
      - subtype_model: TagKeyRegexQueryOperator
        subtype_name: TagKeyRegexQueryOperator
      - subtype_model: BillingLineItemTypeRegexQueryOperator
        subtype_name: BillingLineItemTypeRegexQueryOperator
      - subtype_model: ResourceGroupRegexQueryOperator
        subtype_name: ResourceGroupRegexQueryOperator
      - subtype_model: ResourceCategoryRegexQueryOperator
        subtype_name: ResourceCategoryRegexQueryOperator
      - subtype_model: ProductCategoryRegexQueryOperator
        subtype_name: ProductCategoryRegexQueryOperator
      - subtype_model: BillingEntityRegexQueryOperator
        subtype_name: BillingEntityRegexQueryOperator
      - subtype_model: ResourceOperationRegexQueryOperator
        subtype_name: ResourceOperationRegexQueryOperator
      - subtype_model: ResourceQueryFieldPresence
        subtype_name: ResourceQueryFieldPresence
      - subtype_model: AssessmentRunReportDetailQuerySection

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