secure

Get Metadata Per Schema

Fetches metadata for specified schema from a source.

Args: source_name (str): Source name. schema (Optional[str]): Schema name. Defaults to None.

Returns: MetadataResponse: Detailed metadata information for the specified schema, or all schemas if none specified.

get/api/v1/pipelines/sources/{source_name}/metadata

Path parameters

source_namestring required

Query parameters

schemastring nullable

Response

Successful Response

tablesobject required

Example response

{
  "tables": {
    "table1": {
      "cdc_ready": true,
      "columns": {}
    }
  }
}

Changes