---
title: "Create dashboard with charts"
method: POST
path: "/api/v1/projects/{projectUuid}/dashboards/with-charts"
tags: ["Projects"]
---

# Create dashboard with charts

`POST /api/v1/projects/{projectUuid}/dashboards/with-charts`

Create a new dashboard with embedded charts

## Path parameters

- `projectUuid` string, required

## Request body

- CreateDashboardWithCharts
  - `charts` CreateSavedChart[], required
    - union
      - CreateChartInSpace — From T, pick a set of properties whose keys are in the union K
        - `name` string, required — Display name of the chart
        - `description` string — Optional description of what this chart displays
        - `tableName` string, required — The explore/table name this chart queries from
        - `metricQuery` MetricQuery, required
          - `metadata` object
            - `hasADateDimension` PickCompiledDimensionLabelOrNameOrTable, required — From T, pick a set of properties whose keys are in the union K
              - …
          - `pivotDimensions` FieldId[] — Dimension field IDs used as pivot columns (from chart's pivotConfig.columns). Used by row_total() to determine non-pivot dimensions for GROUP BY.
          - `timezone` string — Timezone for date/time values (e.g., 'America/Los_Angeles', 'UTC')
          - `dimensionOverrides` DimensionOverrides
          - `metricOverrides` MetricOverrides
          - `customDimensions` CustomDimension[] — Custom dimensions defined inline
            - union
              - …
          - `additionalMetrics` AdditionalMetric[] — Custom metrics defined inline (ad-hoc metrics not in the dbt model)
            - `label` string — Display label for the metric
            - `type` 'percentile' | 'average' | 'count' | 'count_distinct' | 'sum' | 'sum_distinct' | 'average_distinct' | 'min' | 'max' | 'percent_of_previous' | 'percent_of_total' | 'running_total' | 'number' | 'median' | 'string' | 'date' | 'timestamp' | 'boolean', required
            - `description` string — Description of what the metric measures
            - `sql` string, required — SQL expression (e.g., ${TABLE}.column_name)
            - `hidden` boolean — Whether the metric is hidden from users
            - `round` number, double — Number of decimal places
            - `compact` union
              - …
            - `format` union — Format string (legacy format specification)
              - …
            - `separator` 'default' | 'commaPeriod' | 'spacePeriod' | 'periodComma' | 'noSeparatorPeriod' | 'apostrophePeriod'
            - `table` string, required — Table name the metric belongs to
            - `name` string, required — Internal name of the metric
            - `index` number, double — Display order index
            - `filters` MetricFilterRule[] — Filters to apply to this metric
              - …
            - `baseDimensionName` string — Name of the base dimension/column this metric aggregates
            - `baseMetricName` string — Name of the explore metric this metric was cloned from
            - `uuid` string, nullable — Unique identifier for the metric
            - `percentile` number, double — Percentile value for percentile metrics
            - `distinctKeys` string[]
            - `formatOptions` CustomFormat
              - …
            - `generationType` 'periodOverPeriod' — Optional marker for metrics generated by the system. Currently used for Period-over-Period (PoP) previous-period metrics.
            - `baseMetricId` string
            - `timeDimensionId` string
            - `granularity` 'RAW' | 'YEAR' | 'QUARTER' | 'MONTH' | 'WEEK' | 'DAY' | 'HOUR' | 'MINUTE' | 'SECOND' | 'MILLISECOND' | 'DAY_OF_WEEK_INDEX' | 'DAY_OF_MONTH_NUM' | 'DAY_OF_YEAR_NUM' | 'WEEK_NUM' | 'MONTH_NUM' | 'QUARTER_NUM' | 'YEAR_NUM' | 'DAY_OF_WEEK_NAME' | 'MONTH_NAME' | 'QUARTER_NAME' | 'HOUR_OF_DAY_NUM' | 'MINUTE_OF_HOUR_NUM'
            - `periodOffset` number, double — For PoP-generated metrics, the number of periods to offset by (>= 1).
          - `tableCalculations` TableCalculation[], required — Custom calculations to perform on query results
            - union
              - …
          - `limit` number, double, required — Maximum number of rows to return
          - `sorts` SortField[], required — Sort configuration for query results
            - `pivotValues` PivotSortAnchor[] — Pins the row-sort anchor to a specific pivot column. Ignored for non-pivoted results.
              - …
            - `nullsFirst` boolean — Sort null values first
            - `descending` boolean, required — Sort in descending order
            - `fieldId` string, required — Field ID to sort by
          - `filters` Filters, required
            - `tableCalculations` union
              - …
            - `metrics` union
              - …
            - `dimensions` union
              - …
          - `metrics` FieldId[], required — List of metric field IDs to include
          - `dimensions` FieldId[], required — List of dimension field IDs to include
          - `exploreName` string, required — The name of the explore to query
        - `chartConfig` union, required
          - BigNumberConfig
            - `config` BigNumber
              - …
            - `type` 'big_number', required
          - CartesianChartConfig
            - `config` CartesianChart
              - …
            - `type` 'cartesian', required
          - CustomVisConfig
            - `config` CustomVis
              - …
            - `type` 'custom', required
          - PieChartConfig
            - `config` PieChart
              - …
            - `type` 'pie', required
          - FunnelChartConfig
            - `config` FunnelChart
              - …
            - `type` 'funnel', required
          - TableChartConfig
            - `config` TableChart
              - …
            - `type` 'table', required
          - TreemapChartConfig
            - `config` TreemapChart
              - …
            - `type` 'treemap', required
          - GaugeChartConfig
            - `config` GaugeChart
              - …
            - `type` 'gauge', required
          - DataAppVizChartConfig
            - `config` DataAppVizChart
              - …
            - `type` 'data_app_viz', required
          - MapChartConfig
            - `config` MapChart
              - …
            - `type` 'map', required
          - SankeyChartConfig
            - `config` SankeyChart
              - …
            - `type` 'sankey', required
        - `pivotConfig` object — Pivot table configuration
          - `rows` string[]
          - `columns` string[], required
        - `parameters` ParametersValuesMap — Construct a type with a set of properties K of type T
        - `tableConfig` object, required — Table view configuration
          - `columnOrder` string[], required
        - `dashboardUuid` null, nullable
        - `spaceUuid` string
      - CreateChartInDashboard — From T, pick a set of properties whose keys are in the union K
        - `name` string, required — Display name of the chart
        - `description` string — Optional description of what this chart displays
        - `tableName` string, required — The explore/table name this chart queries from
        - `metricQuery` MetricQuery, required
          - `metadata` object
            - `hasADateDimension` PickCompiledDimensionLabelOrNameOrTable, required — From T, pick a set of properties whose keys are in the union K
              - …
          - `pivotDimensions` FieldId[] — Dimension field IDs used as pivot columns (from chart's pivotConfig.columns). Used by row_total() to determine non-pivot dimensions for GROUP BY.
          - `timezone` string — Timezone for date/time values (e.g., 'America/Los_Angeles', 'UTC')
          - `dimensionOverrides` DimensionOverrides
          - `metricOverrides` MetricOverrides
          - `customDimensions` CustomDimension[] — Custom dimensions defined inline
            - union
              - …
          - `additionalMetrics` AdditionalMetric[] — Custom metrics defined inline (ad-hoc metrics not in the dbt model)
            - `label` string — Display label for the metric
            - `type` 'percentile' | 'average' | 'count' | 'count_distinct' | 'sum' | 'sum_distinct' | 'average_distinct' | 'min' | 'max' | 'percent_of_previous' | 'percent_of_total' | 'running_total' | 'number' | 'median' | 'string' | 'date' | 'timestamp' | 'boolean', required
            - `description` string — Description of what the metric measures
            - `sql` string, required — SQL expression (e.g., ${TABLE}.column_name)
            - `hidden` boolean — Whether the metric is hidden from users
            - `round` number, double — Number of decimal places
            - `compact` union
              - …
            - `format` union — Format string (legacy format specification)
              - …
            - `separator` 'default' | 'commaPeriod' | 'spacePeriod' | 'periodComma' | 'noSeparatorPeriod' | 'apostrophePeriod'
            - `table` string, required — Table name the metric belongs to
            - `name` string, required — Internal name of the metric
            - `index` number, double — Display order index
            - `filters` MetricFilterRule[] — Filters to apply to this metric
              - …
            - `baseDimensionName` string — Name of the base dimension/column this metric aggregates
            - `baseMetricName` string — Name of the explore metric this metric was cloned from
            - `uuid` string, nullable — Unique identifier for the metric
            - `percentile` number, double — Percentile value for percentile metrics
            - `distinctKeys` string[]
            - `formatOptions` CustomFormat
              - …
            - `generationType` 'periodOverPeriod' — Optional marker for metrics generated by the system. Currently used for Period-over-Period (PoP) previous-period metrics.
            - `baseMetricId` string
            - `timeDimensionId` string
            - `granularity` 'RAW' | 'YEAR' | 'QUARTER' | 'MONTH' | 'WEEK' | 'DAY' | 'HOUR' | 'MINUTE' | 'SECOND' | 'MILLISECOND' | 'DAY_OF_WEEK_INDEX' | 'DAY_OF_MONTH_NUM' | 'DAY_OF_YEAR_NUM' | 'WEEK_NUM' | 'MONTH_NUM' | 'QUARTER_NUM' | 'YEAR_NUM' | 'DAY_OF_WEEK_NAME' | 'MONTH_NAME' | 'QUARTER_NAME' | 'HOUR_OF_DAY_NUM' | 'MINUTE_OF_HOUR_NUM'
            - `periodOffset` number, double — For PoP-generated metrics, the number of periods to offset by (>= 1).
          - `tableCalculations` TableCalculation[], required — Custom calculations to perform on query results
            - union
              - …
          - `limit` number, double, required — Maximum number of rows to return
          - `sorts` SortField[], required — Sort configuration for query results
            - `pivotValues` PivotSortAnchor[] — Pins the row-sort anchor to a specific pivot column. Ignored for non-pivoted results.
              - …
            - `nullsFirst` boolean — Sort null values first
            - `descending` boolean, required — Sort in descending order
            - `fieldId` string, required — Field ID to sort by
          - `filters` Filters, required
            - `tableCalculations` union
              - …
            - `metrics` union
              - …
            - `dimensions` union
              - …
          - `metrics` FieldId[], required — List of metric field IDs to include
          - `dimensions` FieldId[], required — List of dimension field IDs to include
          - `exploreName` string, required — The name of the explore to query
        - `chartConfig` union, required
          - BigNumberConfig
            - `config` BigNumber
              - …
            - `type` 'big_number', required
          - CartesianChartConfig
            - `config` CartesianChart
              - …
            - `type` 'cartesian', required
          - CustomVisConfig
            - `config` CustomVis
              - …
            - `type` 'custom', required
          - PieChartConfig
            - `config` PieChart
              - …
            - `type` 'pie', required
          - FunnelChartConfig
            - `config` FunnelChart
              - …
            - `type` 'funnel', required
          - TableChartConfig
            - `config` TableChart
              - …
            - `type` 'table', required
          - TreemapChartConfig
            - `config` TreemapChart
              - …
            - `type` 'treemap', required
          - GaugeChartConfig
            - `config` GaugeChart
              - …
            - `type` 'gauge', required
          - DataAppVizChartConfig
            - `config` DataAppVizChart
              - …
            - `type` 'data_app_viz', required
          - MapChartConfig
            - `config` MapChart
              - …
            - `type` 'map', required
          - SankeyChartConfig
            - `config` SankeyChart
              - …
            - `type` 'sankey', required
        - `pivotConfig` object — Pivot table configuration
          - `rows` string[]
          - `columns` string[], required
        - `parameters` ParametersValuesMap — Construct a type with a set of properties K of type T
        - `tableConfig` object, required — Table view configuration
          - `columnOrder` string[], required
        - `spaceUuid` null, nullable
        - `dashboardUuid` string, required
  - `spaceUuid` string, required
  - `description` string
  - `name` string, required

## Response `201`

Created

- ApiCreateDashboardWithChartsResponse
  - `results` Dashboard, required
    - `deletedBy` object, nullable
      - `lastName` string, required
      - `firstName` string, required
      - `userUuid` string, required
    - `deletedAt` string, date-time
    - `colorPaletteUuid` string, nullable, required
    - `config` DashboardConfig
      - `requiredFiltersNote` string — Editor-authored note shown to viewers while filter rules are unmet
      - `dateZoomConfig` DateZoomConfig
        - `tileTargets` RecordStringDateZoomTileTarget, required — Construct a type with a set of properties K of type T
        - `controls` DateZoomControl[], required
          - `hidden` boolean
          - `granularity` union, required
            - 'Second' | 'Minute' | 'Hour' | 'Day' | 'Week' | 'Month' | 'Quarter' | 'Year'
            - string
          - `name` string, required
          - `uuid` string, required
      - `defaultDateZoomGranularity` union
        - 'Second' | 'Minute' | 'Hour' | 'Day' | 'Week' | 'Month' | 'Quarter' | 'Year'
        - string
      - `dateZoomGranularities` union[]
        - union
          - 'Second' | 'Minute' | 'Hour' | 'Day' | 'Week' | 'Month' | 'Quarter' | 'Year'
          - string
      - `parameterOrder` string[]
      - `pinnedParameters` string[]
      - `isAddFilterDisabled` boolean
      - `isDateZoomDisabled` boolean, required
    - `slug` string, required
    - `access` SpaceAccess[], nullable, required
      - `inheritedFrom` 'organization' | 'project' | 'group' | 'space_group' | 'parent_space'
      - `inheritedRole` union
        - 'member' | 'viewer' | 'interactive_viewer' | 'editor' | 'developer' | 'admin'
        - 'viewer' | 'interactive_viewer' | 'editor' | 'developer' | 'admin'
      - `projectRole` 'viewer' | 'interactive_viewer' | 'editor' | 'developer' | 'admin'
      - `hasDirectAccess` boolean, required
      - `role` 'viewer' | 'editor' | 'admin', required
      - `userUuid` string, required
    - `inheritsFromOrgOrProject` boolean, required
    - `tabs` DashboardTab[], required
      - `hidden` boolean
      - `order` number, double, required
      - `name` string, required
      - `uuid` string, required
    - `pinnedListOrder` number, double, nullable, required
    - `pinnedListUuid` string, nullable, required
    - `firstViewedAt` union, required
      - string, date-time
      - string
    - `views` number, double, required
    - `spaceName` string, required
    - `spaceUuid` string, required
    - `updatedByUser` UpdatedByUser
      - `userUuid` string, required
      - `firstName` string, required
      - `lastName` string, required
    - `parameters` DashboardParameters — Construct a type with a set of properties K of type T
    - `filters` DashboardFilters, required
      - `tableCalculations` DashboardFilterRule[], required
        - `includeNull` boolean — For the `equals` operator on string fields, also match rows where the field is null (compiles to `field IN (...) OR field IS NULL`). Lets users combine null with selected values in a single "is" rule.
        - `values` AnyType[] — Values to filter by
          - unknown
        - `operator` 'isNull' | 'notNull' | 'equals' | 'notEquals' | 'startsWith' | 'endsWith' | 'include' | 'doesNotInclude' | 'lessThan' | 'lessThanOrEqual' | 'greaterThan' | 'greaterThanOrEqual' | 'inThePast' | 'notInThePast' | 'inTheNext' | 'inTheCurrent' | 'notInTheCurrent' | 'inBetween' | 'notInBetween' | 'inPeriodToDate', required
        - `id` string, required — Unique identifier for the filter
        - `target` DashboardFieldTarget, required
          - `fallbackType` 'string' | 'number' | 'timestamp' | 'date' | 'boolean'
          - `isSqlColumn` boolean
          - `tableName` string, required
          - `fieldId` string, required
        - `settings` unknown
        - `disabled` boolean — Whether this filter is disabled
        - `required` boolean — Whether this filter is required
        - `caseSensitive` boolean — Overrides the field/explore case-sensitivity for this rule only. Used by internal features like autocomplete search that must always match case-insensitively regardless of the field's configured setting.
        - `lockedTabUuids` string[] — Tab UUIDs where this filter is locked. When the active tab is in this list, viewers see the filter but cannot change it, and URL / embed filter overrides targeting the same field are ignored on that tab. Empty or omitted means the filter is not locked anywhere.
        - `requiredGroupId` string — Dashboard filters sharing a requiredGroupId form an "any-one required" group: the dashboard is locked until at least one member has a value.
        - `singleValue` boolean
        - `label` string
        - `tileTargets` DashboardTileTargets — Deliberately an index-signature literal, not `Record<string, ...>`. When TSOA first resolves `Record<string, DashboardTileTarget>` inside a mapped type (e.g. `Omit<DashboardFilterRule, 'id'>` in content-as-code types), it caches an EMPTY model under the shared `Record_string.DashboardTileTarget_` name, and request validation then strips every tileTargets entry from bodies — silently breaking dashboard filters on SQL chart tiles. The index-signature form resolves correctly in every context.
      - `metrics` DashboardFilterRule[], required
        - `includeNull` boolean — For the `equals` operator on string fields, also match rows where the field is null (compiles to `field IN (...) OR field IS NULL`). Lets users combine null with selected values in a single "is" rule.
        - `values` AnyType[] — Values to filter by
          - unknown
        - `operator` 'isNull' | 'notNull' | 'equals' | 'notEquals' | 'startsWith' | 'endsWith' | 'include' | 'doesNotInclude' | 'lessThan' | 'lessThanOrEqual' | 'greaterThan' | 'greaterThanOrEqual' | 'inThePast' | 'notInThePast' | 'inTheNext' | 'inTheCurrent' | 'notInTheCurrent' | 'inBetween' | 'notInBetween' | 'inPeriodToDate', required
        - `id` string, required — Unique identifier for the filter
        - `target` DashboardFieldTarget, required
          - `fallbackType` 'string' | 'number' | 'timestamp' | 'date' | 'boolean'
          - `isSqlColumn` boolean
          - `tableName` string, required
          - `fieldId` string, required
        - `settings` unknown
        - `disabled` boolean — Whether this filter is disabled
        - `required` boolean — Whether this filter is required
        - `caseSensitive` boolean — Overrides the field/explore case-sensitivity for this rule only. Used by internal features like autocomplete search that must always match case-insensitively regardless of the field's configured setting.
        - `lockedTabUuids` string[] — Tab UUIDs where this filter is locked. When the active tab is in this list, viewers see the filter but cannot change it, and URL / embed filter overrides targeting the same field are ignored on that tab. Empty or omitted means the filter is not locked anywhere.
        - `requiredGroupId` string — Dashboard filters sharing a requiredGroupId form an "any-one required" group: the dashboard is locked until at least one member has a value.
        - `singleValue` boolean
        - `label` string
        - `tileTargets` DashboardTileTargets — Deliberately an index-signature literal, not `Record<string, ...>`. When TSOA first resolves `Record<string, DashboardTileTarget>` inside a mapped type (e.g. `Omit<DashboardFilterRule, 'id'>` in content-as-code types), it caches an EMPTY model under the shared `Record_string.DashboardTileTarget_` name, and request validation then strips every tileTargets entry from bodies — silently breaking dashboard filters on SQL chart tiles. The index-signature form resolves correctly in every context.
      - `dimensions` DashboardFilterRule[], required
        - `includeNull` boolean — For the `equals` operator on string fields, also match rows where the field is null (compiles to `field IN (...) OR field IS NULL`). Lets users combine null with selected values in a single "is" rule.
        - `values` AnyType[] — Values to filter by
          - unknown
        - `operator` 'isNull' | 'notNull' | 'equals' | 'notEquals' | 'startsWith' | 'endsWith' | 'include' | 'doesNotInclude' | 'lessThan' | 'lessThanOrEqual' | 'greaterThan' | 'greaterThanOrEqual' | 'inThePast' | 'notInThePast' | 'inTheNext' | 'inTheCurrent' | 'notInTheCurrent' | 'inBetween' | 'notInBetween' | 'inPeriodToDate', required
        - `id` string, required — Unique identifier for the filter
        - `target` DashboardFieldTarget, required
          - `fallbackType` 'string' | 'number' | 'timestamp' | 'date' | 'boolean'
          - `isSqlColumn` boolean
          - `tableName` string, required
          - `fieldId` string, required
        - `settings` unknown
        - `disabled` boolean — Whether this filter is disabled
        - `required` boolean — Whether this filter is required
        - `caseSensitive` boolean — Overrides the field/explore case-sensitivity for this rule only. Used by internal features like autocomplete search that must always match case-insensitively regardless of the field's configured setting.
        - `lockedTabUuids` string[] — Tab UUIDs where this filter is locked. When the active tab is in this list, viewers see the filter but cannot change it, and URL / embed filter overrides targeting the same field are ignored on that tab. Empty or omitted means the filter is not locked anywhere.
        - `requiredGroupId` string — Dashboard filters sharing a requiredGroupId form an "any-one required" group: the dashboard is locked until at least one member has a value.
        - `singleValue` boolean
        - `label` string
        - `tileTargets` DashboardTileTargets — Deliberately an index-signature literal, not `Record<string, ...>`. When TSOA first resolves `Record<string, DashboardTileTarget>` inside a mapped type (e.g. `Omit<DashboardFilterRule, 'id'>` in content-as-code types), it caches an EMPTY model under the shared `Record_string.DashboardTileTarget_` name, and request validation then strips every tileTargets entry from bodies — silently breaking dashboard filters on SQL chart tiles. The index-signature form resolves correctly in every context.
    - `tiles` DashboardTile[], required
      - union
        - DashboardChartTile — Make all properties in T required
          - `uuid` string, required
          - `type` 'saved_chart', required
          - `x` number, double, required
          - `y` number, double, required
          - `h` number, double, required
          - `w` number, double, required
          - `tabUuid` string, nullable
          - `properties` object, required
            - `chartSlug` string, nullable
            - `lastVersionChartKind` 'line' | 'horizontal_bar' | 'vertical_bar' | 'scatter' | 'area' | 'mixed' | 'pie' | 'table' | 'big_number' | 'funnel' | 'custom' | 'treemap' | 'gauge' | 'map' | 'sankey' | 'data_app_viz'
            - `chartName` string, nullable
            - `belongsToDashboard` boolean
            - `savedChartUuid` string, nullable, required
            - `hideTitle` boolean
            - `title` string
        - DashboardMarkdownTile — Make all properties in T required
          - `uuid` string, required
          - `type` 'markdown', required
          - `x` number, double, required
          - `y` number, double, required
          - `h` number, double, required
          - `w` number, double, required
          - `tabUuid` string, nullable
          - `properties` object, required
            - `hideFrame` boolean
            - `content` string, required
            - `title` string, required
        - DashboardLoomTile — Make all properties in T required
          - `uuid` string, required
          - `type` 'loom', required
          - `x` number, double, required
          - `y` number, double, required
          - `h` number, double, required
          - `w` number, double, required
          - `tabUuid` string, nullable
          - `properties` object, required
            - `url` string, required
            - `hideTitle` boolean
            - `title` string, required
        - DashboardSqlChartTile — Make all properties in T required
          - `uuid` string, required
          - `type` 'sql_chart', required
          - `x` number, double, required
          - `y` number, double, required
          - `h` number, double, required
          - `w` number, double, required
          - `tabUuid` string, nullable
          - `properties` object, required
            - `chartSlug` string, nullable
            - `hideTitle` boolean
            - `chartName` string, required
            - `savedSqlUuid` string, nullable, required
            - `title` string
        - DashboardHeadingTile — Make all properties in T required
          - `uuid` string, required
          - `type` 'heading', required
          - `x` number, double, required
          - `y` number, double, required
          - `h` number, double, required
          - `w` number, double, required
          - `tabUuid` string, nullable
          - `properties` object, required
            - `showDivider` boolean
            - `text` string, required
            - `title` unknown
        - DashboardDataAppTile — Make all properties in T required
          - `uuid` string, required
          - `type` 'data_app', required
          - `x` number, double, required
          - `y` number, double, required
          - `h` number, double, required
          - `w` number, double, required
          - `tabUuid` string, nullable
          - `properties` object, required
            - `appDeletedAt` string, nullable
            - `appUuid` string, required
            - `hideTitle` boolean
            - `title` string, required
    - `updatedAt` string, date-time, required
    - `description` string
    - `verification` ContentVerificationInfo, required
      - `verifiedAt` string, date-time, required
      - `verifiedBy` object, required
        - `lastName` string, required
        - `firstName` string, required
        - `userUuid` string, required
    - `name` string, required
    - `uuid` string, required
    - `versionUuid` string, required
    - `dashboardVersionId` number, double, required
    - `projectUuid` string, required
    - `organizationUuid` string, required
  - `status` 'ok', required

## Other responses

- `default` — Error

---

[API](https://skmtc.net/lightdash/apis/lightdash-api.md) · [All operations](https://skmtc.net/lightdash/apis/lightdash-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lightdash/lightdash-api/versions/40c933755c9a/schema)
