Attributes

This page is generated automatically from the swagger-php sources.

For improvements head over to GitHub and create a PR 😉

In addition to this page, there are also a number of examples which might help you out.

AdditionalProperties

Allowed in


Schema, Property, Items, JsonContent, XmlContent, AdditionalProperties

Nested elements


Discriminator, Items, Property, ExternalDocumentation, Xml, AdditionalProperties, Attachable

Parameters


ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : string|null

The key into Components->schemas array.

title : string|null

Can be used to decorate a user interface with information about the data produced by this user interface.

Preferably short; use description for more details.

description : string|null

A description will provide explanation about the purpose of the instance described by this schema.

maxProperties : int|null

The maximum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is less than, or equal to, the value of this attribute.

minProperties : int|null

The minimum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is greater than, or equal to, the value of this attribute.

required : string[]

An object instance is valid against this property if its property set contains all elements in this property's
array value.

properties : Property[]

A collection of properties to define for an object.

Each property is represented as an instance of the Property class.

type : string|non-empty-array<string>|null

The type of the schema/property.

OpenApi v3.0: The value MUST be one of "string", "number", "integer", "boolean", "array" or "object".

Since OpenApi v3.1 an array of types may be used.

format : string|null

The extending format for the previously mentioned type. See Data Type Formats for further details.

items : OpenApi\Attributes\Items|null

Required if type is "array". Describes the type of items in the array.

collectionFormat : string|null

Determines the format of the array if type array is used.

Possible values are:
- csv: comma separated values foo,bar.
- ssv: space separated values foo bar.
- tsv: tab separated values foo\tbar.
- pipes: pipe separated values foo|bar.
- multi: corresponds to multiple parameter instances instead of multiple values for a single instance foo=bar&foo=baz.
This is valid only for parameters of type query or formData.
Default value is csv.

default : mixed|null

Sets a default value to the parameter. The type of the value depends on the defined type.

See: JSON schema validation

maximum : int|float

The maximum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMaximum : int|float|bool|null

A boolean indicating whether the maximum value is excluded from the set of valid values.

When set to true, the maximum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

minimum : int|float

The minimum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMinimum : int|float|bool|null

A boolean indicating whether the minimum value is excluded from the set of valid values.

When set to true, the minimum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

maxLength : int|null

The maximum length of a string property.

A string instance is valid against this property if its length is less than, or equal to, the value of this attribute.

See: JSON schema validation

minLength : int|null

The minimum length of a string property.

A string instance is valid against this property if its length is greater than, or equal to, the value of this attribute.

See: JSON schema validation

maxItems : int|null

The maximum number of items allowed in an array property.

An array instance is valid against this property if its number of items is less than, or equal to, the value of this attribute.

See: JSON schema validation

minItems : int|null

The minimum number of items allowed in an array property.

An array instance is valid against this property if its number of items is greater than, or equal to, the value of this attribute.

See: JSON schema validation

uniqueItems : bool|null

A boolean value indicating whether all items in an array property must be unique.

If this attribute is set to true, then all items in the array must be unique.

See: JSON schema validation

pattern : string|null

A string instance is considered valid if the regular expression matches the instance successfully.

enum : string[]|int[]|float[]|bool[]|\UnitEnum[]|class-string

A collection of allowable values for a property.

A property instance is valid against this attribute if its value is one of the values specified in this collection.

See: JSON schema validation

discriminator : OpenApi\Attributes\Discriminator|null

Adds support for polymorphism.

The discriminator is an object name that is used to differentiate between other schemas which may satisfy the
payload description. See Composition and Inheritance for more details.

readOnly : bool|null

Declares the property as "read only".

Relevant only for Schema "properties" definitions.

This means that it may be sent as part of a response but should not be sent as part of the request.
If the property is marked as readOnly being true and is in the required list, the required will take effect on
the response only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

writeOnly : bool|null

Declares the property as "write only".

Relevant only for Schema "properties" definitions.
Therefore, it may be sent as part of a request but should not be sent as part of the response.
If the property is marked as writeOnly being true and is in the required list, the required will take effect on
the request only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

xml : OpenApi\Attributes\Xml|null

This may be used only on properties schemas.

It has no effect on root schemas.
Adds additional metadata to describe the XML representation of this property.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this schema.

example : mixed|null

A free-form property to include an example of an instance for this schema.

To represent examples that cannot naturally be represented in JSON or YAML, a string value can be used to
contain the example with escaping where necessary.

nullable : bool|null

Allows sending a null value for the defined schema.
Default value is false.

This must not be used when using OpenApi version 3.1,
instead make the "type" property an array and add "null" as a possible type.

deprecated : bool|null

Specifies that a schema is deprecated and should be transitioned out of usage.
Default value is false.

allOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against all schemas
defined by this property's value.

anyOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against at least one
schema defined by this property's value.

oneOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against exactly one schema
defined by this property's value.

additionalProperties : OpenApi\Attributes\AdditionalProperties|bool|null

http://json-schema.org/latest/json-schema-validation.html#anchor64.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Attachable

Allowed in


AdditionalProperties, Components, Contact, Delete, Discriminator, Examples, ExternalDocumentation, Flow, Get, Head, Header, Info, Items, JsonContent, License, Link, MediaType, OpenApi, Operation, Options, Parameter, Patch, PathItem, PathParameter, Post, Property, Put, RequestBody, Response, Schema, SecurityScheme, Server, ServerVariable, Tag, Trace, Webhook, Xml, XmlContent

Parameters


properties : array

No details available.

Components

Allowed in


OpenApi

Nested elements


Response, Parameter, PathParameter, RequestBody, Examples, Header, SecurityScheme, Link, Schema, Attachable

Parameters


schemas : array<Schema|\OpenApi\Annotations\Schema>|null

Reusable Schemas.

responses : Response[]|null

Reusable Responses.

parameters : Parameter[]|null

Reusable Parameters.

requestBodies : RequestBody[]|null

Reusable Request Bodies.

examples : Examples[]|null

Reusable Examples.

headers : Header[]|null

Reusable Headers.

securitySchemes : SecurityScheme[]|null

Reusable Security Schemes.

links : Link[]|null

Reusable Links.

callbacks : array|null

Reusable Callbacks.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Contact

Allowed in


Info

Nested elements


Attachable

Parameters


name : string|null

The identifying name of the contact person/organization.

url : string|null

The URL pointing to the contact information.

email : string|null

The email address of the contact person/organization.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

CookieParameter

Allowed in


Components, PathItem, Operation, Get, Post, Put, Delete, Patch, Head, Options, Trace

Nested elements


Schema, Examples, Attachable

Parameters


parameter : string|null

The key into Components::parameters or PathItem::parameters array.

name : string|null

The (case-sensitive) name of the parameter.

If in is "path", the name field must correspond to the associated path segment from the path field in the Paths Object.

If in is "header" and the name field is "Accept", "Content-Type" or "Authorization", the parameter definition shall be ignored.
For all other cases, the name corresponds to the parameter name used by the in property.

description : string|null

A brief description of the parameter.

This could contain examples of use.

CommonMark syntax may be used for rich text representation.

in : string|null

This takes 'cookie' as the default location.

required : bool|null

Determines whether this parameter is mandatory.

If the parameter location is "path", this property is required and its value must be true.
Otherwise, the property may be included and its default value is false.

deprecated : bool|null

Specifies that a parameter is deprecated and should be transitioned out of usage.

allowEmptyValue : bool|null

Sets the ability to pass empty-valued parameters.

This is valid only for query parameters and allows sending a parameter with an empty value.

Default value is false.

If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue shall be ignored.

ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : OpenApi\Attributes\Schema|null

The schema defining the type used for the parameter.

example : mixed|null

Example of the media type.

The example should match the specified schema and encoding properties if present.
The example object is mutually exclusive of the examples object.
Furthermore, if referencing a schema which contains an example, the example value shall override the example provided by the schema.
To represent examples of media types that cannot naturally be represented in JSON or YAML, a string value can contain the example with escaping where necessary.

examples : array<string,Examples>

Examples of the media type.

Each example should contain a value in the correct format as specified in the parameter encoding.
The examples object is mutually exclusive of the example object.
Furthermore, if referencing a schema which contains an example, the examples value shall override the example provided by the schema.

content : array<MediaType>|JsonContent|XmlContent|Attachable|null

A map containing the representations for the parameter.

The key is the media type and the value describes it.
The map must only contain one entry.

style : string|null

Describes how the parameter value will be serialized depending on the type of the parameter value.

Default values (based on value of in): for query - form; for path - simple; for header - simple; for cookie - form.

explode : bool|null

When this is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map.

For other types of parameters this property has no effect.

When style is form, the default value is true.
For all other styles, the default value is false.

allowReserved : bool|null

Determines whether the parameter value should allow reserved characters, as defined by RFC3986 :/?#[]@!$&'()*+,;= to be included without percent-encoding.

This property only applies to parameters with an in value of query.

The default value is false.

spaceDelimited : array|null

Space separated array values.

This option replaces collectionFormat equal to ssv from OpenAPI 2.0.

pipeDelimited : array|null

Pipe separated array values.

This option replaces collectionFormat equal to pipes from OpenAPI 2.0.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Delete

Allowed in


PathItem

Nested elements


Parameter, PathParameter, Response, ExternalDocumentation, Server, RequestBody, Attachable

Parameters


path : string|null

Key in the OpenApi "Paths Object" for this operation.

operationId : string|null

Unique string used to identify the operation.

