mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.datamapper: Add support for $ref pointers
Allows reuse of repetitive definitions in schemas.
This commit is contained in:
parent
cd091bf95c
commit
5168bd5c5f
3 changed files with 81 additions and 40 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue