Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MODFQMMGR-382:Support option to limit columns inherited from an Entit… #62

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/main/resources/swagger.api/schemas/entityTypeColumn.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
"description": "Indicates if the field is hidden in UI",
"type": "boolean",
"default": false
},
"essential": {
"description": "Indicates if a column is crucial to the definition of an entity type",
"type": "boolean"
}
},
"required": []
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/swagger.api/schemas/entityTypeSource.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
"useIdColumns": {
"description": "Whether to use the idColumns of this source as idColumns for the enclosing entity type",
"type": "boolean"
},
"essentialOnly": {
"description": "Indicates that only critical columns for core functionality should be inherited, excluding non-essential columns",
"type": "boolean"
}
},
"required": [
Expand Down
Loading