feat: Custom param type - #184
Draft
daogrady wants to merge 2 commits into
Draft
Conversation
daogrady
force-pushed
the
feat/custom-param-type
branch
from
September 3, 2026 08:20
393fdee to
9482e71
Compare
daogrady
marked this pull request as draft
September 3, 2026 08:27
Contributor
Author
|
Converting to draft, as this is a feature that is not covered in the odata standard: "CustomParameter": {
"$Kind": "ComplexType",
"@Core.Description": "A custom parameter is either a header or a query option",
"@Core.LongDescription": "The type of a custom parameter is always a string. Restrictions on the parameter values can be expressed by annotating the record expression describing the parameter with terms from the Validation vocabulary, e.g. Validation.Pattern or Validation.AllowedValues.",
"Name": {
"@Core.Description": "Name of the custom parameter"
},
"Description": {
"$Nullable": true,
"@Core.Description": "Description of the custom parameter"
},
"DocumentationURL": {
"$Nullable": true,
"@Core.IsURL": true,
"@Core.Description": "URL of related documentation"
},
"Required": {
"$Type": "Edm.Boolean",
"$DefaultValue": false,
"@Core.Description": "true: parameter is required, false or not specified: parameter is optional"
},
"ExampleValues": {
"$Collection": true,
"$Type": "Core.PrimitiveExampleValue",
"@Core.Description": "Example values for the custom parameter"
}
},explicitly states that (a) the type is always The import already supports this, see: // foo.cds
service DemoService {
entity Things {
key id : Integer;
name : String;
}
}
annotate DemoService.Things with @Capabilities.InsertRestrictions.CustomHeaders: [{
Name : 'x-auto-activate',
Description : 'Auto-activate the record. Boolean, defaults to true.',
Required : false,
![@openapi.type] : 'boolean',
![@openapi.default] : true
}];then (with cds compile foo.cds -2 openapi > out.jsoninspect the output file to find the custom type. Then cds import --from openapi out.jsoninspect the srv/external/out.csn to find the custom type again. Still, other tools could trip over this non-standard annotation, so I am hesitant to merge it just yet. |
Contributor
Author
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.


Fixes issues/issues/21005