2021-03-10 00:07:31 +03:00
|
|
|
|
## Section 1015
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-10-01 11:01:25 +03:00
|
|
|
|
```catala-metadata
|
2020-05-28 16:04:24 +03:00
|
|
|
|
declaration enumeration AcquisitionMethod:
|
|
|
|
|
-- Gift
|
|
|
|
|
-- Trust
|
|
|
|
|
|
|
|
|
|
declaration structure Acquisition:
|
|
|
|
|
data method content AcquisitionMethod
|
|
|
|
|
data moment content date
|
|
|
|
|
data no_sale_or_exchange_before content boolean
|
|
|
|
|
|
|
|
|
|
declaration structure Value:
|
2023-02-28 17:51:51 +03:00
|
|
|
|
data fair_market content money
|
|
|
|
|
depends on acquisition_date content date
|
2020-12-10 11:27:51 +03:00
|
|
|
|
data last_acquisition content money
|
|
|
|
|
data net_appreciation content money
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
|
|
|
|
declaration structure Transferor:
|
2020-12-10 11:27:51 +03:00
|
|
|
|
data basis content money
|
2020-12-30 01:43:00 +03:00
|
|
|
|
data basis_known content money
|
2020-05-28 16:04:24 +03:00
|
|
|
|
data acquisition content Acquisition
|
2023-02-28 17:51:51 +03:00
|
|
|
|
data gain_or_loss content money
|
|
|
|
|
depends on acquisition_moment content date
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
|
|
|
|
declaration scope BasisOfGift:
|
|
|
|
|
context acquisition content Acquisition
|
2020-12-10 11:27:51 +03:00
|
|
|
|
context basis_subsection_a content money
|
|
|
|
|
context basis content money
|
|
|
|
|
context basis_bonus_after_1976 content money
|
2020-05-28 16:04:24 +03:00
|
|
|
|
context transferor content Transferor
|
2020-12-10 11:27:51 +03:00
|
|
|
|
context gift_tax_paid content money
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
### (a) Gifts after December 31, 1920
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
If the property was acquired by gift after December 31, 1920, the basis shall be
|
|
|
|
|
the same as it would be in the hands of the donor or the last preceding owner by
|
|
|
|
|
whom it was not acquired by gift, except that if such basis (adjusted for the
|
|
|
|
|
period before the date of the gift as provided in section 1016) is greater than
|
|
|
|
|
the fair market value of the property at the time of the gift, then for the
|
2020-11-30 12:55:27 +03:00
|
|
|
|
purpose of determining loss the basis shall be such fair market value.
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
scope BasisOfGift:
|
|
|
|
|
definition basis_subsection_a equals
|
|
|
|
|
if transferor.basis >= value.fair_market of acquisition.moment then
|
|
|
|
|
value.fair_market of acquisition.moment
|
|
|
|
|
else
|
|
|
|
|
transferor.basis
|
|
|
|
|
|
|
|
|
|
definition basis under condition
|
2021-03-16 14:46:03 +03:00
|
|
|
|
acquisition.moment > |1920-12-31| and
|
2020-05-28 16:04:24 +03:00
|
|
|
|
acquisition.method = Gift
|
|
|
|
|
consequence equals basis_subsection_a
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If the facts necessary to determine the basis in the hands of the donor or the
|
|
|
|
|
last preceding owner are unknown to the donee, the Secretary shall, if
|
|
|
|
|
possible, obtain such facts from such donor or last preceding owner, or any
|
|
|
|
|
other person cognizant thereof. If the Secretary finds it impossible to obtain
|
|
|
|
|
such facts, the basis in the hands of such donor or last preceding owner shall
|
|
|
|
|
be the fair market value of such property as found by the Secretary as of the
|
|
|
|
|
date or approximate date at which, according to the best information that the
|
|
|
|
|
Secretary is able to obtain, such property was acquired by such donor or last
|
2020-11-30 12:55:27 +03:00
|
|
|
|
preceding owner.
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
scope BasisOfGift under condition
|
2021-03-16 14:46:03 +03:00
|
|
|
|
acquisition.moment > |1920-01-31| and
|
2020-05-28 16:04:24 +03:00
|
|
|
|
acquisition.method = Gift:
|
|
|
|
|
|
|
|
|
|
definition transferor.basis equals
|
|
|
|
|
match transferor.known_basis with pattern
|
|
|
|
|
-- Some of basis : basis
|
|
|
|
|
-- None : value.fair_market of transferor.acquisition.moment
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
### (b) Transfer in trust after December 31, 1920
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-03-10 00:07:31 +03:00
|
|
|
|
If the property was acquired after December 31, 1920, by a transfer in trust
|
|
|
|
|
(other than by a transfer in trust by a gift, bequest, or devise), the basis
|
|
|
|
|
shall be the same as it would be in the hands of the grantor increased in the
|
|
|
|
|
amount of gain or decreased in the amount of loss recognized to the grantor on
|
|
|
|
|
such transfer under the law applicable to the year in which the transfer was
|
2020-11-30 12:55:27 +03:00
|
|
|
|
made.
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
scope BasisOfGift under condition
|
2021-03-16 14:46:03 +03:00
|
|
|
|
acquisition.moment > |1920-01-31| and
|
2020-05-28 16:04:24 +03:00
|
|
|
|
acquisition.method = Trust:
|
|
|
|
|
|
|
|
|
|
definition basis equals
|
|
|
|
|
transferor.basis + transferor.gain_or_loss of acquisition.moment
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
### (c) Gift or transfer in trust before January 1, 1921
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
If the property was acquired by gift or transfer in trust on or before December
|
|
|
|
|
31, 1920, the basis shall be the fair market value of such property at the time
|
2020-11-30 12:55:27 +03:00
|
|
|
|
of such acquisition.
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2021-03-16 14:46:03 +03:00
|
|
|
|
scope BasisOfGift under condition acquisition.moment <= |1920-01-31|:
|
2020-05-28 16:04:24 +03:00
|
|
|
|
definition basis equals
|
|
|
|
|
value.fair_market of acquisition.moment
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### (d) Increased basis for gift tax paid
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
#### (1) In general
|
2021-03-10 00:07:31 +03:00
|
|
|
|
If— (A) the property is acquired by gift on or after September 2, 1958, the
|
|
|
|
|
basis shall be the basis determined under subsection (a), increased (but not
|
|
|
|
|
above the fair market value of the property at the time of the gift) by the
|
|
|
|
|
amount of gift tax paid with respect to such gift, or
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
scope BasisOfGift under condition
|
2021-03-16 14:46:03 +03:00
|
|
|
|
acquisition.moment >= |1958-09-02| and
|
2020-05-28 16:04:24 +03:00
|
|
|
|
acquisition.method = Gift:
|
|
|
|
|
|
|
|
|
|
definition basis equals
|
|
|
|
|
basis_subsection_a + (
|
|
|
|
|
if gift_tax_paid >= value.fair_market of acquisition.moment then
|
|
|
|
|
value.fair_market of acquisition.moment
|
|
|
|
|
else
|
|
|
|
|
gift_tax_paid
|
|
|
|
|
)
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
(B) the property was acquired by gift before September 2, 1958, and has not been
|
|
|
|
|
sold, exchanged, or otherwise disposed of before such date, the basis of the
|
|
|
|
|
property shall be increased on such date by the amount of gift tax paid with
|
|
|
|
|
respect to such gift, but such increase shall not exceed an amount equal to the
|
|
|
|
|
amount by which the fair market value of the property at the time of the gift
|
|
|
|
|
exceeded the basis of the property in the hands of the donor at the time of the
|
2020-11-30 12:55:27 +03:00
|
|
|
|
gift.
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
scope BasisOfGift under condition
|
2021-03-16 14:46:03 +03:00
|
|
|
|
acquisition.moment < |1958-09-02| and
|
2020-05-28 16:04:24 +03:00
|
|
|
|
acquisition.method = Gift and
|
|
|
|
|
acquisition.no_sale_or_exchange_before:
|
|
|
|
|
|
|
|
|
|
definition basis equals
|
|
|
|
|
basis_subsection_a + (
|
|
|
|
|
if
|
|
|
|
|
gift_tax_paid >=
|
|
|
|
|
value.fair_market of acquisition.moment - transferor.basis
|
|
|
|
|
then
|
|
|
|
|
value.fair_market of acquisition.moment - transferor.basis
|
|
|
|
|
else
|
|
|
|
|
gift_tax_paid
|
|
|
|
|
)
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
#### (2) Amount of tax paid with respect to gift
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
For purposes of paragraph (1), the amount of gift tax paid with respect to any
|
|
|
|
|
gift is an amount which bears the same ratio to the amount of gift tax paid under
|
|
|
|
|
chapter 12 with respect to all gifts made by the donor for the calendar year
|
|
|
|
|
(or preceding calendar period) in which such gift is made as the amount of such
|
|
|
|
|
gift bears to the taxable gifts (as defined in section 2503(a) but computed
|
|
|
|
|
without the deduction allowed by section 2521) made by the donor during such
|
|
|
|
|
calendar year or period. For purposes of the preceding sentence, the amount of
|
|
|
|
|
any gift shall be the amount included with respect to such gift in determining
|
|
|
|
|
(for the purposes of section 2503(a)) the total amount of gifts made during the
|
|
|
|
|
calendar year or period, reduced by the amount of any deduction allowed with
|
|
|
|
|
respect to such gift under section 2522 (relating to charitable deduction) or
|
2020-11-30 12:55:27 +03:00
|
|
|
|
under section 2523 (relating to marital deduction).
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
|
|
|
|
# We don't formalize the amount of gift tax since it would require
|
2020-11-30 12:55:27 +03:00
|
|
|
|
#formalizing other sections of the code
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
#### (3) Gifts treated as made one-half by each spouse
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-03-10 00:07:31 +03:00
|
|
|
|
For purposes of paragraph (1), where the donor and his spouse elected, under
|
|
|
|
|
section 2513 to have the gift considered as made one-half by each, the amount
|
|
|
|
|
of gift tax paid with respect to such gift under chapter 12 shall be the sum
|
|
|
|
|
of the amounts of tax paid with respect to each half of such gift (computed in
|
2020-11-30 12:55:27 +03:00
|
|
|
|
the manner provided in paragraph (2)).
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
# Same here
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
#### (4) Treatment as adjustment to basis
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-03-10 00:07:31 +03:00
|
|
|
|
For purposes of section 1016(b), an increase in basis under paragraph (1) shall
|
2020-11-30 12:55:27 +03:00
|
|
|
|
be treated as an adjustment under section 1016(a).
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
# Same here
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
#### (5) Application to gifts before 1955
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
With respect to any property acquired by gift before 1955, references in this
|
|
|
|
|
subsection to any provision of this title shall be deemed to refer to the
|
|
|
|
|
corresponding provision of the Internal Revenue Code of 1939 or prior revenue
|
2020-11-30 12:55:27 +03:00
|
|
|
|
laws which was effective for the year in which such gift was made.
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
# Same here
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
#### (6) Special rule for gifts made after December 31, 1976
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
##### (A) In general
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-03-10 00:07:31 +03:00
|
|
|
|
In the case of any gift made after December 31, 1976, the increase in basis
|
|
|
|
|
provided by this subsection with respect to any gift for the gift tax paid under
|
2020-11-30 12:55:27 +03:00
|
|
|
|
chapter 12 shall be an amount (not in excess of the amount of tax so paid) which
|
|
|
|
|
bears the same ratio to the amount of tax so paid as—
|
|
|
|
|
|
2020-05-28 16:04:24 +03:00
|
|
|
|
(i) the net appreciation in value of the gift, bears to
|
2020-11-30 12:55:27 +03:00
|
|
|
|
|
2020-05-28 16:04:24 +03:00
|
|
|
|
(ii) the amount of the gift.
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
scope BasisOfGift under condition
|
2021-03-16 14:46:03 +03:00
|
|
|
|
acquisition.moment > |1976-09-02| and
|
2020-05-28 16:04:24 +03:00
|
|
|
|
acquisition.method = Gift:
|
|
|
|
|
|
|
|
|
|
definition basis_bonus_after_1976 equals
|
|
|
|
|
gift_tax_paid * (
|
|
|
|
|
value.net_appreciation /
|
|
|
|
|
value.last_acquisition # is it really? "amount" is imprecise
|
|
|
|
|
)
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
##### (B) Net appreciation
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-03-10 00:07:31 +03:00
|
|
|
|
For purposes of paragraph (1), the net appreciation in value of any gift is the
|
|
|
|
|
amount by which the fair market value of the gift exceeds the donor’s adjusted
|
2020-11-30 12:55:27 +03:00
|
|
|
|
basis immediately before the gift.
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
scope BasisOfGift:
|
|
|
|
|
definition value.net_appreciation equals
|
|
|
|
|
value.fair_market_value of acquisition.moment - transferor.basis
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|
2020-05-28 16:04:24 +03:00
|
|
|
|
|
2021-05-15 02:16:08 +03:00
|
|
|
|
##### (e) Gifts between spouses
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
In the case of any property acquired by gift in a transfer described in section
|
|
|
|
|
1041(a), the basis of such property in the hands of the transferee shall be
|
2020-11-30 12:55:27 +03:00
|
|
|
|
determined under section 1041(b)(2) and not this section.
|
2021-03-10 00:07:31 +03:00
|
|
|
|
|
|
|
|
|
```catala
|
2020-05-28 16:04:24 +03:00
|
|
|
|
# Same here
|
2021-03-10 00:07:31 +03:00
|
|
|
|
```
|