You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: versions/3.0.0.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1821,7 +1821,7 @@ The key value used to identify the callback object is an expression, evaluated a
1821
1821
##### Patterned Fields
1822
1822
Field Pattern | Type | Description
1823
1823
---|:---:|---
1824
-
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) | A Path Item Object used to define a callback request and expected responses. A [complete example](../examples/v3.0/callback-example.yaml) is available.
1824
+
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) | A Path Item Object used to define a callback request and expected responses. A [complete example](https://github.com/OAI/learn.openapis.org/tree/main/examples/v3.0/callback-example.yaml) is available.
1825
1825
1826
1826
This object MAY be extended with [Specification Extensions](#specificationExtensions).
Copy file name to clipboardExpand all lines: versions/3.0.1.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1821,7 +1821,7 @@ The key value used to identify the callback object is an expression, evaluated a
1821
1821
##### Patterned Fields
1822
1822
Field Pattern | Type | Description
1823
1823
---|:---:|---
1824
-
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) | A Path Item Object used to define a callback request and expected responses. A [complete example](../examples/v3.0/callback-example.yaml) is available.
1824
+
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) | A Path Item Object used to define a callback request and expected responses. A [complete example](https://github.com/OAI/learn.openapis.org/tree/main/examples/v3.0/callback-example.yaml) is available.
1825
1825
1826
1826
This object MAY be extended with [Specification Extensions](#specificationExtensions).
Copy file name to clipboardExpand all lines: versions/3.0.2.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1843,7 +1843,7 @@ The key value used to identify the callback object is an expression, evaluated a
1843
1843
##### Patterned Fields
1844
1844
Field Pattern | Type | Description
1845
1845
---|:---:|---
1846
-
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) | A Path Item Object used to define a callback request and expected responses. A [complete example](../examples/v3.0/callback-example.yaml) is available.
1846
+
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) | A Path Item Object used to define a callback request and expected responses. A [complete example](https://github.com/OAI/learn.openapis.org/tree/main/examples/v3.0/callback-example.yaml) is available.
1847
1847
1848
1848
This object MAY be extended with [Specification Extensions](#specificationExtensions).
Copy file name to clipboardExpand all lines: versions/3.0.3.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1847,7 +1847,7 @@ The key value used to identify the path item object is an expression, evaluated
1847
1847
##### Patterned Fields
1848
1848
Field Pattern | Type | Description
1849
1849
---|:---:|---
1850
-
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) | A Path Item Object used to define a callback request and expected responses. A [complete example](../examples/v3.0/callback-example.yaml) is available.
1850
+
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) | A Path Item Object used to define a callback request and expected responses. A [complete example](https://github.com/OAI/learn.openapis.org/tree/main/examples/v3.0/callback-example.yaml) is available.
1851
1851
1852
1852
This object MAY be extended with [Specification Extensions](#specificationExtensions).
Copy file name to clipboardExpand all lines: versions/3.1.0.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -195,7 +195,7 @@ Field Name | Type | Description
195
195
<aname="oasJsonSchemaDialect"></a> jsonSchemaDialect | `string` | The default value for the `$schema` keyword within [Schema Objects](#schemaObject) contained within this OAS document. This MUST be in the form of a URI.
196
196
<aname="oasServers"></a>servers | [[Server Object](#serverObject)] | An array of Server Objects, which provide connectivity information to a target server. If the `servers` property is not provided, or is an empty array, the default value would be a [Server Object](#serverObject) with a [url](#serverUrl) value of `/`.
197
197
<aname="oasPaths"></a>paths | [Paths Object](#pathsObject) | The available paths and operations for the API.
198
-
<aname="oasWebhooks"></a>webhooks | Map[`string`, [Path Item Object](#pathItemObject)\|[Reference Object](#referenceObject)]] | The incoming webhooks that MAY be received as part of this API and that the API consumer MAY choose to implement. Closely related to the `callbacks` feature, this section describes requests initiated other than by an API call, for example by an out of band registration. The key name is a unique string to refer to each webhook, while the (optionally referenced) Path Item Object describes a request that may be initiated by the API provider and the expected responses. An [example](../examples/v3.1/webhook-example.yaml) is available.
198
+
<aname="oasWebhooks"></a>webhooks | Map[`string`, [Path Item Object](#pathItemObject)\|[Reference Object](#referenceObject)]] | The incoming webhooks that MAY be received as part of this API and that the API consumer MAY choose to implement. Closely related to the `callbacks` feature, this section describes requests initiated other than by an API call, for example by an out of band registration. The key name is a unique string to refer to each webhook, while the (optionally referenced) Path Item Object describes a request that may be initiated by the API provider and the expected responses. An [example](https://github.com/OAI/learn.openapis.org/tree/main/examples/v3.1/webhook-example.yaml) is available.
199
199
<aname="oasComponents"></a>components | [Components Object](#componentsObject) | An element to hold various schemas for the document.
200
200
<aname="oasSecurity"></a>security | [[Security Requirement Object](#securityRequirementObject)] | 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.
201
201
<aname="oasTags"></a>tags | [[Tag Object](#tagObject)] | A list of tags used by the document 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](#operationObject) 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.
@@ -1866,7 +1866,7 @@ To describe incoming requests from the API provider independent from another API
1866
1866
##### Patterned Fields
1867
1867
Field Pattern | Type | Description
1868
1868
---|:---:|---
1869
-
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) \| [Reference Object](#referenceObject) | A Path Item Object, or a reference to one, used to define a callback request and expected responses. A [complete example](../examples/v3.0/callback-example.yaml) is available.
1869
+
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) \| [Reference Object](#referenceObject) | A Path Item Object, or a reference to one, used to define a callback request and expected responses. A [complete example](https://github.com/OAI/learn.openapis.org/tree/main/examples/v3.0/callback-example.yaml) is available.
1870
1870
1871
1871
This object MAY be extended with [Specification Extensions](#specificationExtensions).
Copy file name to clipboardExpand all lines: versions/3.2.0.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -195,7 +195,7 @@ Field Name | Type | Description
195
195
<aname="oasJsonSchemaDialect"></a> jsonSchemaDialect | `string` | The default value for the `$schema` keyword within [Schema Objects](#schemaObject) contained within this OAS document. This MUST be in the form of a URI.
196
196
<aname="oasServers"></a>servers | [[Server Object](#serverObject)] | An array of Server Objects, which provide connectivity information to a target server. If the `servers` property is not provided, or is an empty array, the default value would be a [Server Object](#serverObject) with a [url](#serverUrl) value of `/`.
197
197
<aname="oasPaths"></a>paths | [Paths Object](#pathsObject) | The available paths and operations for the API.
198
-
<aname="oasWebhooks"></a>webhooks | Map[`string`, [Path Item Object](#pathItemObject)\|[Reference Object](#referenceObject)]] | The incoming webhooks that MAY be received as part of this API and that the API consumer MAY choose to implement. Closely related to the `callbacks` feature, this section describes requests initiated other than by an API call, for example by an out of band registration. The key name is a unique string to refer to each webhook, while the (optionally referenced) Path Item Object describes a request that may be initiated by the API provider and the expected responses. An [example](../examples/v3.1/webhook-example.yaml) is available.
198
+
<aname="oasWebhooks"></a>webhooks | Map[`string`, [Path Item Object](#pathItemObject)\|[Reference Object](#referenceObject)]] | The incoming webhooks that MAY be received as part of this API and that the API consumer MAY choose to implement. Closely related to the `callbacks` feature, this section describes requests initiated other than by an API call, for example by an out of band registration. The key name is a unique string to refer to each webhook, while the (optionally referenced) Path Item Object describes a request that may be initiated by the API provider and the expected responses. An [example](https://github.com/OAI/learn.openapis.org/tree/main/examples/v3.1/webhook-example.yaml) is available.
199
199
<aname="oasComponents"></a>components | [Components Object](#componentsObject) | An element to hold various schemas for the document.
200
200
<aname="oasSecurity"></a>security | [[Security Requirement Object](#securityRequirementObject)] | 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.
201
201
<aname="oasTags"></a>tags | [[Tag Object](#tagObject)] | A list of tags used by the document 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](#operationObject) 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.
@@ -1863,7 +1863,7 @@ To describe incoming requests from the API provider independent from another API
1863
1863
##### Patterned Fields
1864
1864
Field Pattern | Type | Description
1865
1865
---|:---:|---
1866
-
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) \| [Reference Object](#referenceObject) | A Path Item Object, or a reference to one, used to define a callback request and expected responses. A [complete example](../examples/v3.0/callback-example.yaml) is available.
1866
+
<a name="callbackExpression"></a>{expression} | [Path Item Object](#pathItemObject) \| [Reference Object](#referenceObject) | A Path Item Object, or a reference to one, used to define a callback request and expected responses. A [complete example](https://github.com/OAI/learn.openapis.org/tree/main/examples/v3.0/callback-example.yaml) is available.
1867
1867
1868
1868
This object MAY be extended with [Specification Extensions](#specificationExtensions).
0 commit comments