Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The unique identifier of the MAP Migration project. |
| name | string | The name of the MAP Migration project. |
| status | string | The current status 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",
"title": "MapMigrationProject",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The unique identifier of the MAP Migration project."
},
"name": {
"type": "string",
"description": "The name of the MAP Migration project."
},
"status": {
"type": "string",
"description": "The current status of the project."
},
"created_at": {
"type": "string",
"description": "Timestamp when the project was created."
},
"updated_at": {
"type": "string",
"description": "Timestamp when the project was last updated."
}
}
}