Tax Documents
Tax1099Cap
FDX / Data Structures / Tax1099Cap
Form 1099-CAP, Changes in Corporate Control and Capital Structure
Extends and inherits all fields from Tax
Tax1099Cap Properties
# | Id | Type | Description |
---|---|---|---|
1 | corporationNameAddress | NameAddressPhone | Corporation's name, address, and phone |
2 | corporationTin | string | CORPORATION'S TIN |
3 | shareholderTin | string | SHAREHOLDER'S TIN |
4 | shareholderNameAddress | NameAddress | Shareholder's name and address |
5 | accountNumber | string | Account number |
6 | dateOfSale | DateString | Box 1, Date of sale or exchange |
7 | aggregateAmount | number (double) | Box 2, Aggregate amount received |
8 | numberOfShares | number (double) | Box 3, Number of shares exchanged |
9 | stockClasses | string | Box 4, Classes of stock exchanged |
Tax1099Cap Usage:
- TaxData tax1099Cap
FDX Data Structure as JSON
{ "tax1099Cap" : { "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" }, "corporationNameAddress" : { "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" } }, "corporationTin" : "string", "shareholderTin" : "string", "shareholderNameAddress" : { "line1" : "String64", "line2" : "String64", "line3" : "String64", "city" : "String64", "state" : "String64", "postalCode" : "string", "country" : "AD", "name1" : "String64", "name2" : "String64" }, "accountNumber" : "string", "dateOfSale" : "2020-07-01", "aggregateAmount" : 0.0, "numberOfShares" : 0.0, "stockClasses" : "string" } }
Example Form PDF
Example Form JSON
{ "tax1099Cap" : { "taxYear" : 2022, "taxFormDate" : "2021-03-30", "taxFormType" : "Tax1099Cap", "corporationNameAddress" : { "line1" : "12021 Sunset Valley Dr", "line2" : "Suite 230", "city" : "Preston", "state" : "VA", "postalCode" : "20191", "country" : "US", "name1" : "Tax Form Issuer, Inc", "phone" : { "number" : "8885551212" } }, "corporationTin" : "12-3456789", "shareholderTin" : "xxx-xx-1234", "shareholderNameAddress" : { "line1" : "1 Main St", "city" : "Melrose", "state" : "NY", "postalCode" : "12121", "country" : "US", "name1" : "Kris Q Public" }, "accountNumber" : "111-55555555", "dateOfSale" : "2020-04-01", "aggregateAmount" : 2000.0, "numberOfShares" : 3000.0, "stockClasses" : "Common" } }
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": "Tax1099Cap", "corporationNameAddress.line1": "12021 Sunset Valley Dr", "corporationNameAddress.line2": "Suite 230", "corporationNameAddress.city": "Preston", "corporationNameAddress.state": "VA", "corporationNameAddress.postalCode": "20191", "corporationNameAddress.country": "US", "corporationNameAddress.name1": "Tax Form Issuer, Inc", "corporationNameAddress.phone.number": "8885551212", "corporationTin": "12-3456789", "shareholderTin": "xxx-xx-1234", "shareholderNameAddress.line1": "1 Main St", "shareholderNameAddress.city": "Melrose", "shareholderNameAddress.state": "NY", "shareholderNameAddress.postalCode": "12121", "shareholderNameAddress.country": "US", "shareholderNameAddress.name1": "Kris Q Public", "accountNumber": "111-55555555", "dateOfSale": "2020-04-01", "aggregateAmount": "2000.0", "numberOfShares": "3000.0", "stockClasses": "Common" }