Skip to main content
GET
/
projects
/
{projectName}
/
packages
/
{packageName}
/
databases
[
  {
    "resource": "<string>",
    "path": "<string>",
    "info": {
      "name": "<string>",
      "rowCount": 123,
      "columns": [
        {
          "name": "<string>",
          "type": "<string>"
        }
      ]
    },
    "type": "embedded"
  }
]

Path Parameters

projectName
string
required

Name of the project

packageName
string
required

Name of the package

Query Parameters

versionId
string

Version identifier for the package

Response

A list of embedded databases in the package

resource
string

Resource path to the database

path
string

Relative path to the database file within its package directory

info
object

Database table structure and metadata

type
enum<string>

Type of embedded database

Available options:
embedded,
materialized
I