aeontel schema

Manage schemas

Schema commands

aeontel schema list

List schemas in a workspace

TypeScript
aeontel schema list --workspace <id>
Shell
aeontel schema list --workspace wsp_...

aeontel schema create

Create a schema

TypeScript
aeontel schema create <name> --workspace <id> [--slug <slug>] [--description <desc>]
Shell
aeontel schema create "My name" --workspace wsp_...

aeontel schema get

Get schema details with fields

TypeScript
aeontel schema get <id>
Shell
aeontel schema get id_...

aeontel schema update

Update schema

TypeScript
aeontel schema update <id> [--name <name>] [--description <desc>]
Shell
aeontel schema update id_...

aeontel schema delete

Soft-delete schema (restorable until retention expires)

TypeScript
aeontel schema delete <id>
Shell
aeontel schema delete id_...

aeontel schema restore

Restore a soft-deleted schema

TypeScript
aeontel schema restore <id>
Shell
aeontel schema restore id_...