j-law-ruby 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/README.md +109 -0
- data/Rakefile +87 -0
- data/ext/j_law_ruby/extconf.rb +34 -0
- data/lib/j_law_ruby/build_support.rb +129 -0
- data/lib/j_law_ruby/c_ffi.rb +662 -0
- data/lib/j_law_ruby.rb +532 -0
- data/rake_support/vendor_rust.rb +51 -0
- data/test/test_c_ffi_adapter.rb +46 -0
- data/test/test_consumption_tax.rb +66 -0
- data/test/test_gemspec.rb +82 -0
- data/test/test_income_tax.rb +77 -0
- data/test/test_income_tax_deductions.rb +82 -0
- data/test/test_real_estate.rb +98 -0
- data/test/test_stamp_tax.rb +68 -0
- data/test/test_withholding_tax.rb +65 -0
- data/vendor/rust/Cargo.lock +235 -0
- data/vendor/rust/Cargo.toml +12 -0
- data/vendor/rust/crates/j-law-c-ffi/Cargo.toml +20 -0
- data/vendor/rust/crates/j-law-c-ffi/j_law_c_ffi.h +493 -0
- data/vendor/rust/crates/j-law-c-ffi/src/lib.rs +1553 -0
- data/vendor/rust/crates/j-law-core/Cargo.toml +18 -0
- data/vendor/rust/crates/j-law-core/src/domains/consumption_tax/calculator.rs +216 -0
- data/vendor/rust/crates/j-law-core/src/domains/consumption_tax/context.rs +29 -0
- data/vendor/rust/crates/j-law-core/src/domains/consumption_tax/mod.rs +9 -0
- data/vendor/rust/crates/j-law-core/src/domains/consumption_tax/params.rs +24 -0
- data/vendor/rust/crates/j-law-core/src/domains/consumption_tax/policy.rs +34 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/assessment.rs +76 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/calculator.rs +222 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/context.rs +79 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/deduction/calculator.rs +167 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/deduction/context.rs +172 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/deduction/expense.rs +465 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/deduction/mod.rs +20 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/deduction/params.rs +205 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/deduction/personal.rs +324 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/deduction/types.rs +61 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/mod.rs +24 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/params.rs +109 -0
- data/vendor/rust/crates/j-law-core/src/domains/income_tax/policy.rs +103 -0
- data/vendor/rust/crates/j-law-core/src/domains/mod.rs +5 -0
- data/vendor/rust/crates/j-law-core/src/domains/real_estate/calculator.rs +197 -0
- data/vendor/rust/crates/j-law-core/src/domains/real_estate/context.rs +48 -0
- data/vendor/rust/crates/j-law-core/src/domains/real_estate/mod.rs +9 -0
- data/vendor/rust/crates/j-law-core/src/domains/real_estate/params.rs +43 -0
- data/vendor/rust/crates/j-law-core/src/domains/real_estate/policy.rs +40 -0
- data/vendor/rust/crates/j-law-core/src/domains/stamp_tax/calculator.rs +321 -0
- data/vendor/rust/crates/j-law-core/src/domains/stamp_tax/context.rs +408 -0
- data/vendor/rust/crates/j-law-core/src/domains/stamp_tax/mod.rs +12 -0
- data/vendor/rust/crates/j-law-core/src/domains/stamp_tax/params.rs +190 -0
- data/vendor/rust/crates/j-law-core/src/domains/stamp_tax/policy.rs +105 -0
- data/vendor/rust/crates/j-law-core/src/domains/withholding_tax/calculator.rs +247 -0
- data/vendor/rust/crates/j-law-core/src/domains/withholding_tax/context.rs +167 -0
- data/vendor/rust/crates/j-law-core/src/domains/withholding_tax/mod.rs +9 -0
- data/vendor/rust/crates/j-law-core/src/domains/withholding_tax/params.rs +80 -0
- data/vendor/rust/crates/j-law-core/src/domains/withholding_tax/policy.rs +49 -0
- data/vendor/rust/crates/j-law-core/src/error.rs +171 -0
- data/vendor/rust/crates/j-law-core/src/lib.rs +9 -0
- data/vendor/rust/crates/j-law-core/src/types/amount.rs +232 -0
- data/vendor/rust/crates/j-law-core/src/types/citation.rs +82 -0
- data/vendor/rust/crates/j-law-core/src/types/date.rs +280 -0
- data/vendor/rust/crates/j-law-core/src/types/mod.rs +11 -0
- data/vendor/rust/crates/j-law-core/src/types/rate.rs +219 -0
- data/vendor/rust/crates/j-law-core/src/types/rounding.rs +81 -0
- data/vendor/rust/crates/j-law-registry/Cargo.toml +15 -0
- data/vendor/rust/crates/j-law-registry/data/consumption_tax/consumption_tax.json +70 -0
- data/vendor/rust/crates/j-law-registry/data/income_tax/deductions.json +327 -0
- data/vendor/rust/crates/j-law-registry/data/income_tax/income_tax.json +352 -0
- data/vendor/rust/crates/j-law-registry/data/real_estate/brokerage_fee.json +125 -0
- data/vendor/rust/crates/j-law-registry/data/stamp_tax/stamp_tax.json +674 -0
- data/vendor/rust/crates/j-law-registry/data/withholding_tax/withholding_tax.json +70 -0
- data/vendor/rust/crates/j-law-registry/src/consumption_tax_loader.rs +325 -0
- data/vendor/rust/crates/j-law-registry/src/consumption_tax_schema.rs +49 -0
- data/vendor/rust/crates/j-law-registry/src/income_tax_deduction_loader.rs +636 -0
- data/vendor/rust/crates/j-law-registry/src/income_tax_deduction_schema.rs +111 -0
- data/vendor/rust/crates/j-law-registry/src/income_tax_loader.rs +445 -0
- data/vendor/rust/crates/j-law-registry/src/income_tax_schema.rs +44 -0
- data/vendor/rust/crates/j-law-registry/src/lib.rs +20 -0
- data/vendor/rust/crates/j-law-registry/src/loader.rs +221 -0
- data/vendor/rust/crates/j-law-registry/src/schema.rs +73 -0
- data/vendor/rust/crates/j-law-registry/src/stamp_tax_loader.rs +374 -0
- data/vendor/rust/crates/j-law-registry/src/stamp_tax_schema.rs +72 -0
- data/vendor/rust/crates/j-law-registry/src/validator.rs +204 -0
- data/vendor/rust/crates/j-law-registry/src/withholding_tax_loader.rs +310 -0
- data/vendor/rust/crates/j-law-registry/src/withholding_tax_schema.rs +61 -0
- metadata +148 -0
|
@@ -0,0 +1,674 @@
|
|
|
1
|
+
{
|
|
2
|
+
"domain": "stamp_tax",
|
|
3
|
+
"history": [
|
|
4
|
+
{
|
|
5
|
+
"effective_from": "2014-04-01",
|
|
6
|
+
"effective_until": null,
|
|
7
|
+
"params": {
|
|
8
|
+
"documents": {
|
|
9
|
+
"article1_real_estate_transfer": {
|
|
10
|
+
"label": "第1号文書1 不動産の譲渡に関する契約書",
|
|
11
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第1号文書" },
|
|
12
|
+
"charge_mode": "amount_brackets",
|
|
13
|
+
"amount_usage": "optional",
|
|
14
|
+
"base_rule_label": "通常税率",
|
|
15
|
+
"base_tax_amount": null,
|
|
16
|
+
"brackets": [
|
|
17
|
+
{ "label": "1万円未満のもの", "amount_from": 0, "amount_to_inclusive": 9999, "tax_amount": 0 },
|
|
18
|
+
{ "label": "10万円以下のもの", "amount_from": 10000, "amount_to_inclusive": 100000, "tax_amount": 200 },
|
|
19
|
+
{ "label": "10万円を超え50万円以下のもの", "amount_from": 100001, "amount_to_inclusive": 500000, "tax_amount": 400 },
|
|
20
|
+
{ "label": "50万円を超え100万円以下のもの", "amount_from": 500001, "amount_to_inclusive": 1000000, "tax_amount": 1000 },
|
|
21
|
+
{ "label": "100万円を超え500万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 5000000, "tax_amount": 2000 },
|
|
22
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 10000 },
|
|
23
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 20000 },
|
|
24
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 60000 },
|
|
25
|
+
{ "label": "1億円を超え5億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 500000000, "tax_amount": 100000 },
|
|
26
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 200000 },
|
|
27
|
+
{ "label": "10億円を超え50億円以下のもの", "amount_from": 1000000001, "amount_to_inclusive": 5000000000, "tax_amount": 400000 },
|
|
28
|
+
{ "label": "50億円を超えるもの", "amount_from": 5000000001, "amount_to_inclusive": null, "tax_amount": 600000 }
|
|
29
|
+
],
|
|
30
|
+
"no_amount_tax_amount": 200,
|
|
31
|
+
"no_amount_rule_label": "契約金額の記載のないもの",
|
|
32
|
+
"special_rules": [
|
|
33
|
+
{
|
|
34
|
+
"code": "article1_real_estate_transfer_reduced",
|
|
35
|
+
"label": "不動産譲渡契約書軽減措置",
|
|
36
|
+
"priority": 1,
|
|
37
|
+
"effective_from": "2014-04-01",
|
|
38
|
+
"effective_until": "2027-03-31",
|
|
39
|
+
"required_flags": [],
|
|
40
|
+
"tax_amount": null,
|
|
41
|
+
"rule_label": null,
|
|
42
|
+
"brackets": [
|
|
43
|
+
{ "label": "50万円以下のもの", "amount_from": 100001, "amount_to_inclusive": 500000, "tax_amount": 200 },
|
|
44
|
+
{ "label": "50万円を超え100万円以下のもの", "amount_from": 500001, "amount_to_inclusive": 1000000, "tax_amount": 500 },
|
|
45
|
+
{ "label": "100万円を超え500万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 5000000, "tax_amount": 1000 },
|
|
46
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 5000 },
|
|
47
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 10000 },
|
|
48
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 30000 },
|
|
49
|
+
{ "label": "1億円を超え5億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 500000000, "tax_amount": 60000 },
|
|
50
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 160000 },
|
|
51
|
+
{ "label": "10億円を超え50億円以下のもの", "amount_from": 1000000001, "amount_to_inclusive": 5000000000, "tax_amount": 320000 },
|
|
52
|
+
{ "label": "50億円を超えるもの", "amount_from": 5000000001, "amount_to_inclusive": null, "tax_amount": 480000 }
|
|
53
|
+
],
|
|
54
|
+
"no_amount_tax_amount": null,
|
|
55
|
+
"no_amount_rule_label": null
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
"article1_other_transfer": {
|
|
60
|
+
"label": "第1号文書1 不動産以外の譲渡契約書",
|
|
61
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第1号文書" },
|
|
62
|
+
"charge_mode": "amount_brackets",
|
|
63
|
+
"amount_usage": "optional",
|
|
64
|
+
"base_rule_label": "通常税率",
|
|
65
|
+
"base_tax_amount": null,
|
|
66
|
+
"brackets": [
|
|
67
|
+
{ "label": "1万円未満のもの", "amount_from": 0, "amount_to_inclusive": 9999, "tax_amount": 0 },
|
|
68
|
+
{ "label": "10万円以下のもの", "amount_from": 10000, "amount_to_inclusive": 100000, "tax_amount": 200 },
|
|
69
|
+
{ "label": "10万円を超え50万円以下のもの", "amount_from": 100001, "amount_to_inclusive": 500000, "tax_amount": 400 },
|
|
70
|
+
{ "label": "50万円を超え100万円以下のもの", "amount_from": 500001, "amount_to_inclusive": 1000000, "tax_amount": 1000 },
|
|
71
|
+
{ "label": "100万円を超え500万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 5000000, "tax_amount": 2000 },
|
|
72
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 10000 },
|
|
73
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 20000 },
|
|
74
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 60000 },
|
|
75
|
+
{ "label": "1億円を超え5億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 500000000, "tax_amount": 100000 },
|
|
76
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 200000 },
|
|
77
|
+
{ "label": "10億円を超え50億円以下のもの", "amount_from": 1000000001, "amount_to_inclusive": 5000000000, "tax_amount": 400000 },
|
|
78
|
+
{ "label": "50億円を超えるもの", "amount_from": 5000000001, "amount_to_inclusive": null, "tax_amount": 600000 }
|
|
79
|
+
],
|
|
80
|
+
"no_amount_tax_amount": 200,
|
|
81
|
+
"no_amount_rule_label": "契約金額の記載のないもの",
|
|
82
|
+
"special_rules": []
|
|
83
|
+
},
|
|
84
|
+
"article1_land_lease_or_surface_right": {
|
|
85
|
+
"label": "第1号文書2 地上権又は土地賃借権の設定又は譲渡",
|
|
86
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第1号文書" },
|
|
87
|
+
"charge_mode": "amount_brackets",
|
|
88
|
+
"amount_usage": "optional",
|
|
89
|
+
"base_rule_label": "通常税率",
|
|
90
|
+
"base_tax_amount": null,
|
|
91
|
+
"brackets": [
|
|
92
|
+
{ "label": "1万円未満のもの", "amount_from": 0, "amount_to_inclusive": 9999, "tax_amount": 0 },
|
|
93
|
+
{ "label": "10万円以下のもの", "amount_from": 10000, "amount_to_inclusive": 100000, "tax_amount": 200 },
|
|
94
|
+
{ "label": "10万円を超え50万円以下のもの", "amount_from": 100001, "amount_to_inclusive": 500000, "tax_amount": 400 },
|
|
95
|
+
{ "label": "50万円を超え100万円以下のもの", "amount_from": 500001, "amount_to_inclusive": 1000000, "tax_amount": 1000 },
|
|
96
|
+
{ "label": "100万円を超え500万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 5000000, "tax_amount": 2000 },
|
|
97
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 10000 },
|
|
98
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 20000 },
|
|
99
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 60000 },
|
|
100
|
+
{ "label": "1億円を超え5億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 500000000, "tax_amount": 100000 },
|
|
101
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 200000 },
|
|
102
|
+
{ "label": "10億円を超え50億円以下のもの", "amount_from": 1000000001, "amount_to_inclusive": 5000000000, "tax_amount": 400000 },
|
|
103
|
+
{ "label": "50億円を超えるもの", "amount_from": 5000000001, "amount_to_inclusive": null, "tax_amount": 600000 }
|
|
104
|
+
],
|
|
105
|
+
"no_amount_tax_amount": 200,
|
|
106
|
+
"no_amount_rule_label": "契約金額の記載のないもの",
|
|
107
|
+
"special_rules": []
|
|
108
|
+
},
|
|
109
|
+
"article1_consumption_loan": {
|
|
110
|
+
"label": "第1号文書3 消費貸借に関する契約書",
|
|
111
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第1号文書" },
|
|
112
|
+
"charge_mode": "amount_brackets",
|
|
113
|
+
"amount_usage": "optional",
|
|
114
|
+
"base_rule_label": "通常税率",
|
|
115
|
+
"base_tax_amount": null,
|
|
116
|
+
"brackets": [
|
|
117
|
+
{ "label": "1万円未満のもの", "amount_from": 0, "amount_to_inclusive": 9999, "tax_amount": 0 },
|
|
118
|
+
{ "label": "10万円以下のもの", "amount_from": 10000, "amount_to_inclusive": 100000, "tax_amount": 200 },
|
|
119
|
+
{ "label": "10万円を超え50万円以下のもの", "amount_from": 100001, "amount_to_inclusive": 500000, "tax_amount": 400 },
|
|
120
|
+
{ "label": "50万円を超え100万円以下のもの", "amount_from": 500001, "amount_to_inclusive": 1000000, "tax_amount": 1000 },
|
|
121
|
+
{ "label": "100万円を超え500万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 5000000, "tax_amount": 2000 },
|
|
122
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 10000 },
|
|
123
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 20000 },
|
|
124
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 60000 },
|
|
125
|
+
{ "label": "1億円を超え5億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 500000000, "tax_amount": 100000 },
|
|
126
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 200000 },
|
|
127
|
+
{ "label": "10億円を超え50億円以下のもの", "amount_from": 1000000001, "amount_to_inclusive": 5000000000, "tax_amount": 400000 },
|
|
128
|
+
{ "label": "50億円を超えるもの", "amount_from": 5000000001, "amount_to_inclusive": null, "tax_amount": 600000 }
|
|
129
|
+
],
|
|
130
|
+
"no_amount_tax_amount": 200,
|
|
131
|
+
"no_amount_rule_label": "契約金額の記載のないもの",
|
|
132
|
+
"special_rules": []
|
|
133
|
+
},
|
|
134
|
+
"article1_transportation": {
|
|
135
|
+
"label": "第1号文書4 運送に関する契約書",
|
|
136
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第1号文書" },
|
|
137
|
+
"charge_mode": "amount_brackets",
|
|
138
|
+
"amount_usage": "optional",
|
|
139
|
+
"base_rule_label": "通常税率",
|
|
140
|
+
"base_tax_amount": null,
|
|
141
|
+
"brackets": [
|
|
142
|
+
{ "label": "1万円未満のもの", "amount_from": 0, "amount_to_inclusive": 9999, "tax_amount": 0 },
|
|
143
|
+
{ "label": "10万円以下のもの", "amount_from": 10000, "amount_to_inclusive": 100000, "tax_amount": 200 },
|
|
144
|
+
{ "label": "10万円を超え50万円以下のもの", "amount_from": 100001, "amount_to_inclusive": 500000, "tax_amount": 400 },
|
|
145
|
+
{ "label": "50万円を超え100万円以下のもの", "amount_from": 500001, "amount_to_inclusive": 1000000, "tax_amount": 1000 },
|
|
146
|
+
{ "label": "100万円を超え500万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 5000000, "tax_amount": 2000 },
|
|
147
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 10000 },
|
|
148
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 20000 },
|
|
149
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 60000 },
|
|
150
|
+
{ "label": "1億円を超え5億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 500000000, "tax_amount": 100000 },
|
|
151
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 200000 },
|
|
152
|
+
{ "label": "10億円を超え50億円以下のもの", "amount_from": 1000000001, "amount_to_inclusive": 5000000000, "tax_amount": 400000 },
|
|
153
|
+
{ "label": "50億円を超えるもの", "amount_from": 5000000001, "amount_to_inclusive": null, "tax_amount": 600000 }
|
|
154
|
+
],
|
|
155
|
+
"no_amount_tax_amount": 200,
|
|
156
|
+
"no_amount_rule_label": "契約金額の記載のないもの",
|
|
157
|
+
"special_rules": []
|
|
158
|
+
},
|
|
159
|
+
"article2_construction_work": {
|
|
160
|
+
"label": "第2号文書 建設工事の請負に関する契約書",
|
|
161
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第2号文書" },
|
|
162
|
+
"charge_mode": "amount_brackets",
|
|
163
|
+
"amount_usage": "optional",
|
|
164
|
+
"base_rule_label": "通常税率",
|
|
165
|
+
"base_tax_amount": null,
|
|
166
|
+
"brackets": [
|
|
167
|
+
{ "label": "1万円未満のもの", "amount_from": 0, "amount_to_inclusive": 9999, "tax_amount": 0 },
|
|
168
|
+
{ "label": "100万円以下のもの", "amount_from": 10000, "amount_to_inclusive": 1000000, "tax_amount": 200 },
|
|
169
|
+
{ "label": "100万円を超え200万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 2000000, "tax_amount": 400 },
|
|
170
|
+
{ "label": "200万円を超え300万円以下のもの", "amount_from": 2000001, "amount_to_inclusive": 3000000, "tax_amount": 1000 },
|
|
171
|
+
{ "label": "300万円を超え500万円以下のもの", "amount_from": 3000001, "amount_to_inclusive": 5000000, "tax_amount": 2000 },
|
|
172
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 10000 },
|
|
173
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 20000 },
|
|
174
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 60000 },
|
|
175
|
+
{ "label": "1億円を超え5億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 500000000, "tax_amount": 100000 },
|
|
176
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 200000 },
|
|
177
|
+
{ "label": "10億円を超え50億円以下のもの", "amount_from": 1000000001, "amount_to_inclusive": 5000000000, "tax_amount": 400000 },
|
|
178
|
+
{ "label": "50億円を超えるもの", "amount_from": 5000000001, "amount_to_inclusive": null, "tax_amount": 600000 }
|
|
179
|
+
],
|
|
180
|
+
"no_amount_tax_amount": 200,
|
|
181
|
+
"no_amount_rule_label": "契約金額の記載のないもの",
|
|
182
|
+
"special_rules": [
|
|
183
|
+
{
|
|
184
|
+
"code": "article2_construction_work_reduced",
|
|
185
|
+
"label": "建設工事請負契約書軽減措置",
|
|
186
|
+
"priority": 1,
|
|
187
|
+
"effective_from": "2014-04-01",
|
|
188
|
+
"effective_until": "2027-03-31",
|
|
189
|
+
"required_flags": [],
|
|
190
|
+
"tax_amount": null,
|
|
191
|
+
"rule_label": null,
|
|
192
|
+
"brackets": [
|
|
193
|
+
{ "label": "200万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 2000000, "tax_amount": 200 },
|
|
194
|
+
{ "label": "200万円を超え300万円以下のもの", "amount_from": 2000001, "amount_to_inclusive": 3000000, "tax_amount": 500 },
|
|
195
|
+
{ "label": "300万円を超え500万円以下のもの", "amount_from": 3000001, "amount_to_inclusive": 5000000, "tax_amount": 1000 },
|
|
196
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 5000 },
|
|
197
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 10000 },
|
|
198
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 30000 },
|
|
199
|
+
{ "label": "1億円を超え5億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 500000000, "tax_amount": 60000 },
|
|
200
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 160000 },
|
|
201
|
+
{ "label": "10億円を超え50億円以下のもの", "amount_from": 1000000001, "amount_to_inclusive": 5000000000, "tax_amount": 320000 },
|
|
202
|
+
{ "label": "50億円を超えるもの", "amount_from": 5000000001, "amount_to_inclusive": null, "tax_amount": 480000 }
|
|
203
|
+
],
|
|
204
|
+
"no_amount_tax_amount": null,
|
|
205
|
+
"no_amount_rule_label": null
|
|
206
|
+
}
|
|
207
|
+
]
|
|
208
|
+
},
|
|
209
|
+
"article2_general_contract": {
|
|
210
|
+
"label": "第2号文書 一般の請負に関する契約書",
|
|
211
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第2号文書" },
|
|
212
|
+
"charge_mode": "amount_brackets",
|
|
213
|
+
"amount_usage": "optional",
|
|
214
|
+
"base_rule_label": "通常税率",
|
|
215
|
+
"base_tax_amount": null,
|
|
216
|
+
"brackets": [
|
|
217
|
+
{ "label": "1万円未満のもの", "amount_from": 0, "amount_to_inclusive": 9999, "tax_amount": 0 },
|
|
218
|
+
{ "label": "100万円以下のもの", "amount_from": 10000, "amount_to_inclusive": 1000000, "tax_amount": 200 },
|
|
219
|
+
{ "label": "100万円を超え200万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 2000000, "tax_amount": 400 },
|
|
220
|
+
{ "label": "200万円を超え300万円以下のもの", "amount_from": 2000001, "amount_to_inclusive": 3000000, "tax_amount": 1000 },
|
|
221
|
+
{ "label": "300万円を超え500万円以下のもの", "amount_from": 3000001, "amount_to_inclusive": 5000000, "tax_amount": 2000 },
|
|
222
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 10000 },
|
|
223
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 20000 },
|
|
224
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 60000 },
|
|
225
|
+
{ "label": "1億円を超え5億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 500000000, "tax_amount": 100000 },
|
|
226
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 200000 },
|
|
227
|
+
{ "label": "10億円を超え50億円以下のもの", "amount_from": 1000000001, "amount_to_inclusive": 5000000000, "tax_amount": 400000 },
|
|
228
|
+
{ "label": "50億円を超えるもの", "amount_from": 5000000001, "amount_to_inclusive": null, "tax_amount": 600000 }
|
|
229
|
+
],
|
|
230
|
+
"no_amount_tax_amount": 200,
|
|
231
|
+
"no_amount_rule_label": "契約金額の記載のないもの",
|
|
232
|
+
"special_rules": []
|
|
233
|
+
},
|
|
234
|
+
"article3_bill_amount_table": {
|
|
235
|
+
"label": "第3号文書 約束手形・為替手形",
|
|
236
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第3号文書" },
|
|
237
|
+
"charge_mode": "amount_brackets",
|
|
238
|
+
"amount_usage": "optional",
|
|
239
|
+
"base_rule_label": "通常税率",
|
|
240
|
+
"base_tax_amount": null,
|
|
241
|
+
"brackets": [
|
|
242
|
+
{ "label": "10万円未満のもの", "amount_from": 0, "amount_to_inclusive": 99999, "tax_amount": 0 },
|
|
243
|
+
{ "label": "10万円以上100万円以下のもの", "amount_from": 100000, "amount_to_inclusive": 1000000, "tax_amount": 200 },
|
|
244
|
+
{ "label": "100万円を超え200万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 2000000, "tax_amount": 400 },
|
|
245
|
+
{ "label": "200万円を超え300万円以下のもの", "amount_from": 2000001, "amount_to_inclusive": 3000000, "tax_amount": 600 },
|
|
246
|
+
{ "label": "300万円を超え500万円以下のもの", "amount_from": 3000001, "amount_to_inclusive": 5000000, "tax_amount": 1000 },
|
|
247
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 2000 },
|
|
248
|
+
{ "label": "1千万円を超え2千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 20000000, "tax_amount": 4000 },
|
|
249
|
+
{ "label": "2千万円を超え3千万円以下のもの", "amount_from": 20000001, "amount_to_inclusive": 30000000, "tax_amount": 6000 },
|
|
250
|
+
{ "label": "3千万円を超え5千万円以下のもの", "amount_from": 30000001, "amount_to_inclusive": 50000000, "tax_amount": 10000 },
|
|
251
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 20000 },
|
|
252
|
+
{ "label": "1億円を超え2億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 200000000, "tax_amount": 40000 },
|
|
253
|
+
{ "label": "2億円を超え3億円以下のもの", "amount_from": 200000001, "amount_to_inclusive": 300000000, "tax_amount": 60000 },
|
|
254
|
+
{ "label": "3億円を超え5億円以下のもの", "amount_from": 300000001, "amount_to_inclusive": 500000000, "tax_amount": 100000 },
|
|
255
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 150000 },
|
|
256
|
+
{ "label": "10億円を超えるもの", "amount_from": 1000000001, "amount_to_inclusive": null, "tax_amount": 200000 }
|
|
257
|
+
],
|
|
258
|
+
"no_amount_tax_amount": 0,
|
|
259
|
+
"no_amount_rule_label": "手形金額の記載のないもの",
|
|
260
|
+
"special_rules": [
|
|
261
|
+
{
|
|
262
|
+
"code": "article3_copy_or_transcript_exempt",
|
|
263
|
+
"label": "手形の複本又は謄本",
|
|
264
|
+
"priority": 1,
|
|
265
|
+
"effective_from": null,
|
|
266
|
+
"effective_until": null,
|
|
267
|
+
"required_flags": ["article3_copy_or_transcript_exempt"],
|
|
268
|
+
"tax_amount": 0,
|
|
269
|
+
"rule_label": "手形の複本又は謄本",
|
|
270
|
+
"brackets": [],
|
|
271
|
+
"no_amount_tax_amount": null,
|
|
272
|
+
"no_amount_rule_label": null
|
|
273
|
+
}
|
|
274
|
+
]
|
|
275
|
+
},
|
|
276
|
+
"article3_bill_special_flat_200": {
|
|
277
|
+
"label": "第3号文書 一覧払等の手形",
|
|
278
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第3号文書" },
|
|
279
|
+
"charge_mode": "fixed_per_document",
|
|
280
|
+
"amount_usage": "unsupported",
|
|
281
|
+
"base_rule_label": "200円",
|
|
282
|
+
"base_tax_amount": 200,
|
|
283
|
+
"brackets": [],
|
|
284
|
+
"no_amount_tax_amount": null,
|
|
285
|
+
"no_amount_rule_label": null,
|
|
286
|
+
"special_rules": []
|
|
287
|
+
},
|
|
288
|
+
"article4_security_certificate": {
|
|
289
|
+
"label": "第4号文書 株券・出資証券等",
|
|
290
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第4号文書" },
|
|
291
|
+
"charge_mode": "amount_brackets",
|
|
292
|
+
"amount_usage": "required",
|
|
293
|
+
"base_rule_label": "通常税率",
|
|
294
|
+
"base_tax_amount": null,
|
|
295
|
+
"brackets": [
|
|
296
|
+
{ "label": "500万円以下のもの", "amount_from": 0, "amount_to_inclusive": 5000000, "tax_amount": 200 },
|
|
297
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 1000 },
|
|
298
|
+
{ "label": "1千万円を超え5千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 50000000, "tax_amount": 2000 },
|
|
299
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 10000 },
|
|
300
|
+
{ "label": "1億円を超えるもの", "amount_from": 100000001, "amount_to_inclusive": null, "tax_amount": 20000 }
|
|
301
|
+
],
|
|
302
|
+
"no_amount_tax_amount": null,
|
|
303
|
+
"no_amount_rule_label": null,
|
|
304
|
+
"special_rules": [
|
|
305
|
+
{
|
|
306
|
+
"code": "article4_specified_issuer_exempt",
|
|
307
|
+
"label": "特定法人の作成する出資証券",
|
|
308
|
+
"priority": 1,
|
|
309
|
+
"effective_from": null,
|
|
310
|
+
"effective_until": null,
|
|
311
|
+
"required_flags": ["article4_specified_issuer_exempt"],
|
|
312
|
+
"tax_amount": 0,
|
|
313
|
+
"rule_label": "日本銀行その他特定の法人の作成する出資証券",
|
|
314
|
+
"brackets": [],
|
|
315
|
+
"no_amount_tax_amount": null,
|
|
316
|
+
"no_amount_rule_label": null
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"code": "article4_restricted_beneficiary_certificate_exempt",
|
|
320
|
+
"label": "譲渡禁止の特定受益証券",
|
|
321
|
+
"priority": 2,
|
|
322
|
+
"effective_from": null,
|
|
323
|
+
"effective_until": null,
|
|
324
|
+
"required_flags": ["article4_restricted_beneficiary_certificate_exempt"],
|
|
325
|
+
"tax_amount": 0,
|
|
326
|
+
"rule_label": "譲渡が禁止されている特定の受益証券",
|
|
327
|
+
"brackets": [],
|
|
328
|
+
"no_amount_tax_amount": null,
|
|
329
|
+
"no_amount_rule_label": null
|
|
330
|
+
}
|
|
331
|
+
]
|
|
332
|
+
},
|
|
333
|
+
"article5_merger_or_split": {
|
|
334
|
+
"label": "第5号文書 合併契約書等",
|
|
335
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第5号文書" },
|
|
336
|
+
"charge_mode": "fixed_per_document",
|
|
337
|
+
"amount_usage": "unsupported",
|
|
338
|
+
"base_rule_label": "4万円",
|
|
339
|
+
"base_tax_amount": 40000,
|
|
340
|
+
"brackets": [],
|
|
341
|
+
"no_amount_tax_amount": null,
|
|
342
|
+
"no_amount_rule_label": null,
|
|
343
|
+
"special_rules": []
|
|
344
|
+
},
|
|
345
|
+
"article6_articles_of_incorporation": {
|
|
346
|
+
"label": "第6号文書 定款",
|
|
347
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第6号文書" },
|
|
348
|
+
"charge_mode": "fixed_per_document",
|
|
349
|
+
"amount_usage": "unsupported",
|
|
350
|
+
"base_rule_label": "4万円",
|
|
351
|
+
"base_tax_amount": 40000,
|
|
352
|
+
"brackets": [],
|
|
353
|
+
"no_amount_tax_amount": null,
|
|
354
|
+
"no_amount_rule_label": null,
|
|
355
|
+
"special_rules": [
|
|
356
|
+
{
|
|
357
|
+
"code": "article6_notary_copy_exempt",
|
|
358
|
+
"label": "公証人保存対象外の定款",
|
|
359
|
+
"priority": 1,
|
|
360
|
+
"effective_from": null,
|
|
361
|
+
"effective_until": null,
|
|
362
|
+
"required_flags": ["article6_notary_copy_exempt"],
|
|
363
|
+
"tax_amount": 0,
|
|
364
|
+
"rule_label": "公証人の保存するもの以外の定款",
|
|
365
|
+
"brackets": [],
|
|
366
|
+
"no_amount_tax_amount": null,
|
|
367
|
+
"no_amount_rule_label": null
|
|
368
|
+
}
|
|
369
|
+
]
|
|
370
|
+
},
|
|
371
|
+
"article7_continuing_transaction_basic": {
|
|
372
|
+
"label": "第7号文書 継続的取引の基本となる契約書",
|
|
373
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第7号文書" },
|
|
374
|
+
"charge_mode": "fixed_per_document",
|
|
375
|
+
"amount_usage": "unsupported",
|
|
376
|
+
"base_rule_label": "4千円",
|
|
377
|
+
"base_tax_amount": 4000,
|
|
378
|
+
"brackets": [],
|
|
379
|
+
"no_amount_tax_amount": null,
|
|
380
|
+
"no_amount_rule_label": null,
|
|
381
|
+
"special_rules": []
|
|
382
|
+
},
|
|
383
|
+
"article8_deposit_certificate": {
|
|
384
|
+
"label": "第8号文書 預金証書・貯金証書",
|
|
385
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第8号文書" },
|
|
386
|
+
"charge_mode": "fixed_per_document",
|
|
387
|
+
"amount_usage": "optional",
|
|
388
|
+
"base_rule_label": "200円",
|
|
389
|
+
"base_tax_amount": 200,
|
|
390
|
+
"brackets": [],
|
|
391
|
+
"no_amount_tax_amount": null,
|
|
392
|
+
"no_amount_rule_label": null,
|
|
393
|
+
"special_rules": [
|
|
394
|
+
{
|
|
395
|
+
"code": "article8_small_deposit_exempt",
|
|
396
|
+
"label": "特定金融機関の1万円未満預入",
|
|
397
|
+
"priority": 1,
|
|
398
|
+
"effective_from": null,
|
|
399
|
+
"effective_until": null,
|
|
400
|
+
"required_flags": ["article8_small_deposit_exempt"],
|
|
401
|
+
"tax_amount": null,
|
|
402
|
+
"rule_label": null,
|
|
403
|
+
"brackets": [
|
|
404
|
+
{ "label": "預入額1万円未満のもの", "amount_from": 0, "amount_to_inclusive": 9999, "tax_amount": 0 }
|
|
405
|
+
],
|
|
406
|
+
"no_amount_tax_amount": null,
|
|
407
|
+
"no_amount_rule_label": null
|
|
408
|
+
}
|
|
409
|
+
]
|
|
410
|
+
},
|
|
411
|
+
"article9_transport_certificate": {
|
|
412
|
+
"label": "第9号文書 倉荷証券等",
|
|
413
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第9号文書" },
|
|
414
|
+
"charge_mode": "fixed_per_document",
|
|
415
|
+
"amount_usage": "unsupported",
|
|
416
|
+
"base_rule_label": "200円",
|
|
417
|
+
"base_tax_amount": 200,
|
|
418
|
+
"brackets": [],
|
|
419
|
+
"no_amount_tax_amount": null,
|
|
420
|
+
"no_amount_rule_label": null,
|
|
421
|
+
"special_rules": []
|
|
422
|
+
},
|
|
423
|
+
"article10_insurance_certificate": {
|
|
424
|
+
"label": "第10号文書 保険証券",
|
|
425
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第10号文書" },
|
|
426
|
+
"charge_mode": "fixed_per_document",
|
|
427
|
+
"amount_usage": "unsupported",
|
|
428
|
+
"base_rule_label": "200円",
|
|
429
|
+
"base_tax_amount": 200,
|
|
430
|
+
"brackets": [],
|
|
431
|
+
"no_amount_tax_amount": null,
|
|
432
|
+
"no_amount_rule_label": null,
|
|
433
|
+
"special_rules": []
|
|
434
|
+
},
|
|
435
|
+
"article11_letter_of_credit": {
|
|
436
|
+
"label": "第11号文書 信用状",
|
|
437
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第11号文書" },
|
|
438
|
+
"charge_mode": "fixed_per_document",
|
|
439
|
+
"amount_usage": "unsupported",
|
|
440
|
+
"base_rule_label": "200円",
|
|
441
|
+
"base_tax_amount": 200,
|
|
442
|
+
"brackets": [],
|
|
443
|
+
"no_amount_tax_amount": null,
|
|
444
|
+
"no_amount_rule_label": null,
|
|
445
|
+
"special_rules": []
|
|
446
|
+
},
|
|
447
|
+
"article12_trust_contract": {
|
|
448
|
+
"label": "第12号文書 信託行為に関する契約書",
|
|
449
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第12号文書" },
|
|
450
|
+
"charge_mode": "fixed_per_document",
|
|
451
|
+
"amount_usage": "unsupported",
|
|
452
|
+
"base_rule_label": "200円",
|
|
453
|
+
"base_tax_amount": 200,
|
|
454
|
+
"brackets": [],
|
|
455
|
+
"no_amount_tax_amount": null,
|
|
456
|
+
"no_amount_rule_label": null,
|
|
457
|
+
"special_rules": []
|
|
458
|
+
},
|
|
459
|
+
"article13_debt_guarantee": {
|
|
460
|
+
"label": "第13号文書 債務の保証に関する契約書",
|
|
461
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第13号文書" },
|
|
462
|
+
"charge_mode": "fixed_per_document",
|
|
463
|
+
"amount_usage": "unsupported",
|
|
464
|
+
"base_rule_label": "200円",
|
|
465
|
+
"base_tax_amount": 200,
|
|
466
|
+
"brackets": [],
|
|
467
|
+
"no_amount_tax_amount": null,
|
|
468
|
+
"no_amount_rule_label": null,
|
|
469
|
+
"special_rules": [
|
|
470
|
+
{
|
|
471
|
+
"code": "article13_identity_guarantee_exempt",
|
|
472
|
+
"label": "身元保証",
|
|
473
|
+
"priority": 1,
|
|
474
|
+
"effective_from": null,
|
|
475
|
+
"effective_until": null,
|
|
476
|
+
"required_flags": ["article13_identity_guarantee_exempt"],
|
|
477
|
+
"tax_amount": 0,
|
|
478
|
+
"rule_label": "身元保証ニ関スル法律に定める身元保証",
|
|
479
|
+
"brackets": [],
|
|
480
|
+
"no_amount_tax_amount": null,
|
|
481
|
+
"no_amount_rule_label": null
|
|
482
|
+
}
|
|
483
|
+
]
|
|
484
|
+
},
|
|
485
|
+
"article14_deposit_contract": {
|
|
486
|
+
"label": "第14号文書 金銭又は有価証券の寄託に関する契約書",
|
|
487
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第14号文書" },
|
|
488
|
+
"charge_mode": "fixed_per_document",
|
|
489
|
+
"amount_usage": "unsupported",
|
|
490
|
+
"base_rule_label": "200円",
|
|
491
|
+
"base_tax_amount": 200,
|
|
492
|
+
"brackets": [],
|
|
493
|
+
"no_amount_tax_amount": null,
|
|
494
|
+
"no_amount_rule_label": null,
|
|
495
|
+
"special_rules": []
|
|
496
|
+
},
|
|
497
|
+
"article15_assignment_or_assumption": {
|
|
498
|
+
"label": "第15号文書 債権譲渡又は債務引受けに関する契約書",
|
|
499
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第15号文書" },
|
|
500
|
+
"charge_mode": "amount_brackets",
|
|
501
|
+
"amount_usage": "optional",
|
|
502
|
+
"base_rule_label": "通常税率",
|
|
503
|
+
"base_tax_amount": null,
|
|
504
|
+
"brackets": [
|
|
505
|
+
{ "label": "1万円未満のもの", "amount_from": 0, "amount_to_inclusive": 9999, "tax_amount": 0 },
|
|
506
|
+
{ "label": "1万円以上のもの", "amount_from": 10000, "amount_to_inclusive": null, "tax_amount": 200 }
|
|
507
|
+
],
|
|
508
|
+
"no_amount_tax_amount": 200,
|
|
509
|
+
"no_amount_rule_label": "契約金額の記載のないもの",
|
|
510
|
+
"special_rules": []
|
|
511
|
+
},
|
|
512
|
+
"article16_dividend_receipt": {
|
|
513
|
+
"label": "第16号文書 配当金領収証・配当金振込通知書",
|
|
514
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第16号文書" },
|
|
515
|
+
"charge_mode": "amount_brackets",
|
|
516
|
+
"amount_usage": "optional",
|
|
517
|
+
"base_rule_label": "通常税率",
|
|
518
|
+
"base_tax_amount": null,
|
|
519
|
+
"brackets": [
|
|
520
|
+
{ "label": "3千円未満のもの", "amount_from": 0, "amount_to_inclusive": 2999, "tax_amount": 0 },
|
|
521
|
+
{ "label": "3千円以上のもの", "amount_from": 3000, "amount_to_inclusive": null, "tax_amount": 200 }
|
|
522
|
+
],
|
|
523
|
+
"no_amount_tax_amount": 200,
|
|
524
|
+
"no_amount_rule_label": "配当金額の記載のないもの",
|
|
525
|
+
"special_rules": []
|
|
526
|
+
},
|
|
527
|
+
"article17_sales_receipt": {
|
|
528
|
+
"label": "第17号文書1 売上代金に係る受取書",
|
|
529
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第17号文書" },
|
|
530
|
+
"charge_mode": "amount_brackets",
|
|
531
|
+
"amount_usage": "optional",
|
|
532
|
+
"base_rule_label": "通常税率",
|
|
533
|
+
"base_tax_amount": null,
|
|
534
|
+
"brackets": [
|
|
535
|
+
{ "label": "5万円未満のもの", "amount_from": 0, "amount_to_inclusive": 49999, "tax_amount": 0 },
|
|
536
|
+
{ "label": "100万円以下のもの", "amount_from": 50000, "amount_to_inclusive": 1000000, "tax_amount": 200 },
|
|
537
|
+
{ "label": "100万円を超え200万円以下のもの", "amount_from": 1000001, "amount_to_inclusive": 2000000, "tax_amount": 400 },
|
|
538
|
+
{ "label": "200万円を超え300万円以下のもの", "amount_from": 2000001, "amount_to_inclusive": 3000000, "tax_amount": 600 },
|
|
539
|
+
{ "label": "300万円を超え500万円以下のもの", "amount_from": 3000001, "amount_to_inclusive": 5000000, "tax_amount": 1000 },
|
|
540
|
+
{ "label": "500万円を超え1千万円以下のもの", "amount_from": 5000001, "amount_to_inclusive": 10000000, "tax_amount": 2000 },
|
|
541
|
+
{ "label": "1千万円を超え2千万円以下のもの", "amount_from": 10000001, "amount_to_inclusive": 20000000, "tax_amount": 4000 },
|
|
542
|
+
{ "label": "2千万円を超え3千万円以下のもの", "amount_from": 20000001, "amount_to_inclusive": 30000000, "tax_amount": 6000 },
|
|
543
|
+
{ "label": "3千万円を超え5千万円以下のもの", "amount_from": 30000001, "amount_to_inclusive": 50000000, "tax_amount": 10000 },
|
|
544
|
+
{ "label": "5千万円を超え1億円以下のもの", "amount_from": 50000001, "amount_to_inclusive": 100000000, "tax_amount": 20000 },
|
|
545
|
+
{ "label": "1億円を超え2億円以下のもの", "amount_from": 100000001, "amount_to_inclusive": 200000000, "tax_amount": 40000 },
|
|
546
|
+
{ "label": "2億円を超え3億円以下のもの", "amount_from": 200000001, "amount_to_inclusive": 300000000, "tax_amount": 60000 },
|
|
547
|
+
{ "label": "3億円を超え5億円以下のもの", "amount_from": 300000001, "amount_to_inclusive": 500000000, "tax_amount": 100000 },
|
|
548
|
+
{ "label": "5億円を超え10億円以下のもの", "amount_from": 500000001, "amount_to_inclusive": 1000000000, "tax_amount": 150000 },
|
|
549
|
+
{ "label": "10億円を超えるもの", "amount_from": 1000000001, "amount_to_inclusive": null, "tax_amount": 200000 }
|
|
550
|
+
],
|
|
551
|
+
"no_amount_tax_amount": 200,
|
|
552
|
+
"no_amount_rule_label": "受取金額の記載のないもの",
|
|
553
|
+
"special_rules": [
|
|
554
|
+
{
|
|
555
|
+
"code": "article17_non_business_exempt",
|
|
556
|
+
"label": "営業に関しない受取書",
|
|
557
|
+
"priority": 1,
|
|
558
|
+
"effective_from": null,
|
|
559
|
+
"effective_until": null,
|
|
560
|
+
"required_flags": ["article17_non_business_exempt"],
|
|
561
|
+
"tax_amount": 0,
|
|
562
|
+
"rule_label": "営業に関しないもの",
|
|
563
|
+
"brackets": [],
|
|
564
|
+
"no_amount_tax_amount": null,
|
|
565
|
+
"no_amount_rule_label": null
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"code": "article17_appended_receipt_exempt",
|
|
569
|
+
"label": "追記した受取書",
|
|
570
|
+
"priority": 2,
|
|
571
|
+
"effective_from": null,
|
|
572
|
+
"effective_until": null,
|
|
573
|
+
"required_flags": ["article17_appended_receipt_exempt"],
|
|
574
|
+
"tax_amount": 0,
|
|
575
|
+
"rule_label": "特定の文書に追記した受取書",
|
|
576
|
+
"brackets": [],
|
|
577
|
+
"no_amount_tax_amount": null,
|
|
578
|
+
"no_amount_rule_label": null
|
|
579
|
+
}
|
|
580
|
+
]
|
|
581
|
+
},
|
|
582
|
+
"article17_other_receipt": {
|
|
583
|
+
"label": "第17号文書2 売上代金以外の受取書",
|
|
584
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第17号文書" },
|
|
585
|
+
"charge_mode": "fixed_per_document",
|
|
586
|
+
"amount_usage": "unsupported",
|
|
587
|
+
"base_rule_label": "200円",
|
|
588
|
+
"base_tax_amount": 200,
|
|
589
|
+
"brackets": [],
|
|
590
|
+
"no_amount_tax_amount": null,
|
|
591
|
+
"no_amount_rule_label": null,
|
|
592
|
+
"special_rules": []
|
|
593
|
+
},
|
|
594
|
+
"article18_passbook": {
|
|
595
|
+
"label": "第18号文書 預金通帳等",
|
|
596
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第18号文書" },
|
|
597
|
+
"charge_mode": "fixed_per_year",
|
|
598
|
+
"amount_usage": "unsupported",
|
|
599
|
+
"base_rule_label": "1年ごとに200円",
|
|
600
|
+
"base_tax_amount": 200,
|
|
601
|
+
"brackets": [],
|
|
602
|
+
"no_amount_tax_amount": null,
|
|
603
|
+
"no_amount_rule_label": null,
|
|
604
|
+
"special_rules": [
|
|
605
|
+
{
|
|
606
|
+
"code": "article18_specified_financial_institution_exempt",
|
|
607
|
+
"label": "特定金融機関の預貯金通帳",
|
|
608
|
+
"priority": 1,
|
|
609
|
+
"effective_from": null,
|
|
610
|
+
"effective_until": null,
|
|
611
|
+
"required_flags": ["article18_specified_financial_institution_exempt"],
|
|
612
|
+
"tax_amount": 0,
|
|
613
|
+
"rule_label": "特定金融機関の預貯金通帳",
|
|
614
|
+
"brackets": [],
|
|
615
|
+
"no_amount_tax_amount": null,
|
|
616
|
+
"no_amount_rule_label": null
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"code": "article18_income_tax_exempt_passbook",
|
|
620
|
+
"label": "所得税非課税通帳",
|
|
621
|
+
"priority": 2,
|
|
622
|
+
"effective_from": null,
|
|
623
|
+
"effective_until": null,
|
|
624
|
+
"required_flags": ["article18_income_tax_exempt_passbook"],
|
|
625
|
+
"tax_amount": 0,
|
|
626
|
+
"rule_label": "所得税が非課税となる普通預金通帳など",
|
|
627
|
+
"brackets": [],
|
|
628
|
+
"no_amount_tax_amount": null,
|
|
629
|
+
"no_amount_rule_label": null
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"code": "article18_tax_reserve_deposit_passbook",
|
|
633
|
+
"label": "納税準備預金通帳",
|
|
634
|
+
"priority": 3,
|
|
635
|
+
"effective_from": null,
|
|
636
|
+
"effective_until": null,
|
|
637
|
+
"required_flags": ["article18_tax_reserve_deposit_passbook"],
|
|
638
|
+
"tax_amount": 0,
|
|
639
|
+
"rule_label": "納税準備預金通帳",
|
|
640
|
+
"brackets": [],
|
|
641
|
+
"no_amount_tax_amount": null,
|
|
642
|
+
"no_amount_rule_label": null
|
|
643
|
+
}
|
|
644
|
+
]
|
|
645
|
+
},
|
|
646
|
+
"article19_misc_passbook": {
|
|
647
|
+
"label": "第19号文書 消費貸借通帳等",
|
|
648
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第19号文書" },
|
|
649
|
+
"charge_mode": "fixed_per_year",
|
|
650
|
+
"amount_usage": "unsupported",
|
|
651
|
+
"base_rule_label": "1年ごとに400円",
|
|
652
|
+
"base_tax_amount": 400,
|
|
653
|
+
"brackets": [],
|
|
654
|
+
"no_amount_tax_amount": null,
|
|
655
|
+
"no_amount_rule_label": null,
|
|
656
|
+
"special_rules": []
|
|
657
|
+
},
|
|
658
|
+
"article20_seal_book": {
|
|
659
|
+
"label": "第20号文書 判取帳",
|
|
660
|
+
"citation": { "law_name": "印紙税法", "article": "別表第一 第20号文書" },
|
|
661
|
+
"charge_mode": "fixed_per_year",
|
|
662
|
+
"amount_usage": "unsupported",
|
|
663
|
+
"base_rule_label": "1年ごとに4千円",
|
|
664
|
+
"base_tax_amount": 4000,
|
|
665
|
+
"brackets": [],
|
|
666
|
+
"no_amount_tax_amount": null,
|
|
667
|
+
"no_amount_rule_label": null,
|
|
668
|
+
"special_rules": []
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
]
|
|
674
|
+
}
|