Skip to main content
POST
/
timetables
/
schemas
List available timetable schemas
curl --request POST \
  --url https://cases.platform.arb.inc/timetables/schemas \
  --header 'Authorization: Bearer <token>'
{
  "parties": [
    {
      "id": "claimant",
      "label": "Claimant",
      "description": "Person or entity that brings the claim."
    },
    {
      "id": "respondent",
      "label": "Respondent",
      "description": "Party responding to the claim."
    },
    {
      "id": "arbitrator",
      "label": "Arbitrator",
      "description": "Neutral decision-maker overseeing the case."
    },
    {
      "id": "caseManager",
      "label": "Case Manager",
      "description": "Staff member managing case logistics."
    }
  ],
  "phases": [
    {
      "id": "caseInitiation",
      "label": "Case Initiation",
      "description": "Early steps to start the case."
    },
    {
      "id": "caseFiling",
      "label": "Case Filing",
      "description": "Formal filing and service of key documents."
    }
  ],
  "documents": [
    {
      "id": "statementOfClaim",
      "label": "Statement of Claim",
      "description": "The initial filing outlining claims and relief sought."
    },
    {
      "id": "noticeOfServiceOfProcess",
      "label": "Notice of Service of Process",
      "description": "Notice confirming the respondent was properly served."
    }
  ]
}

Authorizations

Authorization
string
header
required

access token

Response

200 - application/json

Schemas successfully returned.

parties
object[]

All available parties you can reference.

Example:
[
{
"id": "claimant",
"label": "Claimant",
"description": "Person or entity that brings the claim."
},
{
"id": "respondent",
"label": "Respondent",
"description": "Party responding to the claim."
},
{
"id": "arbitrator",
"label": "Arbitrator",
"description": "Neutral decision-maker overseeing the case."
},
{
"id": "caseManager",
"label": "Case Manager",
"description": "Staff member managing case logistics."
}
]
phases
object[]

All available case phases.

Example:
[
{
"id": "caseInitiation",
"label": "Case Initiation",
"description": "Early steps to start the case."
},
{
"id": "caseFiling",
"label": "Case Filing",
"description": "Formal filing and service of key documents."
}
]
documents
object[]

All available document types.

Example:
[
{
"id": "statementOfClaim",
"label": "Statement of Claim",
"description": "The initial filing outlining claims and relief sought."
},
{
"id": "noticeOfServiceOfProcess",
"label": "Notice of Service of Process",
"description": "Notice confirming the respondent was properly served."
}
]