* Declare a type enum (eg: `MyTypeEnum`) * Declare a data type that is a variant of the type enum (eg: `MyDataType`) * Declare a verb that has a request type of the data type * Declare another verb that calls that first verb. Expected: The call to the second verb would make a request with the json of the data type Actual: The call request is actually written as if the verb accepted `MyTypeEnum`: ``` { "name": "myDataType", "value": { ... the json I expected ... } } ```
MyTypeEnum)MyDataType)Expected:
The call to the second verb would make a request with the json of the data type
Actual:
The call request is actually written as if the verb accepted
MyTypeEnum: