@typespec/openapi3
Advanced tools
Comparing version 0.48.0-dev.3 to 0.48.0-dev.5
@@ -258,3 +258,3 @@ import { ExtensionKey } from "@typespec/openapi"; | ||
* A numeric instance is valid only if division by this keyword's value results in an integer. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.1 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.1 | ||
*/ | ||
@@ -265,3 +265,3 @@ multipleOf?: number; | ||
* This keyword validates only if the instance is less than or exactly equal to "maximum". | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.2 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.2 | ||
*/ | ||
@@ -272,9 +272,9 @@ maximum?: number; | ||
* This keyword validates only if the instance is strictly less than (not equal to) to "exclusiveMaximum". | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.3 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.3 | ||
*/ | ||
exclusiveMaximum?: number; | ||
exclusiveMaximum?: boolean; | ||
/** | ||
* Representing an inclusive lower limit for a numeric instance. | ||
* This keyword validates only if the instance is greater than or exactly equal to "minimum". | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.4 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.4 | ||
*/ | ||
@@ -285,9 +285,9 @@ minimum?: number; | ||
* This keyword validates only if the instance is strictly greater than (not equal to) to "exclusiveMinimum". | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.5 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.5 | ||
*/ | ||
exclusiveMinimum?: number; | ||
exclusiveMinimum?: boolean; | ||
/** | ||
* Must be a non-negative integer. | ||
* A string instance is valid against this keyword if its length is less than, or equal to, the value of this keyword. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.6 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.6 | ||
*/ | ||
@@ -299,3 +299,3 @@ maxLength?: number; | ||
* Omitting this keyword has the same behavior as a value of 0. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.7 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.7 | ||
*/ | ||
@@ -305,3 +305,3 @@ minLength?: number; | ||
* Should be a valid regular expression, according to the ECMA 262 regular expression dialect. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.8 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.8 | ||
*/ | ||
@@ -312,3 +312,3 @@ pattern?: string; | ||
* An array instance is valid against "maxItems" if its size is less than, or equal to, the value of this keyword. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.11 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.11 | ||
*/ | ||
@@ -320,3 +320,3 @@ maxItems?: number; | ||
* Omitting this keyword has the same behavior as a value of 0. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.12 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.12 | ||
*/ | ||
@@ -328,3 +328,3 @@ minItems?: number; | ||
* Omitting this keyword has the same behavior as a value of false. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.13 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.13 | ||
*/ | ||
@@ -335,3 +335,3 @@ uniqueItems?: boolean; | ||
* An object instance is valid against "maxProperties" if its number of properties is less than, or equal to, the value of this keyword. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.15 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.15 | ||
*/ | ||
@@ -344,3 +344,3 @@ maxProperties?: number; | ||
* Omitting this keyword has the same behavior as a value of 0. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.16 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.16 | ||
*/ | ||
@@ -353,3 +353,3 @@ minProperties?: number; | ||
* | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.17 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.17 | ||
*/ | ||
@@ -364,3 +364,3 @@ required?: Array<string>; | ||
* | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.23 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.23 | ||
*/ | ||
@@ -379,3 +379,3 @@ enum?: (string | number | boolean)[]; | ||
* | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.26 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.26 | ||
*/ | ||
@@ -388,3 +388,3 @@ allOf?: Refable<OpenAPI3Schema>[]; | ||
* | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.27 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.27 | ||
*/ | ||
@@ -397,3 +397,3 @@ anyOf?: Refable<OpenAPI3Schema>[]; | ||
* | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.28 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.28 | ||
*/ | ||
@@ -403,3 +403,3 @@ oneOf?: Refable<OpenAPI3Schema>[]; | ||
* An instance is valid against this keyword if it fails to validate successfully against the schema defined by this keyword. | ||
* @see https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-6.29 | ||
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.29 | ||
*/ | ||
@@ -406,0 +406,0 @@ not?: Refable<OpenAPI3Schema>; |
{ | ||
"name": "@typespec/openapi3", | ||
"version": "0.48.0-dev.3", | ||
"version": "0.48.0-dev.5", | ||
"author": "Microsoft Corporation", | ||
@@ -5,0 +5,0 @@ "description": "TypeSpec library for emitting OpenAPI 3.0 from the TypeSpec REST protocol binding", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
191250
2650