pulumi/pkg/codegen/internal/test/testdata/schema/bad-enum-2.json
Komal a334b60193
Only allow type-matching enum values (#5417)
* Only allow type-matching enum values

* More tests and fixes
2020-09-21 12:23:04 -07:00

22 lines
313 B
JSON

{
"types": {
"fake-provider:module1:BadEnum": {
"type": "string",
"enum": [
{
"value": "chocolate"
},
{
"value": "marshmallow"
},
{
"value": true
},
{
"value": "cookie"
}
]
}
}
}