mirror of https://github.com/pulumi/pulumi.git
26 lines
612 B
JSON
26 lines
612 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/pulumi/pulumi/master/pkg/codegen/schema/pulumi.json",
|
|
"name": "enum",
|
|
"version": "1.0.0",
|
|
"//": [
|
|
"Simple schema with an enum"
|
|
],
|
|
"types": {
|
|
"enum:index:Color": {
|
|
"description": "An enum representing a color",
|
|
"type": "string",
|
|
"enum": [
|
|
{
|
|
"value": "red"
|
|
},
|
|
{
|
|
"value": "green"
|
|
},
|
|
{
|
|
"value": "blue"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|