Tax Documents
Tax1099Q
FDX / Data Structures / Tax1099Q
Form 1099-Q, Payments From Qualified Education Programs
Extends and inherits all fields from Tax
Tax1099Q Properties
| # | Id | Type | Description |
|---|---|---|---|
| 1 | payerNameAddress | NameAddressPhone | Payer's name, address, and phone |
| 2 | payerTin | string | PAYER'S/TRUSTEE'S TIN |
| 3 | recipientTin | string | RECIPIENT'S TIN |
| 4 | recipientNameAddress | NameAddress | Recipient's name and address |
| 5 | accountNumber | string | Account number |
| 6 | grossDistribution | number (double) | Box 1, Gross distribution |
| 7 | earnings | number (double) | Box 2, Earnings |
| 8 | basis | number (double) | Box 3, Basis |
| 9 | trusteeToTrustee | boolean | Box 4, Trustee-to-trustee transfer |
| 10 | tuitionPlanPrivate | boolean | Box 5a, Qualified tuition plan - Private |
| 11 | tuitionPlanPublic | boolean | Box 5b, Qualified tuition plan - Public |
| 12 | coverdellEsa | boolean | Box 5c, Coverdell ESA |
| 13 | recipientIsNotBeneficiary | boolean | Box 6, If this box is checked, the recipient is not the designated beneficiary |
Tax1099Q Usage:
- TaxData tax1099Q
FDX Data Structure as JSON
{
"tax1099Q" : {
"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"
},
"payerNameAddress" : {
"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"
}
},
"payerTin" : "string",
"recipientTin" : "string",
"recipientNameAddress" : {
"line1" : "String64",
"line2" : "String64",
"line3" : "String64",
"city" : "String64",
"state" : "String64",
"postalCode" : "string",
"country" : "AD",
"name1" : "String64",
"name2" : "String64"
},
"accountNumber" : "string",
"grossDistribution" : 0.0,
"earnings" : 0.0,
"basis" : 0.0,
"trusteeToTrustee" : true,
"tuitionPlanPrivate" : true,
"tuitionPlanPublic" : true,
"coverdellEsa" : true,
"recipientIsNotBeneficiary" : true
}
}
Example Form PDF
Example Form JSON
{
"tax1099Q" : {
"taxYear" : 2022,
"taxFormDate" : "2021-03-30",
"taxFormType" : "Tax1099Q",
"payerNameAddress" : {
"line1" : "12021 Sunset Valley Dr",
"line2" : "Suite 230",
"city" : "Preston",
"state" : "VA",
"postalCode" : "20191",
"country" : "US",
"name1" : "Tax Form Issuer, Inc",
"phone" : {
"number" : "8885551212"
}
},
"payerTin" : "12-3456789",
"recipientTin" : "xxx-xx-1234",
"recipientNameAddress" : {
"line1" : "1 Main St",
"city" : "Melrose",
"state" : "NY",
"postalCode" : "12121",
"country" : "US",
"name1" : "Kris Q Public"
},
"accountNumber" : "111-55555555",
"grossDistribution" : 10000.0,
"earnings" : 2000.0,
"basis" : 3000.0,
"trusteeToTrustee" : true,
"tuitionPlanPrivate" : true,
"recipientIsNotBeneficiary" : 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": "Tax1099Q",
"payerNameAddress.line1": "12021 Sunset Valley Dr",
"payerNameAddress.line2": "Suite 230",
"payerNameAddress.city": "Preston",
"payerNameAddress.state": "VA",
"payerNameAddress.postalCode": "20191",
"payerNameAddress.country": "US",
"payerNameAddress.name1": "Tax Form Issuer, Inc",
"payerNameAddress.phone.number": "8885551212",
"payerTin": "12-3456789",
"recipientTin": "xxx-xx-1234",
"recipientNameAddress.line1": "1 Main St",
"recipientNameAddress.city": "Melrose",
"recipientNameAddress.state": "NY",
"recipientNameAddress.postalCode": "12121",
"recipientNameAddress.country": "US",
"recipientNameAddress.name1": "Kris Q Public",
"accountNumber": "111-55555555",
"grossDistribution": "10000.0",
"earnings": "2000.0",
"basis": "3000.0",
"trusteeToTrustee": "true",
"tuitionPlanPrivate": "true",
"recipientIsNotBeneficiary": "true"
}
Issuer Instructions