{"$schema":"https://json-schema.org/draft/2020-12/schema","$id":"https://towbar.dev/schemas/deployment.v1.json","title":"Towbar deployment manifest v1","type":"object","additionalProperties":false,"required":["version","servers","apps"],"properties":{"version":{"const":1},"servers":{"type":"array","minItems":1,"maxItems":100,"items":{"type":"object","additionalProperties":false,"required":["ip","ssh","secrets"],"properties":{"ip":{"type":"string"},"ssh":{"type":"object","additionalProperties":false,"required":["username"],"properties":{"username":{"type":"string"},"port":{"type":"integer","minimum":1,"maximum":65535}}},"secrets":{"type":"object","additionalProperties":false,"required":["login"],"properties":{"login":{"$ref":"#/$defs/secretReference"}}},"proxy":{"type":"object","additionalProperties":false,"properties":{"cloudflare":{"type":"object","additionalProperties":false,"required":["apiToken"],"properties":{"apiToken":{"$ref":"#/$defs/secretReference"}}}}}}}},"apps":{"type":"array","minItems":1,"maxItems":500,"items":{"type":"object","additionalProperties":false,"required":["id","name","server","dockerfile","container"],"properties":{"id":{"type":"string","pattern":"^[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$"},"name":{"type":"string","minLength":1,"maxLength":120},"description":{"type":"string","maxLength":500},"server":{"type":"string"},"dockerfile":{"type":"string","minLength":1,"maxLength":1024},"context":{"type":"string","minLength":1,"maxLength":1024},"container":{"type":"object","additionalProperties":false,"required":["port"],"properties":{"network":{"type":"string","pattern":"^[A-Za-z0-9][A-Za-z0-9_.-]{0,127}$"},"port":{"type":"integer","minimum":1,"maximum":65535}}},"health":{"type":"object","additionalProperties":false,"required":["path"],"properties":{"path":{"type":"string","pattern":"^/","maxLength":1024},"timeoutSeconds":{"type":"integer","minimum":5,"maximum":600}}},"secrets":{"type":"object","additionalProperties":false,"properties":{"build":{"$ref":"#/$defs/secretReference"},"deployment":{"$ref":"#/$defs/secretReference"}}},"domains":{"type":"object","additionalProperties":false,"required":["primary"],"properties":{"primary":{"type":"string"},"redirects":{"type":"array","maxItems":20,"items":{"type":"object","additionalProperties":false,"required":["host"],"properties":{"host":{"type":"string"},"status":{"enum":[301,302],"default":301}}}}}},"tls":{"type":"object","additionalProperties":false,"required":["mode"],"properties":{"mode":{"enum":["direct","cloudflare-dns"]}}}}}}},"$defs":{"secretReference":{"type":"string","pattern":"^aws:.+$","maxLength":1024}}}