The id must be unique among all operations described in the API.
Tools and libraries may use the operationId to uniquely identify an operation, therefore, it is recommended to
follow common programming naming conventions.

description : string|null

A verbose explanation of the operation behavior.

CommonMark syntax MAY be used for rich text representation.

summary : string|null

A short summary of what the operation does.

security : array

A declaration of which security mechanisms can be used for this operation.

The list of values includes alternative security requirement objects that can be used.

Only one of the security requirement objects need to be satisfied to authorize a request.

This definition overrides any declared top-level security.
To remove a top-level security declaration, an empty array can be used.

servers : Server[]

An alternative server array to service this operation.

If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by
this value.

requestBody : OpenApi\Attributes\RequestBody|null

The request body applicable for this operation.

The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly
defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody shall be ignored
by consumers.

tags : string[]

A list of tags for API documentation control.

Tags can be used for logical grouping of operations by resources or any other qualifier.

parameters : Parameter[]

A list of parameters that are applicable for this operation.

If a parameter is already defined at the Path Item, the new definition will override it but can never remove it.
The list must not include duplicated parameters.

A unique parameter is defined by a combination of a name and location.

The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's
components/parameters.

responses : Response[]

The list of possible responses as they are returned from executing this operation.

callbacks : array|null

A map of possible out-of band callbacks related to the parent operation.

The key is a unique identifier for the Callback Object.

Each value in the map is a Callback Object that describes a request that may be initiated by the API provider
and the expected responses. The key value used to identify the callback object is an expression, evaluated at
runtime, that identifies a URL to use for the callback operation.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this operation.

deprecated : bool|null

Declares this operation to be deprecated.

Consumers should refrain from usage of the declared operation.

Default value is false.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Discriminator

Allowed in


Schema, Property, AdditionalProperties, Items, JsonContent, XmlContent

Nested elements


Attachable

Parameters


propertyName : string|null

The name of the property in the payload that will hold the discriminator value.

mapping : string[]|null

An object to hold mappings between payload values and schema names or references.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Examples

Allowed in


Components, Parameter, PathParameter, MediaType, JsonContent, XmlContent

Nested elements


Attachable

Parameters


example : string|null

The key into `#/components/examples`.

summary : string|null

Short description for the example.

description : string|null

Embedded literal example.

The value field and externalValue field are mutually exclusive.

To represent examples of media types that cannot naturally be represented
in JSON or YAML, use a string value to contain the example, escaping where necessary.

value : array|string|int|null

Embedded literal example.

The value field and externalValue field are mutually exclusive.

To represent examples of media types that cannot naturally be represented
in JSON or YAML, use a string value to contain the example, escaping where necessary.

externalValue : string|null

An URL that points to the literal example.

This provides the capability to reference examples that cannot easily be included
in JSON or YAML documents.

The value field and externalValue field are mutually exclusive.

ref : string|class-string|object|null

The relative or absolute path to an example.

See: Using refs

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

ExternalDocumentation

Allowed in


OpenApi, Tag, Schema, AdditionalProperties, Property, Operation, Get, Post, Put, Delete, Patch, Head, Options, Trace, Items, JsonContent, XmlContent

Nested elements


Attachable

Parameters


description : string|null

A short description of the target documentation. GFM syntax can be used for rich text representation.

url : string|null

The URL for the target documentation.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Flow

Allowed in


SecurityScheme

Nested elements


Attachable

Parameters


authorizationUrl : string|null

The authorization url to be used for this flow.

This must be in the form of an url.

tokenUrl : string|null

The token URL to be used for this flow.

This must be in the form of an url.

refreshUrl : string|null

The URL to be used for obtaining refresh tokens.

This must be in the form of an url.

flow : string|null

Flow name.

One of ['implicit', 'password', 'authorizationCode', 'clientCredentials'].

scopes : array|null

The available scopes for the OAuth2 security scheme.

A map between the scope name and a short description for it.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Get

Allowed in


PathItem

Nested elements


Parameter, PathParameter, Response, ExternalDocumentation, Server, RequestBody, Attachable

Parameters


path : string|null

Key in the OpenApi "Paths Object" for this operation.

operationId : string|null

Unique string used to identify the operation.

The id must be unique among all operations described in the API.
Tools and libraries may use the operationId to uniquely identify an operation, therefore, it is recommended to
follow common programming naming conventions.

description : string|null

A verbose explanation of the operation behavior.

CommonMark syntax MAY be used for rich text representation.

summary : string|null

A short summary of what the operation does.

security : array

A declaration of which security mechanisms can be used for this operation.

The list of values includes alternative security requirement objects that can be used.

Only one of the security requirement objects need to be satisfied to authorize a request.

This definition overrides any declared top-level security.
To remove a top-level security declaration, an empty array can be used.

servers : Server[]

An alternative server array to service this operation.

If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by
this value.

requestBody : OpenApi\Attributes\RequestBody|null

The request body applicable for this operation.

The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly
defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody shall be ignored
by consumers.

tags : string[]

A list of tags for API documentation control.

Tags can be used for logical grouping of operations by resources or any other qualifier.

parameters : Parameter[]

A list of parameters that are applicable for this operation.

If a parameter is already defined at the Path Item, the new definition will override it but can never remove it.
The list must not include duplicated parameters.

A unique parameter is defined by a combination of a name and location.

The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's
components/parameters.

responses : Response[]

The list of possible responses as they are returned from executing this operation.

callbacks : array|null

A map of possible out-of band callbacks related to the parent operation.

The key is a unique identifier for the Callback Object.

Each value in the map is a Callback Object that describes a request that may be initiated by the API provider
and the expected responses. The key value used to identify the callback object is an expression, evaluated at
runtime, that identifies a URL to use for the callback operation.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this operation.

deprecated : bool|null

Declares this operation to be deprecated.

Consumers should refrain from usage of the declared operation.

Default value is false.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Allowed in


PathItem

Nested elements


Parameter, PathParameter, Response, ExternalDocumentation, Server, RequestBody, Attachable

Parameters


path : string|null

Key in the OpenApi "Paths Object" for this operation.

operationId : string|null

Unique string used to identify the operation.

The id must be unique among all operations described in the API.
Tools and libraries may use the operationId to uniquely identify an operation, therefore, it is recommended to
follow common programming naming conventions.

description : string|null

A verbose explanation of the operation behavior.

CommonMark syntax MAY be used for rich text representation.

summary : string|null

A short summary of what the operation does.

security : array

A declaration of which security mechanisms can be used for this operation.

The list of values includes alternative security requirement objects that can be used.

Only one of the security requirement objects need to be satisfied to authorize a request.

This definition overrides any declared top-level security.
To remove a top-level security declaration, an empty array can be used.

servers : Server[]

An alternative server array to service this operation.

If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by
this value.

requestBody : OpenApi\Attributes\RequestBody|null

The request body applicable for this operation.

The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly
defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody shall be ignored
by consumers.

tags : string[]

A list of tags for API documentation control.

Tags can be used for logical grouping of operations by resources or any other qualifier.

parameters : Parameter[]

A list of parameters that are applicable for this operation.

If a parameter is already defined at the Path Item, the new definition will override it but can never remove it.
The list must not include duplicated parameters.

A unique parameter is defined by a combination of a name and location.

The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's
components/parameters.

responses : Response[]

The list of possible responses as they are returned from executing this operation.

callbacks : array|null

A map of possible out-of band callbacks related to the parent operation.

The key is a unique identifier for the Callback Object.

Each value in the map is a Callback Object that describes a request that may be initiated by the API provider
and the expected responses. The key value used to identify the callback object is an expression, evaluated at
runtime, that identifies a URL to use for the callback operation.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this operation.

deprecated : bool|null

Declares this operation to be deprecated.

Consumers should refrain from usage of the declared operation.

Default value is false.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Allowed in


Components, Response

Nested elements


Schema, Attachable

Parameters


ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

header : string|null

No details available.

description : string|null

A brief description of the parameter.

This could contain examples of use.
CommonMark syntax MAY be used for rich text representation.

required : bool|null

No details available.

schema : OpenApi\Attributes\Schema|null

Schema object.

deprecated : bool|null

Specifies that a parameter is deprecated and SHOULD be transitioned out of usage.

allowEmptyValue : bool|null

Sets the ability to pass empty-valued parameters.

This is valid only for query parameters and allows sending a parameter with an empty value.

Default value is false.

If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue SHALL be ignored.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

HeaderParameter

Allowed in


Components, PathItem, Operation, Get, Post, Put, Delete, Patch, Head, Options, Trace

Nested elements


Schema, Examples, Attachable

Parameters


parameter : string|null

The key into Components::parameters or PathItem::parameters array.

name : string|null

The (case-sensitive) name of the parameter.

If in is "path", the name field must correspond to the associated path segment from the path field in the Paths Object.

If in is "header" and the name field is "Accept", "Content-Type" or "Authorization", the parameter definition shall be ignored.
For all other cases, the name corresponds to the parameter name used by the in property.

description : string|null

A brief description of the parameter.

This could contain examples of use.

CommonMark syntax may be used for rich text representation.

in : string|null

This takes 'header' as the default location.

required : bool|null

Determines whether this parameter is mandatory.

If the parameter location is "path", this property is required and its value must be true.
Otherwise, the property may be included and its default value is false.

deprecated : bool|null

Specifies that a parameter is deprecated and should be transitioned out of usage.

allowEmptyValue : bool|null

Sets the ability to pass empty-valued parameters.

This is valid only for query parameters and allows sending a parameter with an empty value.

Default value is false.

