mirror of https://github.com/pulumi/pulumi.git
30 lines
495 B
JSON
30 lines
495 B
JSON
{
|
|
"name": "example",
|
|
"version": "0.0.1",
|
|
"resources": {
|
|
"example::Child": {
|
|
"properties": {
|
|
"parent": {
|
|
"$ref": "#/types/example::Person"
|
|
},
|
|
"happy": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"types": {
|
|
"example::Person": {
|
|
"type": "object",
|
|
"properties": {
|
|
"parent": {
|
|
"$ref": "#/types/example::Person"
|
|
},
|
|
"alive": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|