Sift Stack Test Report Service API

Service to manage test reports

Operations 17

GET /api/v1/test-measurements ListTestMeasurements #
POST /api/v1/test-measurements CreateTestMeasurement #
PATCH /api/v1/test-measurements UpdateTestMeasurement #
GET /api/v1/test-measurements/count CountTestMeasurements #
DELETE /api/v1/test-measurements/{measurementId} DeleteTestMeasurement #
POST /api/v1/test-measurements:batch CreateTestMeasurements #
GET /api/v1/test-reports ListTestReports #
POST /api/v1/test-reports CreateTestReport #
PATCH /api/v1/test-reports UpdateTestReport #
GET /api/v1/test-reports/{testReportId} GetTestReport #
DELETE /api/v1/test-reports/{testReportId} DeleteTestReport #
POST /api/v1/test-reports:import ImportTestReport #
GET /api/v1/test-steps ListTestSteps #
POST /api/v1/test-steps CreateTestStep #
PATCH /api/v1/test-steps UpdateTestStep #
GET /api/v1/test-steps/count CountTestSteps #
DELETE /api/v1/test-steps/{testStepId} DeleteTestStep #

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-testreportservice-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

sift-stack-testreportservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sift Test Report Service API
  version: '1.0'
  description: Service to manage test reports
servers:
- url: https://api.siftstack.com
  description: Production
- url: https://gov.api.siftstack.com
  description: Gov
security:
- BearerAuth: []
tags:
- name: TestReportService
  description: Service to manage test reports
