{
  "x402Version": 2,
  "id": 3597,
  "slug": "3597",
  "resource": "https://peoplescourt.ai/api/x402/dispute-readiness",
  "description": "Deterministic dispute-readiness report with supported lane, composition, published filing-fee quote, consent and evidence requirements, corpus compatibility, and timing warnings. No case is filed and no merits are assessed.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:84532",
      "payTo": "0x1f08Ba13AAe5313e5281b291828EAA0e084C1157",
      "asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x1DB0475da5d6A9375CA99F1fC275E8e9C119FBd3",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "amountInDisputeUsd": 20,
            "authorityToBindReported": true,
            "claimantEvidenceReady": true,
            "claimantType": "ai_agent",
            "corpusAmountUsd": 20,
            "escrowWindowEndsAt": "2026-07-25T12:00:00.000Z",
            "fastTrackClaimClass": "non_delivery",
            "microClaimsTierConsentReported": true,
            "mutualConsentReported": true,
            "remedialJurisdictionOptInReported": false,
            "remedy": "corpus_allocation",
            "respondentEvidenceReady": true,
            "respondentType": "ai_agent",
            "settlementRail": "x402r"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "composition": {
              "reason": "human_or_mixed_three_member_panel",
              "value": "panel"
            },
            "corpusCompatibility": {
              "compatible": true,
              "detail": "The requested relief is limited to the reported external corpus."
            },
            "disclaimers": {
              "caseFiled": false,
              "legalAdvice": false,
              "meritsAssessed": false,
              "reportedFactsVerified": false,
              "statement": "This automated report checks structured technical readiness only. It does not file a case, verify the reported facts, assess the merits, or provide legal advice."
            },
            "filingFee": {
              "amountUsd": 10,
              "collectionNote": "This published filing-fee quote is separate from the $0.01 price paid for this readiness report.",
              "currency": "USD",
              "floorUsd": 10,
              "panelSurchargeUsd": 0,
              "percent": 5,
              "tier": "panel"
            },
            "lane": "agent",
            "readyToFile": true,
            "requirements": [
              {
                "code": "bilateral_consent",
                "detail": "Both parties must provide case-bound consent under the published Rules before merits review.",
                "satisfied": true
              },
              {
                "code": "authority_to_bind",
                "detail": "Each person or agent acting for a principal must establish authority to bind that principal.",
                "satisfied": true
              },
              {
                "code": "claimant_evidence",
                "detail": "The claimant must be able to identify and submit the evidence supporting the claim.",
                "satisfied": true
              },
              {
                "code": "respondent_process",
                "detail": "The respondent must receive process and an opportunity to answer and submit evidence.",
                "satisfied": true
              },
              {
                "code": "remedy_scope",
                "detail": "The requested relief is limited to the reported external corpus.",
                "satisfied": true
              }
            ],
            "supportedLane": true,
            "timing": {
              "escrowWindowEndsAt": "2026-07-25T12:00:00.000Z",
              "warning": null
            }
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "additionalProperties": false,
                "properties": {
                  "amountInDisputeUsd": {
                    "description": "Amount in dispute in USD.",
                    "maximum": 10000000,
                    "minimum": 0,
                    "type": "number"
                  },
                  "authorityToBindReported": {
                    "description": "Whether signers report authority to bind their principals.",
                    "type": "boolean"
                  },
                  "claimantEvidenceReady": {
                    "description": "Whether claimant evidence is ready for filing.",
                    "type": "boolean"
                  },
                  "claimantType": {
                    "description": "Claimant party category.",
                    "enum": [
                      "human",
                      "organization",
                      "ai_agent"
                    ],
                    "type": "string"
                  },
                  "corpusAmountUsd": {
                    "description": "Bound external corpus in USD, or null when no corpus exists.",
                    "oneOf": [
                      {
                        "maximum": 10000000,
                        "minimum": 0,
                        "type": "number"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "escrowWindowEndsAt": {
                    "description": "Optional settlement deadline in ISO 8601 form.",
                    "format": "date-time",
                    "type": "string"
                  },
                  "fastTrackClaimClass": {
                    "description": "Protocol-derived fast-track class, or null for an ordinary claim.",
                    "oneOf": [
                      {
                        "enum": [
                          "payment_not_settled",
                          "refund_window_expired",
                          "non_delivery",
                          "double_charge",
                          "escrowed_refund_request",
                          "acp_evaluation"
                        ],
                        "type": "string"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "microClaimsTierConsentReported": {
                    "description": "Whether both parties report consent to the micro-claims tier.",
                    "type": "boolean"
                  },
                  "mutualConsentReported": {
                    "description": "Whether bilateral arbitration consent is reported.",
                    "type": "boolean"
                  },
                  "remedialJurisdictionOptInReported": {
                    "description": "Whether both parties report consent to relief beyond a held corpus.",
                    "type": "boolean"
                  },
                  "remedy": {
                    "description": "Requested remedy shape.",
                    "enum": [
                      "corpus_allocation",
                      "money_obligation",
                      "declaratory"
                    ],
                    "type": "string"
                  },
                  "respondentEvidenceReady": {
                    "description": "Whether respondent evidence is expected to be available.",
                    "type": "boolean"
                  },
                  "respondentType": {
                    "description": "Respondent party category.",
                    "enum": [
                      "human",
                      "organization",
                      "ai_agent"
                    ],
                    "type": "string"
                  },
                  "settlementRail": {
                    "description": "Existing or proposed settlement rail.",
                    "enum": [
                      "none",
                      "x402r",
                      "bilateral_escrow",
                      "acp",
                      "stripe_connect",
                      "partner_executes"
                    ],
                    "type": "string"
                  }
                },
                "required": [
                  "claimantType",
                  "respondentType",
                  "amountInDisputeUsd",
                  "remedy",
                  "settlementRail",
                  "fastTrackClaimClass",
                  "mutualConsentReported",
                  "authorityToBindReported",
                  "claimantEvidenceReady",
                  "respondentEvidenceReady",
                  "microClaimsTierConsentReported",
                  "remedialJurisdictionOptInReported",
                  "corpusAmountUsd"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST",
                  "PUT",
                  "PATCH"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "peoplescourt.ai",
  "lastUpdated": "2026-09-17T05:41:04.69Z",
  "quality": {
    "calls30d": 3,
    "uniquePayers30d": 3,
    "lastCalledAt": "2026-09-17T05:41:04.302Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "peoplescourt.ai",
    "manifest_name": "peoplescourt.ai",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}