-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.yml
76 lines (76 loc) · 1.32 KB
/
schema.yml
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
title: Aktienfuehrer DB import schema
type: object
required:
- wkn
additionalProperties: false
definitions:
Manager:
type: object
additionalProperties: false
required: ['firstName', 'lastName']
properties:
firstName:
type: string
lastName:
type: string
title:
type: string
funct:
type: string
pattern: '^(?:Vors.|stellv. Vors.)$'
responsibilities:
type: array
items:
type: string
city:
type: string
properties:
_fulltext:
type: string
wkn:
type: number
isin:
type: string
email:
type: array
items:
type: string
format: email
www:
type: array
items:
type: string
format: uri
street:
type: string
street_number:
type: string
pattern: '^\d.*'
city:
type: string
zip:
type: string
pattern: '\d{5}'
activity_description:
type: string
established_year:
type: number
status:
type: string
pattern: 'Insolvenz'
phone:
type: string
pattern: '^[0-9\(\)-\s]+$'
fax:
type: string
pattern: '^[0-9\(\)-\s]+$'
aufsichtsrat:
type: array
items:
$ref: '#/definitions/Manager'
vorstand:
type: array
items:
$ref: '#/definitions/Manager'
employee_stats:
type: array