Tax Documents
FarmRentalIncomeStatement
FDX / Data Structures / FarmRentalIncomeStatement
Farm Rental Income Statement, Farm Rental Income Statement for IRS Form 4835
Extends and inherits all fields from Tax
FarmRentalIncomeStatement Properties
| # | Id | Type | Description |
|---|---|---|---|
| 1 | incomeFromProduction | number (double) | Box 1, Income from production of livestock, produce, grains, and other crops |
| 2 | coopDistributions | number (double) | Box 2a, Cooperative distributions |
| 3 | agProgramPayments | number (double) | Box 3a, Agricultural program payments |
| 4 | cccLoans | number (double) | Box 4a, Commodity Credit Corporation (CCC) loans reported under election |
| 5 | cropInsuranceProceeds | number (double) | Box 5a, Crop insurance proceeds and federal crop disaster payments |
| 6 | otherIncome | Array of DescriptionAmount | Box 6, Other income |
| 7 | carAndTruck | number (double) | Box 8, Car and truck expenses |
| 8 | chemicals | number (double) | Box 9, Chemicals |
| 9 | conservation | number (double) | Box 10, Conservation expenses |
| 10 | customHireExpenses | number (double) | Box 11, Custom hire (machine work) |
| 11 | depreciation | number (double) | Box 12, Depreciation |
| 12 | employeeBenefitPrograms | number (double) | Box 13, Employee benefit programs |
| 13 | feed | number (double) | Box 14, Feed |
| 14 | fertilizers | number (double) | Box 15, Fertilizers and lime |
| 15 | freight | number (double) | Box 16, Freight and trucking |
| 16 | fuel | number (double) | Box 17, Gasoline, fuel, and oil |
| 17 | insurance | number (double) | Box 18, Insurance (other than health) |
| 18 | mortgageInterest | number (double) | Box 19a, Mortgage Interest |
| 19 | otherInterest | number (double) | Box 19b, Other interest |
| 20 | laborHired | number (double) | Box 20, Labor hired |
| 21 | pension | number (double) | Box 21, Pension and profit-sharing plans |
| 22 | equipmentRent | number (double) | Box 22a, Rent or lease: Vehicles, machinery, equipment |
| 23 | otherRent | number (double) | Box 22b, Rent or lease: Other |
| 24 | repairs | number (double) | Box 23, Repairs and maintenance |
| 25 | seeds | number (double) | Box 24, Seeds and plants |
| 26 | storage | number (double) | Box 25, Storage and warehousing |
| 27 | supplies | number (double) | Box 26, Supplies |
| 28 | taxes | number (double) | Box 27, Taxes |
| 29 | utilities | number (double) | Box 28, Utilities |
| 30 | veterinary | number (double) | Box 29, Veterinary, breeding, and medicine |
| 31 | otherExpenses | Array of DescriptionAmount | Box 30, Other expenses |
| 32 | capitalExpenditures | Array of DateAmount | Capital expenditures, for use in calculating Depreciation |
FarmRentalIncomeStatement Usage:
- TaxData farmRentalIncomeStatement
FDX Data Structure as JSON
{
"farmRentalIncomeStatement" : {
"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"
},
"incomeFromProduction" : 0.0,
"coopDistributions" : 0.0,
"agProgramPayments" : 0.0,
"cccLoans" : 0.0,
"cropInsuranceProceeds" : 0.0,
"otherIncome" : [ {
"description" : "string",
"amount" : 0.0
} ],
"carAndTruck" : 0.0,
"chemicals" : 0.0,
"conservation" : 0.0,
"customHireExpenses" : 0.0,
"depreciation" : 0.0,
"employeeBenefitPrograms" : 0.0,
"feed" : 0.0,
"fertilizers" : 0.0,
"freight" : 0.0,
"fuel" : 0.0,
"insurance" : 0.0,
"mortgageInterest" : 0.0,
"otherInterest" : 0.0,
"laborHired" : 0.0,
"pension" : 0.0,
"equipmentRent" : 0.0,
"otherRent" : 0.0,
"repairs" : 0.0,
"seeds" : 0.0,
"storage" : 0.0,
"supplies" : 0.0,
"taxes" : 0.0,
"utilities" : 0.0,
"veterinary" : 0.0,
"otherExpenses" : [ {
"description" : "string",
"amount" : 0.0
} ],
"capitalExpenditures" : [ {
"date" : "2020-07-01",
"description" : "string",
"amount" : 0.0
} ]
}
}
Example Form JSON
{
"farmRentalIncomeStatement" : {
"taxYear" : 2022,
"taxFormDate" : "2020-12-31",
"taxFormType" : "FarmRentalIncomeStatement",
"incomeFromProduction" : 166707.34,
"carAndTruck" : 3733.46,
"chemicals" : 3352.16,
"feed" : 24765.33,
"fertilizers" : 8012.34,
"fuel" : 9933.24,
"insurance" : 2301.04,
"mortgageInterest" : 25111.37,
"repairs" : 2410.5,
"supplies" : 3636.63
}
}