pulumi/tests/testdata/codegen/schema/replace-on-changes-4.json

28 lines
455 B
JSON

{
"version": "0.0.1",
"name": "example",
"types": {
"example::Dog": {
"type": "object",
"properties": {
"bone": {
"type": "string",
"replaceOnChanges": true
},
"dog": {
"$ref": "#/types/example::Dog"
}
}
}
},
"resources": {
"example::Pets": {
"properties": {
"dog": {
"$ref": "#/types/example::Dog"
}
}
}
}
}