If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue shall be ignored.

ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : OpenApi\Attributes\Schema|null

The schema defining the type used for the parameter.

example : mixed|null

Example of the media type.

The example should match the specified schema and encoding properties if present.
The example object is mutually exclusive of the examples object.
Furthermore, if referencing a schema which contains an example, the example value shall override the example provided by the schema.
To represent examples of media types that cannot naturally be represented in JSON or YAML, a string value can contain the example with escaping where necessary.

examples : array<string,Examples>

Examples of the media type.

Each example should contain a value in the correct format as specified in the parameter encoding.
The examples object is mutually exclusive of the example object.
Furthermore, if referencing a schema which contains an example, the examples value shall override the example provided by the schema.

content : array<MediaType>|JsonContent|XmlContent|Attachable|null

A map containing the representations for the parameter.

The key is the media type and the value describes it.
The map must only contain one entry.

style : string|null

Describes how the parameter value will be serialized depending on the type of the parameter value.

Default values (based on value of in): for query - form; for path - simple; for header - simple; for cookie - form.

explode : bool|null

When this is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map.

For other types of parameters this property has no effect.

When style is form, the default value is true.
For all other styles, the default value is false.

allowReserved : bool|null

Determines whether the parameter value should allow reserved characters, as defined by RFC3986 :/?#[]@!$&'()*+,;= to be included without percent-encoding.

This property only applies to parameters with an in value of query.

The default value is false.

spaceDelimited : array|null

Space separated array values.

This option replaces collectionFormat equal to ssv from OpenAPI 2.0.

pipeDelimited : array|null

Pipe separated array values.

This option replaces collectionFormat equal to pipes from OpenAPI 2.0.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Info

Allowed in


OpenApi

Nested elements


Contact, License, Attachable

Parameters


version : string|null

The version of the OpenAPI document (which is distinct from the OpenAPI Specification version or the API implementation version).

description : string|null

A short description of the application.

CommonMark syntax may be used for rich text representation.

title : string|null

The title of the application.

termsOfService : string|null

An URL to the Terms of Service for the API.

Must be in the format of an url.

contact : OpenApi\Attributes\Contact|null

The contact information for the exposed API.

license : OpenApi\Attributes\License|null

The license information for the exposed API.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Items

Allowed in


Property, AdditionalProperties, Schema, JsonContent, XmlContent, Items

Nested elements


Discriminator, Items, Property, ExternalDocumentation, Xml, AdditionalProperties, Attachable

Parameters


ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : string|null

The key into Components->schemas array.

title : string|null

Can be used to decorate a user interface with information about the data produced by this user interface.

Preferably short; use description for more details.

description : string|null

A description will provide explanation about the purpose of the instance described by this schema.

maxProperties : int|null

The maximum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is less than, or equal to, the value of this attribute.

minProperties : int|null

The minimum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is greater than, or equal to, the value of this attribute.

required : string[]

An object instance is valid against this property if its property set contains all elements in this property's
array value.

properties : Property[]

A collection of properties to define for an object.

Each property is represented as an instance of the Property class.

type : string|non-empty-array<string>|null

The type of the schema/property.

OpenApi v3.0: The value MUST be one of "string", "number", "integer", "boolean", "array" or "object".

Since OpenApi v3.1 an array of types may be used.

format : string|null

The extending format for the previously mentioned type. See Data Type Formats for further details.

items : OpenApi\Attributes\Items|null

Required if type is "array". Describes the type of items in the array.

collectionFormat : string|null

Determines the format of the array if type array is used.

Possible values are:
- csv: comma separated values foo,bar.
- ssv: space separated values foo bar.
- tsv: tab separated values foo\tbar.
- pipes: pipe separated values foo|bar.
- multi: corresponds to multiple parameter instances instead of multiple values for a single instance foo=bar&foo=baz.
This is valid only for parameters of type query or formData.
Default value is csv.

default : mixed|null

Sets a default value to the parameter. The type of the value depends on the defined type.

See: JSON schema validation

maximum : int|float

The maximum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMaximum : int|float|bool|null

A boolean indicating whether the maximum value is excluded from the set of valid values.

When set to true, the maximum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

minimum : int|float

The minimum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMinimum : int|float|bool|null

A boolean indicating whether the minimum value is excluded from the set of valid values.

When set to true, the minimum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

maxLength : int|null

The maximum length of a string property.

A string instance is valid against this property if its length is less than, or equal to, the value of this attribute.

See: JSON schema validation

minLength : int|null

The minimum length of a string property.

A string instance is valid against this property if its length is greater than, or equal to, the value of this attribute.

See: JSON schema validation

maxItems : int|null

The maximum number of items allowed in an array property.

An array instance is valid against this property if its number of items is less than, or equal to, the value of this attribute.

See: JSON schema validation

minItems : int|null

The minimum number of items allowed in an array property.

An array instance is valid against this property if its number of items is greater than, or equal to, the value of this attribute.

See: JSON schema validation

uniqueItems : bool|null

A boolean value indicating whether all items in an array property must be unique.

If this attribute is set to true, then all items in the array must be unique.

See: JSON schema validation

pattern : string|null

A string instance is considered valid if the regular expression matches the instance successfully.

enum : string[]|int[]|float[]|bool[]|\UnitEnum[]|class-string

A collection of allowable values for a property.

A property instance is valid against this attribute if its value is one of the values specified in this collection.

See: JSON schema validation

discriminator : OpenApi\Attributes\Discriminator|null

Adds support for polymorphism.

The discriminator is an object name that is used to differentiate between other schemas which may satisfy the
payload description. See Composition and Inheritance for more details.

readOnly : bool|null

Declares the property as "read only".

Relevant only for Schema "properties" definitions.

This means that it may be sent as part of a response but should not be sent as part of the request.
If the property is marked as readOnly being true and is in the required list, the required will take effect on
the response only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

writeOnly : bool|null

Declares the property as "write only".

Relevant only for Schema "properties" definitions.
Therefore, it may be sent as part of a request but should not be sent as part of the response.
If the property is marked as writeOnly being true and is in the required list, the required will take effect on
the request only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

xml : OpenApi\Attributes\Xml|null

This may be used only on properties schemas.

It has no effect on root schemas.
Adds additional metadata to describe the XML representation of this property.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this schema.

example : mixed|null

A free-form property to include an example of an instance for this schema.

To represent examples that cannot naturally be represented in JSON or YAML, a string value can be used to
contain the example with escaping where necessary.

nullable : bool|null

Allows sending a null value for the defined schema.
Default value is false.

This must not be used when using OpenApi version 3.1,
instead make the "type" property an array and add "null" as a possible type.

deprecated : bool|null

Specifies that a schema is deprecated and should be transitioned out of usage.
Default value is false.

allOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against all schemas
defined by this property's value.

anyOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against at least one
schema defined by this property's value.

oneOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against exactly one schema
defined by this property's value.

additionalProperties : OpenApi\Attributes\AdditionalProperties|bool|null

http://json-schema.org/latest/json-schema-validation.html#anchor64.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

JsonContent

Nested elements


Discriminator, Items, Property, ExternalDocumentation, AdditionalProperties, Examples, Attachable

Parameters


examples : array<string,Examples>

An associative array of Examples attributes.

The keys represent the name of the example and the values are instances of the Examples attribute.
Each example is used to show how the content of the request or response should look like.

ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : string|null

The key into Components->schemas array.

title : string|null

Can be used to decorate a user interface with information about the data produced by this user interface.

Preferably short; use description for more details.

description : string|null

A description will provide explanation about the purpose of the instance described by this schema.

maxProperties : int|null

The maximum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is less than, or equal to, the value of this attribute.

minProperties : int|null

The minimum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is greater than, or equal to, the value of this attribute.

required : string[]

An object instance is valid against this property if its property set contains all elements in this property's
array value.

properties : Property[]

A collection of properties to define for an object.

Each property is represented as an instance of the Property class.

type : string|non-empty-array<string>|null

The type of the schema/property.

OpenApi v3.0: The value MUST be one of "string", "number", "integer", "boolean", "array" or "object".

Since OpenApi v3.1 an array of types may be used.

format : string|null

The extending format for the previously mentioned type. See Data Type Formats for further details.

items : OpenApi\Attributes\Items|null

Required if type is "array". Describes the type of items in the array.

collectionFormat : string|null

Determines the format of the array if type array is used.

Possible values are:
- csv: comma separated values foo,bar.
- ssv: space separated values foo bar.
- tsv: tab separated values foo\tbar.
- pipes: pipe separated values foo|bar.
- multi: corresponds to multiple parameter instances instead of multiple values for a single instance foo=bar&foo=baz.
This is valid only for parameters of type query or formData.
Default value is csv.

default : mixed|null

Sets a default value to the parameter. The type of the value depends on the defined type.

See: JSON schema validation

maximum : int|float

The maximum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMaximum : int|float|bool|null

A boolean indicating whether the maximum value is excluded from the set of valid values.

When set to true, the maximum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

minimum : int|float

The minimum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMinimum : int|float|bool|null

A boolean indicating whether the minimum value is excluded from the set of valid values.

When set to true, the minimum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

maxLength : int|null

The maximum length of a string property.

A string instance is valid against this property if its length is less than, or equal to, the value of this attribute.

See: JSON schema validation

minLength : int|null

The minimum length of a string property.

A string instance is valid against this property if its length is greater than, or equal to, the value of this attribute.

See: JSON schema validation

maxItems : int|null

The maximum number of items allowed in an array property.

An array instance is valid against this property if its number of items is less than, or equal to, the value of this attribute.

