Not tax advice. Computation tools only. Have a professional check your work before filing.
openaccountants/skills/se-social-contributions.md

Use this skill with your AI agent

View on GitHub

Paste this skill into your AI agent's context, or save the file to your project. Works with any AI agent that reads markdown.

se-social-contributions.md257 lines8.2 KB
v20Sweden
Not yet verified by an accountantContact accountant
1---
2name: se-social-contributions
3description: Use this skill whenever asked about Swedish self-employed social contributions (egenavgifter). Trigger on phrases like "egenavgifter", "Swedish self-employed contributions", "F-skatt", "Swedish social insurance", "Skatteverket egenavgifter", "enskild firma avgifter", or any question about social contribution obligations for a self-employed client in Sweden. Covers the ~28.97% combined rate, component breakdown, age-based reductions, and deductibility. ALWAYS read this skill before touching any Sweden social contributions work.
4version: 2.0
5---
6 
7# Sweden Social Contributions (Egenavgifter) -- Self-Employed Skill v2.0
8 
9## Section 1 -- Quick reference
10 
11| Field | Value |
12|---|---|
13| Country | Sweden (Kingdom of Sweden) |
14| Authority | Skatteverket (Swedish Tax Agency) |
15| Primary legislation | Socialavgiftslagen (2000:980) -- SAL |
16| Supporting legislation | Inkomstskattelagen (1999:1229); Skatteförfarandelagen (2011:1244) |
17| Total egenavgifter rate | 28.97% |
18| Effective rate after deduction | ~22.47% |
19| Age 67+ rate (born 1938-1957) | 10.21% (ålderspensionsavgift only) |
20| Age 88+ (born before 1938) | 0% |
21| First 5 years reduction | ~21.47% (on first SEK 200,000) |
22| Upper cap | None |
23| F-skatt payment | Monthly (12th of each month) |
24| Annual declaration | By 2 May |
25| Currency | SEK only |
26| Contributor | Open Accountants |
27| Validated by | Pending -- requires validation by Swedish auktoriserad revisor |
28| Validation date | Pending |
29 
30---
31 
32## Section 2 -- Required inputs and refusal catalogue
33 
34### Required inputs
35 
36Before computing, you MUST obtain:
37 
381. **Business form** -- enskild firma, handelsbolag partner, or kommanditbolag?
392. **F-skatt registration** -- confirmed?
403. **Överskott av näringsverksamhet** -- net business income
414. **Age/birth year** -- reduced rates for 67+
425. **Any concurrent employment?** -- separate egenavgifter
436. **Business year** -- first 5 years? (reduction available)
44 
45**If F-skatt status is unknown, STOP.**
46 
47### Refusal catalogue
48 
49**R-SE-SOC-1 -- Cross-border worker.** Trigger: client works in Sweden and Denmark/other EU state. Message: "EU Regulation 883/2004 applies. A1 certificate required. Escalate."
50 
51### Prohibitions
52 
53- NEVER forget the circular deduction (effective rate ~22.47%, not 28.97%)
54- NEVER apply full rate to persons born 1938-1957 -- only 10.21%
55- NEVER state there is a cap -- there is no upper limit
56- NEVER apply egenavgifter to capital income -- only näringsverksamhet
57- NEVER ignore the first-5-years reduction
58- NEVER confuse egenavgifter (28.97%) with arbetsgivaravgifter (31.42%)
59- NEVER present F-skatt as only income tax -- it includes egenavgifter
60 
61---
62 
63## Section 3 -- Rate components (2025)
64 
65**Legislation:** SAL 3 kap.
66 
67| Component | Rate |
68|---|---|
69| Ålderspensionsavgift (old-age pension) | 10.21% |
70| Efterlevandepensionsavgift (survivors) | 0.60% |
71| Sjukförsäkringsavgift (sickness) | 3.64% |
72| Föräldraförsäkringsavgift (parental) | 2.60% |
73| Arbetsmarknadsavgift (labour market) | 0.10% |
74| Arbetsskadeavgift (work injury) | 0.20% |
75| Allmän löneavgift (general payroll tax) | 11.62% |
76| **Total** | **28.97%** |
77 
78---
79 
80## Section 4 -- Age reductions and first-5-years
81 
82### Age-based reductions
83 
84| Age category | Effective rate |
85|---|---|
86| Born 1958 or later (under ~67) | 28.97% |
87| Born 1938-1957 (67-86) | 10.21% (only ålderspensionsavgift) |
88| Born before 1938 (88+) | 0% |
89 
90### First 5 years reduction
91 
92**Legislation:** SAL 3 kap. 18 Section
93 
94Sjukförsäkringsavgift reduced by up to 7.5 percentage points on first SEK 200,000 of net business income. Effective rate ~21.47% for qualifying new businesses. Available only once per person.
95 
96---
97 
98## Section 5 -- Computation steps
99 
100### Step 5.1 -- Contribution base and circular deduction
101 
102```
103contribution_base = net_business_income (överskott av näringsverksamhet)
104```
105 
106Egenavgifter are deductible from income, creating a circular calculation:
107 
108```
109egenavgifter = net_business_income x rate / (1 + rate)
110```
111 
112For full rate: effective = 28.97% / 128.97% = ~22.47%.
113 
114### Step 5.2 -- Apply age reduction
115 
116```
117IF born_1938_to_1957: rate = 10.21%
118ELIF born_before_1938: rate = 0%
119ELSE: rate = 28.97%
120```
121 
122### Step 5.3 -- Calculate
123 
124```
125egenavgifter = net_business_income x rate / (1 + rate)
126```
127 
128### Step 5.4 -- F-skatt monthly payments
129 
130```
131monthly_F_skatt = (estimated_income_tax + estimated_egenavgifter) / 12
132```
133 
134---
135 
136## Section 6 -- Payment schedule and tax deductibility
137 
138### Payment schedule
139 
140| Payment | Due date |
141|---|---|
142| Monthly F-skatt | 12th of each month (17th for Feb/Aug) |
143| Annual reconciliation | Inkomstdeklaration by 2 May |
144 
145Client can request jämkning if income changes significantly.
146 
147### Tax deductibility
148 
149| Question | Answer |
150|---|---|
151| Are egenavgifter deductible? | YES -- reduce net business income for income tax |
152| When deductible? | In the income year they relate to |
153| Effect | Reduces base for both kommunalskatt and statlig skatt |
154 
155---
156 
157## Section 7 -- Marginal burden context
158 
159| Income level | Kommunalskatt (~32%) | Statlig skatt | Egenavgifter (~22.47%) | Combined |
160|---|---|---|---|---|
161| Below ~SEK 614,000 | ~32% | 0% | ~22.47% | ~47% |
162| Above ~SEK 614,000 | ~32% | 20% | ~22.47% | ~55% |
163 
164Kommunalskatt varies by municipality (average ~32%).
165 
166---
167 
168## Section 8 -- Edge case registry
169 
170### EC1 -- Aged 68 (born 1957)
171**Situation:** Still running enskild firma.
172**Resolution:** Only ålderspensionsavgift (10.21%). Effective ~9.27%.
173 
174### EC2 -- First year, low income
175**Situation:** Started enskild firma in June, net SEK 80,000.
176**Resolution:** First-5-years reduction. Effective ~21.47%.
177 
178### EC3 -- Handelsbolag partner
179**Situation:** Partner in handelsbolag.
180**Resolution:** Same rules as sole proprietor on their share of profit.
181 
182### EC4 -- Concurrent employment + self-employment
183**Situation:** Employed and runs side enskild firma.
184**Resolution:** Full egenavgifter on self-employment income. No offset with employer charges.
185 
186### EC5 -- Business loss
187**Situation:** Net income SEK -30,000.
188**Resolution:** Egenavgifter = SEK 0. Loss carried forward per IL rules.
189 
190### EC6 -- Passive business income
191**Situation:** Kapitalinkomst from business activity.
192**Resolution:** Egenavgifter only on active näringsverksamhet income. Flag for reviewer.
193 
194---
195 
196## Section 9 -- Reviewer escalation protocol
197 
198When a situation requires reviewer judgement:
199 
200```
201REVIEWER FLAG
202Tier: T2
203Client: [name]
204Situation: [description]
205Issue: [what is ambiguous]
206Options: [possible treatments]
207Recommended: [most likely correct treatment and why]
208Action Required: Qualified auktoriserad revisor must confirm before advising client.
209```
210 
211When a situation is outside skill scope:
212 
213```
214ESCALATION REQUIRED
215Tier: T3
216Client: [name]
217Situation: [description]
218Issue: [outside skill scope]
219Action Required: Do not advise. Refer to qualified revisor. Document gap.
220```
221 
222---
223 
224## Section 10 -- Test suite
225 
226### Test 1 -- Standard sole proprietor
227**Input:** Net income SEK 500,000, age 40, established.
228**Expected output:** Egenavgifter = SEK 500,000 x 28.97% / 1.2897 = SEK 112,315.
229 
230### Test 2 -- Low income
231**Input:** Net income SEK 100,000, age 35.
232**Expected output:** SEK 22,463.
233 
234### Test 3 -- New business, first year
235**Input:** Net income SEK 150,000, age 30, year 1.
236**Expected output:** Reduced ~21.47%. SEK 26,505.
237 
238### Test 4 -- Aged 68
239**Input:** Net income SEK 300,000, age 68.
240**Expected output:** Rate 10.21%. SEK 27,792.
241 
242### Test 5 -- High income
243**Input:** Net income SEK 2,000,000, age 45.
244**Expected output:** SEK 449,256. No cap.
245 
246### Test 6 -- Business loss
247**Input:** Net income SEK -50,000, age 38.
248**Expected output:** SEK 0.
249 
250---
251 
252## Disclaimer
253 
254This skill and its outputs are provided for informational and computational purposes only and do not constitute tax, legal, or financial advice. Open Accountants and its contributors accept no liability for any errors, omissions, or outcomes arising from the use of this skill. All outputs must be reviewed and signed off by a qualified professional (such as a CPA, EA, tax attorney, or equivalent licensed practitioner in your jurisdiction) before filing or acting upon.
255 
256The most up-to-date, verified version of this skill is maintained at [openaccountants.com](https://openaccountants.com). Log in to access the latest version, request a professional review from a licensed accountant, and track updates as tax law changes.
257 

Run this skill, then get an accountant to check it

After running the full skill pack in your AI agent, sign up and upload your worksheet. We'll connect you with a trusted accountant in our network who can review your numbers before you file.

Quality

Q3: AI-drafted

AI-generated with structure and citations. Not independently verified.

Needs deep research against tax authority websites to reach Q2.

Accountant Review

Not yet reviewed
0/29

About

Use this skill whenever asked about Swedish self-employed social contributions (egenavgifter). Trigger on phrases like "egenavgifter", "Swedish self-employed contributions", "F-skatt", "Swedish social insurance", "Skatteverket egenavgifter", "enskild firma avgifter", or any question about social contribution obligations for a self-employed client in Sweden. Covers the ~28.97% combined rate, component breakdown, age-based reductions, and deductibility. ALWAYS read this skill before touching any Sweden social contributions work.

SEty-2025

Use this skill

This skill is open source and free to use in any AI agent. Copy it, download it, or clone the repo. If you find an error, flag it — a licensed accountant will review.

3 of 4 in the SE workflow: