From 0eb86a132b99f5deb0e212b6f5af525ef633e641 Mon Sep 17 00:00:00 2001 From: marian-varga <70155732+marian-varga@users.noreply.github.com> Date: Wed, 20 Dec 2023 18:37:20 +0100 Subject: [PATCH 1/2] typo fix --- specification/structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/structure.md b/specification/structure.md index c585534..cf87a14 100644 --- a/specification/structure.md +++ b/specification/structure.md @@ -107,7 +107,7 @@ This API is not very useful because it **defines no operations** (it has no endp This page has shown that: * The syntax (language) used to write OpenAPI Descriptions can be **JSON**, **YAML** or **both**. -* An OpenAPI Descriptions is a JSON object including the fields described in the [OpenAPI Specification](https://spec.openapis.org/oas/v3.1.0). +* An OpenAPI Description is a JSON object including the fields described in the [OpenAPI Specification](https://spec.openapis.org/oas/v3.1.0). * Every OpenAPI Descriptions must contain an OpenAPI Object with at least the fields `openapi`, and `info`, and either `paths`, `components` or `webhooks`. [The following page](paths) describes the contents of the `paths` field so endpoints can be added to the above minimal snippet. From 7e4d65bacd52bf17233cc9770e3aff0af4f87918 Mon Sep 17 00:00:00 2001 From: marian-varga <70155732+marian-varga@users.noreply.github.com> Date: Wed, 20 Dec 2023 18:48:16 +0100 Subject: [PATCH 2/2] typo fix to paths.md --- specification/paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/paths.md b/specification/paths.md index 175af00..381f6e8 100644 --- a/specification/paths.md +++ b/specification/paths.md @@ -39,7 +39,7 @@ paths: ## The Path Item Object -The [Path Item Object](https://spec.openapis.org/oas/v3.1.0#path-item-object) describes the HTTP operations that can be performed on a path with a separate [Operation Object](https://spec.openapis.org/oas/v3.1.0#operation-object) for each one. Allowed operations match HTTP methods names like `get`, `put` or `delete`, to list the most common (find the complete list in the [Path Item Object](https://spec.openapis.org/oas/v3.1.0#path-item-object) specification). +The [Path Item Object](https://spec.openapis.org/oas/v3.1.0#path-item-object) describes the HTTP operations that can be performed on a path with a separate [Operation Object](https://spec.openapis.org/oas/v3.1.0#operation-object) for each one. Allowed operations match HTTP method names like `get`, `put` or `delete`, to list the most common (find the complete list in the [Path Item Object](https://spec.openapis.org/oas/v3.1.0#path-item-object) specification). This object also accepts common properties for all operations on the path like `summary` or `description`. The details of each operation are given in each child Operation object.