See: JSON schema validation

minItems : int|null

The minimum number of items allowed in an array property.

An array instance is valid against this property if its number of items is greater than, or equal to, the value of this attribute.

See: JSON schema validation

uniqueItems : bool|null

A boolean value indicating whether all items in an array property must be unique.

If this attribute is set to true, then all items in the array must be unique.

See: JSON schema validation

pattern : string|null

A string instance is considered valid if the regular expression matches the instance successfully.

enum : string[]|int[]|float[]|bool[]|\UnitEnum[]|class-string

A collection of allowable values for a property.

A property instance is valid against this attribute if its value is one of the values specified in this collection.

See: JSON schema validation

discriminator : OpenApi\Attributes\Discriminator|null

Adds support for polymorphism.

The discriminator is an object name that is used to differentiate between other schemas which may satisfy the
payload description. See Composition and Inheritance for more details.

readOnly : bool|null

Declares the property as "read only".

Relevant only for Schema "properties" definitions.

This means that it may be sent as part of a response but should not be sent as part of the request.
If the property is marked as readOnly being true and is in the required list, the required will take effect on
the response only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

writeOnly : bool|null

Declares the property as "write only".

Relevant only for Schema "properties" definitions.
Therefore, it may be sent as part of a request but should not be sent as part of the response.
If the property is marked as writeOnly being true and is in the required list, the required will take effect on
the request only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

xml : OpenApi\Attributes\Xml|null

This may be used only on properties schemas.

It has no effect on root schemas.
Adds additional metadata to describe the XML representation of this property.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this schema.

example : mixed|null

A free-form property to include an example of an instance for this schema.

To represent examples that cannot naturally be represented in JSON or YAML, a string value can be used to
contain the example with escaping where necessary.

nullable : bool|null

Allows sending a null value for the defined schema.
Default value is false.

This must not be used when using OpenApi version 3.1,
instead make the "type" property an array and add "null" as a possible type.

deprecated : bool|null

Specifies that a schema is deprecated and should be transitioned out of usage.
Default value is false.

allOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against all schemas
defined by this property's value.

anyOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against at least one
schema defined by this property's value.

oneOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against exactly one schema
defined by this property's value.

additionalProperties : OpenApi\Attributes\AdditionalProperties|bool|null

http://json-schema.org/latest/json-schema-validation.html#anchor64.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

License

Allowed in


Info

Nested elements


Attachable

Parameters


name : string|null

The license name used for the API.

identifier : string|null

An SPDX license expression for the API. The `identifier` field is mutually exclusive of the `url` field.

url : string|null

An URL to the license used for the API. This MUST be in the form of a URL.

The `url` field is mutually exclusive of the `identifier` field.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Allowed in


Components, Response

Nested elements


Server, Attachable

Parameters


link : string|null

The key into MediaType->links array.

operationRef : string|null

A relative or absolute reference to an OA operation.

This field is mutually exclusive of the operationId field, and must point to an Operation object.

Relative values may be used to locate an existing Operation object in the OpenAPI definition.

ref : string|class-string|object|null

No details available.

See: Using refs

operationId : string|null

The name of an existing, resolvable OA operation, as defined with a unique operationId.

This field is mutually exclusive of the operationRef field.

parameters : array<string,mixed>

A map representing parameters to pass to an operation as specified with operationId or identified via
operationRef.

The key is the parameter name to be used, whereas the value can be a constant or an expression to
be evaluated and passed to the linked operation.
The parameter name can be qualified using the parameter location [{in}.]{name} for operations
that use the same parameter name in different locations (e.g. path.id).

requestBody : mixed|null

A literal value or {expression} to use as a request body when calling the target operation.

description : string|null

A description of the link.

CommonMark syntax may be used for rich text representation.

server : OpenApi\Attributes\Server|null

A server object to be used by the target operation.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

MediaType

Allowed in


Response, RequestBody

Nested elements


Schema, Examples, Attachable

Parameters


mediaType : string|null

The key into Operation->content array.

schema : OpenApi\Attributes\Schema|null

The schema defining the type used for the request body.

example : mixed|null

Example of the media type.

The example object should be in the correct format as specified by the media type.
The example object is mutually exclusive of the examples object.

Furthermore, if referencing a schema which contains an example,
the example value shall override the example provided by the schema.

examples : array<string,Examples>

Examples of the media type.

Each example object should match the media type and specified schema if present.
The examples object is mutually exclusive of the example object.

Furthermore, if referencing a schema which contains an example,
the examples value shall override the example provided by the schema.

encoding : array<string,mixed>

A map between a property name and its encoding information.

The key, being the property name, must exist in the schema as a property.

The encoding object shall only apply to requestBody objects when the media type is multipart or
application/x-www-form-urlencoded.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

OpenApi

Nested elements


Info, Server, PathItem, Components, Tag, ExternalDocumentation, Webhook, Attachable

Parameters


openapi : string

The semantic version number of the OpenAPI Specification version that the OpenAPI document uses.

The openapi field should be used by tooling specifications and clients to interpret the OpenAPI document.

A version specified via `Generator::setVersion()` will overwrite this value.

This is not related to the API info::version string.

info : OpenApi\Attributes\Info|null

Provides metadata about the API. The metadata may be used by tooling as required.

servers : Server[]|null

An array of @Server objects, which provide connectivity information to a target server.

If not provided, or is an empty array, the default value would be a Server Object with an url value of /.

security : array|null

A declaration of which security mechanisms can be used across the API.

The list of values includes alternative security requirement objects that can be used.
Only one of the security requirement objects need to be satisfied to authorize a request.
Individual operations can override this definition.
To make security optional, an empty security requirement `({})` can be included in the array.

tags : Tag[]|null

A list of tags used by the specification with additional metadata.

The order of the tags can be used to reflect on their order by the parsing tools.
Not all tags that are used by the Operation Object must be declared.
The tags that are not declared may be organized randomly or based on the tools' logic.
Each tag name in the list must be unique.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation.

paths : PathItem[]|null

The available paths and operations for the API.

components : OpenApi\Attributes\Components|null

An element to hold various components for the specification.

webhooks : Webhook[]|null

The available webhooks for the API.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Options

Allowed in


PathItem

Nested elements


Parameter, PathParameter, Response, ExternalDocumentation, Server, RequestBody, Attachable

Parameters


path : string|null

Key in the OpenApi "Paths Object" for this operation.

operationId : string|null

Unique string used to identify the operation.

The id must be unique among all operations described in the API.
Tools and libraries may use the operationId to uniquely identify an operation, therefore, it is recommended to
follow common programming naming conventions.

description : string|null

A verbose explanation of the operation behavior.

CommonMark syntax MAY be used for rich text representation.

summary : string|null

A short summary of what the operation does.

security : array

A declaration of which security mechanisms can be used for this operation.

The list of values includes alternative security requirement objects that can be used.

Only one of the security requirement objects need to be satisfied to authorize a request.

This definition overrides any declared top-level security.
To remove a top-level security declaration, an empty array can be used.

servers : Server[]

An alternative server array to service this operation.

If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by
this value.

requestBody : OpenApi\Attributes\RequestBody|null

The request body applicable for this operation.

The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly
defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody shall be ignored
by consumers.

tags : string[]

A list of tags for API documentation control.

Tags can be used for logical grouping of operations by resources or any other qualifier.

parameters : Parameter[]

A list of parameters that are applicable for this operation.

If a parameter is already defined at the Path Item, the new definition will override it but can never remove it.
The list must not include duplicated parameters.

A unique parameter is defined by a combination of a name and location.

The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's
components/parameters.

responses : Response[]

The list of possible responses as they are returned from executing this operation.

callbacks : array|null

A map of possible out-of band callbacks related to the parent operation.

The key is a unique identifier for the Callback Object.

Each value in the map is a Callback Object that describes a request that may be initiated by the API provider
and the expected responses. The key value used to identify the callback object is an expression, evaluated at
runtime, that identifies a URL to use for the callback operation.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this operation.

deprecated : bool|null

Declares this operation to be deprecated.

Consumers should refrain from usage of the declared operation.

Default value is false.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Parameter

Allowed in


Components, PathItem, Operation, Get, Post, Put, Delete, Patch, Head, Options, Trace

Nested elements


Schema, Examples, Attachable

Parameters


parameter : string|null

The key into Components::parameters or PathItem::parameters array.

name : string|null

The (case-sensitive) name of the parameter.

If in is "path", the name field must correspond to the associated path segment from the path field in the Paths Object.

If in is "header" and the name field is "Accept", "Content-Type" or "Authorization", the parameter definition shall be ignored.
For all other cases, the name corresponds to the parameter name used by the in property.

description : string|null

A brief description of the parameter.

This could contain examples of use.

CommonMark syntax may be used for rich text representation.

in : string|null

The location of the parameter.

Possible values are "query", "header", "path" or "cookie".

required : bool|null

Determines whether this parameter is mandatory.

If the parameter location is "path", this property is required and its value must be true.
Otherwise, the property may be included and its default value is false.

deprecated : bool|null

Specifies that a parameter is deprecated and should be transitioned out of usage.

allowEmptyValue : bool|null

Sets the ability to pass empty-valued parameters.

This is valid only for query parameters and allows sending a parameter with an empty value.

Default value is false.

If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue shall be ignored.

ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : OpenApi\Attributes\Schema|null

The schema defining the type used for the parameter.

example : mixed|null

Example of the media type.

