Schema

Retrieve all schemas

get

Returns a list of all available schemas in the current workspace. Each schema defines the structure of a data collection, including its fields, validation rules, and display configurations. Use this endpoint to discover available data structures before querying or inserting data.

Responses
chevron-right
200

List of schemas retrieved successfully

application/json
get
/api/schema/

Retrieve a schema by ID

get

Fetches a specific schema by its unique identifier. Returns the complete schema definition including all fields with their types, validation rules, and additional properties. Use this endpoint to get detailed information about a specific data structure before performing operations on its records.

Path parameters
schemaIdstring · uuidRequired

Unique identifier (UUID) of the schema to retrieve

Example: 550e8400-e29b-41d4-a716-446655440000
Responses
chevron-right
200

Schema retrieved successfully

application/json
get
/api/schema/{schemaId}

Last updated