Tax Documents
RentalIncomeStatement
FDX / Data Structures / RentalIncomeStatement
Rental Income Statement, Rental Income Statement for IRS Form 1040 Schedule E
Extends and inherits all fields from Tax
RentalIncomeStatement Properties
| # | Id | Type | Description |
|---|---|---|---|
| 1 | propertyAddress | Address | Box 1a, Physical address of property (street, city, state, ZIP code) |
| 2 | rents | number (double) | Box 3, Rents received |
| 3 | advertising | number (double) | Box 5, Advertising |
| 4 | auto | number (double) | Box 6, Auto and travel |
| 5 | cleaning | number (double) | Box 7, Cleaning and maintenance |
| 6 | commissions | number (double) | Box 8, Commissions |
| 7 | insurance | number (double) | Box 9, Insurance |
| 8 | legal | number (double) | Box 10, Legal and other professional fees |
| 9 | managementFees | number (double) | Box 11, Management fees |
| 10 | mortgageInterest | number (double) | Box 12, Mortgage interest paid to banks, etc. |
| 11 | otherInterest | number (double) | Box 13, Other interest |
| 12 | repairs | number (double) | Box 14, Repairs |
| 13 | supplies | number (double) | Box 15, Supplies |
| 14 | taxes | number (double) | Box 16, Taxes |
| 15 | utilities | number (double) | Box 17, Utilities |
| 16 | depreciationExpense | number (double) | Box 18, Depreciation |
| 17 | otherExpenses | Array of DescriptionAmount | Box 19, Other expenses |
| 18 | capitalExpenditures | Array of DateAmount | Capital expenditures, for use in calculating Depreciation |
RentalIncomeStatement Usage:
- TaxData rentalIncomeStatement
FDX Data Structure as JSON
{
"rentalIncomeStatement" : {
"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"
},
"propertyAddress" : {
"line1" : "String64",
"line2" : "String64",
"line3" : "String64",
"city" : "String64",
"state" : "String64",
"postalCode" : "string",
"country" : "AD"
},
"rents" : 0.0,
"advertising" : 0.0,
"auto" : 0.0,
"cleaning" : 0.0,
"commissions" : 0.0,
"insurance" : 0.0,
"legal" : 0.0,
"managementFees" : 0.0,
"mortgageInterest" : 0.0,
"otherInterest" : 0.0,
"repairs" : 0.0,
"supplies" : 0.0,
"taxes" : 0.0,
"utilities" : 0.0,
"depreciationExpense" : 0.0,
"otherExpenses" : [ {
"description" : "string",
"amount" : 0.0
} ],
"capitalExpenditures" : [ {
"date" : "2020-07-01",
"description" : "string",
"amount" : 0.0
} ]
}
}
Example Form JSON
{
"rentalIncomeStatement" : {
"taxYear" : 2022,
"taxFormDate" : "2020-12-31",
"taxFormType" : "RentalIncomeStatement",
"propertyAddress" : {
"line1" : "12345 E Cactus Way",
"city" : "Scottsdale",
"state" : "AZ",
"postalCode" : "85262"
},
"rents" : 37500.0,
"advertising" : 500.0,
"cleaning" : 2783.0,
"insurance" : 3043.47,
"mortgageInterest" : 9863.77,
"repairs" : 1565.5,
"taxes" : 2746.33,
"utilities" : 3913.87,
"capitalExpenditures" : [ {
"date" : "2020-07-15",
"description" : "Refrigerator",
"amount" : 1287.63
} ]
}
}