The example should match the specified schema and encoding properties if present.
The example object is mutually exclusive of the examples object.
Furthermore, if referencing a schema which contains an example, the example value shall override the example provided by the schema.
To represent examples of media types that cannot naturally be represented in JSON or YAML, a string value can contain the example with escaping where necessary.

examples : array<string,Examples>

Examples of the media type.

Each example should contain a value in the correct format as specified in the parameter encoding.
The examples object is mutually exclusive of the example object.
Furthermore, if referencing a schema which contains an example, the examples value shall override the example provided by the schema.

content : array<MediaType>|JsonContent|XmlContent|Attachable|null

A map containing the representations for the parameter.

The key is the media type and the value describes it.
The map must only contain one entry.

style : string|null

Describes how the parameter value will be serialized depending on the type of the parameter value.

Default values (based on value of in): for query - form; for path - simple; for header - simple; for cookie - form.

explode : bool|null

When this is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map.

For other types of parameters this property has no effect.

When style is form, the default value is true.
For all other styles, the default value is false.

allowReserved : bool|null

Determines whether the parameter value should allow reserved characters, as defined by RFC3986 :/?#[]@!$&'()*+,;= to be included without percent-encoding.

This property only applies to parameters with an in value of query.

The default value is false.

spaceDelimited : array|null

Space separated array values.

This option replaces collectionFormat equal to ssv from OpenAPI 2.0.

pipeDelimited : array|null

Pipe separated array values.

This option replaces collectionFormat equal to pipes from OpenAPI 2.0.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Patch

Allowed in


PathItem

Nested elements


Parameter, PathParameter, Response, ExternalDocumentation, Server, RequestBody, Attachable

Parameters


path : string|null

Key in the OpenApi "Paths Object" for this operation.

operationId : string|null

Unique string used to identify the operation.

The id must be unique among all operations described in the API.
Tools and libraries may use the operationId to uniquely identify an operation, therefore, it is recommended to
follow common programming naming conventions.

description : string|null

A verbose explanation of the operation behavior.

CommonMark syntax MAY be used for rich text representation.

summary : string|null

A short summary of what the operation does.

security : array

A declaration of which security mechanisms can be used for this operation.

The list of values includes alternative security requirement objects that can be used.

Only one of the security requirement objects need to be satisfied to authorize a request.

This definition overrides any declared top-level security.
To remove a top-level security declaration, an empty array can be used.

servers : Server[]

An alternative server array to service this operation.

If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by
this value.

requestBody : OpenApi\Attributes\RequestBody|null

The request body applicable for this operation.

The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly
defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody shall be ignored
by consumers.

tags : string[]

A list of tags for API documentation control.

Tags can be used for logical grouping of operations by resources or any other qualifier.

parameters : Parameter[]

A list of parameters that are applicable for this operation.

If a parameter is already defined at the Path Item, the new definition will override it but can never remove it.
The list must not include duplicated parameters.

A unique parameter is defined by a combination of a name and location.

The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's
components/parameters.

responses : Response[]

The list of possible responses as they are returned from executing this operation.

callbacks : array|null

A map of possible out-of band callbacks related to the parent operation.

The key is a unique identifier for the Callback Object.

Each value in the map is a Callback Object that describes a request that may be initiated by the API provider
and the expected responses. The key value used to identify the callback object is an expression, evaluated at
runtime, that identifies a URL to use for the callback operation.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this operation.

deprecated : bool|null

Declares this operation to be deprecated.

Consumers should refrain from usage of the declared operation.

Default value is false.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

PathItem

Allowed in


OpenApi

Nested elements


Get, Post, Put, Delete, Patch, Trace, Head, Options, Parameter, PathParameter, Server, Attachable

Parameters


path : string|null

Key for the Path Object (OpenApi->paths array).

ref : string|class-string|object|null

No details available.

See: Using refs

summary : string|null

An optional, string summary, intended to apply to all operations in this path.

description : string|null

An optional, string description, intended to apply to all operations in this path.

get : OpenApi\Attributes\Get|null

A definition of a GET operation on this path.

put : OpenApi\Attributes\Put|null

A definition of a PUT operation on this path.

post : OpenApi\Attributes\Post|null

A definition of a POST operation on this path.

delete : OpenApi\Attributes\Delete|null

A definition of a DELETE operation on this path.

options : OpenApi\Attributes\Options|null

A definition of a OPTIONS operation on this path.

head : OpenApi\Attributes\Head|null

A definition of a HEAD operation on this path.

patch : OpenApi\Attributes\Patch|null

A definition of a PATCH operation on this path.

trace : OpenApi\Attributes\Trace|null

A definition of a TRACE operation on this path.

servers : Server[]|null

An alternative server array to service all operations in this path.

parameters : Parameter[]|null

A list of parameters that are applicable for all the operations described under this path.

These parameters can be overridden at the operation level, but cannot be removed there.
The list must not include duplicated parameters.
A unique parameter is defined by a combination of a name and location.
The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's components/parameters.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

PathParameter

Allowed in


Components, PathItem, Operation, Get, Post, Put, Delete, Patch, Head, Options, Trace

Nested elements


Schema, Examples, Attachable

Parameters


parameter : string|null

The key into Components::parameters or PathItem::parameters array.

name : string|null

The (case-sensitive) name of the parameter.

If in is "path", the name field must correspond to the associated path segment from the path field in the Paths Object.

If in is "header" and the name field is "Accept", "Content-Type" or "Authorization", the parameter definition shall be ignored.
For all other cases, the name corresponds to the parameter name used by the in property.

description : string|null

A brief description of the parameter.

This could contain examples of use.

CommonMark syntax may be used for rich text representation.

in : string|null

This takes 'path' as the default location.

required : bool|null

No details available.

deprecated : bool|null

Specifies that a parameter is deprecated and should be transitioned out of usage.

allowEmptyValue : bool|null

Sets the ability to pass empty-valued parameters.

This is valid only for query parameters and allows sending a parameter with an empty value.

Default value is false.

If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue shall be ignored.

ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : OpenApi\Attributes\Schema|null

The schema defining the type used for the parameter.

example : mixed|null

Example of the media type.

The example should match the specified schema and encoding properties if present.
The example object is mutually exclusive of the examples object.
Furthermore, if referencing a schema which contains an example, the example value shall override the example provided by the schema.
To represent examples of media types that cannot naturally be represented in JSON or YAML, a string value can contain the example with escaping where necessary.

examples : array<string,Examples>

Examples of the media type.

Each example should contain a value in the correct format as specified in the parameter encoding.
The examples object is mutually exclusive of the example object.
Furthermore, if referencing a schema which contains an example, the examples value shall override the example provided by the schema.

content : array<MediaType>|JsonContent|XmlContent|Attachable|null

A map containing the representations for the parameter.

The key is the media type and the value describes it.
The map must only contain one entry.

style : string|null

Describes how the parameter value will be serialized depending on the type of the parameter value.

Default values (based on value of in): for query - form; for path - simple; for header - simple; for cookie - form.

explode : bool|null

When this is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map.

For other types of parameters this property has no effect.

When style is form, the default value is true.
For all other styles, the default value is false.

allowReserved : bool|null

Determines whether the parameter value should allow reserved characters, as defined by RFC3986 :/?#[]@!$&'()*+,;= to be included without percent-encoding.

This property only applies to parameters with an in value of query.

The default value is false.

spaceDelimited : array|null

Space separated array values.

This option replaces collectionFormat equal to ssv from OpenAPI 2.0.

pipeDelimited : array|null

Pipe separated array values.

This option replaces collectionFormat equal to pipes from OpenAPI 2.0.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Post

Allowed in


PathItem

Nested elements


Parameter, PathParameter, Response, ExternalDocumentation, Server, RequestBody, Attachable

Parameters


path : string|null

Key in the OpenApi "Paths Object" for this operation.

operationId : string|null

Unique string used to identify the operation.

The id must be unique among all operations described in the API.
Tools and libraries may use the operationId to uniquely identify an operation, therefore, it is recommended to
follow common programming naming conventions.

description : string|null

A verbose explanation of the operation behavior.

CommonMark syntax MAY be used for rich text representation.

summary : string|null

A short summary of what the operation does.

security : array

A declaration of which security mechanisms can be used for this operation.

The list of values includes alternative security requirement objects that can be used.

Only one of the security requirement objects need to be satisfied to authorize a request.

This definition overrides any declared top-level security.
To remove a top-level security declaration, an empty array can be used.

servers : Server[]

An alternative server array to service this operation.

If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by
this value.

requestBody : OpenApi\Attributes\RequestBody|null

The request body applicable for this operation.

The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly
defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody shall be ignored
by consumers.

tags : string[]

A list of tags for API documentation control.

Tags can be used for logical grouping of operations by resources or any other qualifier.

parameters : Parameter[]

A list of parameters that are applicable for this operation.

If a parameter is already defined at the Path Item, the new definition will override it but can never remove it.
The list must not include duplicated parameters.

A unique parameter is defined by a combination of a name and location.

The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's
components/parameters.

responses : Response[]

The list of possible responses as they are returned from executing this operation.

callbacks : array|null

A map of possible out-of band callbacks related to the parent operation.

The key is a unique identifier for the Callback Object.

Each value in the map is a Callback Object that describes a request that may be initiated by the API provider
and the expected responses. The key value used to identify the callback object is an expression, evaluated at
runtime, that identifies a URL to use for the callback operation.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this operation.

deprecated : bool|null

Declares this operation to be deprecated.

Consumers should refrain from usage of the declared operation.

Default value is false.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Property

