Skip to content

Commit e3c236a

Browse files
author
Ron
authored
Merge pull request #1977 from philsturgeon/json-schema-update
Update Schema Objects to JSON Schema Draft 2019-09
2 parents 0ec2c73 + bb9a6f2 commit e3c236a

File tree

1 file changed

+21
-51
lines changed

1 file changed

+21
-51
lines changed

versions/3.1.0.md

Lines changed: 21 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,9 @@ It is RECOMMENDED that the root OpenAPI document be named: `openapi.json` or `op
139139

140140
### <a name="dataTypes"></a>Data Types
141141

142-
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).
142+
Primitive data types in the OAS are based on the types supported by the [JSON Schema Specification Draft 2019-09](http://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2).
143143
Note that `integer` as a type is also supported and is defined as a JSON number without a fraction or exponent part.
144-
`null` is not supported as a type (see [`nullable`](#schemaNullable) for an alternative solution).
145-
Models are defined using the [Schema Object](#schemaObject), which is an extended subset of JSON Schema Specification Wright Draft 00.
144+
Models are defined using the [Schema Object](#schemaObject), which is a superset of JSON Schema Specification Draft 2019-09.
146145

147146
<a name="dataTypeFormat"></a>Primitives have an optional modifier property: `format`.
148147
OAS uses several known formats to define in fine detail the data type being used.
@@ -2271,71 +2270,42 @@ $ref: definitions.yaml#/Pet
22712270

22722271
#### <a name="schemaObject"></a>Schema Object
22732272

2274-
The Schema Object allows the definition of input and output data types.
2275-
These types can be objects, but also primitives and arrays.
2276-
This object is an extended subset of the [JSON Schema Specification Wright Draft 00](https://json-schema.org/).
2273+
The Schema Object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. This object is a superset of the [JSON Schema Draft 2019-09](http://json-schema.org/) specification.
2274+
2275+
For more information about the properties, see [JSON Schema Core](https://json-schema.org/draft/2019-09/json-schema-core.html) and [JSON Schema Validation](https://json-schema.org/draft/2019-09/json-schema-validation.html).
22772276

2278-
For more information about the properties, see [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).
22792277
Unless stated otherwise, the property definitions follow the JSON Schema.
22802278

2281-
##### Properties
2282-
2283-
The following properties are taken directly from the JSON Schema definition and follow the same specifications:
2284-
2285-
- title
2286-
- multipleOf
2287-
- maximum
2288-
- exclusiveMaximum
2289-
- minimum
2290-
- exclusiveMinimum
2291-
- maxLength
2292-
- minLength
2293-
- pattern (This string SHOULD be a valid regular expression, according to the [ECMA 262 regular expression](https://www.ecma-international.org/ecma-262/5.1/#sec-7.8.5) dialect)
2294-
- maxItems
2295-
- minItems
2296-
- uniqueItems
2297-
- maxProperties
2298-
- minProperties
2299-
- required
2300-
- enum
2301-
2302-
The following properties are taken from the JSON Schema definition but their definitions were adjusted to the OpenAPI Specification.
2303-
- type - Value MUST be a string. Multiple types via an array are not supported.
2304-
- allOf - Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema.
2305-
- oneOf - Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema.
2306-
- anyOf - Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema.
2307-
- not - Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema.
2308-
- 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`.
2309-
- properties - Property definitions MUST be a [Schema Object](#schemaObject) and not a standard JSON Schema (inline or referenced).
2310-
- additionalProperties - Value can be boolean or object. Inline or referenced schema MUST be of a [Schema Object](#schemaObject) and not a standard JSON Schema. Consistent with JSON Schema, `additionalProperties` defaults to `true`.
2311-
- description - [CommonMark syntax](https://spec.commonmark.org/) MAY be used for rich text representation.
2312-
- 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.
2313-
- 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, if `type` is `string`, then `default` can be `"foo"` but cannot be `1`.
2279+
##### Properties
2280+
2281+
The OpenAPI Schema Object is a JSON Schema vocabulary which extends JSON Schema Core and Validation vocabularies. As such any keyword available for those vocabularies is by definition available in OpenAPI, and will work the exact same way.
23142282

2315-
Alternatively, any time a Schema Object can be used, a [Reference Object](#referenceObject) can be used in its place. This allows referencing definitions instead of defining them inline.
2283+
The following properties are taken from the JSON Schema definition but their definitions were adjusted to the OpenAPI Specification.
23162284

2317-
Additional properties defined by the JSON Schema specification that are not mentioned here are strictly unsupported.
2285+
- type - Used to restrict the allowed types as specified in JSON Schema, but may be modified by the [`nullable`](#schemaNullable) keyword.
2286+
- exclusiveMinimum - Value can be a numeric value just like JSON Schema, or for backwards compatibility with older drafts it can accept a boolean to act as a modifier to the `minimum` keyword. The numeric value usage is recommended.
2287+
- exclusiveMaximum - Value can be a numeric value just like JSON Schema, or for backwards compatibility with older drafts it can accept a boolean to act as a modifier to the `minimum` keyword. The numeric value usage is recommended.
2288+
- description - [CommonMark syntax](http://spec.commonmark.org/) MAY be used for rich text representation.
2289+
- 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.
23182290

2319-
Other than the JSON Schema subset fields, the following fields MAY be used for further schema documentation:
2291+
In addition to the JSON Schema properties defined in the vocabularies defined in the JSON Schema Core and JSON Schema Validation specifications, any properties can be used from any vocabularies, or entirely arbitrary keywords. The OpenAPI Specification defines an additional vocabulary of keywords which MAY be used along with the JSON Schema vocabulary keywords for further schema description:
23202292

23212293
##### Fixed Fields
2294+
23222295
Field Name | Type | Description
23232296
---|:---:|---
2324-
<a name="schemaNullable"></a>nullable | `boolean` | Allows sending a `null` value for the defined schema. Default value is `false`.
2297+
<a name="schemaNullable"></a>nullable | `boolean` | Allows sending a `null` value for the defined schema. Default value is `false`.<br><br>A `nullable` value of `true` allows `null` in addition to other specified `type` values only if `nullable` and `type` are both specified within the same schema object. The effect of `"nullable" : true` is limited to its expansion of the set of allowed types, within the scope of its containing schema. An `enum`, `const`, `allOf`, or other keyword can independently prohibit `null` values, effectively overriding `"nullable" : true`.<br><br>A `nullable` value of `false` leaves the specified or default `type` unmodified. It has no effect on the schema object.<br><br>**Deprecated:** The `type` property now allows "null" as a type, alone or within a type array. This is the standard way to allow null values in JSON Schema. Use of `nullable` is discouraged, and later versions of this specification may remove it.
23252298
<a name="schemaDiscriminator"></a>discriminator | [Discriminator Object](#discriminatorObject) | 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](#schemaComposition) for more details.
2326-
<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 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`.
2327-
<a name="schemaWriteOnly"></a>writeOnly | `boolean` | Relevant only for Schema `"properties"` definitions. Declares the property as "write only". 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`.
23282299
<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 of this property.
2329-
<a name="schemaExternalDocs"></a>externalDocs | [External Documentation Object](#externalDocumentationObject) | Additional external documentation for this schema.
2330-
<a name="schemaExample"></a>example | Any | A free-form property to include an example of an instance for this schema. To represent examples that cannot be naturally represented in JSON or YAML, a string value can be used to contain the example with escaping where necessary.
2331-
<a name="schemaDeprecated"></a> deprecated | `boolean` | Specifies that a schema is deprecated and SHOULD be transitioned out of usage. Default value is `false`.
2300+
<a name="schemaExternalDocs"></a>externalDocs | [External Documentation Object](#externalDocumentationObject) | Additional external documentation for this schema.
2301+
<a name="schemaExample"></a>example | Any | A free-form property to include an example of an instance for this schema. To represent examples that cannot be naturally represented in JSON or YAML, a string value can be used to contain the example with escaping where necessary.<br><br>**Deprecated:** The `example` property has been deprecated in favor of the JSON Schema `examples` keyword. Use of `example` is discouraged, and later versions of this specification may remove it.
23322302

2333-
This object MAY be extended with [Specification Extensions](#specificationExtensions).
2303+
This object MAY be extended with [Specification Extensions](#specificationExtensions).
23342304

23352305
###### <a name="schemaComposition"></a>Composition and Inheritance (Polymorphism)
23362306

23372307
The OpenAPI Specification allows combining and extending model definitions using the `allOf` property of JSON Schema, in effect offering model composition.
2338-
`allOf` takes an array of object definitions that are validated *independently* but together compose a single object.
2308+
`allOf` takes an array of object definitions that are validated *independently* but together compose a single object.
23392309

23402310
While composition offers model extensibility, it does not imply a hierarchy between the models.
23412311
To support polymorphism, the OpenAPI Specification adds the `discriminator` field.

0 commit comments

Comments
 (0)