{"openapi":"3.0.3","info":{"title":"kant-pastebin","description":"","license":{"name":""},"version":"0.1.0"},"paths":{"/browse":{"get":{"tags":["handlers"],"summary":"GET /browse - List pastes","operationId":"browse","parameters":[{"name":"q","in":"query","description":"Search query","required":false,"schema":{"type":"string","nullable":true}}],"responses":{"200":{"description":"Browse HTML"}}}},"/paste":{"post":{"tags":["handlers"],"summary":"POST /paste - Create paste","operationId":"create_paste","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Paste"}}},"required":true},"responses":{"200":{"description":"Paste created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}},"/paste/{id}":{"get":{"tags":["handlers"],"summary":"GET /paste/{id} - View paste","operationId":"get_paste","parameters":[{"name":"id","in":"path","description":"Paste ID","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Paste HTML"}}}}},"components":{"schemas":{"Paste":{"type":"object","properties":{"cid":{"type":"string","nullable":true},"content":{"type":"string","nullable":true},"keywords":{"type":"array","items":{"type":"string"},"nullable":true},"reply_to":{"type":"string","nullable":true},"title":{"type":"string","nullable":true}}},"Response":{"type":"object","required":["id","cid","witness","url","permalink","uucp_path"],"properties":{"cid":{"type":"string"},"id":{"type":"string"},"ipfs_cid":{"type":"string","nullable":true},"permalink":{"type":"string"},"reply_to":{"type":"string","nullable":true},"url":{"type":"string"},"uucp_path":{"type":"string"},"witness":{"type":"string"}}}}}}