@shakerquiz/utilities 0.4.49 → 0.4.50
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.
- package/package.json +1 -1
- package/source/schemas/PATCH/Venue/admin/schema.json +56 -0
- package/source/schemas/PATCH/Venue/default/schema.json +6 -0
- package/source/schemas/PATCH/Venue/organizator/schema.json +56 -0
- package/source/schemas/POST/Registration/default/schema.json +5 -1
- package/source/schemas/POST/Venue/admin/schema.json +6 -0
- package/source/schemas/POST/Venue/default/schema.json +6 -0
- package/source/schemas/POST/Venue/organizator/schema.json +64 -0
- package/source/schemas/venue.schema.json +56 -0
package/package.json
CHANGED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"id": {
|
|
5
|
+
"type": "string",
|
|
6
|
+
"format": "uuid"
|
|
7
|
+
},
|
|
8
|
+
"name": {
|
|
9
|
+
"type": "string"
|
|
10
|
+
},
|
|
11
|
+
"street": {
|
|
12
|
+
"type": "string"
|
|
13
|
+
},
|
|
14
|
+
"house_number": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"people_capacity": {
|
|
18
|
+
"type": "integer"
|
|
19
|
+
},
|
|
20
|
+
"team_capacity": {
|
|
21
|
+
"type": "integer"
|
|
22
|
+
},
|
|
23
|
+
"is_adult": {
|
|
24
|
+
"type": "boolean"
|
|
25
|
+
},
|
|
26
|
+
"time_created": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"format": "date-time"
|
|
29
|
+
},
|
|
30
|
+
"time_updated": {
|
|
31
|
+
"type": [
|
|
32
|
+
"string",
|
|
33
|
+
"null"
|
|
34
|
+
],
|
|
35
|
+
"format": "date-time"
|
|
36
|
+
},
|
|
37
|
+
"game_time": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
"city_id": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"format": "uuid"
|
|
43
|
+
},
|
|
44
|
+
"location_info": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
},
|
|
47
|
+
"status": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"venue_href": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"required": [],
|
|
55
|
+
"additionalProperties": false
|
|
56
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"id": {
|
|
5
|
+
"type": "string",
|
|
6
|
+
"format": "uuid"
|
|
7
|
+
},
|
|
8
|
+
"name": {
|
|
9
|
+
"type": "string"
|
|
10
|
+
},
|
|
11
|
+
"street": {
|
|
12
|
+
"type": "string"
|
|
13
|
+
},
|
|
14
|
+
"house_number": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"people_capacity": {
|
|
18
|
+
"type": "integer"
|
|
19
|
+
},
|
|
20
|
+
"team_capacity": {
|
|
21
|
+
"type": "integer"
|
|
22
|
+
},
|
|
23
|
+
"is_adult": {
|
|
24
|
+
"type": "boolean"
|
|
25
|
+
},
|
|
26
|
+
"time_created": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"format": "date-time"
|
|
29
|
+
},
|
|
30
|
+
"time_updated": {
|
|
31
|
+
"type": [
|
|
32
|
+
"string",
|
|
33
|
+
"null"
|
|
34
|
+
],
|
|
35
|
+
"format": "date-time"
|
|
36
|
+
},
|
|
37
|
+
"game_time": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
"city_id": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"format": "uuid"
|
|
43
|
+
},
|
|
44
|
+
"location_info": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
},
|
|
47
|
+
"status": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"venue_href": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"required": [],
|
|
55
|
+
"additionalProperties": false
|
|
56
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"id": {
|
|
5
|
+
"type": "string",
|
|
6
|
+
"format": "uuid"
|
|
7
|
+
},
|
|
8
|
+
"name": {
|
|
9
|
+
"type": "string"
|
|
10
|
+
},
|
|
11
|
+
"street": {
|
|
12
|
+
"type": "string"
|
|
13
|
+
},
|
|
14
|
+
"house_number": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"people_capacity": {
|
|
18
|
+
"type": "integer"
|
|
19
|
+
},
|
|
20
|
+
"team_capacity": {
|
|
21
|
+
"type": "integer"
|
|
22
|
+
},
|
|
23
|
+
"is_adult": {
|
|
24
|
+
"type": "boolean"
|
|
25
|
+
},
|
|
26
|
+
"time_created": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"format": "date-time"
|
|
29
|
+
},
|
|
30
|
+
"time_updated": {
|
|
31
|
+
"type": [
|
|
32
|
+
"string",
|
|
33
|
+
"null"
|
|
34
|
+
],
|
|
35
|
+
"format": "date-time"
|
|
36
|
+
},
|
|
37
|
+
"game_time": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
"city_id": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"format": "uuid"
|
|
43
|
+
},
|
|
44
|
+
"location_info": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
},
|
|
47
|
+
"status": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"venue_href": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"required": [
|
|
55
|
+
"name",
|
|
56
|
+
"street",
|
|
57
|
+
"house_number",
|
|
58
|
+
"people_capacity",
|
|
59
|
+
"team_capacity",
|
|
60
|
+
"game_time",
|
|
61
|
+
"city_id"
|
|
62
|
+
],
|
|
63
|
+
"additionalProperties": false
|
|
64
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "object",
|
|
3
|
+
"properties": {
|
|
4
|
+
"id": {
|
|
5
|
+
"type": "string",
|
|
6
|
+
"format": "uuid"
|
|
7
|
+
},
|
|
8
|
+
"name": {
|
|
9
|
+
"type": "string"
|
|
10
|
+
},
|
|
11
|
+
"street": {
|
|
12
|
+
"type": "string"
|
|
13
|
+
},
|
|
14
|
+
"house_number": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"people_capacity": {
|
|
18
|
+
"type": "integer"
|
|
19
|
+
},
|
|
20
|
+
"team_capacity": {
|
|
21
|
+
"type": "integer"
|
|
22
|
+
},
|
|
23
|
+
"is_adult": {
|
|
24
|
+
"type": "boolean"
|
|
25
|
+
},
|
|
26
|
+
"time_created": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"format": "date-time"
|
|
29
|
+
},
|
|
30
|
+
"time_updated": {
|
|
31
|
+
"type": [
|
|
32
|
+
"string",
|
|
33
|
+
"null"
|
|
34
|
+
],
|
|
35
|
+
"format": "date-time"
|
|
36
|
+
},
|
|
37
|
+
"game_time": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
"city_id": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"format": "uuid"
|
|
43
|
+
},
|
|
44
|
+
"location_info": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
},
|
|
47
|
+
"status": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"venue_href": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"required": [],
|
|
55
|
+
"additionalProperties": false
|
|
56
|
+
}
|