Tax Documents
Tax1098E
FDX / Data Structures / Tax1098E
Form 1098-E, Student Loan Interest Statement
Extends and inherits all fields from Tax
Tax1098E Properties
# | Id | Type | Description |
---|---|---|---|
1 | lenderNameAddress | NameAddressPhone | Lender's name, address, and phone |
2 | lenderTin | string | LENDER'S TIN |
3 | borrowerTin | string | BORROWER'S TIN |
4 | borrowerNameAddress | NameAddress | Borrower's name and address |
5 | accountNumber | string | Account number |
6 | studentLoanInterest | number (double) | Box 1, Student loan interest received by lender |
7 | box1ExcludesFees | boolean | Box 2, If checked, box 1 does not include loan origination fee made before September 1, 2004 |
Tax1098E Usage:
- TaxData tax1098E
FDX Data Structure as JSON
{ "tax1098E" : { "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" }, "lenderNameAddress" : { "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" } }, "lenderTin" : "string", "borrowerTin" : "string", "borrowerNameAddress" : { "line1" : "String64", "line2" : "String64", "line3" : "String64", "city" : "String64", "state" : "String64", "postalCode" : "string", "country" : "AD", "name1" : "String64", "name2" : "String64" }, "accountNumber" : "string", "studentLoanInterest" : 0.0, "box1ExcludesFees" : true } }
Example Form PDF
Example Form JSON
{ "tax1098E" : { "taxYear" : 2022, "taxFormDate" : "2021-03-30", "taxFormType" : "Tax1098E", "lenderNameAddress" : { "line1" : "12021 Sunset Valley Dr", "line2" : "Suite 230", "city" : "Preston", "state" : "VA", "postalCode" : "20191", "country" : "US", "name1" : "Tax Form Issuer, Inc", "phone" : { "number" : "8885551212" } }, "lenderTin" : "12-3456789", "borrowerTin" : "xxx-xx-1234", "borrowerNameAddress" : { "line1" : "1 Main St", "city" : "Melrose", "state" : "NY", "postalCode" : "12121", "country" : "US", "name1" : "Kris Q Public" }, "accountNumber" : "111-55555555", "studentLoanInterest" : 1006.0, "box1ExcludesFees" : true } }
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": "Tax1098E", "lenderNameAddress.line1": "12021 Sunset Valley Dr", "lenderNameAddress.line2": "Suite 230", "lenderNameAddress.city": "Preston", "lenderNameAddress.state": "VA", "lenderNameAddress.postalCode": "20191", "lenderNameAddress.country": "US", "lenderNameAddress.name1": "Tax Form Issuer, Inc", "lenderNameAddress.phone.number": "8885551212", "lenderTin": "12-3456789", "borrowerTin": "xxx-xx-1234", "borrowerNameAddress.line1": "1 Main St", "borrowerNameAddress.city": "Melrose", "borrowerNameAddress.state": "NY", "borrowerNameAddress.postalCode": "12121", "borrowerNameAddress.country": "US", "borrowerNameAddress.name1": "Kris Q Public", "accountNumber": "111-55555555", "studentLoanInterest": "1006.0", "box1ExcludesFees": "true" }