{"openapi":"3.1.0","info":{"title":"Facts API","description":"Static facts API","version":"1.0.0"},"servers":[{"url":"https://mansuetu.de/api"}],"paths":{"/":{"get":{"summary":"API root","description":"HATEOAS root document describing available collections","responses":{"200":{"description":"API root document","content":{"application/json":{}}}}}},"/facts":{"get":{"summary":"List all facts","responses":{"200":{"description":"List of facts","content":{"application/json":{"schema":{"type":"object","required":["resources","_links"],"properties":{"resources":{"type":"array","items":{"type":"object","required":["name","href","_links"],"properties":{"name":{"type":"string"},"href":{"type":"string","format":"uri"},"_links":{"type":"object"}}}},"_links":{"type":"object"}}}},"text/html":{}}}}}},"/facts/{id}":{"get":{"summary":"Retrieve a fact","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","enum":["bob-mortimer","tiswas"]}}],"responses":{"200":{"description":"A fact document","content":{"application/json":{},"application/ld+json":{},"image/png":{}}},"404":{"description":"Resource not found"},"406":{"description":"No acceptable representation available"}}}},"/facts/{id}/image":{"get":{"summary":"Retrieve the image for a fact","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","enum":["bob-mortimer","tiswas"]}}],"responses":{"200":{"description":"Image associated with the document","content":{"image/png":{}}},"404":{"description":"Image not found"}}}}}}