Decisiv Diagnostic Readings API

The Diagnostic Readings API from Decisiv — 3 operation(s) for diagnostic readings.

Operations 4

GET /service_management/{srm_account_id}/v1/cases/{case_id}/diagnostic_readings List all Diagnostic Reading for a specific Case in the requested account
GET /telematics/{srm_account_id}/v1/diagnostic_readings List all diagnostic readings for the requested account #
POST /telematics/{srm_account_id}/v1/diagnostic_readings Create a new diagnostic reading #
GET /telematics/{srm_account_id}/v1/diagnostic_readings/{uuid} Get details for a specific diagnostic reading #

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/decisiv-diagnostic-readings-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

decisiv-diagnostic-readings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Decisiv Diagnostic Readings API
  version: 0.48.24
  contact:
    name: Decisiv Support
    email: support@decisiv.com
    url: https://www.decisiv.com
  license:
    name: Proprietary
    identifier: proprietary
    url: https://www.decisiv.com/terms-of-use/
  termsOfService: https://www.decisiv.com/terms-of-use
  description: 'Operations tagged Diagnostic Readings across 2 of this provider''s published API definitions: decisiv-service-management-openapi.yml, decisiv-telematics-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://srm-api.staging.decisivapps.com
- url: https://srm-api.decisivapps.com
security:
- OAuth2AuthorizationCode: []
  AccessToken: []
- OAuth2Password: []
  AccessToken: []
