Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correct the array of objects and title
  • Loading branch information
vordimous committed Dec 13, 2023
commit d9b06157d8253fb6addbd7ccf8d1a01276075087
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,15 @@
"type": "array",
"items":

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bmaidics, I updated some structures in this file that looked like they might be a copy-paste error. Can you please double-check to make sure I didn't change the intended structure?

{
"topic":
"properties":
{
"title": "Topic",
"type": "string"
}
"topic":
{
"title": "Topic",
"type": "string"
}
},
"additionalProperties": false
}
}
}
Expand All @@ -123,15 +127,19 @@
{
"publish":
{
"title": "Subscribe",
"title": "Publish",
"type": "array",
"items":
{
"topic":
"properties":
{
"title": "Topic",
"type": "string"
}
"topic":
{
"title": "Topic",
"type": "string"
}
},
"additionalProperties": false
}
}
}
Expand All @@ -141,18 +149,15 @@
},
"with":
{
"items":
"properties":
{
"properties":
"messages":
{
"messages":
{
"title": "Messages Topic",
"type": "string"
}
},
"additionalProperties": false
}
"title": "Messages Topic",
"type": "string"
}
},
"additionalProperties": false
}
},
"required":
Expand Down