{"openapi":"3.1.0","info":{"title":"MyBathroom public catalogue API","version":"1.1.0","description":"Public read-only product, FAQ and policy data. Prices in GBP. No order or payment operations."},"servers":[{"url":"https://mybathroom.uk"}],"paths":{"/api/products.json":{"get":{"operationId":"getProducts","summary":"List published products","responses":{"200":{"description":"Public data","content":{"application/json":{"schema":{"type":"object","required":["version","currency","count","products"],"properties":{"version":{"type":"integer"},"currency":{"type":"string"},"count":{"type":"integer"},"products":{"type":"array","items":{"$ref":"#/components/schemas/Product"}}}}}}}}}},"/api/products/{slug}.json":{"get":{"operationId":"getProduct","summary":"Read a product","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Public data","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Product"}}}},"404":{"description":"No published product with this slug"}}}},"/api/faq.json":{"get":{"operationId":"getFaq","summary":"Read public FAQs","responses":{"200":{"description":"Public data","content":{"application/json":{"schema":{"type":"object","required":["version","status","count","faqs"],"properties":{"version":{"type":"integer"},"status":{"type":"string"},"count":{"type":"integer"},"faqs":{"type":"array","items":{"$ref":"#/components/schemas/Faq"}}}}}}}}}},"/api/policies.json":{"get":{"operationId":"getPolicies","summary":"Read published policy links","responses":{"200":{"description":"Public data","content":{"application/json":{"schema":{"type":"object","required":["version","policies"],"properties":{"version":{"type":"integer"},"policies":{"type":"array","items":{"$ref":"#/components/schemas/Policy"}}}}}}}}}}},"components":{"schemas":{"Product":{"type":"object","required":["slug","url","name","description","category","categorySlug","price","currency","inStock","images","options","status","lastVerified","canonical_url","json_url"],"properties":{"slug":{"type":"string"},"url":{"type":"string","description":"Root-relative product path."},"name":{"type":"string"},"description":{"type":"string"},"category":{"type":"string"},"categorySlug":{"type":"string"},"price":{"type":"number"},"wasPrice":{"type":["number","null"]},"currency":{"type":"string","const":"GBP"},"inStock":{"type":"boolean"},"images":{"type":"array","items":{"type":"object","required":["src","alt"],"properties":{"src":{"type":"string"},"alt":{"type":"string"}}}},"options":{"type":"array","items":{"type":"object","required":["name","values"],"properties":{"name":{"type":"string"},"values":{"type":"array","items":{"type":"string"}}}}},"status":{"type":"string"},"lastVerified":{"type":"string","format":"date"},"canonical_url":{"type":"string","format":"uri"},"json_url":{"type":"string","format":"uri"}}},"Policy":{"type":"object","required":["name","url"],"properties":{"name":{"type":"string"},"url":{"type":"string"}}},"Faq":{"type":"object","required":["slug","question","answer","category","target","lastVerified"],"properties":{"slug":{"type":"string"},"question":{"type":"string"},"answer":{"type":"string"},"category":{"type":["string","null"]},"target":{"type":"object","required":["type","slug","url"],"properties":{"type":{"type":"string"},"slug":{"type":"string"},"url":{"type":"string"}}},"lastVerified":{"type":"string","format":"date"}}}}}}
