POST /rubric/create
Create Rubric
Create rubrics using composable infra architecture.
Request Body (CreateRubricApiRequest)
| Field | Type | Required | Description |
|---|---|---|---|
rubrics | CreateRubricItem[] | Yes | List of rubrics to create |
idempotency_key | string | No | Operation key for ack — promotes or rejects a dormant create |
soft | boolean | No | Stage the create dormant (active=False) — propose; the ack ({idempotency_key, accept}) promotes/rejects it |
accept | boolean | No | Accept (promote) or reject dormant state. Only meaningful with idempotency_key |
Response (CreateRubricApiResponse)
| Field | Type | Required | Description |
|---|---|---|---|
results | RubricResultItem[] | Yes | List of operation results |
rubrics | ListRubricApiRubric[] | No | Hydrated rubric rows for the rubrics just created (omitted on soft writes) |
idempotency_key | string | No | Idempotency key echoed back for client correlation |
Last updated on