paths:
  /api/v1/test-measurements:
    get:
      summary: ListTestMeasurements
      description: Lists test measurements with optional filtering
      operationId: TestReportService_ListTestMeasurements
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ListTestMeasurementsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: pageSize
        description: 'The maximum number of test measurements to return.

          The service may return fewer than this value.

          If unspecified, at most 50 test measurements will be returned.

          The maximum value is 1000; values above 1000 will be coerced to 1000.'
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: pageToken
        description: 'A page token, received from a previous `ListTestMeasurements` call.

          Provide this to retrieve the subsequent page.

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

          the call that provided the page token.'
        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 `measurement_id`, `measurement_type`, `name`, `test_step_id`,

          `test_report_id`, `numeric_value`, `string_value`, `boolean_value`, `passed`, `timestamp`,

          `created_date`, `modified_date`, and `metadata`.

          Metadata can be used in filters by using `metadata.{metadata_key_name}` as the field name.

          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 test measurements. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...".

          Available fields to order_by are `measurement_id`, `name`, `measurement_type`, `test_step_id`, `test_report_id`,

          `passed`, `timestamp`, `created_date`, and `modified_date`.

          If left empty, items are ordered by `timestamp` in ascending order.

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

          Example: "timestamp asc,name"'
        in: query
        required: false
        schema:
          type: string
      tags:
      - TestReportService
    post:
      summary: CreateTestMeasurement
      description: Creates a test measurement
      operationId: TestReportService_CreateTestMeasurement
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1CreateTestMeasurementResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1CreateTestMeasurementRequest'
        required: true
      tags:
      - TestReportService
    patch:
      summary: UpdateTestMeasurement
      description: Updates a test measurement
      operationId: TestReportService_UpdateTestMeasurement
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1UpdateTestMeasurementResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1UpdateTestMeasurementRequest'
        required: true
      tags:
      - TestReportService
  /api/v1/test-measurements/count:
    get:
      summary: CountTestMeasurements
      description: Counts test measurements with optional filtering
      operationId: TestReportService_CountTestMeasurements
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1CountTestMeasurementsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: filter
        description: 'A [Common Expression Language (CEL)](https://github.com/google/cel-spec) filter string.

          Available fields to filter by are `measurement_id`, `measurement_type`, `name`, `test_step_id`,

          `test_report_id`, `numeric_value`, `string_value`, `boolean_value`, `passed`, `timestamp`,

          `created_date`, `modified_date`, and `metadata`.

          Metadata can be used in filters by using `metadata.{metadata_key_name}` as the field name.

          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
      tags:
      - TestReportService
  /api/v1/test-measurements/{measurementId}:
    delete:
      summary: DeleteTestMeasurement
      description: Deletes a test measurement
      operationId: TestReportService_DeleteTestMeasurement
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1DeleteTestMeasurementResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: measurementId
        description: The ID of the test measurement to delete
        in: path
        required: true
        schema:
          type: string
      tags:
      - TestReportService
  /api/v1/test-measurements:batch:
    post:
      summary: CreateTestMeasurements
      description: Creates multiple test measurements in a single request
      operationId: TestReportService_CreateTestMeasurements
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1CreateTestMeasurementsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1CreateTestMeasurementsRequest'
        required: true
      tags:
      - TestReportService
  /api/v1/test-reports:
    get:
      summary: ListTestReports
      description: Lists test reports with optional filtering
      operationId: TestReportService_ListTestReports
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ListTestReportsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: pageSize
        description: 'The maximum number of test reports to return.

          The service may return fewer than this value.

          If unspecified, at most 50 test reports will be returned.

          The maximum value is 1000; values above 1000 will be coerced to 1000.'
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: pageToken
        description: 'A page token, received from a previous `ListTestReports` call.

          Provide this to retrieve the subsequent page.

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

          the call that provided the page token.'
        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 `test_report_id`, `status`, `name`, `test_system_name`,

          `test_case`, `start_time`, `end_time`, `serial_number`, `created_by_user_id`, `modified_by_user_id`,

          `part_number`, `system_operator`, `run_id`, `archived_date`, and `metadata`.

          Metadata can be used in filters by using `metadata.{metadata_key_name}` as the field name.

          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 test reports. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...".

          Available fields to order_by are `test_report_id`, `name`, `test_system_name`, `test_case`, `start_time`, `end_time`,

          `created_date`, and `modified_date`.

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

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

          Example: "start_time desc,name"'
        in: query
        required: false
        schema:
          type: string
      tags:
      - TestReportService
    post:
      summary: CreateTestReport
      description: Creates a test report
      operationId: TestReportService_CreateTestReport
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1CreateTestReportResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1CreateTestReportRequest'
        required: true
      tags:
      - TestReportService
    patch:
      summary: UpdateTestReport
      description: Updates a test report
      operationId: TestReportService_UpdateTestReport
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1UpdateTestReportResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1UpdateTestReportRequest'
        required: true
      tags:
      - TestReportService
  /api/v1/test-reports/{testReportId}:
    get:
      summary: GetTestReport
      description: Gets a single test report
      operationId: TestReportService_GetTestReport
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GetTestReportResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: testReportId
        description: The ID of the test report to get
        in: path
        required: true
        schema:
          type: string
      tags:
      - TestReportService
    delete:
      summary: DeleteTestReport
      description: Deletes a test report
      operationId: TestReportService_DeleteTestReport
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1DeleteTestReportResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: testReportId
        description: The ID of the test report to delete
        in: path
        required: true
        schema:
          type: string
      tags:
      - TestReportService
  /api/v1/test-reports:import:
    post:
      summary: ImportTestReport
      description: Imports a test report from an already-uploaded file.
      operationId: TestReportService_ImportTestReport
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ImportTestReportResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ImportTestReportRequest'
        required: true
      tags:
      - TestReportService
  /api/v1/test-steps:
    get:
      summary: ListTestSteps
      description: Lists test steps with optional filtering
      operationId: TestReportService_ListTestSteps
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ListTestStepsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: pageSize
        description: 'The maximum number of test steps to return.

          The service may return fewer than this value.

          If unspecified, at most 50 test steps will be returned.

          The maximum value is 1000; values above 1000 will be coerced to 1000.'
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: pageToken
        description: 'A page token, received from a previous `ListTestSteps` call.

          Provide this to retrieve the subsequent page.

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

          the call that provided the page token.'
        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 `test_step_id`, `test_report_id`, `parent_step_id`, `name`,

          `description`, `step_type`, `step_path`, `status`, `start_time`, `end_time`,

          `error_code`, `error_message`, `created_date`, `modified_date`, and `metadata`.

          Metadata can be used in filters by using `metadata.{metadata_key_name}` as the field name.

          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 test steps. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...".

          Available fields to order_by are `test_step_id`, `name`, `step_type`, `step_path`, `status`,

          `start_time`, `end_time`, `created_date`, and `modified_date`.

          If left empty, items are ordered by `step_path` in ascending order.

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

          Example: "step_path asc,start_time desc"'
        in: query
        required: false
        schema:
          type: string
      tags:
      - TestReportService
    post:
      summary: CreateTestStep
      description: Creates a test step
      operationId: TestReportService_CreateTestStep
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1CreateTestStepResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1CreateTestStepRequest'
        required: true
      tags:
      - TestReportService
    patch:
      summary: UpdateTestStep
      description: Updates a test step
      operationId: TestReportService_UpdateTestStep
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1UpdateTestStepResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1UpdateTestStepRequest'
        required: true
      tags:
      - TestReportService
  /api/v1/test-steps/count:
    get:
      summary: CountTestSteps
      description: Counts test steps with optional filtering
      operationId: TestReportService_CountTestSteps
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1CountTestStepsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: filter
        description: 'A [Common Expression Language (CEL)](https://github.com/google/cel-spec) filter string.

          Available fields to filter by are `test_step_id`, `test_report_id`, `parent_step_id`, `name`,

          `description`, `step_type`, `step_path`, `status`, `start_time`, `end_time`,

          `error_code`, `error_message`, `created_date`, `modified_date`, and `metadata`.

          Metadata can be used in filters by using `metadata.{metadata_key_name}` as the field name.

          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
      tags:
      - TestReportService
  /api/v1/test-steps/{testStepId}:
    delete:
      summary: DeleteTestStep
      description: Deletes a test step
      operationId: TestReportService_DeleteTestStep
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1DeleteTestStepResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      parameters:
      - name: testStepId
        description: The ID of the test step to delete
        in: path
        required: true
        schema:
          type: string
      tags:
      - TestReportService
