Feature
/api/v1/edm-projects/featuresA larger unit of work that may span multiple Tasks.
listgetcreateupdateSchema
| Field | Type | Notes |
|---|---|---|
| id* | uuid | Server-assigned ULID with type prefix (e.g. per_…). |
| tenant_id* | string | Tenant scope — auto-stamped from the caller's JWT. |
| app_id | string | App scope. Stamped ONLY when the caller's JWT was minted for a specific Application (integration API keys). Absent for human-user sessions. Filters reads when present. |
| created_at* | date-time | Server stamp. |
| updated_at* | date-time | Server stamp; updated on every patch. |
| created_by | uuid | Person id from the caller's JWT (sub). |
| updated_by | uuid | Person id from the last writer's JWT (sub). |
| source | string | Provenance tag — defaults to 'edm'. |
| source_type | enum | frontend | backend | server | system | apiWhere the write originated. Defaults to 'api'. |
| is_deleted | boolean | Soft-delete flag. Excluded from default list queries. |
| deleted_at | date-time | Stamped when soft-deleted; null otherwise. |
| deleted_by | uuid | Person id who soft-deleted; null otherwise. |
| schema_version | number | Document schema version. Bumped on incompatible writes. |
| project_id | string | Optional anchor project ID. |
| title | string | Feature title. |
| description | string | Detailed description of the feature. |
| category | string | Kanban column or category slug. |
| priority | string | Feature priority level. |
| status | string | Current feature lifecycle status. |
| source_url | string | URL of the original source document or issue. |
| sprint_id | string | Sprint ID if this feature is committed to a single sprint. |
| section_ids | json | Section IDs if this feature is split into sections. |
| assignee_ids | json | User IDs assigned to this feature. |
| story_points | number | Agile story point estimate for the feature. |
| goals | json | Free-text acceptance criteria or goals. |
| ai_plan | string | LLM-generated implementation plan. |
| linked_task_ids | json | Task IDs implementing this feature. |
| linked_deal_id | string | Deal ID if this feature is commercially driven. |
| linked_rfp_id | string | RFP record ID if this feature was sourced from an RFP. |
| github_issue_ref | json | Linked GitHub issue reference. |
| status_history | json | Audit log of status transitions. |
| tags | json | Flat string tags for filtering and grouping. |
| version | number | Optimistic-concurrency version counter. |
| name | string | Feature name. |
| owner_id | uuid | User ID of the feature owner. |
API
client.projects.features.*Loading manifest…