Keboola · Schema
DeletedProjectResponse
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Project identifier. |
| name | string | Project name. |
| type | string | Project type. |
| region | string | Project region. |
| created | string | Project creation time. |
| expires | string | Project expiration time. |
| features | array | Enabled features. |
| dataSizeBytes | integer | Total data size. |
| rowsCount | integer | Total rows count. |
| hasMysql | boolean | |
| hasSynapse | boolean | |
| hasSnowflake | boolean | |
| hasExasol | boolean | |
| hasTeradata | boolean | |
| hasBigquery | boolean | |
| defaultBackend | string | |
| hasTryModeOn | string | |
| limits | object | |
| metrics | object | |
| isDisabled | boolean | |
| billedMonthlyPrice | integer | |
| dataRetentionTimeInDays | integer | |
| isBYODB | boolean | |
| assignedBackends | array | |
| fileStorageProvider | string | |
| payAsYouGo | object | |
| disabled | object | |
| isPurged | boolean | |
| isDeleted | boolean | |
| deletedTime | string | |
| purgedTime | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DeletedProjectResponse",
"required": [
"id",
"name",
"type",
"region",
"features",
"dataSizeBytes",
"rowsCount",
"hasMysql",
"hasSynapse",
"hasSnowflake",
"hasExasol",
"hasTeradata",
"hasBigquery",
"defaultBackend",
"hasTryModeOn",
"limits",
"metrics",
"isDisabled",
"dataRetentionTimeInDays",
"isBYODB",
"assignedBackends",
"isPurged",
"isDeleted",
"deletedTime"
],
"properties": {
"id": {
"description": "Project identifier.",
"type": "integer"
},
"name": {
"description": "Project name.",
"type": "string"
},
"type": {
"description": "Project type.",
"type": "string"
},
"region": {
"description": "Project region.",
"type": "string"
},
"created": {
"description": "Project creation time.",
"type": "string",
"format": "date-time",
"nullable": true
},
"expires": {
"description": "Project expiration time.",
"type": "string",
"format": "date-time",
"nullable": true
},
"features": {
"description": "Enabled features.",
"type": "array",
"items": {
"type": "string"
}
},
"dataSizeBytes": {
"description": "Total data size.",
"type": "integer"
},
"rowsCount": {
"description": "Total rows count.",
"type": "integer"
},
"hasMysql": {
"type": "boolean"
},
"hasSynapse": {
"type": "boolean"
},
"hasSnowflake": {
"type": "boolean"
},
"hasExasol": {
"type": "boolean"
},
"hasTeradata": {
"type": "boolean"
},
"hasBigquery": {
"type": "boolean"
},
"defaultBackend": {
"type": "string"
},
"hasTryModeOn": {
"type": "string"
},
"limits": {
"type": "object",
"additionalProperties": {
"type": "mixed"
}
},
"metrics": {
"type": "object",
"additionalProperties": {
"type": "mixed"
}
},
"isDisabled": {
"type": "boolean"
},
"billedMonthlyPrice": {
"type": "integer",
"nullable": true
},
"dataRetentionTimeInDays": {
"type": "integer"
},
"isBYODB": {
"type": "boolean"
},
"assignedBackends": {
"type": "array",
"items": {
"type": "string"
}
},
"fileStorageProvider": {
"type": "string",
"nullable": true
},
"payAsYouGo": {
"properties": {
"purchasedCredits": {
"type": "number",
"format": "float"
}
},
"type": "object",
"nullable": true
},
"disabled": {
"properties": {
"reason": {
"type": "string"
},
"estimatedEndTime": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
"type": "object",
"nullable": true
},
"isPurged": {
"type": "boolean"
},
"isDeleted": {
"type": "boolean"
},
"deletedTime": {
"type": "string",
"format": "date-time"
},
"purgedTime": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
"type": "object"
}