components:
  schemas:
    v1TestStatus:
      type: string
      enum:
      - TEST_STATUS_UNSPECIFIED
      - TEST_STATUS_DRAFT
      - TEST_STATUS_PASSED
      - TEST_STATUS_FAILED
      - TEST_STATUS_ABORTED
      - TEST_STATUS_ERROR
      - TEST_STATUS_IN_PROGRESS
      - TEST_STATUS_SKIPPED
      default: TEST_STATUS_UNSPECIFIED
      title: '- TEST_STATUS_DRAFT: Barebones test report created, waiting for file processing'
    v1UpdateTestMeasurementRequest:
      type: object
      properties:
        testMeasurement:
          $ref: '#/components/schemas/v1TestMeasurement'
        updateMask:
          type: string
          description: 'The field mask specifying which fields to update. The fields available to be updated are

            `name`, `measurement_type`, `numeric_value`, `string_value`, `boolean_value`, `unit`, `numeric_bounds`,

            `string_bounds`, `passed`, `timestamp`, `description`, and `channel_names` and `metadata`. When `metadata` is in the

            mask, the supplied list replaces all existing metadata for the measurement; sending

            an empty or omitted list clears all metadata.'
      title: Request message for UpdateTestMeasurement
      required:
      - testMeasurement
    v1MetadataKeyType:
      type: string
      enum:
      - METADATA_KEY_TYPE_UNSPECIFIED
      - METADATA_KEY_TYPE_STRING
      - METADATA_KEY_TYPE_NUMBER
      - METADATA_KEY_TYPE_BOOLEAN
      - METADATA_KEY_TYPE_RELATION
      default: METADATA_KEY_TYPE_UNSPECIFIED
      description: "Metadata key type.\n\n - METADATA_KEY_TYPE_STRING: string\n - METADATA_KEY_TYPE_NUMBER: number\n - METADATA_KEY_TYPE_BOOLEAN: boolean\n - METADATA_KEY_TYPE_RELATION: relation — references another resource by UUID (e.g. folder membership)"
    v1CreateTestReportResponse:
      type: object
      properties:
        testReport:
          $ref: '#/components/schemas/v1TestReport'
      title: Response message for CreateTestReport
    v1UpdateTestMeasurementResponse:
      type: object
      properties:
        testMeasurement:
          $ref: '#/components/schemas/v1TestMeasurement'
      title: Response message for UpdateTestMeasurement
    v1CreateTestMeasurementsRequest:
      type: object
      properties:
        testMeasurements:
          type: array
          items:
            $ref: '#/components/schemas/v1TestMeasurement'
          title: The test measurements to create
      title: Request message for CreateTestMeasurements
      required:
      - testMeasurements
    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    }"
    v1StringBounds:
      type: object
      properties:
        expectedValue:
          type: string
      required:
      - expectedValue
    v1CreateTestMeasurementRequest:
      type: object
      properties:
        testMeasurement:
          $ref: '#/components/schemas/v1TestMeasurement'
      title: Request message for CreateTestMeasurement
      required:
      - testMeasurement
    v1GetTestReportResponse:
      type: object
      properties:
        testReport:
          $ref: '#/components/schemas/v1TestReport'
      title: Response message for GetTestReport
    v1ListTestReportsResponse:
      type: object
      properties:
        testReports:
          type: array
          items:
            $ref: '#/components/schemas/v1TestReport'
          title: The list of test reports
        nextPageToken:
          type: string
          title: The next page token for pagination
      title: Response message for ListTestReports
    v1UpdateTestReportRequest:
      type: object
      properties:
        testReport:
          $ref: '#/components/schemas/v1TestReport'
        updateMask:
          type: string
          description: 'The field mask specifying which fields to update. The fields available to be updated are

            `status`, `name`, `test_system_name`, `test_case`, `start_time`, `end_time`, `serial_number`,

            `part_number`, `system_operator`, `run_id`, and `is_archived`.'
      title: Request message for UpdateTestReport
      required:
      - testReport
    v1DeleteTestReportResponse:
      type: object
      description: Empty response indicating successful deletion
      title: Response message for DeleteTestReport
    v1ListTestStepsResponse:
      type: object
      properties:
        testSteps:
          type: array
          items:
            $ref: '#/components/schemas/v1TestStep'
          title: The list of test steps
        nextPageToken:
          type: string
          title: The next page token for pagination
      title: Response message for ListTestSteps
    v1CountTestMeasurementsResponse:
      type: object
      properties:
        count:
          type: string
          format: int64
          title: The total count of test measurements matching the filter
      title: Response message for CountTestMeasurements
    v1ListTestMeasurementsResponse:
      type: object
      properties:
        testMeasurements:
          type: array
          items:
            $ref: '#/components/schemas/v1TestMeasurement'
          title: The list of test measurements
        nextPageToken:
          type: string
          title: The next page token for pagination
      title: Response message for ListTestMeasurements
    v1CreateTestStepResponse:
      type: object
      properties:
        testStep:
          $ref: '#/components/schemas/v1TestStep'
      title: Response message for CreateTestStep
    v1UpdateTestReportResponse:
      type: object
      properties:
        testReport:
          $ref: '#/components/schemas/v1TestReport'
      title: Response message for UpdateTestReport
    v1MetadataKey:
      type: object
      properties:
        name:
          type: string
        type:
          $ref: '#/components/schemas/v1MetadataKeyType'
        archivedDate:
          type: string
          format: date-time
        isArchived:
          type: boolean
          description: "Whether the metadata key is archived. This is inferred from whether archived_date is set.\n\nThe filter field type this key maps to, so a client can build a CEL filter\n against it (`metadata[\"<name>\"]`) and resolve its operators and functions\n from FilterGrammarService. Derived from `type`."
      required:
      - name
      - type
    v1UpdateTestStepResponse:
      type: object
      properties:
        testStep:
          $ref: '#/components/schemas/v1TestStep'
      title: Response message for UpdateTestStep
    v1CreateTestMeasurementResponse:
      type: object
      properties:
        testMeasurement:
          $ref: '#/components/schemas/v1TestMeasurement'
      title: Response message for CreateTestMeasurement
    v1UpdateTestStepRequest:
      type: object
      properties:
        testStep:
          $ref: '#/components/schemas/v1TestStep'
        updateMask:
          type: string
          description: 'The field mask specifying which fields to update. The fields available to be updated are

            `name`, `description`, `step_type`, `step_path`, `test_case`, `status`,

            `start_time`, `end_time`, `error_info`, and `metadata`. When `metadata` is in the

            mask, the supplied list replaces all existing metadata for the test step; sending an

            empty or omitted list clears all metadata.'
      title: Request message for UpdateTestStep
      required:
      - testStep
    v1NumericBounds:
      type:

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