absorbency_translate
Translate period-underwear absorbency across brands. Give a brand + its tier word (e.g. brand "Thinx", tier "Super"), OR a target capacity in mL per day, and get the covering tier in every brand in objective millilitres, each with an A/B/C data-quality grade. Use for questions like "what Knix tier equals Thinx Super?" or "how much does Thinx Heavy hold vs Saalt?". Source: PeriodFinder, the only neutral cross-brand mL comparison.
Parameters3
| brand | string | optional | A period-underwear brand, e.g. Thinx, Knix, Saalt, Modibodi, WUKA. |
| tier | string | optional | The brand's absorbency tier word, e.g. Light, Moderate, Heavy, Super, Overnight. |
| ml_per_day | number | optional | Target real capacity in mL/day (alternative to brand+tier). A regular tampon holds about 5 mL, a super about 9 mL. |
Raw schema
{
"type": "object",
"properties": {
"brand": {
"type": "string",
"description": "A period-underwear brand, e.g. Thinx, Knix, Saalt, Modibodi, WUKA."
},
"tier": {
"type": "string",
"description": "The brand's absorbency tier word, e.g. Light, Moderate, Heavy, Super, Overnight."
},
"ml_per_day": {
"type": "number",
"description": "Target real capacity in mL/day (alternative to brand+tier). A regular tampon holds about 5 mL, a super about 9 mL."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}