> ## Documentation Index
> Fetch the complete documentation index at: https://docs.platform.arb.inc/llms.txt
> Use this file to discover all available pages before exploring further.

# Generate synthetic statement of response

> Generates a synthetic (test) statement of response document written in plain, non-legal language as if from an average person responding to a parking dispute claim. The response addresses the provided statement of claim in conversational, informal style.



## OpenAPI

````yaml api-reference/ai.yaml post /demo/statement-of-response
openapi: 3.0.3
info:
  title: ai
  description: >-
    The AI Service acts as the intelligence hub of the arbitration platform,
    powering smart automation, analysis, and decision support. It centralizes
    all AI integrations, ensuring seamless and consistent AI functionality
    across every part of the system.
  version: 1.0.0
servers:
  - url: https://ai.platform.arb.inc
security: []
tags:
  - name: /
  - name: analysis
  - name: demo
  - name: generate-award
  - name: generate-document
  - name: process
  - name: prompts
paths:
  /demo/statement-of-response:
    post:
      tags:
        - demo
      summary: Generate synthetic statement of response
      description: >-
        Generates a synthetic (test) statement of response document written in
        plain, non-legal language as if from an average person responding to a
        parking dispute claim. The response addresses the provided statement of
        claim in conversational, informal style.
      operationId: generateDemoStatementOfResponse
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - claimantName
                - claimantAddress
                - claimantCity
                - claimantState
                - claimantZipcode
                - respondentName
                - respondentAddress
                - respondentCity
                - respondentState
                - respondentZipcode
                - basisForArbitration
                - statementOfFacts
                - claims
                - reliefRequested
              properties:
                claimantName:
                  type: string
                  example: Vanguard Parking Solutions
                claimantAddress:
                  type: string
                  example: 3389 SHERIDAN ST BOX
                claimantCity:
                  type: string
                  example: HOLLYWOOD
                claimantState:
                  type: string
                  example: FL
                claimantZipcode:
                  type: string
                  example: '33021'
                respondentName:
                  type: string
                  example: Jordan Blake
                respondentAddress:
                  type: string
                  example: 456 Oak Street
                respondentCity:
                  type: string
                  example: Miami
                respondentState:
                  type: string
                  example: FL
                respondentZipcode:
                  type: string
                  example: '33101'
                basisForArbitration:
                  type: string
                  example: >-
                    The parties' parking agreement contains a binding
                    arbitration clause.
                statementOfFacts:
                  type: string
                  example: >-
                    The claimant alleges unpaid parking fees from January
                    through March 2025.
                claims:
                  type: string
                  example: Breach of contract for failure to pay parking fees.
                reliefRequested:
                  type: string
                  example: Payment of $300.00 in fees and charges.
      responses:
        '200':
          description: Generated statement of response document
          content:
            application/json:
              schema:
                type: object
                properties:
                  respondentName:
                    type: string
                    example: Jordan Blake
                  respondentAddress:
                    type: string
                    example: 456 Oak Street
                  respondentCity:
                    type: string
                    example: Miami
                  respondentState:
                    type: string
                    example: FL
                  respondentZipcode:
                    type: string
                    example: '33101'
                  responseToBasis:
                    type: string
                    example: >-
                      I'm not entirely sure about the arbitration requirement. I
                      thought we could just work this out directly.
                  responseToFacts:
                    type: string
                    example: >-
                      I never received any notices about unpaid fees. I thought
                      my parking was covered by my office lease.
                  responseToClaims:
                    type: string
                    example: >-
                      I don't think I should have to pay these fees because I
                      wasn't properly notified about them.
                  reliefRequested:
                    type: string
                    example: >-
                      I just want this cleared up. If I do owe something, I'd
                      like proof of the charges.
                  certificationName:
                    type: string
                    example: Jordan Blake
                  certificationDate:
                    type: string
                    example: 03/25/2025
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````