Keboola · Schema

ProjectResponse

Data PlatformETLELTData PipelineData StorageTransformationOrchestrationData 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 Project limits keyed by limit name; values may be integers or floats.
metrics object Project metrics keyed by metric name; values may be integers or floats.
isDisabled boolean
billedMonthlyPrice integer
dataRetentionTimeInDays integer
isBYODB boolean
assignedBackends array
fileStorageProvider string
payAsYouGo object
disabled object
View JSON Schema on GitHub

JSON Schema

keboola-projectresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ProjectResponse",
  "required": [
    "id",
    "name",
    "type",
    "region",
    "features",
    "dataSizeBytes",
    "rowsCount",
    "hasMysql",
    "hasSynapse",
    "hasSnowflake",
    "hasExasol",
    "hasTeradata",
    "hasBigquery",
    "defaultBackend",
    "hasTryModeOn",
    "limits",
    "metrics",
    "isDisabled",
    "dataRetentionTimeInDays",
    "isBYODB",
    "assignedBackends"
  ],
  "properties": {
    "id": {
      "description": "Project identifier.",
      "type": "integer",
      "example": 4088
    },
    "name": {
      "description": "Project name.",
      "type": "string",
      "example": "My Demo"
    },
    "type": {
      "description": "Project type.",
      "type": "string",
      "example": "production"
    },
    "region": {
      "description": "Project region.",
      "type": "string",
      "example": "us-east-1"
    },
    "created": {
      "description": "Project creation time.",
      "type": "string",
      "format": "date-time",
      "example": "2017-12-11T09:02:13+01:00",
      "nullable": true
    },
    "expires": {
      "description": "Project expiration time.",
      "type": "string",
      "format": "date-time",
      "example": null,
      "nullable": true
    },
    "features": {
      "description": "Enabled features.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "dataSizeBytes": {
      "description": "Total data size.",
      "type": "integer",
      "example": 22691704832
    },
    "rowsCount": {
      "description": "Total rows count.",
      "type": "integer",
      "example": 4295727047
    },
    "hasMysql": {
      "type": "boolean",
      "example": false
    },
    "hasSynapse": {
      "type": "boolean",
      "example": false
    },
    "hasSnowflake": {
      "type": "boolean",
      "example": true
    },
    "hasExasol": {
      "type": "boolean",
      "example": false
    },
    "hasTeradata": {
      "type": "boolean",
      "example": false
    },
    "hasBigquery": {
      "type": "boolean",
      "example": false
    },
    "defaultBackend": {
      "type": "string",
      "example": "snowflake"
    },
    "hasTryModeOn": {
      "type": "string",
      "example": "0"
    },
    "limits": {
      "description": "Project limits keyed by limit name; values may be integers or floats.",
      "type": "object",
      "additionalProperties": {
        "properties": {
          "name": {
            "type": "string",
            "example": "storage.dataSizeBytes"
          },
          "value": {
            "type": "number",
            "example": 50000000000
          }
        },
        "type": "object"
      }
    },
    "metrics": {
      "description": "Project metrics keyed by metric name; values may be integers or floats.",
      "type": "object",
      "additionalProperties": {
        "properties": {
          "name": {
            "type": "string",
            "example": "storage.dataSizeBytes"
          },
          "value": {
            "type": "number",
            "example": 22691704832
          }
        },
        "type": "object"
      }
    },
    "isDisabled": {
      "type": "boolean",
      "example": false
    },
    "billedMonthlyPrice": {
      "type": "integer",
      "example": null,
      "nullable": true
    },
    "dataRetentionTimeInDays": {
      "type": "integer",
      "example": 7
    },
    "isBYODB": {
      "type": "boolean",
      "example": false
    },
    "assignedBackends": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "snowflake"
      ]
    },
    "fileStorageProvider": {
      "type": "string",
      "example": "aws",
      "nullable": true
    },
    "payAsYouGo": {
      "properties": {
        "purchasedCredits": {
          "type": "number",
          "format": "float",
          "example": 123
        }
      },
      "type": "object",
      "nullable": true
    },
    "disabled": {
      "properties": {
        "reason": {
          "type": "string",
          "example": "Quota exceeded"
        },
        "estimatedEndTime": {
          "type": "string",
          "format": "date-time",
          "example": "2024-01-01T00:00:00+01:00",
          "nullable": true
        }
      },
      "type": "object",
      "nullable": true
    }
  },
  "type": "object",
  "example": {
    "id": 4088,
    "name": "My Demo",
    "type": "production",
    "region": "us-east-1",
    "created": "2017-12-11T09:02:13+01:00",
    "expires": null,
    "features": [],
    "dataSizeBytes": 22691704832,
    "rowsCount": 4295727047,
    "hasMysql": false,
    "hasSnowflake": true,
    "hasSynapse": false,
    "hasExasol": false,
    "hasTeradata": false,
    "hasBigquery": false,
    "defaultBackend": "snowflake",
    "hasTryModeOn": "0",
    "limits": {
      "components.jobsParallelism": {
        "name": "components.jobsParallelism",
        "value": 10
      },
      "kbc.adminsCount": {
        "name": "kbc.adminsCount",
        "value": 10
      },
      "storage.dataSizeBytes": {
        "name": "storage.dataSizeBytes",
        "value": 50000000000
      },
      "storage.jobsParallelism": {
        "name": "storage.jobsParallelism",
        "value": 10
      }
    },
    "metrics": {
      "kbc.adminsCount": {
        "name": "kbc.adminsCount",
        "value": 1
      },
      "storage.dataSizeBytes": {
        "name": "storage.dataSizeBytes",
        "value": 22691704832
      },
      "storage.rowsCount": {
        "name": "storage.rowsCount",
        "value": 4295727047
      }
    },
    "isDisabled": false,
    "billedMonthlyPrice": null,
    "dataRetentionTimeInDays": 7,
    "isBYODB": false,
    "assignedBackends": [
      "snowflake"
    ],
    "fileStorageProvider": "aws"
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/keboola-projectresponse"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.