sg_stamp_duty
Calculate Singapore property stamp duty (BSD + ABSD). buyer_profile: SC (citizen), SPR (PR), FR (foreigner), entity, developer. Returns total duty, tier breakdown, and effective rate.
Parameters4
| price | number | required | |
| property_type | string | optional | |
| buyer_profile | string | optional | |
| property_count | integer | optional |
Raw schema
{
"type": "object",
"properties": {
"price": {
"title": "Price",
"type": "number"
},
"property_type": {
"default": "residential",
"title": "Property Type",
"type": "string"
},
"buyer_profile": {
"default": "SC",
"title": "Buyer Profile",
"type": "string"
},
"property_count": {
"default": 1,
"title": "Property Count",
"type": "integer"
}
},
"required": [
"price"
],
"title": "sg_stamp_dutyArguments"
}