From 1d630fe7143927d3bc27f45303010bb2f5c8dd80 Mon Sep 17 00:00:00 2001 From: mgrafl Date: Sat, 21 Oct 2023 21:33:44 +0200 Subject: [PATCH 1/4] Generalize description of password data type Fixes #3404 --- versions/3.1.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/3.1.1.md b/versions/3.1.1.md index 64ebdf6ec2..a21ad67524 100644 --- a/versions/3.1.1.md +++ b/versions/3.1.1.md @@ -157,7 +157,7 @@ The formats defined by the OAS are: `integer` | `int64` | signed 64 bits (a.k.a long) `number` | `float` | | `number` | `double` | | -`string` | `password` | A hint to UIs to obscure input. +`string` | `password` | A hint to UIs and backend systems to obscure/redact the value. ### Rich Text Formatting Throughout the specification `description` fields are noted as supporting CommonMark markdown formatting. From 53c6a61eab144a51603b4ce67aa5227f07ab3e3a Mon Sep 17 00:00:00 2001 From: mgrafl Date: Thu, 4 Jan 2024 09:20:49 +0100 Subject: [PATCH 2/4] Include suggestion from review --- versions/3.1.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/3.1.1.md b/versions/3.1.1.md index a21ad67524..a78daed5a9 100644 --- a/versions/3.1.1.md +++ b/versions/3.1.1.md @@ -157,7 +157,7 @@ The formats defined by the OAS are: `integer` | `int64` | signed 64 bits (a.k.a long) `number` | `float` | | `number` | `double` | | -`string` | `password` | A hint to UIs and backend systems to obscure/redact the value. +`string` | `password` | A hint to obscure/redact the value. ### Rich Text Formatting Throughout the specification `description` fields are noted as supporting CommonMark markdown formatting. From 659ce3de10f931fff23c6637002836032bd6d81d Mon Sep 17 00:00:00 2001 From: mgrafl Date: Thu, 18 Jan 2024 18:12:22 +0100 Subject: [PATCH 3/4] fix the validate-markdown issue Co-authored-by: Ralf Handl --- versions/3.1.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/3.1.1.md b/versions/3.1.1.md index a78daed5a9..2ae7a28361 100644 --- a/versions/3.1.1.md +++ b/versions/3.1.1.md @@ -157,7 +157,7 @@ The formats defined by the OAS are: `integer` | `int64` | signed 64 bits (a.k.a long) `number` | `float` | | `number` | `double` | | -`string` | `password` | A hint to obscure/redact the value. +`string` | `password` | A hint to obscure/redact the value. ### Rich Text Formatting Throughout the specification `description` fields are noted as supporting CommonMark markdown formatting. From 3675b043a5387d85de57c3c44ed4d4e4c2a4a1d2 Mon Sep 17 00:00:00 2001 From: mgrafl Date: Sat, 27 Jan 2024 16:39:11 +0100 Subject: [PATCH 4/4] Suggestion from review Remove "redact" from wording, leaving only "obscure". Co-authored-by: Rob Ede --- versions/3.1.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/3.1.1.md b/versions/3.1.1.md index 2ae7a28361..8e0a4bcfad 100644 --- a/versions/3.1.1.md +++ b/versions/3.1.1.md @@ -157,7 +157,7 @@ The formats defined by the OAS are: `integer` | `int64` | signed 64 bits (a.k.a long) `number` | `float` | | `number` | `double` | | -`string` | `password` | A hint to obscure/redact the value. +`string` | `password` | A hint to obscure the value. ### Rich Text Formatting Throughout the specification `description` fields are noted as supporting CommonMark markdown formatting.