github.com/argoproj/argo-cd/v3@v3.2.1/reposerver/repository/testdata/broken-schema-verification/values.schema.json (about) 1 { 2 "$defs": { 3 "myType": { 4 "$ref": "http://doesnotexist.example.com/", 5 "title": "myType", 6 "type": "object" 7 } 8 }, 9 "type": "object", 10 "required": [ 11 "name" 12 ], 13 "properties": { 14 "name": { 15 "$ref": "#/$defs/myType" 16 } 17 } 18 }