Skip to content

Commit 026a1aa

Browse files
authored
Merge pull request #894 from OAI/JSON_Schema
Update Schema Object
2 parents d78e003 + 5b64060 commit 026a1aa

File tree

1 file changed

+50
-43
lines changed

1 file changed

+50
-43
lines changed

versions/3.0.md

+50-43
Original file line numberDiff line numberDiff line change
@@ -144,14 +144,15 @@ By convention, the OpenAPI Specification (OAS) file is named `openapi.json` or `
144144

145145
### Data Types
146146

147-
Primitive data types in the OAS are based on the types supported by the [JSON-Schema Draft 4](http://json-schema.org/latest/json-schema-core.html#anchor8).
148-
Models are described using the [Schema Object](#schemaObject) which is a subset of JSON Schema Draft 4.
147+
Primitive data types in the OAS are based on the types supported by the [JSON Schema Specification Wright Draft 00](https://tools.ietf.org/html/draft-wright-json-schema-00#section-4.2). Note that `integer` as a type is also supported and is defined as a JSON number without a fraction or exponent part. `null` is not supported as a value.
148+
Models are described using the [Schema Object](#schemaObject) which is an extended subset of JSON Schema Specification Wright Draft 00.
149149

150150
<a name="dataTypeFormat"></a>Primitives have an optional modifier property `format`.
151151
OAS uses several known formats to more finely define the data type being used.
152152
However, the `format` property is an open `string`-valued property, and can have any value to support documentation needs.
153153
Formats such as `"email"`, `"uuid"`, etc., can be used even though they are not defined by this specification.
154-
Types that are not accompanied by a `format` property follow their definition from the JSON Schema.
154+
Types that are not accompanied by a `format` property follow their definition from the JSON Schema. Tools that do not recognize a specific `format` MAY default back to the `type` alone, as if the `format` was not specified.
155+
155156
The formats defined by the OAS are:
156157

157158

@@ -2230,27 +2231,29 @@ definitions:
22302231
22312232
#### <a name="referenceObject"></a>Reference Object
22322233
2233-
A simple object to allow referencing other definitions in the specification.
2234-
It can be used to reference parameters and responses that are defined at the top level for reuse.
2234+
A simple object to allow referencing other definitions in the specification, internally and externally.
2235+
2236+
The Reference Object is defined by [JSON Reference](https://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03) and follows the same structure, behavior and rules.
22352237
2236-
The Reference Object is a [JSON Reference](http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-02) that uses a [JSON Pointer](http://tools.ietf.org/html/rfc6901) as its value.
2237-
For this specification, only [canonical dereferencing](http://json-schema.org/latest/json-schema-core.html#anchor27) is supported.
2238+
For this specification, reference resolution is done as defined by the JSON Reference specification and not by the JSON Schema specification.
22382239
22392240
##### Fixed Fields
22402241
Field Name | Type | Description
22412242
---|:---:|---
22422243
<a name="referenceRef"></a>$ref | `string` | **Required.** The reference string.
22432244

2245+
This object cannot be extended with additional properties and any properties added SHALL be ignored.
2246+
22442247
##### Reference Object Example
22452248

22462249
```json
22472250
{
2248-
"$ref": "#/definitions/Pet"
2251+
"$ref": "#/components/definitions/Pet"
22492252
}
22502253
```
22512254

22522255
```yaml
2253-
$ref: '#/definitions/Pet'
2256+
$ref: '#/components/definitions/Pet'
22542257
```
22552258

22562259
##### Relative Schema File Example
@@ -2261,7 +2264,7 @@ $ref: '#/definitions/Pet'
22612264
```
22622265

22632266
```yaml
2264-
$ref: 'Pet.yaml'
2267+
$ref: Pet.yaml
22652268
```
22662269

