Tax Documents
Tax3921
FDX / Data Structures / Tax3921
Form 3921, Exercise of an Incentive Stock Option Under Section 422(b)
Extends and inherits all fields from Tax
Tax3921 Properties
| # | Id | Type | Description |
|---|---|---|---|
| 1 | transferorNameAddress | NameAddress | TRANSFEROR'S name, street address, city or town, state or province, country and ZIP or foreign postal code |
| 2 | transferorTin | string | TRANSFEROR'S TIN |
| 3 | employeeTin | string | EMPLOYEE'S TIN |
| 4 | employeeNameAddress | NameAddress | EMPLOYEE'S name, street address (including apt. no.), city or town, state or province, country and ZIP or foreign postal code |
| 5 | accountNumber | string | Account number |
| 6 | optionGrantDate | DateString | Box 1, Date option granted |
| 7 | optionExerciseDate | DateString | Box 2, Date option exercised |
| 8 | exercisePrice | number (double) | Box 3, Exercise price per share |
| 9 | exerciseMarketValue | number (double) | Box 4, Fair market value per share on exercise date |
| 10 | numberOfShares | number (double) | Box 5, Number of shares transferred |
| 11 | corporateNameAddress | NameAddress | Box 6, If other than TRANSFEROR, name and address of corporation whose stock is begin transferred |
| 12 | corporateTin | string | Box 6, If other than TRANSFEROR, TIN of corporation whose stock is begin transferred |
Tax3921 Usage:
- TaxData tax3921
FDX Data Structure as JSON
{
"tax3921" : {
"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"
},
"transferorNameAddress" : {
"line1" : "String64",
"line2" : "String64",
"line3" : "String64",
"city" : "String64",
"state" : "String64",
"postalCode" : "string",
"country" : "AD",
"name1" : "String64",
"name2" : "String64"
},
"transferorTin" : "string",
"employeeTin" : "string",
"employeeNameAddress" : {
"line1" : "String64",
"line2" : "String64",
"line3" : "String64",
"city" : "String64",
"state" : "String64",
"postalCode" : "string",
"country" : "AD",
"name1" : "String64",
"name2" : "String64"
},
"accountNumber" : "string",
"optionGrantDate" : "2020-07-01",
"optionExerciseDate" : "2020-07-01",
"exercisePrice" : 0.0,
"exerciseMarketValue" : 0.0,
"numberOfShares" : 0.0,
"corporateNameAddress" : {
"line1" : "String64",
"line2" : "String64",
"line3" : "String64",
"city" : "String64",
"state" : "String64",
"postalCode" : "string",
"country" : "AD",
"name1" : "String64",
"name2" : "String64"
},
"corporateTin" : "string"
}
}
Example Form PDF
Example Form JSON
{
"tax3921" : {
"taxYear" : 2022,
"taxFormDate" : "2021-03-30",
"taxFormType" : "Tax3921",
"transferorNameAddress" : {
"line1" : "12021 Sunset Valley Dr",
"line2" : "Suite 230",
"city" : "Preston",
"state" : "VA",
"postalCode" : "20191",
"country" : "US",
"name1" : "Tax Form Issuer, Inc"
},
"transferorTin" : "12-3456789",
"employeeTin" : "xxx-xx-1234",
"employeeNameAddress" : {
"line1" : "1 Main St",
"city" : "Melrose",
"state" : "NY",
"postalCode" : "12121",
"country" : "US",
"name1" : "Kris Q Public"
},
"accountNumber" : "111-23456",
"optionGrantDate" : "2020-03-01",
"optionExerciseDate" : "2020-07-01",
"exercisePrice" : 50.0,
"exerciseMarketValue" : 55.0,
"numberOfShares" : 100.0,
"corporateNameAddress" : {
"line1" : "12021 Sunset Valley Dr",
"line2" : "Suite 230",
"city" : "Preston",
"state" : "VA",
"postalCode" : "20191",
"country" : "US",
"name1" : "Tax Form Issuer, Inc"
},
"corporateTin" : "12-3456789"
}
}
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": "Tax3921",
"transferorNameAddress.line1": "12021 Sunset Valley Dr",
"transferorNameAddress.line2": "Suite 230",
"transferorNameAddress.city": "Preston",
"transferorNameAddress.state": "VA",
"transferorNameAddress.postalCode": "20191",
"transferorNameAddress.country": "US",
"transferorNameAddress.name1": "Tax Form Issuer, Inc",
"transferorTin": "12-3456789",
"employeeTin": "xxx-xx-1234",
"employeeNameAddress.line1": "1 Main St",
"employeeNameAddress.city": "Melrose",
"employeeNameAddress.state": "NY",
"employeeNameAddress.postalCode": "12121",
"employeeNameAddress.country": "US",
"employeeNameAddress.name1": "Kris Q Public",
"accountNumber": "111-23456",
"optionGrantDate": "2020-03-01",
"optionExerciseDate": "2020-07-01",
"exercisePrice": "50.0",
"exerciseMarketValue": "55.0",
"numberOfShares": "100.0",
"corporateNameAddress.line1": "12021 Sunset Valley Dr",
"corporateNameAddress.line2": "Suite 230",
"corporateNameAddress.city": "Preston",
"corporateNameAddress.state": "VA",
"corporateNameAddress.postalCode": "20191",
"corporateNameAddress.country": "US",
"corporateNameAddress.name1": "Tax Form Issuer, Inc",
"corporateTin": "12-3456789"
}