Schema for creating a project.
| 335 | |
| 336 | |
| 337 | class ProjectCreateSchema(BaseSchema): |
| 338 | """ |
| 339 | Schema for creating a project. |
| 340 | """ |
| 341 | |
| 342 | name: str |
| 343 | org_id: str |
| 344 | environment: str | None = None |
| 345 | |
| 346 | |
| 347 | class ProjectUpdateSchema(BaseSchema): |
no outgoing calls
searching dependent graphs…