pulumi/tests/testdata/codegen/regress-go-10527/schema.json

42 lines
952 B
JSON

{
"name": "world",
"version": "0.0.1",
"resources": {
"world::WorldMap": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
},
"world::Universe": {
"type": "object",
"inputProperties": {
"worlds": {
"type": "object",
"additionalProperties": {
"$ref": "#/types/world::World"
}
}
}
}
},
"types": {
"world::World": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
}
},
"language": {
"go": {
"importBasePath": "regress-go-10527/world",
"generateExtraInputTypes": true
}
}
}