{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "common.defs.schema.json",
"definitions": {
"id": {
"type": "string",
"pattern": "^[a-z0-9][a-z0-9._-]*$"
},
"status": {
"type": "string",
"enum": ["active", "inactive", "planned", "deprecated", "archived", "running", "shut_off", "unknown"]
},
"date": {
"type": "string",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
},
"docPath": {
"type": "string",
"pattern": "^\\.\\./.+\\.md$"
},
"stringList": {
"type": "array",
"items": { "type": "string" }
}
}
}