util.datamapper: Add support for $ref pointers

Allows reuse of repetitive definitions in schemas.
This commit is contained in:
Kim Alvefur 2021-12-29 17:57:09 +01:00
parent cd091bf95c
commit 5168bd5c5f
3 changed files with 81 additions and 40 deletions

View file

@ -15,8 +15,9 @@ describe("util.datampper", function()
setup(function()
-- a convenience function for simple attributes, there's a few of them
local function attr() return {type = "string"; xml = {attribute = true}} end
local function attr() return {["$ref"]="#/$defs/attr"} end
s = {
["$defs"] = { attr = { type = "string"; xml = { attribute = true } } };
type = "object";
xml = {name = "message"; namespace = "jabber:client"};
properties = {
@ -111,6 +112,7 @@ describe("util.datampper", function()
};
disco_schema = {
["$defs"] = { attr = { type = "string"; xml = { attribute = true } } };
type = "object";
xml = {
name = "iq";