Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the project. |
| name | string | Human-readable name of the project. |
| created_at | string | Timestamp when the project was created. |
| updated_at | string | Timestamp when the project was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Project",
"title": "Project",
"type": "object",
"description": "A project that organizes pipelines, files, and other cloud resources.",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the project."
},
"name": {
"type": "string",
"description": "Human-readable name of the project."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the project was created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the project was last updated."
}
}
}