ApiSchemas
EnvironmentSlugTakenEncoded
One shape from the contract, as it appears on the wire.
Used by environments.create
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"EnvironmentSlugTaken"
]
},
"slug": {
"type": "string"
},
"reserved": {
"type": "boolean"
}
},
"required": [
"_tag",
"slug",
"reserved"
],
"additionalProperties": false
}