1[ 2 { 3 "description": "invalid recursive reference exception testing", 4 "schema": { 5 "$schema": "https://json-schema.org/draft/2020-12/schema", 6 "properties": { 7 "name": { 8 "type": "string" 9 }, 10 "title": { 11 "type": "string" 12 }, 13 "subordinates": { 14 "type": "array", 15 "items": { 16 "$recursiveRef": "#%" 17 } 18 } 19 } 20 }, 21 "tests": [ 22 { 23 "description": "no test cases invalid schema exception", 24 "data": { 25 "name": "John Doe", 26 "title": "CEO", 27 "subordinates": [ 28 { 29 "name": "Alice Smith", 30 "title": "CTO", 31 "subordinates": [ 32 { 33 "name": "Bob Johnson", 34 "title": "Lead Engineer", 35 "subordinates": [] 36 } 37 ] 38 }, 39 { 40 "name": "Eva Brown", 41 "title": "CFO", 42 "subordinates": [] 43 } 44 ] 45 }, 46 "valid": true 47 } 48 ] 49 } 50]