Allowed in


AdditionalProperties, Schema, JsonContent, XmlContent, Property, Items

Nested elements


Discriminator, Items, Property, ExternalDocumentation, Xml, AdditionalProperties, Attachable

Parameters


property : string|null

The key into Schema->properties array.

ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : string|null

The key into Components->schemas array.

title : string|null

Can be used to decorate a user interface with information about the data produced by this user interface.

Preferably short; use description for more details.

description : string|null

A description will provide explanation about the purpose of the instance described by this schema.

maxProperties : int|null

The maximum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is less than, or equal to, the value of this attribute.

minProperties : int|null

The minimum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is greater than, or equal to, the value of this attribute.

required : string[]

An object instance is valid against this property if its property set contains all elements in this property's
array value.

properties : Property[]

A collection of properties to define for an object.

Each property is represented as an instance of the Property class.

type : string|non-empty-array<string>|null

The type of the schema/property.

OpenApi v3.0: The value MUST be one of "string", "number", "integer", "boolean", "array" or "object".

Since OpenApi v3.1 an array of types may be used.

format : string|null

The extending format for the previously mentioned type. See Data Type Formats for further details.

items : OpenApi\Attributes\Items|null

Required if type is "array". Describes the type of items in the array.

collectionFormat : string|null

Determines the format of the array if type array is used.

Possible values are:
- csv: comma separated values foo,bar.
- ssv: space separated values foo bar.
- tsv: tab separated values foo\tbar.
- pipes: pipe separated values foo|bar.
- multi: corresponds to multiple parameter instances instead of multiple values for a single instance foo=bar&foo=baz.
This is valid only for parameters of type query or formData.
Default value is csv.

default : mixed|null

Sets a default value to the parameter. The type of the value depends on the defined type.

See: JSON schema validation

maximum : int|float

The maximum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMaximum : int|float|bool|null

A boolean indicating whether the maximum value is excluded from the set of valid values.

When set to true, the maximum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

minimum : int|float

The minimum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMinimum : int|float|bool|null

A boolean indicating whether the minimum value is excluded from the set of valid values.

When set to true, the minimum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

maxLength : int|null

The maximum length of a string property.

A string instance is valid against this property if its length is less than, or equal to, the value of this attribute.

See: JSON schema validation

minLength : int|null

The minimum length of a string property.

A string instance is valid against this property if its length is greater than, or equal to, the value of this attribute.

See: JSON schema validation

maxItems : int|null

The maximum number of items allowed in an array property.

An array instance is valid against this property if its number of items is less than, or equal to, the value of this attribute.

See: JSON schema validation

minItems : int|null

The minimum number of items allowed in an array property.

An array instance is valid against this property if its number of items is greater than, or equal to, the value of this attribute.

See: JSON schema validation

uniqueItems : bool|null

A boolean value indicating whether all items in an array property must be unique.

If this attribute is set to true, then all items in the array must be unique.

See: JSON schema validation

pattern : string|null

A string instance is considered valid if the regular expression matches the instance successfully.

enum : string[]|int[]|float[]|bool[]|\UnitEnum[]|class-string

A collection of allowable values for a property.

A property instance is valid against this attribute if its value is one of the values specified in this collection.

See: JSON schema validation

discriminator : OpenApi\Attributes\Discriminator|null

Adds support for polymorphism.

The discriminator is an object name that is used to differentiate between other schemas which may satisfy the
payload description. See Composition and Inheritance for more details.

readOnly : bool|null

Declares the property as "read only".

Relevant only for Schema "properties" definitions.

This means that it may be sent as part of a response but should not be sent as part of the request.
If the property is marked as readOnly being true and is in the required list, the required will take effect on
the response only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

writeOnly : bool|null

Declares the property as "write only".

Relevant only for Schema "properties" definitions.
Therefore, it may be sent as part of a request but should not be sent as part of the response.
If the property is marked as writeOnly being true and is in the required list, the required will take effect on
the request only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

xml : OpenApi\Attributes\Xml|null

This may be used only on properties schemas.

It has no effect on root schemas.
Adds additional metadata to describe the XML representation of this property.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this schema.

example : mixed|null

A free-form property to include an example of an instance for this schema.

To represent examples that cannot naturally be represented in JSON or YAML, a string value can be used to
contain the example with escaping where necessary.

nullable : bool|null

Allows sending a null value for the defined schema.
Default value is false.

This must not be used when using OpenApi version 3.1,
instead make the "type" property an array and add "null" as a possible type.

deprecated : bool|null

Specifies that a schema is deprecated and should be transitioned out of usage.
Default value is false.

allOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against all schemas
defined by this property's value.

anyOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against at least one
schema defined by this property's value.

oneOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against exactly one schema
defined by this property's value.

additionalProperties : OpenApi\Attributes\AdditionalProperties|bool|null

http://json-schema.org/latest/json-schema-validation.html#anchor64.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Put

Allowed in


PathItem

Nested elements


Parameter, PathParameter, Response, ExternalDocumentation, Server, RequestBody, Attachable

Parameters


path : string|null

Key in the OpenApi "Paths Object" for this operation.

operationId : string|null

Unique string used to identify the operation.

The id must be unique among all operations described in the API.
Tools and libraries may use the operationId to uniquely identify an operation, therefore, it is recommended to
follow common programming naming conventions.

description : string|null

A verbose explanation of the operation behavior.

CommonMark syntax MAY be used for rich text representation.

summary : string|null

A short summary of what the operation does.

security : array

A declaration of which security mechanisms can be used for this operation.

The list of values includes alternative security requirement objects that can be used.

Only one of the security requirement objects need to be satisfied to authorize a request.

This definition overrides any declared top-level security.
To remove a top-level security declaration, an empty array can be used.

servers : Server[]

An alternative server array to service this operation.

If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by
this value.

requestBody : OpenApi\Attributes\RequestBody|null

The request body applicable for this operation.

The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly
defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody shall be ignored
by consumers.

tags : string[]

A list of tags for API documentation control.

Tags can be used for logical grouping of operations by resources or any other qualifier.

parameters : Parameter[]

A list of parameters that are applicable for this operation.

If a parameter is already defined at the Path Item, the new definition will override it but can never remove it.
The list must not include duplicated parameters.

A unique parameter is defined by a combination of a name and location.

The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's
components/parameters.

responses : Response[]

The list of possible responses as they are returned from executing this operation.

callbacks : array|null

A map of possible out-of band callbacks related to the parent operation.

The key is a unique identifier for the Callback Object.

Each value in the map is a Callback Object that describes a request that may be initiated by the API provider
and the expected responses. The key value used to identify the callback object is an expression, evaluated at
runtime, that identifies a URL to use for the callback operation.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this operation.

deprecated : bool|null

Declares this operation to be deprecated.

Consumers should refrain from usage of the declared operation.

Default value is false.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

QueryParameter

Allowed in


Components, PathItem, Operation, Get, Post, Put, Delete, Patch, Head, Options, Trace

Nested elements


Schema, Examples, Attachable

Parameters


parameter : string|null

The key into Components::parameters or PathItem::parameters array.

name : string|null

The (case-sensitive) name of the parameter.

If in is "path", the name field must correspond to the associated path segment from the path field in the Paths Object.

If in is "header" and the name field is "Accept", "Content-Type" or "Authorization", the parameter definition shall be ignored.
For all other cases, the name corresponds to the parameter name used by the in property.

description : string|null

A brief description of the parameter.

This could contain examples of use.

CommonMark syntax may be used for rich text representation.

in : string|null

This takes 'query' as the default location.

required : bool|null

Determines whether this parameter is mandatory.

If the parameter location is "path", this property is required and its value must be true.
Otherwise, the property may be included and its default value is false.

deprecated : bool|null

Specifies that a parameter is deprecated and should be transitioned out of usage.

allowEmptyValue : bool|null

Sets the ability to pass empty-valued parameters.

This is valid only for query parameters and allows sending a parameter with an empty value.

Default value is false.

If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue shall be ignored.

ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : OpenApi\Attributes\Schema|null

The schema defining the type used for the parameter.

example : mixed|null

Example of the media type.

The example should match the specified schema and encoding properties if present.
The example object is mutually exclusive of the examples object.
Furthermore, if referencing a schema which contains an example, the example value shall override the example provided by the schema.
To represent examples of media types that cannot naturally be represented in JSON or YAML, a string value can contain the example with escaping where necessary.

examples : array<string,Examples>

Examples of the media type.

Each example should contain a value in the correct format as specified in the parameter encoding.
The examples object is mutually exclusive of the example object.
Furthermore, if referencing a schema which contains an example, the examples value shall override the example provided by the schema.

content : array<MediaType>|JsonContent|XmlContent|Attachable|null

A map containing the representations for the parameter.

The key is the media type and the value describes it.
The map must only contain one entry.

style : string|null

Describes how the parameter value will be serialized depending on the type of the parameter value.

Default values (based on value of in): for query - form; for path - simple; for header - simple; for cookie - form.

explode : bool|null

When this is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map.

For other types of parameters this property has no effect.

When style is form, the default value is true.
For all other styles, the default value is false.

allowReserved : bool|null

Determines whether the parameter value should allow reserved characters, as defined by RFC3986 :/?#[]@!$&'()*+,;= to be included without percent-encoding.

This property only applies to parameters with an in value of query.

The default value is false.

spaceDelimited : array|null

Space separated array values.

This option replaces collectionFormat equal to ssv from OpenAPI 2.0.

pipeDelimited : array|null

Pipe separated array values.

