> ## 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 claim

> Generates a synthetic (test) statement of claim document for Vanguard Parking Solutions. Always uses predefined claimant information and creates realistic parking dispute scenarios for platform testing.



## OpenAPI

````yaml api-reference/ai.yaml post /demo/statement-of-claim
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-claim:
    post:
      tags:
        - demo
      summary: Generate synthetic statement of claim
      description: >-
        Generates a synthetic (test) statement of claim document for Vanguard
        Parking Solutions. Always uses predefined claimant information and
        creates realistic parking dispute scenarios for platform testing.
      operationId: generateDemoStatementOfClaim
      responses:
        '200':
          description: Generated statement of claim document
          content:
            application/json:
              schema:
                type: object
                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: Harborview Office Center, LLC
                  respondentAddress:
                    type: string
                    example: 789 Business Blvd
                  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 (see Exhibit 1).
                  statementOfFacts:
                    type: string
                    example: >-
                      The respondent entered into a monthly parking agreement
                      with Vanguard on January 15, 2025. Despite multiple
                      notices, parking fees remain unpaid since March 2025.
                  claims:
                    type: string
                    example: >-
                      Breach of contract for failure to pay parking fees
                      totaling $250.00 plus late fees.
                  reliefRequested:
                    type: string
                    example: >-
                      Vanguard seeks payment of $250.00 in unpaid parking fees
                      plus $50.00 in late fees.
                  settlementPhone:
                    type: string
                    example: (954) 555-0137
                  settlementEmail:
                    type: string
                    example: settlements@example.com
                  settlementWebsite:
                    type: string
                    example: https://www.example.com/settlements
                  settlementAmount:
                    type: string
                    example: '300.00'
                  settlementOffer:
                    type: string
                    example: '250.00'
                  settlementValidityDays:
                    type: integer
                    example: 14
                  certificationName:
                    type: string
                    example: Alex Roberts, Enforcement Representative
                  certificationDate:
                    type: string
                    example: '2025-03-21'
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````