cURL
curl --request POST \ --url https://api.platform.arb.inc/schemas/list \ --header 'Authorization: Bearer <token>'
{ "parties": [ { "id": "caseManager", "displayName": "Case Manager", "description": "Responsible for handling the administrative aspects of the case." } ], "phases": [ { "id": "caseInitiation", "displayName": "Case Initiation", "description": "The initial phase of the case." } ], "documents": [ { "id": "statementOfClaim", "displayName": "Statement of Claim", "description": "A formal statement outlining the details of the claim.", "sections": [ { "displayName": "Claim Details", "description": "This section captures the details of the claim.", "sortOrder": 1, "fields": [ { "id": "claimDetails", "displayName": "Claim Details", "required": true, "minLength": 10, "maxLength": 500, "sortOrder": 1, "type": "text" } ] } ] } ], "evidence": [ { "id": "audio", "displayName": "Audio", "contentTypes": [ "audio/mpeg", "audio/wav", "audio/flac", "audio/mp4", "audio/ogg" ] } ] }
Retrieves all available schemas for case phases and documents.
access token
Schemas successfully retrieved.
All available parties.
Show child attributes
All available case phases.
All available document schemas.
All supported evidence types and their allowed MIME content types.