This repository has been archived by the owner on Jul 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdpr.go
89 lines (83 loc) · 2.34 KB
/
gdpr.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package types
// Gdpr defines the structure for assets/gdpr-en.json
type Gdpr struct {
Division []struct {
Title struct {
TI struct {
P struct {
HT struct {
Type string `json:"Type"`
Text string `json:"Text"`
} `json:"HT"`
} `json:"P"`
} `json:"TI"`
STI struct {
P struct {
HT struct {
Type string `json:"Type"`
HT struct {
Type string `json:"Type"`
Text string `json:"Text"`
} `json:"HT"`
} `json:"HT"`
} `json:"P"`
} `json:"STI"`
} `json:"Title"`
ARTICLE []Article
} `json:"Division,omitempty"`
}
type QuotStart struct {
Code string `json:"Code,omitempty"`
ID string `json:"ID,omitempty"`
RefEnd string `json:"RefEnd,omitempty"`
}
type QuotEnd struct {
Code string `json:"Code,omitempty"`
ID string `json:"ID,omitempty"`
RefStart string `json:"RefStart,omitempty"`
}
type Txt struct {
QuotStart QuotStart `json:"QuotStart,omitempty"`
QuotEnd QuotEnd `json:"QuotEnd,omitempty"`
Text string `json:"Text,omitempty"`
}
type Article struct {
Identifier string `json:"Identifier,omitempty"`
TiArt string `json:"TiArt,omitempty"`
StiArt string `json:"StiArt,omitempty"`
Parag []struct {
Identifier string `json:"Identifier,omitempty"`
NoParag string `json:"NoParag,omitempty"`
Text string `json:"Text,omitempty"`
TextLines []string `json:"TextLines,omitempty"`
Alinea Alinea `json:"Alinea,omitempty"`
Elements []Alinea `json:"Elements,omitempty"`
QuotStart QuotStart `json:"QuotStart,omitempty"`
QuotEnd QuotEnd `json:"QuotEnd,omitempty"`
} `json:"Parag,omitempty"`
}
type Alinea struct {
Text string `json:"Text,omitempty"`
List struct {
Type string `json:"Type,omitempty"`
Item []struct {
NP struct {
NOP string `json:"NOP,omitempty"`
TXT Txt `json:"TXT,omitempty"`
Text string `json:"Text,omitempty"`
P struct {
List struct {
Type string `json:"Type,omitempty"`
Item []struct {
NP struct {
NOP string `json:"NOP,omitempty"`
TXT string `json:"TXT,omitempty"`
Text string `json:"Text,omitempty"`
} `json:"NP,omitempty"`
} `json:"Item,omitempty"`
} `json:"List,omitempty"`
} `json:"P,omitempty"`
} `json:"NP,omitempty"`
} `json:"Item,omitempty"`
} `json:"List,omitempty"`
}