Hi team,
In YAML file, I have 2 integer attributes, one has example 0, another has example 50.
first_index:
description: The starting index in the batch. Used for pagination.
type: integer
example: 0
page_size:
description: The number of entries per page.
type: integer
example: 50
After rendered, example of first_index is “{integer}”. It should have been 0 as mentioned in YAML.
I’ve tried changing from 0 to 1, and first_index will display correctly.
This behavior also happens to boolean attribute. When setting true, it displays correctly. Otherwise, setting false, it will be “{boolean}”.
Please help check. Thanks.