github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/schema/replace-on-changes-3.json (about) 1 { 2 "version": "0.0.1", 3 "name": "example", 4 "types": { 5 "example::Dog": { 6 "type": "object", 7 "properties": { 8 "bone": { 9 "type": "string", 10 "replaceOnChanges": true 11 }, 12 "cat": { 13 "$ref": "#/types/example::Cat" 14 } 15 } 16 }, 17 "example::Cat": { 18 "type": "object", 19 "properties": { 20 "fish": { 21 "type": "string", 22 "replaceOnChanges": true 23 }, 24 "dog": { 25 "$ref": "#/types/example::Dog" 26 } 27 } 28 } 29 }, 30 "resources": { 31 "example::Pets": { 32 "properties": { 33 "dog": { 34 "$ref": "#/types/example::Dog" 35 }, 36 "cat": { 37 "$ref": "#/types/example::Cat" 38 } 39 } 40 } 41 } 42 }