Qore Swagger Module Reference 2.1.1
|
describes a single HTTP header More...
#include <Swagger.qm.dox.h>
Inherits ObjectBase, and SchemaBase.
Public Member Methods | |
constructor (hash< auto > oh, SwaggerSchema swagger) | |
Constructor. More... | |
Public Attributes | |
*string | collectionFormat |
Determines the format of the array if type array is used. More... | |
auto | defaultVal |
Declares the value of the header that the server will use if none is provided. More... | |
*string | desc |
A short description of the header. | |
*string | format |
The extending format for the previously mentioned type . See Data Type Formats for further details. | |
*SchemaObject | items |
Required if type is "array" . Describes the type of items in the array. | |
string | type |
Required. The type of the object. More... | |
Static Private Member Methods | |
static | checkValueType (reference< auto > value, string type, *SchemaObject items, *string loc) |
validates default values | |
describes a single HTTP header
HeaderObject::constructor | ( | hash< auto > | oh, |
SwaggerSchema | swagger | ||
) |
Constructor.
oh | deserialized hash from the source schema description describing a single HTTP header |
swagger | the REST schema for resolving references |
INVALID-FIELD-TYPE | field has invalid type |
INVALID-FIELD-VALUE | field has invalid value |
REQUIRED-FIELD-MISSING | required field is missing |
*string HeaderObject::collectionFormat |
Determines the format of the array if type array is used.
Possible values are:
"csv"
: comma separated values; ex: foo,bar"ssv"
: space separated values; ex: foo bar"tsv"
: tab separated values; ex: foo\tbar"pipes"
: pipe separated values; ex: foo|barDefault value is "csv"
.
auto HeaderObject::defaultVal |
Declares the value of the header that the server will use if none is provided.
(Note: "default" has no meaning for required headers.) See https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-6.2. Unlike JSON Schema this value MUST conform to the defined type for the header.
string HeaderObject::type |
Required. The type of the object.
The value MUST be one of "string"
, "number"
, "integer"
, "boolean"
, or "array"
.