-
Notifications
You must be signed in to change notification settings - Fork 163
Closed
Labels
area: specChanges in the SpecificationChanges in the Specification
Description
What would you like to be added:
A way to classify the parameter in the function
definition (optional) so implementations could have a hint of how to handle the parameter when executing a given function.
For example a given operation state:
"functions": [
{
"name": "userAuthServiceCall",
"resource": "http://authservice.com",
"type": "rest",
"parameters": [
{"name": "user", "classifier": "querystring"},
{"name": "token", "classifier": "header"}
],
"metadata": {
"method": "GET"
}
}
]
(...)
Why is this needed:
With the classifier, implementations would know how to handle these parameters on a REST call scenario for instance.
Metadata
Metadata
Assignees
Labels
area: specChanges in the SpecificationChanges in the Specification