pulumi/pkg/codegen/internal/test/testdata/schema/bad-enum-2.json
Ian Wahbe 7f90e12886
Validate Name, Version and Enviroment (#7896)
* Validate Name, Version and Enviroment

For the full path:
Package.Name
Package.Version
Package.Property.Default

* Update tests

* Update CHANGELOG_PENDING.md

* Add more versions to tests

* Add another "Version" field

* Even more "version" tags

* One more "version" tag added

* Update test results from codegen

* Fix py codegen tests

* Fix doc test

* Remove `version` validation

* Unformat json files

* Fail only on errors
2021-09-17 12:12:22 -07:00

24 lines
359 B
JSON

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