This option replaces collectionFormat equal to pipes from OpenAPI 2.0.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

RequestBody

Allowed in


Components, Delete, Get, Head, Operation, Options, Patch, Post, Trace, Put

Nested elements


MediaType, Attachable

Parameters


ref : string|class-string|object|null

The relative or absolute path to a request body.

See: Using refs

request : string|null

Request body model name.

description : string|null

A brief description of the parameter.

This could contain examples of use.

CommonMark syntax may be used for rich text representation.

required : bool|null

Determines whether this parameter is mandatory.

If the parameter location is "path", this property is required and its value must be true.
Otherwise, the property may be included and its default value is false.

content : array<MediaType|JsonContent|XmlContent>|MediaType|XmlContent|Attachable|null

The content of the request body.

The key is a media type or media type range and the value describes it. For requests that match multiple keys,
only the most specific key is applicable. e.g. text/plain overrides text/*.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Response

Allowed in


Components, Operation, Get, Post, Put, Patch, Delete, Head, Options, Trace

Nested elements


MediaType, Header, Link, Attachable

Parameters


ref : string|class-string|object|null

The relative or absolute path to a response.

See: Using refs

response : string|int|null

The key into Operations->responses array.

A HTTP status code or default.

description : string|null

A short description of the response.

CommonMark syntax may be used for rich text representation.

headers : Header[]

Maps a header name to its definition.

RFC7230 states header names are case insensitive.

If a response header is defined with the name "Content-Type", it shall be ignored.

See: RFC7230

content : MediaType|JsonContent|XmlContent|Attachable|array<MediaType|Attachable>

A map containing descriptions of potential response payloads.

The key is a media type or media type range and the value describes it.

For responses that match multiple keys, only the most specific key is applicable;
e.g. text/plain overrides text/*.

links : Link[]

A map of operations links that can be followed from the response.

The key of the map is a short name for the link, following the naming constraints of the names for Component
Objects.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Schema

Allowed in


Components, Parameter, PathParameter, MediaType, Header

Nested elements


Discriminator, Items, Property, ExternalDocumentation, Xml, AdditionalProperties, Attachable

Parameters


ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : string|null

The key into Components->schemas array.

title : string|null

Can be used to decorate a user interface with information about the data produced by this user interface.

Preferably short; use description for more details.

description : string|null

A description will provide explanation about the purpose of the instance described by this schema.

maxProperties : int|null

The maximum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is less than, or equal to, the value of this attribute.

minProperties : int|null

The minimum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is greater than, or equal to, the value of this attribute.

required : string[]

An object instance is valid against this property if its property set contains all elements in this property's
array value.

properties : Property[]

A collection of properties to define for an object.

Each property is represented as an instance of the Property class.

type : string|non-empty-array<string>|null

The type of the schema/property.

OpenApi v3.0: The value MUST be one of "string", "number", "integer", "boolean", "array" or "object".

Since OpenApi v3.1 an array of types may be used.

format : string|null

The extending format for the previously mentioned type. See Data Type Formats for further details.

items : OpenApi\Attributes\Items|null

Required if type is "array". Describes the type of items in the array.

collectionFormat : string|null

Determines the format of the array if type array is used.

Possible values are:
- csv: comma separated values foo,bar.
- ssv: space separated values foo bar.
- tsv: tab separated values foo\tbar.
- pipes: pipe separated values foo|bar.
- multi: corresponds to multiple parameter instances instead of multiple values for a single instance foo=bar&foo=baz.
This is valid only for parameters of type query or formData.
Default value is csv.

default : mixed|null

Sets a default value to the parameter. The type of the value depends on the defined type.

See: JSON schema validation

maximum : int|float

The maximum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMaximum : int|float|bool|null

A boolean indicating whether the maximum value is excluded from the set of valid values.

When set to true, the maximum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

minimum : int|float

The minimum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMinimum : int|float|bool|null

A boolean indicating whether the minimum value is excluded from the set of valid values.

When set to true, the minimum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

maxLength : int|null

The maximum length of a string property.

A string instance is valid against this property if its length is less than, or equal to, the value of this attribute.

See: JSON schema validation

minLength : int|null

The minimum length of a string property.

A string instance is valid against this property if its length is greater than, or equal to, the value of this attribute.

See: JSON schema validation

maxItems : int|null

The maximum number of items allowed in an array property.

An array instance is valid against this property if its number of items is less than, or equal to, the value of this attribute.

See: JSON schema validation

minItems : int|null

The minimum number of items allowed in an array property.

An array instance is valid against this property if its number of items is greater than, or equal to, the value of this attribute.

See: JSON schema validation

uniqueItems : bool|null

A boolean value indicating whether all items in an array property must be unique.

If this attribute is set to true, then all items in the array must be unique.

See: JSON schema validation

pattern : string|null

A string instance is considered valid if the regular expression matches the instance successfully.

enum : string[]|int[]|float[]|bool[]|\UnitEnum[]|class-string

A collection of allowable values for a property.

A property instance is valid against this attribute if its value is one of the values specified in this collection.

See: JSON schema validation

discriminator : OpenApi\Attributes\Discriminator|null

Adds support for polymorphism.

The discriminator is an object name that is used to differentiate between other schemas which may satisfy the
payload description. See Composition and Inheritance for more details.

readOnly : bool|null

Declares the property as "read only".

Relevant only for Schema "properties" definitions.

This means that it may be sent as part of a response but should not be sent as part of the request.
If the property is marked as readOnly being true and is in the required list, the required will take effect on
the response only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

writeOnly : bool|null

Declares the property as "write only".

Relevant only for Schema "properties" definitions.
Therefore, it may be sent as part of a request but should not be sent as part of the response.
If the property is marked as writeOnly being true and is in the required list, the required will take effect on
the request only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

xml : OpenApi\Attributes\Xml|null

This may be used only on properties schemas.

It has no effect on root schemas.
Adds additional metadata to describe the XML representation of this property.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this schema.

example : mixed|null

A free-form property to include an example of an instance for this schema.

To represent examples that cannot naturally be represented in JSON or YAML, a string value can be used to
contain the example with escaping where necessary.

nullable : bool|null

Allows sending a null value for the defined schema.
Default value is false.

This must not be used when using OpenApi version 3.1,
instead make the "type" property an array and add "null" as a possible type.

deprecated : bool|null

Specifies that a schema is deprecated and should be transitioned out of usage.
Default value is false.

allOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against all schemas
defined by this property's value.

anyOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against at least one
schema defined by this property's value.

oneOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against exactly one schema
defined by this property's value.

additionalProperties : OpenApi\Attributes\AdditionalProperties|bool|null

http://json-schema.org/latest/json-schema-validation.html#anchor64.

const : mixed

http://json-schema.org/draft/2020-12/json-schema-validation.html#rfc.section.6.1.3.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

SecurityScheme

Allowed in


Components

Nested elements


Flow, Attachable

Parameters


ref : string|class-string|object|null

The relative or absolute path to a security scheme.

See: Using refs

securityScheme : string|null

The key into OpenApi->security array.

type : string|non-empty-array<string>|null

The type of the security scheme.

description : string|null

A short description for security scheme.

name : string|null

The name of the header or query parameter to be used.

in : string|null

Required The location of the API key.

bearerFormat : string|null

A hint to the client to identify how the bearer token is formatted.

Bearer tokens are usually generated by an authorization server, so this information is primarily for documentation purposes.

scheme : string|null

The name of the HTTP Authorization scheme.

See: RFC7235

openIdConnectUrl : string|null

OpenId Connect URL to discover OAuth2 configuration values. This MUST be in the form of a URL.

flows : Flow[]

The flow used by the OAuth2 security scheme.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Server

Allowed in


OpenApi, PathItem, Operation, Get, Post, Put, Delete, Patch, Head, Options, Trace, Link

Nested elements


ServerVariable, Attachable

Parameters


url : string|null

An URL to the target host.

This URL supports Server Variables and may be relative,
to indicate that the host location is relative to the location where the OpenAPI document is being served.
Variable substitutions will be made when a variable is named in {brackets}.

description : string|null

An optional string describing the host designated by the URL.

CommonMark syntax may be used for rich text representation.

variables : ServerVariable[]

A map between a variable name and its value.

The value is used for substitution in the server's URL template.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

ServerVariable

Allowed in


Server

Nested elements


Attachable

Parameters


serverVariable : string|null

The key into Server->variables array.

description : string|null

An optional description for the server variable.

CommonMark syntax MAY be used for rich text representation.

default : string|null

The default value to use for substitution, and to send, if an alternate value is not supplied.

Unlike the Schema Object's default, this value must be provided by the consumer.

enum : string[]|int[]|float[]|bool[]|\UnitEnum[]|class-string|null

An enumeration of values to be used if the substitution options are from a limited set.

variables : array|null

A map between a variable name and its value.

The value is used for substitution in the server's URL template.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Tag

Allowed in


OpenApi

Nested elements


ExternalDocumentation, Attachable

Parameters


name : string|null

The name of the tag.

description : string|null

A short description for the tag. GFM syntax can be used for rich text representation.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this tag.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Trace

Allowed in


PathItem

Nested elements


Parameter, PathParameter, Response, ExternalDocumentation, Server, RequestBody, Attachable

Parameters


path : string|null

Key in the OpenApi "Paths Object" for this operation.

operationId : string|null

Unique string used to identify the operation.

The id must be unique among all operations described in the API.
Tools and libraries may use the operationId to uniquely identify an operation, therefore, it is recommended to
follow common programming naming conventions.

description : string|null

A verbose explanation of the operation behavior.

CommonMark syntax MAY be used for rich text representation.

summary : string|null

A short summary of what the operation does.

security : array

A declaration of which security mechanisms can be used for this operation.

The list of values includes alternative security requirement objects that can be used.

Only one of the security requirement objects need to be satisfied to authorize a request.

This definition overrides any declared top-level security.
To remove a top-level security declaration, an empty array can be used.

servers : Server[]

An alternative server array to service this operation.

If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by
this value.

requestBody : OpenApi\Attributes\RequestBody|null

The request body applicable for this operation.

The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly
defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody shall be ignored
by consumers.

tags : string[]

A list of tags for API documentation control.

Tags can be used for logical grouping of operations by resources or any other qualifier.

parameters : Parameter[]

A list of parameters that are applicable for this operation.

If a parameter is already defined at the Path Item, the new definition will override it but can never remove it.
The list must not include duplicated parameters.

A unique parameter is defined by a combination of a name and location.

The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's
components/parameters.

responses : Response[]

The list of possible responses as they are returned from executing this operation.

callbacks : array|null

A map of possible out-of band callbacks related to the parent operation.

The key is a unique identifier for the Callback Object.

Each value in the map is a Callback Object that describes a request that may be initiated by the API provider
and the expected responses. The key value used to identify the callback object is an expression, evaluated at
runtime, that identifies a URL to use for the callback operation.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this operation.

deprecated : bool|null

Declares this operation to be deprecated.

Consumers should refrain from usage of the declared operation.

Default value is false.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Webhook

Allowed in


OpenApi

Nested elements


Get, Post, Put, Delete, Patch, Trace, Head, Options, Parameter, PathParameter, Server, Attachable

Parameters


webhook : string|null

Key for the webhooks map.

path : string|null

Key for the Path Object (OpenApi->paths array).

ref : string|class-string|object|null

No details available.

See: Using refs

summary : string|null

An optional, string summary, intended to apply to all operations in this path.

description : string|null

An optional, string description, intended to apply to all operations in this path.

get : OpenApi\Attributes\Get|null

A definition of a GET operation on this path.

put : OpenApi\Attributes\Put|null

A definition of a PUT operation on this path.

post : OpenApi\Attributes\Post|null

A definition of a POST operation on this path.

delete : OpenApi\Attributes\Delete|null

A definition of a DELETE operation on this path.

options : OpenApi\Attributes\Options|null

A definition of a OPTIONS operation on this path.

head : OpenApi\Attributes\Head|null

A definition of a HEAD operation on this path.

patch : OpenApi\Attributes\Patch|null

A definition of a PATCH operation on this path.

trace : OpenApi\Attributes\Trace|null

A definition of a TRACE operation on this path.

servers : Server[]|null

An alternative server array to service all operations in this path.

parameters : Parameter[]|null

A list of parameters that are applicable for all the operations described under this path.

These parameters can be overridden at the operation level, but cannot be removed there.
The list must not include duplicated parameters.
A unique parameter is defined by a combination of a name and location.
The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object's components/parameters.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

Xml

Allowed in


AdditionalProperties, Schema, Property, Schema, Items, XmlContent

Nested elements


Attachable

Parameters


name : string|null

Replaces the name of the element/attribute used for the described schema property.

When defined within the Items Object (items), it will affect the name of the individual XML elements within the list.
When defined alongside type being array (outside the items), it will affect the wrapping element
and only if wrapped is true.

If wrapped is false, it will be ignored.

namespace : string|null

The URL of the namespace definition. Value SHOULD be in the form of a URL.

prefix : string|null

The prefix to be used for the name.

attribute : bool|null

Declares whether the property definition translates to an attribute instead of an element.

Default value is false.

wrapped : bool|null

MAY be used only for an array definition.

Signifies whether the array is wrapped (for example <books><book/><book/></books>)
or unwrapped (<book/><book/>).

Default value is false. The definition takes effect only when defined alongside type being array (outside the items).

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.

XmlContent

Nested elements


Discriminator, Items, Property, ExternalDocumentation, Xml, AdditionalProperties, Examples, Attachable

Parameters


examples : array<string,Examples>

No details available.

ref : string|class-string|object|null

The relative or absolute path to the endpoint.

See: Using refs

schema : string|null

The key into Components->schemas array.

title : string|null

Can be used to decorate a user interface with information about the data produced by this user interface.

Preferably short; use description for more details.

description : string|null

A description will provide explanation about the purpose of the instance described by this schema.

maxProperties : int|null

The maximum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is less than, or equal to, the value of this attribute.

minProperties : int|null

The minimum number of properties allowed in an object instance.
An object instance is valid against this property if its number of properties is greater than, or equal to, the value of this attribute.

required : string[]

An object instance is valid against this property if its property set contains all elements in this property's
array value.

properties : Property[]

A collection of properties to define for an object.

Each property is represented as an instance of the Property class.

type : string|non-empty-array<string>|null

The type of the schema/property.

OpenApi v3.0: The value MUST be one of "string", "number", "integer", "boolean", "array" or "object".

Since OpenApi v3.1 an array of types may be used.

format : string|null

The extending format for the previously mentioned type. See Data Type Formats for further details.

items : OpenApi\Attributes\Items|null

Required if type is "array". Describes the type of items in the array.

collectionFormat : string|null

Determines the format of the array if type array is used.

Possible values are:
- csv: comma separated values foo,bar.
- ssv: space separated values foo bar.
- tsv: tab separated values foo\tbar.
- pipes: pipe separated values foo|bar.
- multi: corresponds to multiple parameter instances instead of multiple values for a single instance foo=bar&foo=baz.
This is valid only for parameters of type query or formData.
Default value is csv.

default : mixed|null

Sets a default value to the parameter. The type of the value depends on the defined type.

See: JSON schema validation

maximum : int|float

The maximum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMaximum : int|float|bool|null

A boolean indicating whether the maximum value is excluded from the set of valid values.

When set to true, the maximum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

minimum : int|float

The minimum value allowed for a numeric property. This value must be a number.

See: JSON schema validation

exclusiveMinimum : int|float|bool|null

A boolean indicating whether the minimum value is excluded from the set of valid values.

When set to true, the minimum value is excluded, and when false or not specified, it is included.

See: JSON schema validation

maxLength : int|null

The maximum length of a string property.

A string instance is valid against this property if its length is less than, or equal to, the value of this attribute.

See: JSON schema validation

minLength : int|null

The minimum length of a string property.

A string instance is valid against this property if its length is greater than, or equal to, the value of this attribute.

See: JSON schema validation

maxItems : int|null

The maximum number of items allowed in an array property.

An array instance is valid against this property if its number of items is less than, or equal to, the value of this attribute.

See: JSON schema validation

minItems : int|null

The minimum number of items allowed in an array property.

An array instance is valid against this property if its number of items is greater than, or equal to, the value of this attribute.

See: JSON schema validation

uniqueItems : bool|null

A boolean value indicating whether all items in an array property must be unique.

If this attribute is set to true, then all items in the array must be unique.

See: JSON schema validation

pattern : string|null

A string instance is considered valid if the regular expression matches the instance successfully.

enum : string[]|int[]|float[]|bool[]|\UnitEnum[]|class-string

A collection of allowable values for a property.

A property instance is valid against this attribute if its value is one of the values specified in this collection.

See: JSON schema validation

discriminator : OpenApi\Attributes\Discriminator|null

Adds support for polymorphism.

The discriminator is an object name that is used to differentiate between other schemas which may satisfy the
payload description. See Composition and Inheritance for more details.

readOnly : bool|null

Declares the property as "read only".

Relevant only for Schema "properties" definitions.

This means that it may be sent as part of a response but should not be sent as part of the request.
If the property is marked as readOnly being true and is in the required list, the required will take effect on
the response only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

writeOnly : bool|null

Declares the property as "write only".

Relevant only for Schema "properties" definitions.
Therefore, it may be sent as part of a request but should not be sent as part of the response.
If the property is marked as writeOnly being true and is in the required list, the required will take effect on
the request only. A property must not be marked as both readOnly and writeOnly being true. Default value is
false.

xml : OpenApi\Attributes\Xml|null

This may be used only on properties schemas.

It has no effect on root schemas.
Adds additional metadata to describe the XML representation of this property.

externalDocs : OpenApi\Attributes\ExternalDocumentation|null

Additional external documentation for this schema.

example : mixed|null

A free-form property to include an example of an instance for this schema.

To represent examples that cannot naturally be represented in JSON or YAML, a string value can be used to
contain the example with escaping where necessary.

nullable : bool|null

Allows sending a null value for the defined schema.
Default value is false.

This must not be used when using OpenApi version 3.1,
instead make the "type" property an array and add "null" as a possible type.

deprecated : bool|null

Specifies that a schema is deprecated and should be transitioned out of usage.
Default value is false.

allOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against all schemas
defined by this property's value.

anyOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against at least one
schema defined by this property's value.

oneOf : array<Schema|\OpenApi\Annotations\Schema>

An instance validates successfully against this property if it validates successfully against exactly one schema
defined by this property's value.

additionalProperties : OpenApi\Attributes\AdditionalProperties|bool|null

http://json-schema.org/latest/json-schema-validation.html#anchor64.

x : array<string,mixed>|null

While the OpenAPI Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.
For further details see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#specificationExtensions
The keys inside the array will be prefixed with `x-`.

attachables : Attachable[]|null

Arbitrary attachables for this annotation.
These will be ignored but can be used for custom processing.