ToolAssay

Problem

Problem: Assess this bounded calibration dataset against the supplied residual, coverage, and consistency rules. Input: JSON with length unit, observations, rules. Result: pass, fail, or indeterminate verdict, residual metrics, per-rule evaluations. Limits: Software/model evidence only; 65536 request bytes; 5 s execution.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
619 msmedian answer time
$0.01listed price per call
$0.01price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://jobs.rqmtechnologies.com/x402/buyer-jobs/robotics.assess-calibration-quality.v1

CategoryCode and developer
Provider hostjobs.rqmtechnologies.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 619 ms

Example input (from the provider)

{
  "body": {
    "idempotency_key": "example-robotics.assess-calibration-quality.v1",
    "max_total_price": "0.010000",
    "request": {
      "length_unit": "m",
      "observations": [
        {
          "expected": [
            0,
            0,
            0
          ],
          "observation_id": "p0",
          "observed": [
            0,
            0,
            0
          ]
        },
        {
          "expected": [
            1,
            1,
            1
          ],
          "observation_id": "p1",
          "observed": [
            1.01,
            1,
            1
          ]
        },
        {
          "expected": [
            2,
            2,
            2
          ],
          "observation_id": "p2",
          "observed": [
            2,
            2,
            2
          ]
        }
      ],
      "rules": {
        "maximum_absolute_error": 0.1,
        "maximum_rmse": 0.1,
        "minimum_axis_span": 1,
        "minimum_observations": 3
      },
      "schema_version": "rqm.robotics.calibration-quality-request.v1"
    },
    "schema_version": "rqm.jobs.bazaar-buyer-job-request.v1"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": false,
          "properties": {
            "idempotency_key": {
              "maxLength": 128,
              "minLength": 1,
              "pattern": "^[A-Za-z0-9][A-Za-z0-9._:-]*$",
              "type": "string"
            },
            "max_total_price": {
              "pattern": "^(?:0|[1-9]\\d{0,13})(?:\\.\\d{1,6})?$",
              "type": "string"
            },
            "request": {
              "additionalProperties": false,
              "properties": {
                "length_unit": {
                  "enum": [
                    "m",
                    "cm",
                    "mm"
                  ],
                  "title": "Length Unit",
                  "type": "string"
                },
                "observations": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "expected": {
                        "maxItems": 3,
                        "minItems": 3,
                        "prefixItems": [
                          {
                            "type": "number"
                          },
                          {
                            "type": "number"
                          },
                          {
                            "type": "number"
                          }
                        ],
                        "title": "Expected",
                        "type": "array"
                      },
                      "observation_id": {
                        "maxLength": 64,
                        "minLength": 1,
                        "title": "Observation Id",
                        "type": "string"
                      },
                      "observed": {
                        "maxItems": 3,
                        "minItems": 3,
                        "prefixItems": [
                          {
                            "type": "number"
                          },
                          {
                            "type": "number"
                          },
                          {
                            "type": "number"
                          }
                        ],
                        "title": "Observed",
                        "type": "array"
                      }
                    },
                    "required": [
                      "observation_id",
                      "expected",
                      "observed"
                    ],
                    "title": "CalibrationObservation",
                    "type": "object"
                  },
                  "maxItems": 10000,
                  "minItems": 3,
                  "title": "Observations",
                  "type": "array"
                },
                "rules": {
                  "additionalProperties": false,
                  "properties": {
                    "maximum_absolute_error": {
                      "exclusiveMinimum": 0,
                      "title": "Maximum Absolute Error",
                      "type": "number"
                    },
                    "maximum_rmse": {
                      "exclusiveMinimum": 0,
                      "title": "Maximum Rmse",
                      "type": "number"
                    },
                    "minimum_axis_span": {
                      "minimum": 0,
                      "title": "Minimum Axis Span",
                      "type": "number"
                    },
                    "minimum_observations": {
                      "maximum": 10000,
                      "minimum": 3,
                      "title": "Minimum Observations",
                      "type": "integer"
                    }
                  },
                  "required": [
                    "maximum_rmse",
                    "maximum_absolute_error",
                    "minimum_axis_span",
                    "minimum_observations"
                  ],
                  "title": "CalibrationRules",
                  "type": "object"
                },
                "schema_version": {
                  "const": "rqm.robotics.calibration-quality-request.v1",
                  "default": "rqm.robotics.calibration-quality-request.v1",
                  "title": "Schema Version",
                  "type": "string"
                }
              },
              "required": [
                "length_unit",
                "observations",
                "rules"
              ],
              "title": "CalibrationQualityRequest",
              "type": "object"
            },
            "schema_version": {
              "const": "rqm.jobs.bazaar-buyer-job-request.v1"
            }
          },
          "required": [
            "schema_version",
            "idempotency_key",
            "max_total_price",
            "request"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "additionalProperties": false,
          "properties": {
            "artifact_names": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "caller_next_step": {
              "type": "string"
            },
            "capability_id": {
              "type": "string"
            },
        

This page as JSON