File size: 1,060 Bytes
23ac194
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
'use strict'

const { test } = require('node:test')
const build = require('..')

test('nested ref requires ajv', async t => {
  t.test('nested ref requires ajv', async t => {
    const schemaA = {
      $id: 'urn:schema:a',
      definitions: {
        foo: { anyOf: [{ type: 'string' }, { type: 'null' }] }
      }
    }

    const schemaB = {
      $id: 'urn:schema:b',
      type: 'object',
      properties: {
        results: {
          type: 'object',
          properties: {
            items: {
              type: 'object',
              properties: {
                bar: {
                  type: 'array',
                  items: { $ref: 'urn:schema:a#/definitions/foo' }
                }
              }
            }
          }
        }
      }
    }

    const stringify = build(schemaB, {
      schema: {
        [schemaA.$id]: schemaA
      }
    })
    const result = stringify({
      results: {
        items: {
          bar: ['baz']
        }
      }
    })
    t.assert.equal(result, '{"results":{"items":{"bar":["baz"]}}}')
  })
})