feat(schema): schema changes for custom REST endpoints #1509
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.
Issue number: ADDON-76812
PR Type
What kind of change does this PR introduce?
Summary
Changes
Schema changes required for the future feature for adding custom REST endpoints.
This change adds new
options
section withrestHandlers
.The array above consists of entries of the following form (example):
endpoint
- it denotes the URL path that handler is connected tohandlerType
- currently onlyEAI
is specified here, to denote, that only EAI endpoints are supported. This is added in case we would like to support other handlers as well in the future.registerHandler
- optional. If specified, it registers the handler inweb.conf
andrestmap.conf
.requestParameters
- an object with action name as a key and value being a dictionary containing keys (parameter names) to values (OpenAPI data types).responseParameters
- similar to the above oneThe data types are based on OpenAPI data types.
Example data types:
{"type": "string"}
{"type": "number", "nullable": true}
{"type": "boolean"}
{"type": "array", "items": {"type": "string"}}
{"type": "object", "parameters": {"some_param": {"type": "string"}}}
{"anyOf": [...]}
{"allOf": [...]}
User experience
No changes to the current user experience.
Checklist
If an item doesn't apply to your changes, leave it unchecked.