Add low-code model descriptor schemas#25601
Merged
Merged
Conversation
be07fcf to
c8050da
Compare
Comment on lines
+92
to
+103
| { | ||
| "if": { "properties": { "type": { "const": "chart" } } }, | ||
| "then": { "required": ["chart", "entityName"] } | ||
| }, | ||
| { | ||
| "if": { "properties": { "type": { "const": "list" } } }, | ||
| "then": { "required": ["list", "entityName"] } | ||
| }, | ||
| { | ||
| "if": { "properties": { "type": { "const": "numberContainer" } } }, | ||
| "then": { "required": ["numberContainer"] } | ||
| } |
Comment on lines
+24
to
+31
| { | ||
| "type": "numberContainer", | ||
| "title": "Overview", | ||
| "numberContainer": { | ||
| "items": [ | ||
| { "title": "Total Records", "entity": "Acme.Events.Event", "aggregation": "count" } | ||
| ] | ||
| } |
Comment on lines
+23
to
+29
| "children": { | ||
| "type": "array", | ||
| "description": "Child permissions forming a hierarchy. Use for feature -> operation grouping.", | ||
| "items": { | ||
| "$ref": "permission-descriptor.schema.json" | ||
| } | ||
| } |
Comment on lines
+13
to
+16
| "name": { | ||
| "type": "string", | ||
| "description": "Unique endpoint identifier used by designer/model health. Prefer PascalCase or kebab-case, for example 'SearchCustomers'." | ||
| }, |
Comment on lines
+17
to
+20
| "route": { | ||
| "type": "string", | ||
| "description": "URL route pattern. Must start with '/' and should use an application-specific prefix such as '/api/low-code/events/{id}'. Route parameters use ASP.NET style braces, for example '{id}'." | ||
| }, |
Comment on lines
+27
to
+30
| "javascript": { | ||
| "type": "string", | ||
| "description": "JavaScript code to execute. Use context request/response helpers and services exposed by the host, such as db, currentUser/currentTenant, authorization, emailSender, config, http, event bus, background jobs, and logging helpers." | ||
| }, |
EngincanV
approved these changes
Jun 10, 2026
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.
Adds public ABP Low-Code model descriptor JSON schemas under
schemas/low-code.model.schema.jsonaggregate schema