Project
Captures project-level metadata, version, tags, env config, and extensions.
| Field | Value |
|---|---|
| $id | https://vibespec.vibecodeunited.com/schema/project.schema.json |
| vibespecVersion | 0.1.0 |
{
"$id": "https://vibespec.vibecodeunited.com/schema/project.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Project",
"vibespecVersion": "0.1.0",
"description": "Captures project-level metadata, version, tags, env config, and extensions.",
"type": "object",
"required": [
"name",
"description",
"version"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"owner": {
"type": "string"
},
"version": {
"type": "string",
"pattern": "^\\d+\\.\\d+\\.\\d+$"
},
"license": {
"type": "string"
},
"env": {
"type": "object",
"properties": {
"required": {
"type": "array",
"items": {
"type": "string"
}
},
"optional": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"extensions": {
"type": "object"
}
},
"additionalProperties": false
}