22672270
##### Relative Files With Embedded Schema Example
@@ -2272,25 +2275,21 @@ $ref: 'Pet.yaml'
22722275
```
22732276

22742277
```yaml
2275-
$ref: 'definitions.yaml#/Pet'
2278+
$ref: definitions.yaml#/Pet
22762279
```
22772280

22782281
#### <a name="schemaObject"></a>Schema Object
22792282

22802283
The Schema Object allows the definition of input and output data types.
22812284
These types can be objects, but also primitives and arrays.
2282-
This object is based on the [JSON Schema Specification Draft 4](http://json-schema.org/) and uses a predefined subset of it.
2283-
On top of this subset, there are extensions provided by this specification to allow for more complete documentation.
2285+
This object is an extended subset of the [JSON Schema Specification Wright Draft 00](http://json-schema.org/).
22842286

2285-
Further information about the properties can be found in [JSON Schema Core](http://json-schema.org/latest/json-schema-core.html) and [JSON Schema Validation](http://json-schema.org/latest/json-schema-validation.html).
2287+
Further information about the properties can be found in [JSON Schema Core](https://tools.ietf.org/html/draft-wright-json-schema-00) and [JSON Schema Validation](https://tools.ietf.org/html/draft-wright-json-schema-validation-00).
22862288
Unless stated otherwise, the property definitions follow the JSON Schema specification as referenced here.
22872289

22882290
The following properties are taken directly from the JSON Schema definition and follow the same specifications:
2289-
- $ref - As a [JSON Reference](https://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03)
2290-
- format (See [Data Type Formats](#dataTypeFormat) for further details)
2291+
22912292
- title
2292-
- description ([CommonMark syntax](http://spec.commonmark.org/) can be used for rich text representation)
2293-
- default (Unlike JSON Schema, the value MUST conform to the defined type for the Schema Object)
22942293
- multipleOf
22952294
- maximum
22962295
- exclusiveMaximum
@@ -2306,25 +2305,33 @@ The following properties are taken directly from the JSON Schema definition and
23062305
- minProperties
23072306
- required
23082307
- enum
2309-
- type
2310-
2311-
The following properties are taken from the JSON Schema definition but their definitions were adjusted to the OpenAPI Specification.
2312-
Their definition is the same as the one from JSON Schema, only where the original definition references the JSON Schema definition, the [Schema Object](#schemaObject) definition is used instead.
2313-
- items
2314-
- allOf
2315-
- oneOf
2316-
- anyOf
2317-
- not
2318-
- properties
2319-
- additionalProperties
2308+
2309+
The following properties are taken from the JSON Schema definition but their definitions were adjusted to the OpenAPI Specification.
2310+
- type - Value MUST be a string. Multiple types via an array are not supported.
2311+
- allOf - Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema.
2312+
- oneOf - Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema.
2313+
- anyOf - Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema.
2314+
- not - Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema.
2315+
- items - Value MUST be an object and not an array. Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema. `items` MUST be present if the `type` is `array`.
2316+
- properties - Property definitions MUST be a [Schema Object](#schemaObject) and not a standard JSON Schema (inline or referenced).
2317+
- additionalProperties - Value can be boolean or object. Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema.
2318+
- description - [CommonMark syntax](http://spec.commonmark.org/) can be used for rich text representation.
2319+
- format - See [Data Type Formats](#dataTypeFormat) for further details. While relying on JSON Schema's defined formats, the OAS offers a few additional predefined formats.
2320+
- default - The default value represents what would be assumed by the consumer of the input as the value of the schema if one is not provided. Unlike JSON Schema, the value MUST conform to the defined type for the Schema Object defined at the same level. For example, of `type` is `string`, then `default` can be `"foo"`` but cannot be `1`.
2321+
2322+
Alternatively, any time a Scheme Object can be used, a [Reference Object](#referenceObject) can be used in its place. This allows referencing definitions in place of defining them inline.
2323+
2324+
Additional properties defined by the JSON Schema specification that are not mentioned here are strictly unsupported.
23202325

23212326
Other than the JSON Schema subset fields, the following fields may be used for further schema documentation.
23222327

23232328
##### Fixed Fields
23242329
Field Name | Type | Description
23252330
---|:---:|---
2326-
<a name="schemaDiscriminator"></a>discriminator | `string` | Adds support for polymorphism. The discriminator is the schema property name that is used to differentiate between other schema that inherit this schema. The property name used MUST be defined at this schema and it MUST be in the `required` property list. When used, the value MUST be the name of this schema or any schema that inherits it.
2327-
<a name="schemaReadOnly"></a>readOnly | `boolean` | Relevant only for Schema `"properties"` definitions. Declares the property as "read only". This means that it MAY be sent as part of a response but MUST NOT be sent as part of the request. Properties marked as `readOnly` being `true` SHOULD NOT be in the `required` list of the defined schema. Default value is `false`.
2331+
<a name="schemaNullable"></a>nullable | `boolean` | Allows sending a `null` value for the defined schema. Default value is `false`.
2332+
<a name="schemaDiscriminator"></a>discriminator | `string` | Adds support for polymorphism. The discriminator is the schema property name that is used to differentiate between other schema that inherit this schema. The property name used MUST be defined at this schema and it MUST be in the `required` property list. When used, the value MUST be the name of this schema or any schema that inherits it. See [Composition and Inheritance](#schemaComposition) for more details.
2333+
<a name="schemaReadOnly"></a>readOnly | `boolean` | Relevant only for Schema `"properties"` definitions. Declares the property as "read only". This means that it MAY be sent as part of a response but SHOULD NOT be sent as part of the request. If 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`.
2334+
<a name="schemaWriteOnly"></a>writeOnly | `boolean` | Relevant only for Schema `"properties"` definitions. Declares the property as "write only". This means that it MAY be sent as part of a request but SHOULD NOT be sent as part of the response. If 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`.
23282335
<a name="schemaXml"></a>xml | [XML Object](#xmlObject) | This MAY be used only on properties schemas. It has no effect on root schemas. Adds Additional metadata to describe the XML representation format of this property.
23292336
<a name="schemaExternalDocs"></a>externalDocs | [External Documentation Object](#externalDocumentationObject) | Additional external documentation for this schema.
23302337
<a name="schemaExample"></a>example | Any | A free-form property to include an example of an instance for this schema.
@@ -2333,7 +2340,7 @@ Field Name | Type | Description
23332340

23342341
This object can be extended with [Specification Extensions](#specificationExtensions).
23352342

2336-
###### Composition and Inheritance (Polymorphism)
2343+
###### <a name="schemaComposition"></a>Composition and Inheritance (Polymorphism)
23372344

23382345
The OpenAPI Specification allows combining and extending model definitions using the `allOf` property of JSON Schema, in effect offering model composition.
23392346
`allOf` takes in an array of object definitions that are validated *independently* but together compose a single object.
@@ -2342,7 +2349,9 @@ While composition offers model extensibility, it does not imply a hierarchy betw
23422349
To support polymorphism, OpenAPI Specification adds the support of the `discriminator` field.
23432350
When used, the `discriminator` will be the name of the property used to decide which schema definition is used to validate the structure of the model.
23442351
As such, the `discriminator` field MUST be a required field.
2345-
The value of the chosen property has to be the friendly name given to the model under the `definitions` property.
2352+
There are are two ways to define the value of a discriminator for an inheriting instance.
2353+
- Use the definition's name.
2354+
- Override the definition's name by overriding the property with a new value. If exists, this takes precedence over the definition's name.
23462355
As such, inline schema definitions, which do not have a given id, *cannot* be used in polymorphism.
23472356

23482357
###### XML Modeling
@@ -2354,8 +2363,6 @@ The [XML Object](#xmlObject) contains additional information about the available
23542363

23552364
###### Primitive Sample
23562365

2357-
Unlike previous versions of Swagger, OpenAPI Schema definitions can be used to describe primitive and arrays as well.
2358-
23592366
```json
23602367
{
23612368
"type": "string",
@@ -2381,7 +2388,7 @@ format: email
23812388
"type": "string"
23822389
},
23832390
"address": {
2384-
"$ref": "#/definitions/Address"
2391+
"$ref": "#/components/definitions/Address"
23852392
},
23862393
"age": {
23872394
"type": "integer",
@@ -2400,7 +2407,7 @@ properties:
24002407
name:
24012408
type: string
24022409
address:
2403-
$ref: '#/definitions/Address'
2410+
$ref: '#/components/definitions/Address'
24042411
age:
24052412
type: integer
24062413
format: int32
@@ -2432,15 +2439,15 @@ For a string to model mapping:
24322439
{
24332440
"type": "object",
24342441
"additionalProperties": {
2435-
"$ref": "#/definitions/ComplexModel"
2442+
"$ref": "#/components/definitions/ComplexModel"
24362443
}
24372444
}
24382445
```
24392446

24402447
```yaml
24412448
type: object
24422449
additionalProperties:
2443-
$ref: '#/definitions/ComplexModel'
2450+
$ref: '#/components/definitions/ComplexModel'
24442451
```
24452452

24462453
###### Model with Example
@@ -2618,7 +2625,7 @@ definitions:
26182625
]
26192626
},
26202627
"Cat": {
2621-
"description": "A representation of a cat",
2628+
"description": "A representation of a cat. Note that `Cat` will be used as the discriminator value.",
26222629
"allOf": [
26232630
{
26242631
"$ref": "#/definitions/Pet"
@@ -2645,7 +2652,7 @@ definitions:
26452652
]
26462653
},
26472654
"Dog": {
2648-
"description": "A representation of a dog",
2655+
"description": "A representation of a dog. Note that `Dog` will be used as the discriminator value.",
26492656
"allOf": [
26502657
{
26512658
"$ref": "#/definitions/Pet"
@@ -2684,7 +2691,7 @@ definitions:
26842691
required:
26852692
- name
26862693
- petType
2687-
Cat:
2694+
Cat: ## "Cat" will be used as the discriminator value
26882695
description: A representation of a cat
26892696
allOf:
26902697
- $ref: '#/definitions/Pet'
@@ -2701,7 +2708,7 @@ definitions:
27012708
- aggressive
27022709
required:
27032710
- huntingSkill
2704-
Dog:
2711+
Dog: ## "Dog" will be used as the discriminator value
27052712
description: A representation of a dog
27062713
allOf:
27072714
- $ref: '#/definitions/Pet'

0 commit comments

Comments
 (0)