1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "required": [ 5 "myData" 6 ], 7 "properties": { 8 "myData": { 9 "$ref": "urn:data" 10 } 11 }, 12 "definitions": { 13 "data": { 14 "$id": "urn:data", 15 "type": "object", 16 "required": [ 17 "value" 18 ], 19 "properties": { 20 "value": { 21 "type": "string" 22 } 23 } 24 } 25 } 26} 27