Skip to main content

Deployment

Describes environments, CI, domains, secrets, and deployment settings.

FieldValue
$idhttps://vibespec.vibecodeunited.com/schema/deployment.schema.json
vibespecVersion0.1.0

View raw schema on GitHub

{
"$id": "https://vibespec.vibecodeunited.com/schema/deployment.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Deployment",
"vibespecVersion": "0.1.0",
"description": "Describes environments, CI, domains, secrets, and deployment settings.",
"type": "object",
"properties": {
"environments": {
"type": "array",
"items": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"domains": {
"type": "object"
},
"ci": {
"type": "object",
"properties": {
"provider": {
"type": "string"
},
"workflows": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"secrets": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}
},
"extensions": {
"type": "object"
}
},
"additionalProperties": false
}