From bcf8030f67352226ec02bed86291bb2544062ecf Mon Sep 17 00:00:00 2001
From: Klaus Fischer <klaus.fischer@eloware.com>
Date: Thu, 20 Apr 2023 11:27:46 +0200
Subject: [PATCH] Changed defintions to

---
 scripts/bundle.js            |  2 +-
 spec/set-payload.schema.json | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/scripts/bundle.js b/scripts/bundle.js
index 6c7881a..30617da 100644
--- a/scripts/bundle.js
+++ b/scripts/bundle.js
@@ -22,6 +22,6 @@ if (args.length !== 2) {
   let parser = new $RefParser()
   let schema = await parser.bundle(args[0])
 
-  fs.writeFileSync(args[1], JSON.stringify(schema))
+  fs.writeFileSync(args[1], JSON.stringify(schema).replace("%24defs", "$defs"))
 })()
 
diff --git a/spec/set-payload.schema.json b/spec/set-payload.schema.json
index 3a8e2d8..f25a66a 100644
--- a/spec/set-payload.schema.json
+++ b/spec/set-payload.schema.json
@@ -47,7 +47,7 @@
           "type": "object",
           "properties": {
             "authenticationTags": {
-              "$ref": "#/definitions/authenticationTags"
+              "$ref": "#/$defs/authenticationTags"
             }
           },
           "required": [
@@ -79,7 +79,7 @@
           "type": "object",
           "properties": {
             "problems": {
-              "$ref": "#/definitions/problems"
+              "$ref": "#/$defs/problems"
             }
           },
           "required": [
@@ -91,10 +91,10 @@
           "type": "object",
           "properties": {
             "problems": {
-              "$ref": "#/definitions/problems"
+              "$ref": "#/$defs/problems"
             },
             "authenticationTags": {
-              "$ref": "#/definitions/authenticationTags"
+              "$ref": "#/$defs/authenticationTags"
             }
           },
           "required": [
@@ -121,7 +121,7 @@
     "txn",
     "events"
   ],
-  "definitions": {
+  "$defs": {
     "authenticationTags": {
       "$ref": "./authentication-tags.schema.json"
     },
-- 
GitLab