tags:
- name: Diagnostic Readings
paths:
  /service_management/{srm_account_id}/v1/cases/{case_id}/diagnostic_readings:
    get:
      summary: List all Diagnostic Reading for a specific Case in the requested account
      tags:
      - Diagnostic Readings
      parameters:
      - name: srm_account_id
        in: path
        description: The account ID for SRM
        required: true
        schema:
          type: string
      - name: case_id
        in: path
        schema:
          type: string
          format: uuid
        description: The case UUID
        required: true
      - name: page[number]
        in: query
        required: false
        schema:
          type: integer
          default: 1
          minimum: 1
        description: Sets the desired `page` when encountering larger result sets
      - name: page[size]
        in: query
        required: false
        schema:
          type: integer
          default: 25
          minimum: 1
        description: Sets the desired maximum number of results per page
      responses:
        '200':
          description: Returns list of Diagnostic Readings for a case
          content:
            application/vnd.api+json:
              example:
                data:
                - id: 447e4535-78bf-4661-a06f-8dbd39d4f3fb
                  type: diagnostic_readings
                  attributes:
                    triggered_at: 2025-04-10 13:30:41 UTC
                    sensor_readings:
                    - name: AFTRT 1 Intake NOx
                      description: Aftertreatment 1 Intake NOx, Range -200 to 3012.75
                      value: '115.8'
                      unit_of_measure: ppm
                      classification_header: Engine Operation
                      key_data: false
                      localize: false
                    components:
                    - name: ECU
                      description: 'The #1 on the Engine CA is to identify that this is the first PA being used for the particular function, Engine. It may only be used for the NAME Function of 0'
                      version: Engine
                    origin_id: 8b4f10f6-c762-485b-a3df-3e94ca6ad995
                    origin: paccar_remote_diagnostics
                    location:
                      heading: 251
                      altitude: 3649
                      latitude: '-58.28'
                      longitude: '152.41'
                    asset_data:
                      vin: 3B7HF13Z11M269883
                      make: Make
                      year: '2000'
                      model: CH613
                      device_id: null
                      chassis_id: '12312312'
                      serial_number: '19992823'
                  relationships:
                    faults:
                      data:
                      - type: faults
                        id: 1e4797e6-cdb0-4bc1-9cd0-41050e53df17
              schema:
                $ref: '#/components/schemas/diagnostic_readings'
        '400':
          description: This response may occur when an invalid request has been provided to the server.  The request may be corrected by the consumer and resubmitted.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Filter not allowed
                  detail: '''{{filter_name}}'' is not allowed. Valid filters: {{filters_list}}'
                  code: decisiv:filters:001
                  status: '400'
                  source:
                    parameter: filter[filter_name]
              schema:
                $ref: '#/components/schemas/errors_response'
        '401':
          description: This response may occur when the access token provided within the Authorization token has expired.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Access unauthorized
                  detail: Access unauthorized
                  code: decisiv::access_token:001
                  status: '401'
              schema:
                $ref: '#/components/schemas/errors_response'
        '403':
          description: This response may occur when the authenticated user embedded within the Authorization header does not have access to the requested resource.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Forbidden
                  detail: User does not have permission to perform this action on the requested resource(s)
                  code: decisiv:access:001
                  status: '403'
              schema:
                $ref: '#/components/schemas/errors_response'
        '404':
          description: This response may occur when the requested resource is not found.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Record not found
                  detail: The requested record or one of its relationships could not be found
                  code: '404'
                  status: '404'
              schema:
                $ref: '#/components/schemas/errors_response'
        '424':
          description: This response may occur when there is an unresolved data dependency or configuration required inside of the Decisiv Platform preventing access to the requested action.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Failed Dependency
                  detail: Failed Dependency
                  code: '424'
                  status: '424'
              schema:
                $ref: '#/components/schemas/errors_response'
        '504':
          description: This response may occur when there is an unexpected system timeout.
          content:
            application/vnd.api+json:
              example:
                errors:
                - code: '504'
                  detail: Gateway timeout error
                  status: '504'
                  title: Gateway timeout error
              schema:
                $ref: '#/components/schemas/errors_response'
    servers:
    - url: https://srm-api.staging.decisivapps.com
    - url: https://srm-api.decisivapps.com
  /telematics/{srm_account_id}/v1/diagnostic_readings:
    get:
      operationId: listDiagnosticReadings
      summary: List all diagnostic readings for the requested account
      description: Retrieve all diagnostic readings for a specific SRM account.
      tags:
      - Diagnostic Readings
      parameters:
      - name: srm_account_id
        in: path
        description: The account ID for SRM
        required: true
        schema:
          type: string
      - name: filter[asset_data.chassis_id]
        in: query
        required: false
        schema:
          type: string
        description: Filters diagnostic readings by exact match on `asset_data.chassis_id`
      - name: filter[asset_data.device_id]
        in: query
        required: false
        schema:
          type: string
        description: Filters diagnostic readings by exact match on `asset_data.device_id`
      - name: filter[asset_data.serial_number]
        in: query
        required: false
        schema:
          type: string
        description: Filters diagnostic readings by exact match on `asset_data.serial_number`
      - name: filter[asset_data.vin]
        in: query
        required: false
        schema:
          type: string
        description: Filters diagnostic readings by exact match on `asset_data.vin`
      - name: filter[origin]
        in: query
        required: false
        schema:
          type: string
        description: Filters diagnostic readings by exact match on `origin`
      - name: filter[triggered_at:gt]
        in: query
        required: false
        schema:
          type: string
          format: date-time
        description: Returns diagnostic readings with `triggered_at` strictly greater than the provided `ISO8601` date-time
      - name: filter[triggered_at:gte]
        in: query
        required: false
        schema:
          type: string
          format: date-time
        description: Returns diagnostic readings with `triggered_at` greater than or equal to the provided `ISO8601` date-time
      - name: filter[triggered_at:lt]
        in: query
        required: false
        schema:
          type: string
          format: date-time
        description: Returns diagnostic readings with `triggered_at` strictly less than the provided `ISO8601` date-time
      - name: filter[triggered_at:lte]
        in: query
        required: false
        schema:
          type: string
          format: date-time
        description: Returns diagnostic readings with `triggered_at` less than or equal to the provided `ISO8601` date-time
      responses:
        '200':
          description: Returns list of Diagnostic Readings
          content:
            application/vnd.api+json:
              example:
                data:
                - id: 3cad1e59-8eed-410f-9a15-527d11cba0d0
                  type: diagnostic_readings
                  attributes:
                    triggered_at: '2025-03-11T18:48:34Z'
                    sensor_readings:
                    - name: Intake NOx
                      description: Aftertreatment 1 Intake NOx, Range -200 to 3012.75
                      value: '115.8'
                      unit_of_measure: ppm
                      classification_header: Engine Operation
                      key_data: false
                      localize: false
                    components:
                    - name: ECU
                      description: 'The #1 on the Engine CA is to identify that this is the first PA being used for the particular function, Engine. It may only be used for the NAME Function of 0'
                      version: '12'
                    origin_id: 90bd02a4-9ca6-4db6-8cba-c8a24f6ea717
                    origin: name_of_origin
                    location:
                      heading: '251'
                      altitude: '3649'
                      latitude: '-58.28'
                      longitude: '152.41'
                    asset_data:
                      vin: PHFCJ2YS9LB593266
                      make: Make
                      year: '2000'
                      model: CH613
                      device_id: '1234567890'
                      chassis_id: '12312312'
                      serial_number: LB593266
                    external_resources:
                    - href: https://telematics-source.oem-system.com/videos/28972.mp4
                      title: Interactive Video
                      description: Video to accelerate repair time and uptime.
                      classification_header: Repair Information
                      type: video
                  relationships:
                    faults:
                      data:
                      - type: faults
                        id: a6156681-443f-481f-9007-272b99240259
                    source_account:
                      data:
                        type: srm_accounts
                        id: dc8beef2-e304-11ea-86c2-1f9b5bc5281b
                  links:
                    self: https://srm-api.decisivapps.com/telematics/v1/diagnostic_readings/3cad1e59-8eed-410f-9a15-527d11cba0d0
              schema:
                $ref: '#/components/schemas/diagnostic_readings'
        '400':
          description: This response may occur when an invalid request has been provided to the server.  The request may be corrected by the consumer and resubmitted.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Filter not allowed
                  detail: '''{{filter_name}}'' is not allowed. Valid filters: {{filters_list}}'
                  code: decisiv:filters:001
                  status: '400'
                  source:
                    parameter: filter[filter_name]
              schema:
                $ref: '#/components/schemas/errors_response'
        '401':
          description: This response may occur when the access token provided within the Authorization token has expired.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Access unauthorized
                  detail: Access unauthorized
                  code: decisiv::access_token:001
                  status: '401'
              schema:
                $ref: '#/components/schemas/errors_response'
        '403':
          description: This response may occur when the authenticated user embedded within the Authorization header does not have access to the requested resource.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Forbidden
                  detail: User does not have permission to perform this action on the requested resource(s)
                  code: decisiv:access:001
                  status: '403'
              schema:
                $ref: '#/components/schemas/errors_response'
        '404':
          description: This response may occur when the requested resource is not found.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Record not found
                  detail: The requested record or one of its relationships could not be found
                  code: '404'
                  status: '404'
              schema:
                $ref: '#/components/schemas/errors_response'
        '424':
          description: This response may occur when there is an unresolved data dependency or configuration required inside of the Decisiv Platform preventing access to the requested action.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Failed Dependency
                  detail: Failed Dependency
                  code: '424'
                  status: '424'
              schema:
                $ref: '#/components/schemas/errors_response'
        '504':
          description: This response may occur when there is an unexpected system timeout.
          content:
            application/vnd.api+json:
              example:
                errors:
                - code: '504'
                  detail: Gateway timeout error
                  status: '504'
                  title: Gateway timeout error
              schema:
                $ref: '#/components/schemas/errors_response'
    post:
      operationId: createDiagnosticReading
      summary: Create a new diagnostic reading
      description: Create a new diagnostic reading record for a specific SRM account.
      tags:
      - Diagnostic Readings
      parameters:
      - name: srm_account_id
        in: path
        description: The account ID for SRM
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Creates a new Diagnostic Reading record
          content:
            application/vnd.api+json:
              example:
                data:
                  id: 3cad1e59-8eed-410f-9a15-527d11cba0d0
                  type: diagnostic_readings
                  attributes:
                    triggered_at: '2025-03-11T18:48:34Z'
                    sensor_readings:
                    - name: Intake NOx
                      description: Aftertreatment 1 Intake NOx, Range -200 to 3012.75
                      value: '115.8'
                      unit_of_measure: ppm
                      classification_header: Engine Operation
                      key_data: false
                      localize: false
                    components:
                    - name: ECU
                      description: 'The #1 on the Engine CA is to identify that this is the first PA being used for the particular function, Engine. It may only be used for the NAME Function of 0'
                      version: '12'
                    origin_id: 90bd02a4-9ca6-4db6-8cba-c8a24f6ea717
                    origin: name_of_origin
                    location:
                      heading: '251'
                      altitude: '3649'
                      latitude: '-58.28'
                      longitude: '152.41'
                    asset_data:
                      vin: PHFCJ2YS9LB593266
                      make: Make
                      year: '2000'
                      model: CH613
                      device_id: '1234567890'
                      chassis_id: '12312312'
                      serial_number: LB593266
                    external_resources:
                    - href: https://telematics-source.oem-system.com/videos/28972.mp4
                      title: Interactive Video
                      description: Video to accelerate repair time and uptime.
                      classification_header: Repair Information
                      type: video
                  relationships:
                    faults:
                      data:
                      - type: faults
                        id: a6156681-443f-481f-9007-272b99240259
                    source_account:
                      data:
                        type: srm_accounts
                        id: dc8beef2-e304-11ea-86c2-1f9b5bc5281b
                  links:
                    self: https://srm-api.decisivapps.com/telematics/v1/diagnostic_readings/3cad1e59-8eed-410f-9a15-527d11cba0d0
              schema:
                $ref: '#/components/schemas/diagnostic_reading'
        '400':
          description: Invalid Filter / Incorrect attribute for the resource type / Missing required key / Missing required value / Invalid Attribute Value on External Resources Type
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/errors_response'
              examples:
                Invalid Filter:
                  value:
                    errors:
                    - title: Filter not allowed
                      detail: '''{{filter_name}}'' is not allowed. Valid filters: {{filters_list}}'
                      code: decisiv:filters:001
                      status: '400'
                      source:
                        parameter: filter[filter_name]
                Incorrect attribute for the resource type:
                  value:
                    errors:
                    - status: '400'
                      code: decisiv:resource:002
                      title: Invalid JSON:API Resource specified in request
                      detail: '''{{invalid_resource}}'' is an invalid resource'
                      source:
                        pointer: /data/type
                Missing required key:
                  value:
                    errors:
                    - status: '400'
                      code: decisiv:request_attributes:001
                      title: Missing required attribute key
                      detail: Required key not provided in request body
                      source:
                        pointer: /data/attributes/content
                Missing required value:
                  value:
                    errors:
                    - status: '400'
                      code: decisiv:request_attributes:002
                      title: Missing required attribute value
                      detail: Required key must be populated
                      source:
                        pointer: /data/attributes/content
                Invalid Attribute Value on External Resources Type:
                  value:
                    errors:
                    - status: '400'
                      title: Invalid Attribute Value
                      detail: Invalid {{attribute_name}} value provided - {{reason}}
                      code: decisiv:request_attributes:010
                      source:
                        pointer: /data/attributes/external_resources/0/type
        '401':
          description: This response may occur when the access token provided within the Authorization token has expired.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Access unauthorized
                  detail: Access unauthorized
                  code: decisiv::access_token:001
                  status: '401'
              schema:
                $ref: '#/components/schemas/errors_response'
        '403':
          description: This response may occur when the authenticated user embedded within the Authorization header does not have access to the requested resource.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Forbidden
                  detail: User does not have permission to perform this action on the requested resource(s)
                  code: decisiv:access:001
                  status: '403'
              schema:
                $ref: '#/components/schemas/errors_response'
        '429':
          description: This response will often be associated as a result of an over abundance of calls by a specific Application, Account, or IP Address resulting in a required cool off period.
          content:
            application/vnd.api+json:
              example:
                errors:
                - code: '429'
                  detail: The maximum number of requests for this application has been far exceeded with the given credentials.
                  status: '429'
                  title: Too Many Requests
              schema:
                $ref: '#/components/schemas/errors_response'
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/create_diagnostic_reading'
            examples:
              Create diagnostic reading:
                value:
                  data:
                    type: diagnostic_readings
                    attributes:
                      triggered_at: '2025-03-11T18:48:34Z'
                      sensor_readings:
                      - name: Intake NOx
                        description: Aftertreatment 1 Intake NOx, Range -200 to 3012.75
                        value: '115.8'
                        unit_of_measure: ppm
                        classification_header: Engine Operation
                        key_data: false
                        localize: false
                      components:
                      - name: ECU
                        description: 'The #1 on the Engine CA is to identify that this is the first PA being used for the particular function, Engine. It may only be used for the NAME Function of 0'
                        version: '12'
                      origin_id: 90bd02a4-9ca6-4db6-8cba-c8a24f6ea717
                      origin: name_of_origin
                      location:
                        heading: '251'
                        altitude: '3649'
                        latitude: '-58.28'
                        longitude: '152.41'
                      asset_data:
                        vin: PHFCJ2YS9LB593266
                        make: Make
                        year: '2000'
                        model: CH613
                        device_id: '1234567890'
                        chassis_id: '12312312'
                        serial_number: LB593266
                      external_resources:
                      - href: https://telematics-source.oem-system.com/videos/28972.mp4
                        title: Interactive Video
                        description: Video to accelerate repair time and uptime.
                        classification_header: Repair Information
                        type: video
    servers:
    - url: https://srm-api.staging.decisivapps.com
    - url: https://srm-api.decisivapps.com
  /telematics/{srm_account_id}/v1/diagnostic_readings/{uuid}:
    get:
      operationId: getDiagnosticReading
      summary: Get details for a specific diagnostic reading
      description: Retrieve details for a specific diagnostic reading by UUID.
      tags:
      - Diagnostic Readings
      parameters:
      - name: srm_account_id
        in: path
        description: The account ID for SRM
        required: true
        schema:
          type: string
      - name: uuid
        in: path
        schema:
          type: string
          format: uuid
        description: The diagnostic reading UUID
        required: true
      responses:
        '200':
          description: Returns details for the requested diagnostic reading
          content:
            application/vnd.api+json:
              example:
                data:
                  id: 3cad1e59-8eed-410f-9a15-527d11cba0d0
                  type: diagnostic_readings
                  attributes:
                    triggered_at: '2025-03-11T18:48:34Z'
                    sensor_readings:
                    - name: Intake NOx
                      description: Aftertreatment 1 Intake NOx, Range -200 to 3012.75
                      value: '115.8'
                      unit_of_measure: ppm
                      classification_header: Engine Operation
                      key_data: false
                      localize: false
                    components:
                    - name: ECU
                      description: 'The #1 on the Engine CA is to identify that this is the first PA being used for the particular function, Engine. It may only be used for the NAME Function of 0'
                      version: '12'
                    origin_id: 90bd02a4-9ca6-4db6-8cba-c8a24f6ea717
                    origin: name_of_origin
                    location:
                      heading: '251'
                      altitude: '3649'
                      latitude: '-58.28'
                      longitude: '152.41'
                    asset_data:
                      vin: PHFCJ2YS9LB593266
                      make: Make
                      year: '2000'
                      model: CH613
                      device_id: '1234567890'
                      chassis_id: '12312312'
                      serial_number: LB593266
                    external_resources:
                    - href: https://telematics-source.oem-system.com/videos/28972.mp4
                      title: Interactive Video
                      description: Video to accelerate repair time and uptime.
                      classification_header: Repair Information
                      type: video
                  relationships:
                    faults:
                      data:
                      - type: faults
                        id: a6156681-443f-481f-9007-272b99240259
                    source_account:
                      data:
                        type: srm_accounts
                        id: dc8beef2-e304-11ea-86c2-1f9b5bc5281b
                  links:
                    self: https://srm-api.decisivapps.com/telematics/v1/diagnostic_readings/3cad1e59-8eed-410f-9a15-527d11cba0d0
              schema:
                $ref: '#/components/schemas/diagnostic_reading'
        '400':
          description: This response may occur when an invalid request has been provided to the server.  The request may be corrected by the consumer and resubmitted.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Filter not allowed
                  detail: '''{{filter_name}}'' is not allowed. Valid filters: {{filters_list}}'
                  code: decisiv:filters:001
                  status: '400'
                  source:
                    parameter: filter[filter_name]
              schema:
                $ref: '#/components/schemas/errors_response'
        '401':
          description: This response may occur when the access token provided within the Authorization token has expired.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Access unauthorized
                  detail: Access unauthorized
                  code: decisiv::access_token:001
                  status: '401'
              schema:
                $ref: '#/components/schemas/errors_response'
        '403':
          description: This response may occur when the authenticated user embedded within the Authorization header does not have access to the requested resource.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Forbidden
                  detail: User does not have permission to perform this action on the requested resource(s)
                  code: decisiv:access:001
                  status: '403'
              schema:
                $ref: '#/components/schemas/errors_response'
        '404':
          description: This response may occur when the requested resource is not found.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Record not found
                  detail: The requested record or one of its relationships could not be found
                  code: '404'
                  status: '404'
              schema:
                $ref: '#/components/schemas/errors_response'
        '424':
          description: This response may occur when there is an unresolved data dependency or configuration required inside of the Decisiv Platform preventing access to the requested action.
          content:
            application/vnd.api+json:
              example:
                errors:
                - title: Failed Dependency
                  detail: Failed Dependency
                  code: '424'
                  status: '424'
              schema:
                $ref: '#/components/schemas/errors_response'
        '504':
          description: This response may occur when there is an unexpected system timeout.
          content:
            application/vnd.api+json:
              example:
                errors:
                - code: '504'
                  detail: Gateway timeout error
                  status: '504'
                  title: Gateway timeout error
              schema:
                $ref: '#/components/schemas/errors_response'
    servers:
    - url: https://srm-api.staging.decisivapps.com
    - url: https://srm-api.decisivapps.com
components:
  schemas:
    attributes:
      type: object
      properties:
        triggered_at:
          type: string
          format: date-time
          description: Date / Time when the diagnostic was triggered in `ISO8601` format
        sensor_readings:
          type: array
          description: Sensor readings captured at the time of the diagnostic
          items:
            type: object
            properties:
              name:
                type: string
                description: Name of the sensor
              description:
                type: string
                description: Description of the sensor
              value:
                type: string
                description: Sensor reading value
              unit_of_measure:
                type:
                - string
                - 'null'
                description: Unit of measure for the sensor reading
              classification_header:
                type: string
                description: Header group used to classify the reading in the UI
              key_data:
                type: boolean
                description: Flag indicat

# --- truncated at 32 KB (53 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/decisiv/refs/heads/main/openapi/decisiv-diagnostic-readings-api-openapi.yml