I would like to use my custom types in uriParamer parts of the resource description. It seems that the console does not handle these correctly because it shows a validation error for a valid entry. When I inline the type definition it works.
# This works
/{user}/{feature}:
uriParameters:
feature:
type: string
enum:
- A
- B
- C
# Validation breaks here
types:
Feature:
type: string
enum:
- A
- B
- C
/{user}/{feature}:
uriParameters:
feature:
type: Feature