From 0639127af200d7f8130d12123b7d444c307d37df Mon Sep 17 00:00:00 2001 From: canardleteer Date: Fri, 27 Mar 2026 15:12:54 -0700 Subject: [PATCH] fix(problems): RFC-7807 was deprecated by RFC-9457 It is worth noting, that Appendix A in RFC-9457, has Errata ID: 7731, that clarifies the 3.2 section in the schema. --- json_schema/type/problems.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/json_schema/type/problems.yaml b/json_schema/type/problems.yaml index 9a46336..1f7120f 100644 --- a/json_schema/type/problems.yaml +++ b/json_schema/type/problems.yaml @@ -1,6 +1,6 @@ $schema: https://json-schema.org/draft/2020-12/schema $id: https://aep.dev/json-schema/type/problems.json -title: An RFC 7807 problem object +title: An RFC 9457 problem object type: object properties: type: @@ -22,3 +22,4 @@ properties: type: string format: uri-reference description: A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. +additionalProperties: true