Tax Documents
Tax1099Sb
FDX / Data Structures / Tax1099Sb
Form 1099-SB, Seller's Investment in Life Insurance Contract
Extends and inherits all fields from Tax
Tax1099Sb Properties
# | Id | Type | Description |
---|---|---|---|
1 | issuerNameAddress | NameAddressPhone | ISSUER's name, street address, city or town, state or province, country, ZIP or foreign postal code, and telephone no. |
2 | issuerTin | string | ISSUER's TIN |
3 | sellerTin | string | SELLER'S TIN |
4 | sellerNameAddress | NameAddress | SELLER'S name, street address (including apt. no.), city or town, state or province, country and ZIP or foreign postal code |
5 | policyNumber | string | Policy number |
6 | contractInvestment | number (double) | Box 1, Investment in contract |
7 | surrenderAmount | number (double) | Box 2, Surrender amount |
8 | contactNameAddress | NameAddressPhone | Issuer's information contact name, street address, city or town, state or province, country, ZIP or foreign postal code, and telephone no. (if different from ISSUER) |
Tax1099Sb Usage:
- TaxData tax1099Sb
FDX Data Structure as JSON
{ "tax1099Sb" : { "taxYear" : 0, "corrected" : true, "accountId" : "", "taxFormId" : "", "taxFormDate" : "2020-07-01", "description" : "string", "additionalInformation" : "string", "taxFormType" : "BusinessIncomeStatement", "attributes" : [ { "name" : "string", "value" : "string", "boxNumber" : "string", "code" : "string" } ], "error" : { "code" : "string", "message" : "string" }, "issuerNameAddress" : { "line1" : "String64", "line2" : "String64", "line3" : "String64", "city" : "String64", "state" : "String64", "postalCode" : "string", "country" : "AD", "name1" : "String64", "name2" : "String64", "phone" : { "type" : "HOME", "country" : "string", "number" : "string", "extension" : "string" } }, "issuerTin" : "string", "sellerTin" : "string", "sellerNameAddress" : { "line1" : "String64", "line2" : "String64", "line3" : "String64", "city" : "String64", "state" : "String64", "postalCode" : "string", "country" : "AD", "name1" : "String64", "name2" : "String64" }, "policyNumber" : "string", "contractInvestment" : 0.0, "surrenderAmount" : 0.0, "contactNameAddress" : { "line1" : "String64", "line2" : "String64", "line3" : "String64", "city" : "String64", "state" : "String64", "postalCode" : "string", "country" : "AD", "name1" : "String64", "name2" : "String64", "phone" : { "type" : "HOME", "country" : "string", "number" : "string", "extension" : "string" } } } }
Example Form PDF
Example Form JSON
{ "tax1099Sb" : { "taxYear" : 2022, "taxFormDate" : "2021-03-30", "taxFormType" : "Tax1099Sb", "issuerNameAddress" : { "line1" : "12021 Sunset Valley Dr", "line2" : "Suite 230", "city" : "Preston", "state" : "VA", "postalCode" : "20191", "country" : "US", "name1" : "Tax Form Issuer, Inc", "phone" : { "number" : "8885551212" } }, "issuerTin" : "12-3456789", "sellerTin" : "xxx-xx-1234", "sellerNameAddress" : { "line1" : "1 Main St", "city" : "Melrose", "state" : "NY", "postalCode" : "12121", "country" : "US", "name1" : "Kris Q Public" }, "policyNumber" : "987-65-4321", "contractInvestment" : 60000.0, "surrenderAmount" : 45000.0, "contactNameAddress" : { "line1" : "1 Main St", "city" : "Melrose", "state" : "NY", "postalCode" : "12121", "country" : "US", "name1" : "Kris Q Public" } } }
Example Form JSON for QR Code Purposes
Example Form PDF with QR Code
Example Data As Flattened Map (Key, Value Pairs)
{ "taxYear": "2022", "taxFormDate": "2021-03-30", "taxFormType": "Tax1099Sb", "issuerNameAddress.line1": "12021 Sunset Valley Dr", "issuerNameAddress.line2": "Suite 230", "issuerNameAddress.city": "Preston", "issuerNameAddress.state": "VA", "issuerNameAddress.postalCode": "20191", "issuerNameAddress.country": "US", "issuerNameAddress.name1": "Tax Form Issuer, Inc", "issuerNameAddress.phone.number": "8885551212", "issuerTin": "12-3456789", "sellerTin": "xxx-xx-1234", "sellerNameAddress.line1": "1 Main St", "sellerNameAddress.city": "Melrose", "sellerNameAddress.state": "NY", "sellerNameAddress.postalCode": "12121", "sellerNameAddress.country": "US", "sellerNameAddress.name1": "Kris Q Public", "policyNumber": "987-65-4321", "contractInvestment": "60000.0", "surrenderAmount": "45000.0", "contactNameAddress.line1": "1 Main St", "contactNameAddress.city": "Melrose", "contactNameAddress.state": "NY", "contactNameAddress.postalCode": "12121", "contactNameAddress.country": "US", "contactNameAddress.name1": "Kris Q Public" }