Files
code-crispies/.wave/contracts/epic-children.schema.json
Michael Czechowski ab6dabd542
Some checks failed
CI / ci (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
fix(ci): correct image digest separator
2026-04-30 12:20:26 +02:00

29 lines
736 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Epic Children",
"description": "Schema for the list of open child issue URLs belonging to an epic",
"type": "object",
"required": ["parent_url", "repo", "child_urls"],
"properties": {
"parent_url": {
"type": "string",
"format": "uri",
"description": "URL of the parent epic issue"
},
"repo": {
"type": "string",
"pattern": "^[^/]+/[^/]+$",
"description": "Repository in owner/repo format"
},
"child_urls": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"minItems": 1,
"description": "URLs of open child issues to implement"
}
}
}