pulumi/pkg/codegen/internal/test/testdata/nested-schema/schema.json

63 lines
1.0 KiB
JSON

{
"version": "0.0.1",
"name": "example",
"types": {
"example:a/b:Object": {
"properties": {
"foo": {
"type": "string"
}
},
"type": "object"
}
},
"resources": {
"example:a/b/c:Resource": {
"properties": {
"in": {
"$ref": "#/types/example:a/b:Object"
}
},
"inputProperties": {
"out": {
"type": "string"
}
},
"type": "object"
}
},
"functions": {
"example:a/b/c/d:argFunction": {
"inputs": {
"properties": {
"arg1": {
"type": "string"
}
}
},
"outputs": {
"properties": {
"result": {
"type": "string"
}
}
}
}
},
"language": {
"csharp": {},
"go": {
"importBasePath": "nested-module/foo"
},
"nodejs": {
"dependencies": {
"@pulumi/pulumi": "^3.12"
},
"devDependencies": {
"typescript": "^3.7.0"
}
},
"python": {}
}
}