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: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
22
- For `POST` requests with a `plan` property: Clarify that the default value is `null`.
23
23
-`GET /jobs/{job_id}/results`: Clarified the use of the `type``Feature` in the GeoJSON result response. [#327](https://github.com/Open-EO/openeo-api/issues/327)
24
24
- Add missing `{namespace}` placeholder to `ProcessUnsupported` error message. [#328](https://github.com/Open-EO/openeo-api/pull/328)
25
+
- Fixed JSON Schema links to point to draft-07 instead of draft/2019-09.
Copy file name to clipboardExpand all lines: openapi.yaml
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -252,8 +252,8 @@ info:
252
252
### Subtypes
253
253
254
254
JSON Schema allows to specify only a small set of native data types (string, boolean, number, integer, array, object, null).
255
-
To support more fine grained data types, a custom [JSON Schema keyword](https://tools.ietf.org/html/draft-handrews-json-schema-01#section-6.4) has been defined: `subtype`.
256
-
It works similarly as the JSON Schema keyword [`format`](https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-7) and defines a number of subtypes for the native data types.
255
+
To support more fine grained data types, a custom [JSON Schema keyword](https://json-schema.org/draft-07/json-schema-core.html#rfc.section.6.4) has been defined: `subtype`.
256
+
It works similarly as the JSON Schema keyword [`format`](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.7) and defines a number of subtypes for the native data types.
257
257
These should be re-used in process schema definitions whenever suitable.
258
258
259
259
If a general data type such as `string` or `number` is used in a schema, all subtypes with the same parent data type can be passed, too.
@@ -5208,7 +5208,7 @@ components:
5208
5208
properties:
5209
5209
description:
5210
5210
type: string
5211
-
description: A brief description of the parameter according to [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.9.1).
5211
+
description: A brief description of the parameter according to [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.10.1).
5212
5212
required:
5213
5213
type: boolean
5214
5214
description: Determines whether this parameter is mandatory.
@@ -5219,7 +5219,7 @@ components:
5219
5219
of the input as the value of the parameter if none is provided. The
5220
5220
value MUST conform to the defined type for the parameter defined at
5221
5221
the same level. For example, if type is string, then default can be
5222
-
"foo" but cannot be 1. See [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.9.2).
5222
+
"foo" but cannot be 1. See [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.10.2).
5223
5223
nullable: true
5224
5224
allOf:
5225
5225
- $ref: '#/components/schemas/json_schema'
@@ -5335,7 +5335,7 @@ components:
5335
5335
properties:
5336
5336
type:
5337
5337
description: |-
5338
-
The allowed basic data type(s) for a value according to [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.1.1).
5338
+
The allowed basic data type(s) for a value according to [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.1.1).
5339
5339
5340
5340
If this property is not present, all data types are allowed.
5341
5341
oneOf:
@@ -5351,28 +5351,28 @@ components:
5351
5351
pattern:
5352
5352
type: "string"
5353
5353
format: "regex"
5354
-
description: The regular expression a string value must match against. See [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.3.3).
5354
+
description: The regular expression a string value must match against. See [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.3.3).
5355
5355
enum:
5356
5356
type: array
5357
5357
items: {}
5358
-
description: An exclusive list of allowed values. See [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.1.2).
5358
+
description: An exclusive list of allowed values. See [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.1.2).
5359
5359
minimum:
5360
5360
type: number
5361
-
description: The minimum value (inclusive) allowed for a numerical value. See [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.2.4).
5361
+
description: The minimum value (inclusive) allowed for a numerical value. See [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.2.4).
5362
5362
maximum:
5363
5363
type: number
5364
-
description: The maximum value (inclusive) allowed for a numerical value. See [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.2.2).
5364
+
description: The maximum value (inclusive) allowed for a numerical value. See [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.2.2).
5365
5365
minItems:
5366
5366
type: number
5367
5367
minimum: 0
5368
5368
default: 0
5369
-
description: The minimum number of items required in an array. See [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.4.2).
5369
+
description: The minimum number of items required in an array. See [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.4.4).
5370
5370
maxItems:
5371
5371
type: number
5372
5372
minimum: 0
5373
-
description: The maximum number of items required in an array. See [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.4.1).
5373
+
description: The maximum number of items required in an array. See [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.4.3).
5374
5374
items:
5375
-
description: Specifies schemas for the items in an array according to [JSON Schema draft-07](https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.9.3.1.1).
5375
+
description: Specifies schemas for the items in an array according to [JSON Schema draft-07](https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.4.1).
0 commit comments