Expand description
Implements OpenAPI Schema Object types which can be used to define field properties, enum values, array or object types.
Structs§
- AllOf
- AllOf Composite Object component holds multiple components together where API endpoint will return a combination of all of them.
- AllOf
Builder - Builder for
AllOf
with chainable configuration methods to create a newAllOf
. - AnyOf
- AnyOf Composite Object component holds multiple components together where API endpoint will return a combination of one or more of them.
- AnyOf
Builder - Builder for
AnyOf
with chainable configuration methods to create a newAnyOf
. - Array
- Array represents
Vec
orslice
type of items. - Array
Builder - Builder for
Array
with chainable configuration methods to create a newArray
. - Components
- Implements OpenAPI Components Object which holds supported reusable objects.
- Components
Builder - Builder for
Components
with chainable configuration methods to create a newComponents
. - Discriminator
- OpenAPI Discriminator object which can be optionally used together with
OneOf
composite object. - Object
- Implements subset of OpenAPI Schema Object which allows
adding other
Schema
s as properties to thisSchema
. - Object
Builder - Builder for
Object
with chainable configuration methods to create a newObject
. - OneOf
- OneOf Composite Object component holds multiple components together where API endpoint could return any of them.
- OneOf
Builder - Builder for
OneOf
with chainable configuration methods to create a newOneOf
. - Ref
- Implements OpenAPI Reference Object that can be used to reference
reusable components such as
Schema
s orResponse
s.
Enums§
- Additional
Properties - AdditionalProperties is used to define values of map fields of the
Schema
. - Known
Format - Known schema format modifier property to provide fine detail of the primitive type.
- Schema
- Is super type for OpenAPI Schema Object. Schema is reusable resource what can be
referenced from path operations and other components using
Ref
. - Schema
Format - Additional format for
SchemaType
to fine tune the data type used. If the format is not supported by the UI it may default back toSchemaType
alone. Format is an open value, so you can use any formats, even not those defined by the OpenAPI Specification. - Schema
Type - Represents data type of
Schema
.