calculate_self_employment_tax
Calculate Social Security and Medicare taxes for self-employed individuals based on net earnings to determine tax obligations.
Instructions
Calculate self-employment tax (Social Security and Medicare)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
netEarnings | Yes | Net earnings from self-employment |
Input Schema (JSON Schema)
{
"properties": {
"netEarnings": {
"description": "Net earnings from self-employment",
"type": "number"
}
},
"required": [
"netEarnings"
],
"type": "object"
}