feat(Catalog/PlatformCatalogSchemas): add Catalog Schemas platform entity with lossless SchemaGrid round-trip (Issue #4555) - #4556
Open
dearsimanovich-epam wants to merge 1 commit into
Conversation
…tity with lossless SchemaGrid round-trip (Issue #4555) Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
dearsimanovich-epam
requested review from
Gimir,
NastassiaKryshtal,
PolinaGurinovich97,
denys-kolomiitsev and
ya092
as code owners
September 15, 2026 11:32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
DIAL Core has carried a
catalog_schemasresource type since0.47.1— a registered JSON-Schema document describing the display metadata a catalog entity type exposes — but the admin console had no surface for it, so the only way to register or edit one was a hand-writtenPUTagainst Core, with no validation (Core stores the body verbatim and checks nothing but the$id). This change adds theCatalog ▸ Catalog Schemasentity as a Core-direct CRUD surface following the same flat shape as the other seven Catalog entities, plus client-side meta-schema validation that substitutes for Core's absent write-time checks.Fixing the shared
SchemaGridfor catalog schemas also fixes it for App Runners: the grid reconstructed each property from a fixed field set, silently droppingformatanddial:fileand preservingdial:metaonly on first-level properties. It is now a lossless round-trip, which is an observable behavior change toplatform-app-runnersand is specified as such. Deliberately out of scope (deferred): the config-file half of the population, and the consumer side that selects a schema and editscatalog_propertieson models, applications, toolsets, skills and interceptors.Issues:
Key Changes:
actions.tsformat,dial:fileand nesteddial:metasurvive an editdial:tab,dial:section,dial:widget,dial:localized)$id-to-resource-name helpers extracted out ofutils/app-runners/core-runner-name.tsso both entities share one implementationResourceType.CATALOG_SCHEMAregistered end-to-endopenspec/changes/archive/2026-09-15-add-platform-catalog-schemas/New Components:
Assets/Platform/CatalogSchemas/{List,View,TabsContent,Properties,Parameters,CreateProperties}— the entity's list and two-tab detail surfacecontext/assets/CatalogSchemasFolderContext.tsx— folder context for the new entity, matching the sibling Catalog entitiesutils/core-schemas/— shared$id/resource-name module used by both App Runners and Catalog SchemasBreaking Changes:
utils/app-runners/core-runner-name.tsis removed; its helpers now live inutils/core-schemas/resource-name.ts. All in-repo callers are updated in this change — no external consumers.Checklist:
(Issue #4555)(comma-separated list of issues)🤖 Generated with Claude Code