generated from coulomb/repo-seed
Replace the ad-hoc coordination-domain spine with the Repo Classification Standard: 14 market domains, classification columns on managed_repos, and workplans anchored by repo_id (topic_id optional). - Add Alembic migration d8e9f0a1b2c3 with data backfill and workstream→workplan rename - Add api/classification.py validation and register-from-classification tooling - Expose workplan-first REST/MCP surface with legacy workstream aliases - Add C-24 consistency rule and legacy domain frontmatter mapping - Update dashboard repos page with category/capability/stake filters - Update orientation docs; mark STATE-WP-0065 finished
54 lines
1.5 KiB
Python
54 lines
1.5 KiB
Python
import uuid
|
|
from datetime import datetime
|
|
|
|
from pydantic import AliasChoices, BaseModel, ConfigDict, Field, computed_field
|
|
|
|
from api.models.contribution import ContributionStatus, ContributionType
|
|
|
|
|
|
class ContributionCreate(BaseModel):
|
|
type: ContributionType
|
|
target_org: str | None = None
|
|
target_repo: str | None = None
|
|
slug: str | None = None
|
|
title: str
|
|
body_path: str | None = None
|
|
related_topic_id: uuid.UUID | None = None
|
|
related_workplan_id: uuid.UUID | None = Field(
|
|
default=None,
|
|
validation_alias=AliasChoices("related_workplan_id", "related_workstream_id"),
|
|
)
|
|
repo_id: uuid.UUID | None = None
|
|
notes: str | None = None
|
|
|
|
|
|
class ContributionStatusPatch(BaseModel):
|
|
status: ContributionStatus
|
|
notes: str | None = None
|
|
|
|
|
|
class ContributionRead(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
id: uuid.UUID
|
|
type: ContributionType
|
|
target_org: str | None = None
|
|
target_repo: str | None = None
|
|
slug: str | None = None
|
|
title: str
|
|
status: ContributionStatus
|
|
body_path: str | None = None
|
|
related_topic_id: uuid.UUID | None = None
|
|
related_workplan_id: uuid.UUID | None = None
|
|
repo_id: uuid.UUID | None = None
|
|
submitted_at: datetime | None = None
|
|
resolved_at: datetime | None = None
|
|
notes: str | None = None
|
|
created_at: datetime
|
|
updated_at: datetime
|
|
|
|
@computed_field # type: ignore[prop-decorator]
|
|
@property
|
|
def related_workstream_id(self) -> uuid.UUID | None:
|
|
return self.related_workplan_id
|