ktworkflow-mcp/prompts/napcat/schemas/runtime-release-readiness.schema.json

35 lines
683 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"required": [
"sourceValidation",
"imageValidation",
"apiPromotionReadiness",
"onlineSmokeReadiness",
"rollbackPointer"
],
"properties": {
"sourceValidation": {
"type": "string",
"minLength": 1
},
"imageValidation": {
"type": "string",
"minLength": 1
},
"apiPromotionReadiness": {
"type": "string",
"minLength": 1
},
"onlineSmokeReadiness": {
"type": "string",
"minLength": 1
},
"rollbackPointer": {
"type": "string",
"minLength": 1
}
}
}