{
  "x402Version": 2,
  "id": 7627,
  "slug": "7627",
  "resource": "https://jobs.rqmtechnologies.com/x402/buyer-jobs/gate-signal-capture-v1",
  "description": "Problem: Accept or reject this bounded signal capture against the caller-supplied metric rules and return every measurement and violation. Input: JSON with sample rate hz, channels, rules. Result: measurements, violations and checksummed artifacts. Limits: Bounded signal processing only; 8 channels; 1024 samples/channel.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x8F43274b121663b18a0246E9908bac8eAC866C12",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "idempotency_key": "example-gate-signal-capture-v1",
            "max_total_price": "0.005000",
            "request": {
              "channels": [
                {
                  "channel_id": "signal",
                  "role": "signal",
                  "samples": [
                    0,
                    1,
                    0,
                    -1,
                    0,
                    1,
                    0,
                    -1,
                    0,
                    1,
                    0,
                    -1,
                    0,
                    1,
                    0,
                    -1
                  ]
                }
              ],
              "rules": [
                {
                  "channel_id": "signal",
                  "maximum": 1,
                  "metric": "rms",
                  "rule_id": "rms-limit"
                }
              ],
              "sample_rate_hz": 1024,
              "signal_kind": "scalar"
            },
            "schema_version": "rqm.jobs.bazaar-buyer-job-request.v1"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "artifact_names": [
              "strict JSON summary",
              "checksummed artifact manifest"
            ],
            "caller_next_step": "Use the verdict, metrics, model artifact, transformed values, or fixture manifest directly in the caller's following automated decision.",
            "capability_id": "gate-signal-capture-v1",
            "duplicate": false,
            "job_id": "job-gate-signal-capture-v1",
            "product": "wave",
            "quote_id": "00000000-0000-4000-8000-000000000001",
            "reservation_id": "00000000-0000-4000-8000-000000000002",
            "result_schema_digest": "11ca1c9de9aafc6d32525b03f872210278afaf89d9b4fe825f617d2070bcdc58",
            "result_schema_id": "rqm.wave.gate-signal-capture-result.v1",
            "retrieval_token": "rqm_retrieval_<opaque-job-scoped-token>",
            "retrieval_token_expires_in": 86400,
            "retrieval_url": "https://jobs.rqmtechnologies.com/x402/buyer-jobs/gate-signal-capture-v1/jobs/job-gate-signal-capture-v1",
            "schema_version": "rqm.jobs.bazaar-buyer-job-accepted.v1",
            "status": "queued",
            "x402_settlement_id": "00000000-0000-4000-8000-000000000003",
            "x402_transaction_id": "0x<base-transaction>"
          },
          "type": "json"
        }
      },
      "schema": {
        "$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": {
                      "channels": {
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "channel_id": {
                              "maxLength": 64,
                              "minLength": 1,
                              "pattern": "^[A-Za-z0-9._-]+$",
                              "title": "Channel Id",
                              "type": "string"
                            },
                            "role": {
                              "default": "signal",
                              "enum": [
                                "signal",
                                "i",
                                "q"
                              ],
                              "title": "Role",
                              "type": "string"
                            },
                            "samples": {
                              "items": {
                                "type": "number"
                              },
                              "maxItems": 1024,
                              "minItems": 16,
                              "title": "Samples",
                              "type": "array"
                            }
                          },
                          "required": [
                            "channel_id",
                            "samples"
                          ],
                          "title": "SignalChannelRequest",
                          "type": "object"
                        },
                        "maxItems": 8,
                        "minItems": 1,
                        "title": "Channels",
                        "type": "array"
                      },
                      "rules": {
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "channel_id": {
                              "maxLength": 64,
                              "minLength": 1,
                              "title": "Channel Id",
                              "type": "string"
                            },
                            "maximum": {
                              "anyOf": [
                                {
                                  "type": "number"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "default": null,
                              "title": "Maximum"
                            },
                            "metric": {
                              "enum": [
                                "sample_count",
                                "sample_rate_hz",
                                "duration_seconds",
                                "minimum",
                                "maximum",
                                "mean",
                                "rms",
                                "standard_deviation",
                                "peak_to_peak",
                                "frequency_resolution_hz",
                                "nyquist_frequency_hz",
                                "dominant_frequency_hz",
                                "dominant_amplitude"
                              ],
                              "title": "Metric",
                              "type": "string"
                            },
                            "minimum": {
                              "anyOf": [
                                {
                                  "type": "number"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "default": null,
                              "title": "Minimum"
                            },
                            "rule_id": {
                              "maxLength": 64,
                              "minLength": 1,
                              "pattern": "^[A-Za-z0-9._-]+$",
                              "title": "Rule Id",
                              "type": "string"
                            }
                          },
                          "required": [
                            "rule_id",
                            "channel_id",
                            "metric"
                          ],
                          "title": "SignalGateMetricRule",
                          "type": "object"
                        },
                        "maxItems": 32,
                        "minItems": 1,
                        "title": "Rules",
                        "type": "array"
                      },
                      "sample_rate_hz": {
                        "exclusiveMinimum": 0,
                        "maximum": 1000000000,
                        "title": "Sample Rate Hz",
                        "type": "number"
                      },
                      "signal_kind": {
                        "default": "multichannel",
                        "enum": [
                          "scalar",
                          "multichannel",
                          "iq"
                        ],
                        "title": "Signal Kind",
                        "type": "string"
                      }
                    },
                    "required": [
                      "sample_rate_hz",
                      "channels",
                      "rules"
                    ],
                    "title": "GateSignalCaptureRequest",
                    "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"
                  },
                  "duplicate": {
                    "type": "boolean"
                  },
                  "job_id": {
                    "type": "string"
                  },
                  "product": {
                    "enum": [
                      "wave",
                      "quantum",
                      "robotics"
                    ]
                  },
                  "quote_id": {
                    "format": "uuid",
                    "type": "string"
                  },
                  "reservation_id": {
                    "format": "uuid",
                    "type": "string"
                  },
                  "result_schema_digest": {
                    "pattern": "^[a-f0-9]{64}$",
                    "type": "string"
                  },
                  "result_schema_id": {
                    "type": "string"
                  },
                  "retrieval_token": {
                    "pattern": "^rqm_retrieval_",
                    "type": "string"
                  },
                  "retrieval_token_expires_in": {
                    "minimum": 1,
                    "type": "integer"
                  },
                  "retrieval_url": {
                    "format": "uri",
                    "type": "string"
                  },
                  "schema_version": {
                    "const": "rqm.jobs.bazaar-buyer-job-accepted.v1"
                  },
                  "status": {
                    "enum": [
                      "queued",
                      "running",
                      "completed"
                    ]
                  },
                  "x402_settlement_id": {
                    "format": "uuid",
                    "type": "string"
                  },
                  "x402_transaction_id": {
                    "type": "string"
                  }
                },
                "required": [
                  "schema_version",
                  "product",
                  "capability_id",
                  "job_id",
                  "status",
                  "quote_id",
                  "reservation_id",
                  "x402_settlement_id",
                  "x402_transaction_id",
                  "retrieval_url",
                  "retrieval_token",
                  "retrieval_token_expires_in",
                  "result_schema_id",
                  "result_schema_digest",
                  "caller_next_step",
                  "duplicate"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "jobs.rqmtechnologies.com",
  "lastUpdated": "2026-09-11T00:41:14.847Z",
  "quality": {
    "calls30d": 3,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-11T00:41:14.184Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "jobs.rqmtechnologies.com",
    "manifest_name": "jobs.rqmtechnologies.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}